summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter
Commit message (Expand)AuthorAge
...
* Land the long talked about "type system rewrite" patch. ThisChris Lattner2011-07-09
* eliminate the Type::getDescription() method, using "<<" instead. This Chris Lattner2011-06-18
* Fix libffi usage when it is on a custom path.Oscar Fuentes2011-01-28
* Use the paths to libffi's header and library even when no customOscar Fuentes2011-01-27
* Handles libffi on the CMake build.Oscar Fuentes2011-01-21
* Merge System into Support.Michael J. Spencer2010-11-29
* PR5207: change APInt::doubleToBits() and APInt::floatToBits() to beJay Foad2010-11-28
* Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally."Michael J. Spencer2010-09-13
* CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.Michael J. Spencer2010-09-10
* Convert some tab stops into spaces.Duncan Sands2010-07-12
* Handle execution entrypoints with non-integer return types.Dan Gohman2010-06-18
* Fix an ancient FIXME.Dan Gohman2010-05-01
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-07
* Typo noticed by Duncan.Torok Edwin2010-03-30
* Don't overwrite previous value, if it succeeded.Torok Edwin2010-03-30
* Honour addGlobalMapping() in the interpreter, if it was used to add mappings forTorok Edwin2010-03-30
* 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
* Replace strcpy with memcpy when we have the length around anyway.Benjamin Kramer2010-01-28
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-27
* make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.Chris Lattner2010-01-24
* Stop building RTTI information for *most* llvm libraries. NotableChris Lattner2010-01-22
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-05
* These should probably be errs().David Greene2010-01-05
* Change errs() to dbgs().David Greene2010-01-05
* Change errs() to dbgs().David Greene2010-01-05
* Fix passing of float arguments through ffi.Nick Lewycky2009-11-18
* Fail less mysteriously; inform the user that their LLVM was not built withNick Lewycky2009-11-17
* Remove ByteswapSCANFResults, it is dead.Daniel Dunbar2009-11-08
* We don't need to byteswap, the interpreter assumes the program is runningNick Lewycky2009-11-08
* Fix the interpreter to not crash due to zeroext/signextNick Lewycky2009-11-08
* add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner2009-10-29
* Remove FreeInst.Victor Hernandez2009-10-26
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-26
* Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez2009-10-23
* strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner2009-10-05
* Stop using alloca.Nick Lewycky2009-09-18
* Some platforms may need malloc.h for alloca.Daniel Dunbar2009-09-17
* remove some uses of llvm/Support/Streams.hChris Lattner2009-08-23
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-23
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-23
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* This void is implicit in C++.Dan Gohman2009-08-12
* MSVC warning fixes; patch by Stein Roger!Daniel Dunbar2009-08-07
* llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like...Benjamin Kramer2009-08-03
* Switch to getNameStr().Daniel Dunbar2009-07-24
* Simplify some uses of Value::getName()Daniel Dunbar2009-07-22
* 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