summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/JIT/VM.h
Commit message (Collapse)AuthorAgeFilesLines
* The JIT now passes the environment pointer to the main() function when itJohn Criswell2003-08-211-1/+2
| | | | | | | starts a program. This allows the GNU env program to compile and JIT under LLVM. llvm-svn: 8022
* Deconstify parameter to getPointerToFunction().Brian Gaeke2003-08-131-2/+2
| | | | | | Use a FunctionPassManager instead of a PassManager. llvm-svn: 7820
* * Removed SparcEmitter.cpp; rolled into lib/Target/Sparc/SparcV9CodeEmitter.cppMisha Brukman2003-06-021-2/+1
| | | | | | | | | * No more createX86Emitter() vs. createSparcEmitter() -- there can be only one * As a result, the memory management semantics must be handled according to platform -- the parameters to mmap() are particularly sensitive to the host architecture. llvm-svn: 6527
* Move target specific code to target files. The new MachineCodeEmitterChris Lattner2003-06-011-25/+4
| | | | | | class is actually target independent! llvm-svn: 6517
* Allow for specification of which JIT to run on the commandline.Misha Brukman2003-05-271-1/+2
| | | | | | | | | | | | | | | | `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... llvm-svn: 6360
* Add support for atexit handlers to the JIT, fixing 2003-05-14-AtExit.cChris Lattner2003-05-141-0/+7
| | | | llvm-svn: 6193
* Add support for function stubs, which allow calling functions which need toChris Lattner2003-05-091-0/+8
| | | | | | have an address available, but have not yet been code generated. llvm-svn: 6059
* Improve efficiency of JIT by having it use direct function calls instead ofChris Lattner2003-05-081-0/+5
| | | | | | signals to regain control from the executing code llvm-svn: 6051
* Add support for named functionsChris Lattner2003-01-131-0/+6
| | | | llvm-svn: 5258
* Initial checkinChris Lattner2002-12-241-0/+54
llvm-svn: 5127
OpenPOWER on IntegriCloud