| Commit message (Expand) | Author | Age | Files | Lines |
* | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -2/+1 |
* | Move ConstantExpr to 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -1/+1 |
* | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson | 2009-07-27 | 1 | -3/+3 |
* | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -3/+3 |
* | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 1 | -9/+9 |
* | Simplify / normalize some uses of Value::getName. | Daniel Dunbar | 2009-07-21 | 1 | -1/+1 |
* | Add EngineBuilder to ExecutionEngine in favor of the five optional argument E... | Reid Kleckner | 2009-07-18 | 1 | -6/+23 |
* | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 2009-07-14 | 1 | -8/+10 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -4/+4 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -4/+4 |
* | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin | 2009-07-11 | 1 | -13/+7 |
* | Add an option to allocate JITed global data separately from code. By | Jeffrey Yasskin | 2009-07-08 | 1 | -37/+41 |
* | Introduce new error handling API. | Torok Edwin | 2009-07-07 | 1 | -3/+3 |
* | improve the APIs for creating struct and function types with no arguments/ele... | Chris Lattner | 2009-07-01 | 1 | -1/+1 |
* | Add a JITEventListener interface that gets called back when a new function is | Jeffrey Yasskin | 2009-06-25 | 1 | -3/+53 |
* | Fix the Ocaml bindings for the ExecutionEngine: with the change to build | Bob Wilson | 2009-06-24 | 1 | -3/+1 |
* | After obtaining the lock, look if the function has been codegen'd by | Nicolas Geoffray | 2009-06-12 | 1 | -0/+5 |
* | First patch in the direction of splitting MachineCodeEmitter in two subclasses: | Bruno Cardoso Lopes | 2009-05-30 | 1 | -9/+9 |
* | Allow the JIT ExecutionEngine to report details about the generated machine c... | Argyrios Kyrtzidis | 2009-05-18 | 1 | -1/+7 |
* | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 1 | -2/+2 |
* | Instead of passing in an unsigned value for the optimization level, use an enum, | Bill Wendling | 2009-04-29 | 1 | -5/+5 |
* | The second part of the change from -fast to -O#. This changes the JIT to accept | Bill Wendling | 2009-04-29 | 1 | -7/+7 |
* | make sure to unlock keymgr if the JIT is created and destroyed, all | Chris Lattner | 2009-04-16 | 1 | -5/+3 |
* | Mac OS X 10.6 and above do not use key manager to register EH frames. | Evan Cheng | 2009-04-14 | 1 | -2/+8 |
* | Introduce new linkage types linkonce_odr, weak_odr, common_odr | Duncan Sands | 2009-03-07 | 1 | -2/+2 |
* | Finish cross-process JIT work, and clean up previous work. | Nate Begeman | 2009-03-07 | 1 | -1/+2 |
* | Fix a thinko in the JIT where the address of a GV was only recorded in the map | Nate Begeman | 2009-03-04 | 1 | -2/+2 |
* | don't #include a header into the middle of an anon namespace. | Chris Lattner | 2009-03-03 | 1 | -7/+5 |
* | Fix the logic in this assertion to properly validate the number | Dan Gohman | 2009-02-19 | 1 | -2/+3 |
* | Reapply r57340. VMKit does not presently rely on materializeFunction | Dan Gohman | 2009-02-19 | 1 | -2/+2 |
* | Add support to the JIT for true non-lazy operation. When a call to a function | Nate Begeman | 2009-02-18 | 1 | -9/+61 |
* | Split the locking out of JIT::runJITOnFunction so that callers | Dan Gohman | 2009-02-06 | 1 | -3/+6 |
* | Fix PR3423: Link llvm on ARM EABI machines. Patch by Robert Schuster. | Evan Cheng | 2009-02-01 | 1 | -3/+3 |
* | Add support for deleting a module provider from a JIT in such a way that it d... | Nate Begeman | 2009-01-23 | 1 | -0/+13 |
* | Change isGVCompilationDisabled() semantics again. It should abort on any GV t... | Evan Cheng | 2009-01-16 | 1 | -1/+4 |
* | Add the private linkage. | Rafael Espindola | 2009-01-15 | 1 | -1/+1 |
* | Rename getABITypeSize to getTypePaddedSize, as | Duncan Sands | 2009-01-12 | 1 | -2/+2 |
* | Handle weak_extern in the JIT. This fixes | Dan Gohman | 2009-01-05 | 1 | -4/+5 |
* | DisableGVCompilation should not abort on internal GlobalValue's. | Evan Cheng | 2008-12-09 | 1 | -2/+2 |
* | Make JIT::runFunction handle functions with non-C calling conventions. | Chris Lattner | 2008-11-23 | 1 | -0/+1 |
* | For some targets, it's not possible to place GVs in the same memory buffer as... | Evan Cheng | 2008-11-04 | 1 | -0/+10 |
* | Support for allocation of TLS variables in the JIT. Allocation of a global | Nicolas Geoffray | 2008-10-25 | 1 | -1/+20 |
* | Revert r57340 move guard mutex in getPointerToFunction as this can cause | Mon P Wang | 2008-10-10 | 1 | -2/+2 |
* | Moved guard mutex upwards to guard materializing a function | Mon P Wang | 2008-10-10 | 1 | -3/+3 |
* | Add DisableGVCompilation which forces the JIT to assert when it tries to allo... | Evan Cheng | 2008-09-24 | 1 | -0/+4 |
* | Add support for JIT exceptions on Darwin. Since we're dealing with libgcc, | Nicolas Geoffray | 2008-08-28 | 1 | -2/+135 |
* | Register the frame register function when allocating the JIT, | Nicolas Geoffray | 2008-08-18 | 1 | -5/+5 |
* | Add new parameter Fast to createJIT to enable the fast codegen path. | Evan Cheng | 2008-08-08 | 1 | -4/+5 |
* | Rewrite JIT handling of GlobalVariables so they | Dale Johannesen | 2008-08-07 | 1 | -15/+7 |
* | Prune a few dependencies on MachineFunction.h. | Dan Gohman | 2008-07-01 | 1 | -1/+0 |