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