llvm-6502/lib/ExecutionEngine/JIT
Misha Brukman abb027cf41 Allow for specification of which JIT to run on the commandline.
`lli -march=x86' or `lli -march=sparc' will forcefully select the JIT even on a
different platform. Running lli without the -march option will select the JIT
for the platform that it's currently running on.

Pro: can test Sparc JIT (debug printing mode) on X86 -- faster to compile/link
LLVM source base to test changes.
Con: Linking lli on x86 now pulls in all the Sparc libs -> longer link time
(but X86 can bear it, right?)

In the future, perhaps this should be a ./configure option to enable/disable
target JITting...


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6360 91177308-0d34-0410-b5e6-96231b3b80d8
2003-05-27 21:40:39 +00:00
..
Callback.cpp Add support for function stubs, which allow calling functions which need to 2003-05-09 03:30:07 +00:00
Intercept.cpp Add support for atexit handlers to the JIT, fixing 2003-05-14-AtExit.c 2003-05-14 13:53:40 +00:00
JIT.cpp Allow for specification of which JIT to run on the commandline. 2003-05-27 21:40:39 +00:00
JIT.h Allow for specification of which JIT to run on the commandline. 2003-05-27 21:40:39 +00:00
JITEmitter.cpp Allow for specification of which JIT to run on the commandline. 2003-05-27 21:40:39 +00:00
Makefile Initial checkin of new LLI with JIT compiler 2002-12-24 00:01:05 +00:00
SparcEmitter.cpp Allow for specification of which JIT to run on the commandline. 2003-05-27 21:40:39 +00:00
VM.cpp Add a framework for intercepting system calls 2003-05-14 13:26:47 +00:00
VM.h Allow for specification of which JIT to run on the commandline. 2003-05-27 21:40:39 +00:00