aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/ExecutionEngine.cpp
AgeCommit message (Expand)Author
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper
2012-01-24add more support for ConstantDataSequentialChris Lattner
2011-12-12ExecutionEngine: refactor interfaceDylan Noblesmith
2011-12-07EngineBuilder: support for custom TargetOptions. Fixes thePeter Collingbourne
2011-12-01ExecutionEngine: honor optimization levelDylan Noblesmith
2011-07-20- Move CodeModel from a TargetMachine global option to MCCodeGenInfo.Evan Cheng
2011-07-19Convert TargetData::getIndexedOffset to use ArrayRef.Jay Foad
2011-07-19Introduce MCCodeGenInfo, which keeps information that can affect codegenEvan Cheng
2011-07-18Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a...Jeffrey Yasskin
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-05-13ExecutionEngine: move createJIT() definition (v2)Dylan Noblesmith
2011-05-13ExecutionEngine: push TargetMachine creation into clients (v2)Dylan Noblesmith
2011-05-07Revert ExecutionEngine patches, they either failed to build or broke unit tests.Jakob Stoklund Olesen
2011-05-06ExecutionEngine: move createJIT() definitionDylan Noblesmith
2011-05-06ExecutionEngine: push TargetMachine creation into clientsDylan Noblesmith
2011-04-28Fix the last -Wnon-pod-memset I'm seeing. This is benign, but appearsChandler Carruth
2011-04-11Just because a GlobalVariable's initializer is [N x { i32, void ()* }] doesn'tNick Lewycky
2011-04-08llvm.global_[cd]tor is defined to be either external, or appending with an arrayNick Lewycky
2011-04-06Fix comment to use llvm 2.x syntax.Nick Lewycky
2011-03-04Support unregistering exception frames of functions when they are removed.Eric Christopher
2010-12-04Remove unneeded zero arrays.Benjamin Kramer
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-28PR5207: change APInt::doubleToBits() and APInt::floatToBits() to beJay Foad
2010-11-17lli: Add stub -use-mcjit option, which doesn't currently do anything.Daniel Dunbar
2010-11-13JIT: More nitty style tweakage, aka territory marking.Daniel Dunbar
2010-11-13Fix 80-col violation / non-sensicalness.Daniel Dunbar
2010-10-21Fix the cleanup process of exception information in JIT. Now JITDuncan Sands
2010-05-15improve portability to systems that don't have powf/modf (e.g. solaris 9)Chris Lattner
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner
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-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands
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-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin
2010-01-15Fix http://llvm.org/PR6028, an assertion failure when an UndefValue ofJay Foad
2010-01-05Move remaining stuff to the isInteger predicate.Benjamin Kramer
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer
2010-01-05Change errs() to dbgs().David Greene
2009-11-17Add ability to set code model within the execution engine buildersEric Christopher
2009-11-09Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin
2009-10-29add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner
2009-10-27Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin
2009-10-23Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin
2009-10-13Make the ExecutionEngine automatically remove global mappings on when theirJeffrey Yasskin
2009-10-09ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverseJeffrey Yasskin
2009-10-06Introduce and use convenience methods for getting pointer typesDuncan Sands
2009-10-05strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner
2009-09-23errorstr can be null, don't unconditionally set it. Only report thatChris Lattner