aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT
AgeCommit message (Expand)Author
2011-08-14EE: Provide the symbol "lseek64" explicitly with <unistd.h> on Linux glibc.NAKAMURA Takumi
2011-08-12Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands
2011-07-29Rewrite the CMake build to use explicit dependencies between libraries,Chandler Carruth
2011-07-20- Move CodeModel from a TargetMachine global option to MCCodeGenInfo.Evan Cheng
2011-07-19Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng
2011-07-18Move getInitialFrameState from TargetFrameInfo to MCAsmInfo (suggestions forEvan Cheng
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
2011-05-13ExecutionEngine: move createJIT() definition (v2)Dylan Noblesmith
2011-05-13ExecutionEngine: push TargetMachine creation into clients (v2)Dylan Noblesmith
2011-05-13ExecutionEngine: fix JIT/MCJIT selectTarget() duplication (v2)Dylan Noblesmith
2011-05-07Revert ExecutionEngine patches, they either failed to build or broke unit tests.Jakob Stoklund Olesen
2011-05-06ExecutionEngine: delete duplicated filesDylan Noblesmith
2011-05-06ExecutionEngine: move createJIT() definitionDylan Noblesmith
2011-05-06ExecutionEngine: push TargetMachine creation into clientsDylan Noblesmith
2011-05-06ExecutionEngine: fix JIT/MCJIT selectTarget() duplicationDylan Noblesmith
2011-04-29Fix a C++0x portability issue with std::make_pair. Explicitly providing templ...Douglas Gregor
2011-04-23Remove unused STL header includes.Jay Foad
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner
2011-04-13Like the coding standards say, do not use "using namespace std".Jay Foad
2011-03-22Trailing whitespace.Jim Grosbach
2011-03-16Tidy up. Whitespace and 80 column.Jim Grosbach
2011-03-15Trailing whitespae.Jim Grosbach
2011-03-04Support unregistering exception frames of functions when they are removed.Eric Christopher
2011-01-10Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs a...Anton Korobeynikov
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-18Move getInitialFrameState() to TargetFrameInfoAnton Korobeynikov
2010-11-13Fix some more 80-col violas.Daniel Dunbar
2010-10-23Move the remaining attribute macros to systematic names based on the attributeChandler Carruth
2010-10-21Fix the cleanup process of exception information in JIT. Now JITDuncan Sands
2010-09-13Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally."Michael J. Spencer
2010-09-10CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.Michael J. Spencer
2010-08-30Fix a comment.NAKAMURA Takumi
2010-08-30EE/JIT: Do not invoke parent's ctors/dtors from main()! (PR3897)NAKAMURA Takumi
2010-08-23remove some dead code.Chris Lattner
2010-08-17When creating a JIT, try to load the program so that we can resolve symbolsNick Lewycky
2010-08-09Stop the JIT from refusing to work just because the program it was compiled intoNick Lewycky
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-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-05-02Remove the -enable-sjlj-eh option, which doesn't do anything.Duncan Sands
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