| Commit message (Expand) | Author | Age | Files | Lines |
* | Make it possible to create multiple JIT instances at the same time, by removing | Jeffrey Yasskin | 2010-02-11 | 1 | -2/+51 |
* | Fix "the the" and similar typos. | Dan Gohman | 2010-02-10 | 1 | -1/+1 |
* | Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp. | Jeffrey Yasskin | 2010-02-05 | 1 | -4/+13 |
* | Kill ModuleProvider and ghost linkage by inverting the relationship between | Jeffrey Yasskin | 2010-01-27 | 1 | -79/+20 |
* | Move remaining stuff to the isInteger predicate. | Benjamin Kramer | 2010-01-05 | 1 | -1/+1 |
* | Convert a ton of simple integer type equality tests to the new predicate. | Benjamin Kramer | 2010-01-05 | 1 | -3/+3 |
* | Avoid going through the LLVMContext for type equality where it's safe to dere... | Benjamin Kramer | 2010-01-05 | 1 | -3/+2 |
* | Fix a crash in JIT::recompileAndRelinkFunction(). It doesn't pass the MCI | Jeffrey Yasskin | 2009-12-22 | 1 | -2/+4 |
* | Don't codegen available_externally functions. Fixes http://llvm.org/PR5735. | Jeffrey Yasskin | 2009-12-17 | 1 | -27/+39 |
* | Formatting. | Eric Christopher | 2009-12-15 | 1 | -1/+1 |
* | Reinstate r91208 to fix available_externally linkage for globals, with | Jeffrey Yasskin | 2009-12-13 | 1 | -1/+1 |
* | Revert r91208. Something on Linux prevents the JIT from looking up a symbol | Jeffrey Yasskin | 2009-12-12 | 1 | -1/+1 |
* | Fix available_externally linkage for globals. It's probably still not | Jeffrey Yasskin | 2009-12-12 | 1 | -1/+1 |
* | Add ability to set code model within the execution engine builders | Eric Christopher | 2009-11-17 | 1 | -3/+6 |
* | Remove dlsym stubs, with Nate Begeman's permission. | Jeffrey Yasskin | 2009-11-09 | 1 | -8/+2 |
* | Change the JIT to compile eagerly by default as agreed in | Jeffrey Yasskin | 2009-10-27 | 1 | -2/+2 |
* | Automatically do the equivalent of freeMachineCodeForFunction(F) when F is | Jeffrey Yasskin | 2009-10-27 | 1 | -2/+2 |
* | fix PR5186: the JIT shouldn't try to codegen available_externally | Chris Lattner | 2009-10-25 | 1 | -1/+1 |
* | Implement the JIT side of the GDB JIT debugging interface. To enable this | Reid Kleckner | 2009-09-20 | 1 | -1/+1 |
* | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 1 | -10/+14 |
* | 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 |