aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter
Commit message (Expand)AuthorAgeFilesLines
* Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally."Michael J. Spencer2010-09-131-7/+0
* CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.Michael J. Spencer2010-09-101-0/+7
* Convert some tab stops into spaces.Duncan Sands2010-07-121-1/+1
* Handle execution entrypoints with non-integer return types.Dan Gohman2010-06-181-1/+1
* Fix an ancient FIXME.Dan Gohman2010-05-011-3/+1
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-072-7/+7
* Typo noticed by Duncan.Torok Edwin2010-03-301-1/+1
* Don't overwrite previous value, if it succeeded.Torok Edwin2010-03-301-1/+2
* Honour addGlobalMapping() in the interpreter, if it was used to add mappings forTorok Edwin2010-03-301-0/+1
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-161-5/+5
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-151-9/+9
* Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer2010-01-281-3/+4
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-272-9/+8
* make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.Chris Lattner2010-01-241-1/+0
* Stop building RTTI information for *most* llvm libraries. NotableChris Lattner2010-01-221-0/+2
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-051-1/+1
* These should probably be errs().David Greene2010-01-051-3/+3
* Change errs() to dbgs().David Greene2010-01-051-3/+3
* Change errs() to dbgs().David Greene2010-01-051-38/+38
* Fix passing of float arguments through ffi.Nick Lewycky2009-11-181-1/+1
* Fail less mysteriously; inform the user that their LLVM was not built withNick Lewycky2009-11-171-0/+3
* Remove ByteswapSCANFResults, it is dead.Daniel Dunbar2009-11-081-76/+0
* We don't need to byteswap, the interpreter assumes the program is runningNick Lewycky2009-11-081-8/+1
* Fix the interpreter to not crash due to zeroext/signextNick Lewycky2009-11-081-10/+0
* add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner2009-10-292-12/+21
* Remove FreeInst.Victor Hernandez2009-10-262-9/+0
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez2009-10-232-2/+2
* strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner2009-10-051-11/+9
* Stop using alloca.Nick Lewycky2009-09-181-17/+14
* Some platforms may need malloc.h for alloca.Daniel Dunbar2009-09-171-3/+6
* remove some uses of llvm/Support/Streams.hChris Lattner2009-08-231-4/+4
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-231-4/+4
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-232-46/+44
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-132-20/+26
* This void is implicit in C++.Dan Gohman2009-08-121-1/+1
* MSVC warning fixes; patch by Stein Roger!Daniel Dunbar2009-08-071-0/+11
* llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like...Benjamin Kramer2009-08-031-1/+1
* Switch to getNameStr().Daniel Dunbar2009-07-241-3/+3
* Simplify some uses of Value::getName()Daniel Dunbar2009-07-221-2/+2
* Add EngineBuilder to ExecutionEngine in favor of the five optional argument E...Reid Kleckner2009-07-182-6/+2
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-142-32/+32
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-112-5/+8
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-112-41/+43
* remove dead function.Chris Lattner2009-07-091-9/+0
* Add an option to allocate JITed global data separately from code. ByJeffrey Yasskin2009-07-082-3/+4
* Have scoped mutexes take referenes instead of pointers.Owen Anderson2009-07-071-2/+2
* Get rid of unnecessary global variables.Owen Anderson2009-06-262-7/+2
* Fix the Ocaml bindings for the ExecutionEngine: with the change to buildBob Wilson2009-06-241-4/+1
* Eliminate object-relinking support from CMake. Fixes PR 4429 andDouglas Gregor2009-06-231-1/+1