mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-15 16:07:49 +00:00
fd7a4f1337
amounts to checking for a completely-native version. We'll cache on a function-by-function basis instead (in the JIT's CodeEmitter). llvm-svn: 9894
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.