aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JIT.cpp
AgeCommit message (Expand)Author
2009-07-14Move EVER MORE stuff over to LLVMContext.Owen Anderson
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-08Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin
2009-07-07Introduce new error handling API.Torok Edwin
2009-07-01improve the APIs for creating struct and function types with no arguments/ele...Chris Lattner
2009-06-25Add a JITEventListener interface that gets called back when a new function isJeffrey Yasskin
2009-06-24Fix the Ocaml bindings for the ExecutionEngine: with the change to buildBob Wilson
2009-06-12After obtaining the lock, look if the function has been codegen'd byNicolas Geoffray
2009-05-30First patch in the direction of splitting MachineCodeEmitter in two subclasses:Bruno Cardoso Lopes
2009-05-18Allow the JIT ExecutionEngine to report details about the generated machine c...Argyrios Kyrtzidis
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands
2009-04-29Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling
2009-04-29The second part of the change from -fast to -O#. This changes the JIT to acceptBill Wendling
2009-04-16make sure to unlock keymgr if the JIT is created and destroyed, allChris Lattner
2009-04-14Mac OS X 10.6 and above do not use key manager to register EH frames.Evan Cheng
2009-03-07Introduce new linkage types linkonce_odr, weak_odr, common_odrDuncan Sands
2009-03-07Finish cross-process JIT work, and clean up previous work.Nate Begeman
2009-03-04Fix a thinko in the JIT where the address of a GV was only recorded in the mapNate Begeman
2009-03-03don't #include a header into the middle of an anon namespace.Chris Lattner
2009-02-19Fix the logic in this assertion to properly validate the numberDan Gohman
2009-02-19Reapply r57340. VMKit does not presently rely on materializeFunctionDan Gohman
2009-02-18Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman
2009-02-06Split the locking out of JIT::runJITOnFunction so that callersDan Gohman
2009-02-01Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster.Evan Cheng
2009-01-23Add support for deleting a module provider from a JIT in such a way that it d...Nate Begeman
2009-01-16Change isGVCompilationDisabled() semantics again. It should abort on any GV t...Evan Cheng
2009-01-15Add the private linkage.Rafael Espindola
2009-01-12Rename getABITypeSize to getTypePaddedSize, asDuncan Sands
2009-01-05Handle weak_extern in the JIT. This fixesDan Gohman
2008-12-09DisableGVCompilation should not abort on internal GlobalValue's.Evan Cheng
2008-11-23Make JIT::runFunction handle functions with non-C calling conventions.Chris Lattner
2008-11-04For some targets, it's not possible to place GVs in the same memory buffer as...Evan Cheng
2008-10-25Support for allocation of TLS variables in the JIT. Allocation of a globalNicolas Geoffray
2008-10-10Revert r57340 move guard mutex in getPointerToFunction as this can causeMon P Wang
2008-10-10Moved guard mutex upwards to guard materializing a functionMon P Wang
2008-09-24Add DisableGVCompilation which forces the JIT to assert when it tries to allo...Evan Cheng
2008-08-28Add support for JIT exceptions on Darwin. Since we're dealing with libgcc,Nicolas Geoffray
2008-08-18Register the frame register function when allocating the JIT,Nicolas Geoffray
2008-08-08Add new parameter Fast to createJIT to enable the fast codegen path.Evan Cheng
2008-08-07Rewrite JIT handling of GlobalVariables so theyDale Johannesen
2008-07-01Prune a few dependencies on MachineFunction.h.Dan Gohman
2008-05-21Fix a couple issues with the JIT and multiple modules:Nate Begeman
2008-05-15Fix a bunch of 80col violations that arose from the Create API change. Tweak ...Gabor Greif
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-04-20Do not hold the JIT lock when materializing a function and verify if theNicolas Geoffray
2008-04-20Switch to using Simplified ConstantFP::get API.Chris Lattner
2008-04-06API changes for class Use size reduction, wave 1.Gabor Greif
2008-03-22Register EH frames emitted in JIT when using gcc unwinding runtimeAnton Korobeynikov