Displaying 4 results from an estimated 4 matches for "garbege".
Did you mean:
garbage
2004 Nov 07
2
[LLVMdev] LLVM for JIT only use
...ompiling the latest CVS of it, and because I believe I really don't
need it)?
How can I tell LLVM the address where I want the generated code to go
(or how can I get this address, preferably with a "destructor"
function to release the memory)? I coded a garbage collector which
should garbege generated code...
How do I plug my copying GC into LLVM? It has to know about the stack
frames, etc... (I mostly need the location inside the stack frames of
GC-ed pointers)
I'm sorry to ask such basic questions, but the documentation don't
help me much (and I am a bit lost in it.. I don...
2004 Nov 08
0
[LLVMdev] LLVM for JIT only use
...install' should
install into $prefix/ include, lib, etc.
> How can I tell LLVM the address where I want the generated code to go
> (or how can I get this address, preferably with a "destructor"
> function to release the memory)? I coded a garbage collector which
> should garbege generated code...
At present, you cannot tell the JIT *where* you want the code to go.
Machine code destruction is currently not implemented (but you may
find it implemented in the near future). In the mean time, you can use
this function to tell the ExecutionEngine to release memory for
generate...
2004 Nov 07
0
[LLVMdev] LLVM for JIT only use
On Sun, Nov 07, 2004 at 11:04:58PM +0100, Basile STARYNKEVITCH wrote:
> (apparently this list is moderated)
Yes, we get too much spam, so it's moderated, but only with regard to
spam, nothing else.
> Basile>> I want to try to use LLVM only for JIT only use (generating
> code in Basile>> memory for x86 and, when available PowerPC [32bits])
>
> If you want to know
2004 Nov 07
2
[LLVMdev] LLVM for JIT only use
Hello List,
(apparently this list is moderated)
Le/On Sun, Nov 07, 2004 at 03:45:41PM -0600, Misha Brukman
écrivait/wrote:
> On Sun, Nov 07, 2004 at 10:33:09PM +0100, Basile STARYNKEVITCH
> wrote:
Basile>> I want to try to use LLVM only for JIT only use (generating code in
Basile>> memory for x86 and, when available PowerPC [32bits])
If you want to know I am experimenting