mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
2e1fbdd267
* Implemented the interface in StorageProxy.c * Removed the script `llee' as it is now created by the Makefile * Makefile now compiles a shared object version of the library, but only if using gcc-3.3, linking fails under gcc-3.2 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8751 91177308-0d34-0410-b5e6-96231b3b80d8 |
||
---|---|---|
.. | ||
ExecveHandler.c | ||
Makefile | ||
OSInterface.h | ||
README.txt | ||
StorageProxy.c | ||
SysUtils.c | ||
SysUtils.h |
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.