summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JIT.cpp
Commit message (Expand)AuthorAge
* Move remaining stuff to the isInteger predicate.Benjamin Kramer2010-01-05
* Convert a ton of simple integer type equality tests to the new predicate.Benjamin Kramer2010-01-05
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-05
* Fix a crash in JIT::recompileAndRelinkFunction(). It doesn't pass the MCIJeffrey Yasskin2009-12-22
* Don't codegen available_externally functions. Fixes http://llvm.org/PR5735.Jeffrey Yasskin2009-12-17
* Formatting.Eric Christopher2009-12-15
* Reinstate r91208 to fix available_externally linkage for globals, withJeffrey Yasskin2009-12-13
* Revert r91208. Something on Linux prevents the JIT from looking up a symbolJeffrey Yasskin2009-12-12
* Fix available_externally linkage for globals. It's probably still notJeffrey Yasskin2009-12-12
* Add ability to set code model within the execution engine buildersEric Christopher2009-11-17
* Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin2009-11-09
* Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin2009-10-27
* Automatically do the equivalent of freeMachineCodeForFunction(F) when F isJeffrey Yasskin2009-10-27
* fix PR5186: the JIT shouldn't try to codegen available_externallyChris Lattner2009-10-25
* Implement the JIT side of the GDB JIT debugging interface. To enable thisReid Kleckner2009-09-20
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* Move types back to the 2.5 API.Owen Anderson2009-07-29
* Move ConstantExpr to 2.5 API.Owen Anderson2009-07-29
* Move ConstantFP construction back to the 2.5-ish API.Owen Anderson2009-07-27
* Revert the ConstantInt constructors back to their 2.5 forms where possible, t...Owen Anderson2009-07-24
* Get rid of the Pass+Context magic.Owen Anderson2009-07-22
* Simplify / normalize some uses of Value::getName.Daniel Dunbar2009-07-21
* Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner2009-07-18
* Move EVER MORE stuff over to LLVMContext.Owen Anderson2009-07-14
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-14
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-11
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-11
* Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin2009-07-08
* Introduce new error handling API.Torok Edwin2009-07-07
* improve the APIs for creating struct and function types with no arguments/ele...Chris Lattner2009-07-01
* Add a JITEventListener interface that gets called back when a new function isJeffrey Yasskin2009-06-25
* Fix the Ocaml bindings for the ExecutionEngine: with the change to buildBob Wilson2009-06-24
* After obtaining the lock, look if the function has been codegen'd byNicolas Geoffray2009-06-12
* First patch in the direction of splitting MachineCodeEmitter in two subclasses:Bruno Cardoso Lopes2009-05-30
* Allow the JIT ExecutionEngine to report details about the generated machine c...Argyrios Kyrtzidis2009-05-18
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-09
* Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling2009-04-29
* The second part of the change from -fast to -O#. This changes the JIT to acceptBill Wendling2009-04-29
* make sure to unlock keymgr if the JIT is created and destroyed, allChris Lattner2009-04-16
* Mac OS X 10.6 and above do not use key manager to register EH frames.Evan Cheng2009-04-14
* Introduce new linkage types linkonce_odr, weak_odr, common_odrDuncan Sands2009-03-07
* Finish cross-process JIT work, and clean up previous work.Nate Begeman2009-03-07
* Fix a thinko in the JIT where the address of a GV was only recorded in the mapNate Begeman2009-03-04
* don't #include a header into the middle of an anon namespace.Chris Lattner2009-03-03
* Fix the logic in this assertion to properly validate the numberDan Gohman2009-02-19
* Reapply r57340. VMKit does not presently rely on materializeFunctionDan Gohman2009-02-19
* Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman2009-02-18
* Split the locking out of JIT::runJITOnFunction so that callersDan Gohman2009-02-06
* Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster.Evan Cheng2009-02-01
* Add support for deleting a module provider from a JIT in such a way that it d...Nate Begeman2009-01-23