summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/ExecutionEngine.cpp
AgeCommit message (Expand)AuthorFilesLines
2013-01-22Make APFloat constructor require explicit semantics.Tim Northover1-7/+12
2013-01-14Fix CastingDavid Greene1-1/+2
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-5/+5
2012-12-30convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...Nuno Lopes1-3/+4
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-8/+7
2012-11-01Revert the majority of the next patch in the address space series:Chandler Carruth1-3/+2
2012-10-30Fix regression in old-style JIT.Eli Friedman1-7/+5
2012-10-24Add some cleanup to the DataLayout changes requested by Chandler.Micah Villmow1-5/+6
2012-10-15Resubmit the changes to llvm core to update the functions to support differen...Micah Villmow1-4/+8
2012-10-11Revert 165732 for further review.Micah Villmow1-7/+4
2012-10-11Add in the first iteration of support for llvm/clang/lldb to allow variable p...Micah Villmow1-4/+7
2012-10-08Move TargetData to DataLayout.Micah Villmow1-14/+14
2012-09-05Stop casting away const qualifier needlessly.Roman Divacky1-1/+1
2012-08-21MCJIT: Tidy up the constructor.Jim Grosbach1-1/+2
2012-04-08EngineBuilder::create is expected to take ownership of the TargetMachine pass...Benjamin Kramer1-3/+5
2012-03-23Make it feasible for clients using EngineBuilder to capture the TargetMachine...Owen Anderson1-31/+29
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper1-2/+2
2012-01-24add more support for ConstantDataSequentialChris Lattner1-11/+27
2011-12-12ExecutionEngine: refactor interfaceDylan Noblesmith1-7/+14
2011-12-07EngineBuilder: support for custom TargetOptions. Fixes thePeter Collingbourne1-1/+4
2011-12-01ExecutionEngine: honor optimization levelDylan Noblesmith1-4/+4
2011-07-20- Move CodeModel from a TargetMachine global option to MCCodeGenInfo.Evan Cheng1-5/+3
2011-07-19Convert TargetData::getIndexedOffset to use ArrayRef.Jay Foad1-2/+1
2011-07-19Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng1-3/+4
2011-07-18Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a...Jeffrey Yasskin1-1/+1
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-9/+9
2011-05-13ExecutionEngine: move createJIT() definition (v2)Dylan Noblesmith1-0/+29
2011-05-13ExecutionEngine: push TargetMachine creation into clients (v2)Dylan Noblesmith1-20/+18
2011-05-07Revert ExecutionEngine patches, they either failed to build or broke unit tests.Jakob Stoklund Olesen1-39/+12
2011-05-06ExecutionEngine: move createJIT() definitionDylan Noblesmith1-0/+29
2011-05-06ExecutionEngine: push TargetMachine creation into clientsDylan Noblesmith1-12/+10
2011-04-28Fix the last -Wnon-pod-memset I'm seeing. This is benign, but appearsChandler Carruth1-1/+1
2011-04-11Just because a GlobalVariable's initializer is [N x { i32, void ()* }] doesn'tNick Lewycky1-1/+5
2011-04-08llvm.global_[cd]tor is defined to be either external, or appending with an arrayNick Lewycky1-6/+2
2011-04-06Fix comment to use llvm 2.x syntax.Nick Lewycky1-1/+1
2011-03-04Support unregistering exception frames of functions when they are removed.Eric Christopher1-3/+4
2010-12-04Remove unneeded zero arrays.Benjamin Kramer1-4/+2
2010-11-29Merge System into Support.Michael J. Spencer1-2/+2
2010-11-28PR5207: change APInt::doubleToBits() and APInt::floatToBits() to beJay Foad1-2/+2
2010-11-17lli: Add stub -use-mcjit option, which doesn't currently do anything.Daniel Dunbar1-1/+17
2010-11-13JIT: More nitty style tweakage, aka territory marking.Daniel Dunbar1-192/+140
2010-11-13Fix 80-col violation / non-sensicalness.Daniel Dunbar1-3/+3
2010-10-21Fix the cleanup process of exception information in JIT. Now JITDuncan Sands1-3/+13
2010-05-15improve portability to systems that don't have powf/modf (e.g. solaris 9)Chris Lattner1-2/+2
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner1-9/+9
2010-03-27Avoid leaking the memory allocated for GlobalVariables in the interpreter, byJeffrey Yasskin1-3/+32
2010-03-26Avoid leaking argv and env arrays from lli.Jeffrey Yasskin1-13/+35
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands1-2/+2
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands1-4/+4
2010-02-05Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin1-7/+12