llvm-6502/tools/llee
2004-11-09 20:21:25 +00:00
..
ExecveHandler.c Make sure llee can deal with compressed bytecode too. 2004-11-09 20:21:25 +00:00
Makefile Use LLVMToolDir instead of ToolDir because the latter is no longer set (?) 2004-11-07 22:26:43 +00:00
OSInterface.h Changes For Bug 352 2004-09-01 22:55:40 +00:00
README.txt
StorageProxy.c Get rid of compile warning by having llvmExecve return the result of its 2004-09-13 15:37:33 +00:00
SysUtils.c Fix compilation warning. 2004-09-14 15:46:13 +00:00
SysUtils.h * Convert C++ comments to C 2004-08-04 21:19:49 +00:00

              LLEE: (LL)VM (E)xecution (E)nvironment

This tool presents a virtual execution environment for LLVM programs. By
preloading a shared object which defines a custom execve() functions, we can
execute bytecode files with the JIT directly, without the user ever thinking
about it.

Thus, a user can freely run any program, native or LLVM bytecode, transparently,
and without even being aware of it.

To use LLEE, run `./llee <native_program>', a good choice is a shell. Anything
started within that program will be affected by the execve() replacement.