[LLVMdev] Primer with LLVM
Francisco Puentes
fpuentes at udc.es
Sat Jan 8 12:32:34 PST 2005
> > Now I have other problem: I have a Module and I need generate a iostream
> > (memory) with native x86 code (maybe elf/coff) to be executed later
> (into
> > the guest process space, without fork!!). I studied llc and lli, but
> they
> > don't help me much. Any idea? Are there any guy working in some like
> that?
>
> There's two approaches that could be used here:
>
> 1. lli-style. Save the Module as bytecode and dynamically compile it at
> runtime. Your thread would: read the bytecode, convert it to x86
> code in memory and then execute it directly from memory.
>
Dear developers:
What are the classes evolved in to convert bytecode to x86 code directly?
Without Just In Time (all at once).
More information about the llvm-dev
mailing list