summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/ExecutionEngine.cpp
Commit message (Expand)AuthorAge
* improve portability to systems that don't have powf/modf (e.g. solaris 9)Chris Lattner2010-05-15
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-07
* Avoid leaking the memory allocated for GlobalVariables in the interpreter, byJeffrey Yasskin2010-03-27
* Avoid leaking argv and env arrays from lli.Jeffrey Yasskin2010-03-26
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-16
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-15
* Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp.Jeffrey Yasskin2010-02-05
* r94686 changed all ModuleProvider parameters to Modules, which made theJeffrey Yasskin2010-02-03
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-27
* Fix http://llvm.org/PR6028, an assertion failure when an UndefValue ofJay Foad2010-01-15
* Move remaining stuff to the isInteger predicate.Benjamin Kramer2010-01-05
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-05
* Change errs() to dbgs().David Greene2010-01-05
* Add ability to set code model within the execution engine buildersEric Christopher2009-11-17
* Remove dlsym stubs, with Nate Begeman's permission.Jeffrey Yasskin2009-11-09
* add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner2009-10-29
* Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin2009-10-27
* Fix http://llvm.org/PR4822: allow module deletion after a function has beenJeffrey Yasskin2009-10-23
* Make the ExecutionEngine automatically remove global mappings on when theirJeffrey Yasskin2009-10-13
* ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverseJeffrey Yasskin2009-10-09
* Introduce and use convenience methods for getting pointer typesDuncan Sands2009-10-06
* strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner2009-10-05
* errorstr can be null, don't unconditionally set it. Only report thatChris Lattner2009-09-23
* Make EngineBuilder return more error codes, by KS Sreeram.Chris Lattner2009-09-23
* just remove interpreter support for endianness mismatches. This wasChris Lattner2009-08-23
* remove use of alloca.hChris Lattner2009-08-23
* remove a few DOUTs here and there.Chris Lattner2009-08-23
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-23
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* To catch bugs like the one fixed inJeffrey Yasskin2009-08-07
* Make ExecutionEngine::updateGlobalMapping(GV, NULL) properly remove GV's oldJeffrey Yasskin2009-08-04
* Eliminate some uses of DOUT, cerr, and getNameStart().Daniel Dunbar2009-07-26
* Simplify / normalize some uses of Value::getName.Daniel Dunbar2009-07-21
* Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner2009-07-18
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-14
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-11
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-11
* Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin2009-07-08
* Introduce new error handling API.Torok Edwin2009-07-07
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-04
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-09
* Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling2009-04-29
* The second part of the change from -fast to -O#. This changes the JIT to acceptBill Wendling2009-04-29
* fix one more fp80 case (used only by Interpreter)Dale Johannesen2009-03-24
* Change JIT for different layout of fp80.Dale Johannesen2009-03-24
* Add support to the JIT for true non-lazy operation. When a call to a functionNate Begeman2009-02-18
* allow main to have any integer type.Chris Lattner2009-02-04
* Add support for deleting a module provider from a JIT in such a way that it d...Nate Begeman2009-01-23
* rename methods in System/Host to be more consistent.Chris Lattner2009-01-22
* Add the private linkage.Rafael Espindola2009-01-15