A lot of changes were suggested by Chris.
[oota-llvm.git] / tools / llee / README.txt
1               LLEE: (LL)VM (E)xecution (E)nvironment
2
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
6 about it.
7
8 Thus, a user can freely run any program, native or LLVM bytecode, transparently,
9 and without even being aware of it.
10
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.