aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
AgeCommit message (Expand)Author
2010-07-26Don't call __register_frame from the JIT on systems that use setjmp/longjmpBob Wilson
2010-07-22remove the dwarf sizing stuff which is now dead, it wasChris Lattner
2010-07-22remove the JIT "NeedsExactSize" feature and supporting logic.Chris Lattner
2010-07-19Fix indentation.Duncan Sands
2010-07-19Expose JIT::recompileAndRelinkFunction for use through the C API.Duncan Sands
2010-07-16Get rid of a bunch of duplicated ELF enum values.Eli Friedman
2010-07-12Convert some tab stops into spaces.Duncan Sands
2010-07-11first part of JIT support for address of labels, part of PR7264,Chris Lattner
2010-06-18Handle execution entrypoints with non-integer return types.Dan Gohman
2010-05-15improve portability to systems that don't have powf/modf (e.g. solaris 9)Chris Lattner
2010-05-02Remove the -enable-sjlj-eh option, which doesn't do anything.Duncan Sands
2010-05-01Fix an ancient FIXME.Dan Gohman
2010-04-30Fix the OProfileJITEventListener build after r101844 removedJeffrey Yasskin
2010-04-18Don't rely upon the MCSymbol "isDefined" method to indicate if a label has beenBill Wendling
2010-04-18Formatting changes. No functionality change.Bill Wendling
2010-04-17Fix -Wcast-qual warnings.Dan Gohman
2010-04-16The JIT calls TidyLandingPads to tidy up the landing pads. However, because theBill Wendling
2010-04-15Add const qualifiers to CodeGen's use of LLVM IR constructs.Dan Gohman
2010-04-14Don't use DILocation when processing a DebugLoc.Nicolas Geoffray
2010-04-08Use twines to simplify calls to report_fatal_error. For code size and readabi...Benjamin Kramer
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner
2010-04-05Fix OProfileJITEventListener build for new DebugLoc.Jeffrey Yasskin
2010-04-04CurFn is only used for relocations. Use EmissionDetails.MF->getFunction() ins...Nicolas Geoffray
2010-04-02Switch the code generator (except the JIT) onto the new DebugLocChris Lattner
2010-03-30Typo noticed by Duncan.Torok Edwin
2010-03-30Don't overwrite previous value, if it succeeded.Torok Edwin
2010-03-30Honour addGlobalMapping() in the interpreter, if it was used to add mappings forTorok Edwin
2010-03-27Avoid leaking the memory allocated for GlobalVariables in the interpreter, byJeffrey Yasskin
2010-03-26Avoid leaking argv and env arrays from lli.Jeffrey Yasskin
2010-03-16Avoid a memory leak in JITDebugRegisterer.Jeffrey Yasskin
2010-03-14fix these two get the mcsymbol operand instead of imm operand.Chris Lattner
2010-03-14Now that DBG_LABEL is updated, we can finally make MachineMove Chris Lattner
2010-03-14change EH related stuff (other than EH_LABEL) to use MCSymbolChris Lattner
2010-03-11Add a new jump table encoding to indicate jump tables entriesRichard Osborne
2010-03-09strength reduce MMI::MappedLabel to MMI::isLabelDeleted,Chris Lattner
2010-03-04Fix PR6360. It's easy for a stub's address to escape to user code, so we can'tJeffrey Yasskin
2010-03-04Fix PR5291, in which a SmallPtrSet iterator was held across an insertion intoJeffrey Yasskin
2010-03-04Make sure JITResolvers don't leave any stubs behind. When a JITResolver wasJeffrey Yasskin
2010-03-02Add Module functions in place of module providers.Erick Tryzelaar
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-02-16Apply patch from http://llvm.org/bugs/attachment.cgi?id=4136 now that PR5004 isBill Wendling
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands
2010-02-12Make JIT::runFunction clean up the generated stub function.Jeffrey Yasskin
2010-02-11Make it possible to create multiple JIT instances at the same time, by removingJeffrey Yasskin
2010-02-10Fix "the the" and similar typos.Dan Gohman
2010-02-05Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin
2010-02-03r94686 changed all ModuleProvider parameters to Modules, which made theJeffrey Yasskin
2010-01-28Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer
2010-01-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin
2010-01-26Add support for target-specific 32-bit custom-lowered Chris Lattner