aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT
AgeCommit message (Expand)Author
2009-07-15Revert 75762, 75763, 75766..75769, 75772..75775, 75778, 75780, 75782 to repai...Stuart Hastings
2009-07-15Migrate llc and the JIT to using the TargetRegistry for lookups.Daniel Dunbar
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-12Match declaration to definition.Daniel Dunbar
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin
2009-07-10Oops. s/#if defined(USE_OPROFILE)/#if USE_OPROFILE/. We #defineJeffrey Yasskin
2009-07-10Add a --with-oprofile flag to configure, which uses OProfile's agentJeffrey Yasskin
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 file to cmakeChris 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-23Eliminate object-relinking support from CMake. Fixes PR 4429 andDouglas Gregor
2009-06-12After obtaining the lock, look if the function has been codegen'd byNicolas Geoffray
2009-06-04Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman
2009-06-04Use uint8_t and int32_t in {JIT,Machine}CodeEmitersBruno Cardoso Lopes
2009-06-03Revert 72650Bruno Cardoso Lopes
2009-06-01Fix new CodeEmitter stuff to follow LLVM codying style. Patch by Aaron GrayBruno Cardoso Lopes
2009-05-30Use uint8_t and int32_t in {JIT,Machine}CodeEmitersBruno Cardoso Lopes
2009-05-30First patch in the direction of splitting MachineCodeEmitter in two subclasses:Bruno Cardoso Lopes
2009-05-23stat64/open64/lseek64 for the interpreterTorok Edwin
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-30Set FnEnd in JITEmitter::finishFunction to point strictly to the end of funct...Argyrios Kyrtzidis
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-27Under unusual circumstances (jitting a function that causes the creation ofNick Lewycky
2009-04-19Use an AssertingVH to detect the case where the Function was deleted butNick Lewycky
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-04-01Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman
2009-03-13Fix some significant problems with constant pools that resulted in unnecessar...Evan Cheng
2009-03-11Allow cross-process JIT to handle MachineRelocations of the ExternalSymbolNate Begeman
2009-03-09Fix PR3724 by searching for the largest free block when Chris Lattner
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-05switch this message back to only being in -debug mode.Chris Lattner
2009-03-05When allocating stubs, keep track of which Functions are referencing the stub.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-03-02Fix the calculation for how big the allocated stub needs to be.Nate Begeman
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-15On 64bit we may have a personality function which requires 64 bits toNicolas Geoffray
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