aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine/Interpreter/Execution.cpp
Commit message (Expand)AuthorAgeFilesLines
* llvm::SwitchInstStepan Dyatkovskiy2012-03-111-1/+1
* Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:Stepan Dyatkovskiy2012-03-081-5/+3
* Remove dead code. Improve llvm_unreachable text. Simplify some control flow.Ahmed Charles2012-02-191-1/+1
* [unwind removal] We no longer have 'unwind' instructions being generated, soBill Wendling2012-02-061-18/+0
* SwitchInst refactoring.Stepan Dyatkovskiy2012-02-011-2/+2
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-1/+0
* Clean up uses of switch instructions so they are not dependent on the operand...Eli Friedman2011-09-291-7/+10
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-59/+59
* PR5207: change APInt::doubleToBits() and APInt::floatToBits() to beJay Foad2010-11-281-4/+2
* Handle execution entrypoints with non-integer return types.Dan Gohman2010-06-181-1/+1
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-071-2/+2
* 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
* Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer2010-01-051-1/+1
* Change errs() to dbgs().David Greene2010-01-051-38/+38
* 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-291-12/+19
* Remove FreeInst.Victor Hernandez2009-10-261-8/+0
* Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez2009-10-231-1/+1
* strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner2009-10-051-11/+9
* 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-231-42/+40
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-11/+14
* llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like...Benjamin Kramer2009-08-031-1/+1
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-30/+30
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-3/+3
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-111-30/+30
* remove dead function.Chris Lattner2009-07-091-9/+0
* Get rid of unnecessary global variables.Owen Anderson2009-06-261-6/+1
* Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman2009-06-041-30/+26
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-091-2/+2
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-011-2/+2
* don't assert and die on out of range (undefined) shifts. This fixesChris Lattner2009-01-161-4/+16
* Rename getABITypeSize to getTypePaddedSize, asDuncan Sands2009-01-121-2/+2
* Large mechanical patch.Devang Patel2008-09-251-2/+2
* s/ParameterAttributes/Attributes/gDevang Patel2008-09-231-1/+0
* Add a new hidden option to the interpreter to cause it to printChris Lattner2008-07-081-0/+8
* fix warnings with assertions disabled.Chris Lattner2008-04-061-21/+6
* Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov2008-02-201-11/+12
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-201-1/+2
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Add some convenience methods for querying attributes, andDuncan Sands2007-11-281-12/+9
* Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands2007-11-011-2/+2
* Fix an assertion abort on sparc. malloc(0) is allowed toGabor Greif2007-10-111-1/+3
* #ifdef out unsafe tracing code, which fixes PR1689Chris Lattner2007-09-211-15/+17
* rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()Chris Lattner2007-08-231-2/+3
* For PR1486:Reid Spencer2007-06-011-1/+1
* Print integer values as both decimal and hexadecimal for convenienceReid Spencer2007-05-171-1/+1
* Avoid a "loss of precision" error in gcc 4.1.3.Reid Spencer2007-05-161-1/+1
* Implement printing of instruction result values when debug info is turnedReid Spencer2007-05-161-0/+21