aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/JITEmitter.cpp
AgeCommit message (Expand)Author
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
2009-11-12Use stubs when we have them, otherwise use code we already have,Eric Christopher
2009-11-09Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin
2009-11-07Make the need-stub variables accurate and consistent. In the case ofJeffrey Yasskin
2009-11-07Give the JITResolver a direct pointer to its JITEmitter, and use that insteadJeffrey Yasskin
2009-10-27Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin
2009-10-27Automatically do the equivalent of freeMachineCodeForFunction(F) when F isJeffrey Yasskin
2009-10-23Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin
2009-10-20Move the Function*->allocated blocks map from the JITMemoryManager to theJeffrey Yasskin
2009-10-19Clean up the JITResolver stub/callsite<->function maps.Jeffrey Yasskin
2009-10-13s/DebugLoc.CompileUnit/DebugLoc.Scope/gDevang Patel
2009-10-13Keep track of stubs that are created. This fixes PR5162 and probably PR4822 andJeffrey Yasskin
2009-10-06Update processDebugLoc() to handle requests to process debug info, before and...Devang Patel
2009-10-06Fix http://llvm.org/PR5116 by rolling back r60822. This passes `make unittestsJeffrey Yasskin
2009-09-20Implement the JIT side of the GDB JIT debugging interface. To enable thisReid Kleckner
2009-08-25Fix PR4772 ARM JIT.GlobalInFuction unittest by explicitly initialize MMI Xerxes Ranby
2009-08-23remove a few DOUTs here and there.Chris Lattner
2009-08-12This void is implicit in C++.Dan Gohman