Displaying 2 results from an estimated 2 matches for "vee08".
2011 Feb 17
0
[LLVMdev] bytecode cache
...ly,
I think you'll need to come up with something that looks quite
different from LLVM's JIT.
Finally, this reminds me of the work done on DynamoRIO to persist
application code caches for use between processes and after reloading
the app:
http://www.burningcutlery.com/derek/docs/procshared-VEE08.pdf
They've had to solve some of the same problems.
Reid
On Wed, Feb 16, 2011 at 4:47 PM, Jochen Wilhelmy <j.wilhelmy at arcor.de> wrote:
> Hi!
>
> Is it possible to implement a byte code cache for a llvm-jit?
> This way the compile time occurs only once and the next time
&...
2011 Feb 16
2
[LLVMdev] bytecode cache
Hi!
Is it possible to implement a byte code cache for a llvm-jit?
This way the compile time occurs only once and the next time
the compiled machine code can simply be loaded from disk.
Of course care has to be taken with function pointers that are
used as constants since they may change on the next run.
-Jochen