1 LLEE: (LL)VM (E)xecution (E)nvironment
3 This tool presents a virtual execution environment for LLVM programs. By
4 preloading a shared object which defines a custom execve() functions, we can
5 execute bytecode files with the JIT directly, without the user ever thinking
8 Thus, a user can freely run any program, native or LLVM bytecode, transparently,
9 and without even being aware of it.
11 To use LLEE, run `./llee <native_program>', a good choice is a shell. Anything
12 started within that program will be affected by the execve() replacement.