aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JITEmitter.cpp
AgeCommit message (Expand)Author
2013-01-11Fix bug in exception table allocation (PR13678)Eli Bendersky
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-10-11Remove buggy classof().Sean Silva
2012-10-08Move TargetData to DataLayout.Micah Villmow
2012-08-22Add a getName function to MachineFunction. Use it in places that previously d...Craig Topper
2012-06-28Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp andBill Wendling
2012-06-16Disable the right instance of TheJIT, this one is only used in asserts.Benjamin Kramer
2012-06-16Guard private fields that are unused in Release builds with #ifndef NDEBUG.Benjamin Kramer
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper
2012-02-03Add a new MachineJumpTableInfo entry type, EK_GPRel64BlockAddress, which isAkira Hatanaka
2012-01-05Remove the old ELF writer.Rafael Espindola
2011-12-02Move global variables in TargetMachine into new TargetOptions class. As an APINick Lewycky
2011-08-12Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-04-13Like the coding standards say, do not use "using namespace std".Jay Foad
2011-03-16Tidy up. Whitespace and 80 column.Jim Grosbach
2011-03-04Support unregistering exception frames of functions when they are removed.Eric Christopher
2010-11-29Merge System into Support.Michael J. Spencer
2010-08-23remove some dead code.Chris Lattner
2010-07-22remove the JIT "NeedsExactSize" feature and supporting logic.Chris Lattner
2010-07-11first part of JIT support for address of labels, part of PR7264,Chris Lattner
2010-05-02Remove the -enable-sjlj-eh option, which doesn't do anything.Duncan Sands
2010-04-18Formatting changes. No functionality change.Bill Wendling
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-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner
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-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-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-02-11Make it possible to create multiple JIT instances at the same time, by removingJeffrey Yasskin
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
2010-01-26make jit jump table emission be based on the EntryKind instead of magic varia...Chris Lattner
2010-01-25Rearrange handling of jump tables. Highlights:Chris Lattner
2010-01-19Avoid including DebugInfo.h in AsmPrinter.hDevang Patel
2010-01-16Replace DebugLocTuple with DILocation.Devang Patel
2010-01-05Change errs() to dbgs().David Greene
2009-12-22Partially revert r91626. Materializing extra functions to determine whetherJeffrey Yasskin
2009-12-17Don't codegen available_externally functions. Fixes http://llvm.org/PR5735.Jeffrey Yasskin
2009-12-15Change indirect-globals to use a dedicated allocIndirectGV. This lets usJeffrey Yasskin
2009-11-23* Move stub allocation inside the JITEmitter, instead of exposing aJeffrey Yasskin
2009-11-23Allow more than one stub to be being generated at the same time.Jeffrey Yasskin
2009-11-19Try to fix JITTest.FarCallToKnownFunction on ARM and PPC.Jeffrey Yasskin
2009-11-16Make X86-64 in the Large model always emit 64-bit calls.Jeffrey Yasskin