1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/tools/llee
Misha Brukman 0709078b8d `execve_test' is not part of LLEE.
llvm-svn: 7912
2003-08-15 23:31:54 +00:00
..
ExecveHandler.c A lot of changes were suggested by Chris. 2003-08-15 23:31:16 +00:00
llee Initial checkin of the LLEE, the (LL)VM (E)xecution (E)nvironment. 2003-08-11 22:29:36 +00:00
Makefile `execve_test' is not part of LLEE. 2003-08-15 23:31:54 +00:00
README.txt A lot of changes were suggested by Chris. 2003-08-15 23:31:16 +00:00
SysUtils.c A lot of changes were suggested by Chris. 2003-08-15 23:31:16 +00:00
SysUtils.h A lot of changes were suggested by Chris. 2003-08-15 23:31:16 +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.