aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
AgeCommit message (Expand)AuthorFilesLines
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
2010-02-03r94686 changed all ModuleProvider parameters to Modules, which made theJeffrey Yasskin1-4/+0
2010-01-27Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin1-48/+21
2010-01-15Fix http://llvm.org/PR6028, an assertion failure when an UndefValue ofJay Foad1-2/+16
2010-01-05Move remaining stuff to the isInteger predicate.Benjamin Kramer1-5/+3
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer1-4/+2
2010-01-05Change errs() to dbgs().David Greene1-6/+6
2009-11-17Add ability to set code model within the execution engine buildersEric Christopher1-2/+3
2009-11-09Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin1-1/+0
2009-10-29add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner1-1/+4
2009-10-27Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin1-1/+1
2009-10-23Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin1-18/+22
2009-10-13Make the ExecutionEngine automatically remove global mappings on when theirJeffrey Yasskin1-30/+47
2009-10-09ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverseJeffrey Yasskin1-16/+19
2009-10-06Introduce and use convenience methods for getting pointer typesDuncan Sands1-1/+1
2009-10-05strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner1-11/+11
2009-09-23errorstr can be null, don't unconditionally set it. Only report thatChris Lattner1-6/+9
2009-09-23Make EngineBuilder return more error codes, by KS Sreeram.Chris Lattner1-13/+22
2009-08-23just remove interpreter support for endianness mismatches. This wasChris Lattner1-12/+0
2009-08-23remove use of alloca.hChris Lattner1-5/+7
2009-08-23remove a few DOUTs here and there.Chris Lattner1-3/+3
2009-08-23remove the std::ostream version of module and type printing.Chris Lattner1-2/+2