Displaying 3 results from an estimated 3 matches for "enture".
Did you mean:
ensure
2002 Oct 15
3
synchronizing part of a file
Hi all,
I would like to synchronize a part of the source file with a part of the
destination file. In detail I would like to
- synchronize a file on a remote host from line "n" onwards with the
file content on the local host starting with line "n" in the file.
- the firs "n" lines of the files on the local and remote host should
not be changed.
My questions
2011 Mar 07
0
[LLVMdev] llvm.gcroot suggestion
...ctually contains a float, the program would crash. The metadata argument
> that I pass to llvm.gcroot informs the garbage collector about the structure
> of the union.
>
Sorry, I left a part out. The way that my garbage collector works currently
is that the collector gets a pointer to the enture union struct, not just
the pointer field within the union. In other words, the entire union struct
is considered a "root".
In fact, there might not even be a pointer in the struct. You see, because
LLVM doesn't directly support unions, I have to simulate that support by
casting point...
2011 Mar 07
2
[LLVMdev] llvm.gcroot suggestion
On Mon, Mar 7, 2011 at 4:08 AM, nicolas geoffray <nicolas.geoffray at gmail.com
> wrote:
> Hi Talin,
>
> On Sat, Mar 5, 2011 at 6:42 PM, Talin <viridia at gmail.com> wrote:
>>
>>
>> So I've been thinking about your proposal, that of using a special address
>> space to indicate garbage collection roots instead of intrinsics.
>
>
> Great!