aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner1-59/+59
2010-11-28PR5207: change APInt::doubleToBits() and APInt::floatToBits() to beJay Foad1-4/+2
2010-06-18Handle execution entrypoints with non-integer return types.Dan Gohman1-1/+1
2010-04-07rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner1-2/+2
2010-02-16There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands1-5/+5
2010-02-15Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands1-9/+9
2010-01-05Avoid going through the LLVMContext for type equality where it's safe to dere...Benjamin Kramer1-1/+1
2010-01-05Change errs() to dbgs().David Greene1-38/+38
2009-11-08Fix the interpreter to not crash due to zeroext/signextNick Lewycky1-10/+0
2009-10-29add interpreter support for indirect goto / blockaddress. The interpreterChris Lattner1-12/+19
2009-10-26Remove FreeInst.Victor Hernandez1-8/+0
2009-10-23Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su...Victor Hernandez1-1/+1
2009-10-05strength reduce a ton of type equality tests to check the typeid (ThroughChris Lattner1-11/+9
2009-08-23remove the std::ostream version of module and type printing.Chris Lattner1-4/+4
2009-08-23eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner1-42/+40
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson1-11/+14
2009-08-03llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like...Benjamin Kramer1-1/+1
2009-07-14llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin1-30/+30
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin1-3/+3
2009-07-11Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin1-30/+30
2009-07-09remove dead function.Chris Lattner1-9/+0
2009-06-26Get rid of unnecessary global variables.Owen Anderson1-6/+1
2009-06-04Split the Add, Sub, and Mul instruction opcodes into separateDan Gohman1-30/+26
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands1-2/+2
2009-04-01Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman1-2/+2
2009-01-16don't assert and die on out of range (undefined) shifts. This fixesChris Lattner1-4/+16
2009-01-12Rename getABITypeSize to getTypePaddedSize, asDuncan Sands1-2/+2
2008-09-25 Large mechanical patch.Devang Patel1-2/+2
2008-09-23s/ParameterAttributes/Attributes/gDevang Patel1-1/+0
2008-07-08Add a new hidden option to the interpreter to cause it to printChris Lattner1-0/+8
2008-04-06fix warnings with assertions disabled.Chris Lattner1-21/+6
2008-02-20Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov1-11/+12
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov1-1/+2
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner1-2/+2
2007-11-28Add some convenience methods for querying attributes, andDuncan Sands1-12/+9
2007-11-01Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands1-2/+2
2007-10-11Fix an assertion abort on sparc. malloc(0) is allowed toGabor Greif1-1/+3
2007-09-21#ifdef out unsafe tracing code, which fixes PR1689Chris Lattner1-15/+17
2007-08-23rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()Chris Lattner1-2/+3
2007-06-01For PR1486:Reid Spencer1-1/+1
2007-05-17Print integer values as both decimal and hexadecimal for convenienceReid Spencer1-1/+1
2007-05-16Avoid a "loss of precision" error in gcc 4.1.3.Reid Spencer1-1/+1
2007-05-16Implement printing of instruction result values when debug info is turnedReid Spencer1-0/+21
2007-05-04Bitcast all the bits of a floating point value, not just one. The zeroReid Spencer1-0/+2
2007-04-261. Don't swap byte order in scanf. It isn't necessary and leads toReid Spencer1-1/+1
2007-04-17eliminate use of Instruction::getPrev(). Patch by Gabor Greif in 2005.Chris Lattner1-3/+6
2007-04-16Implement @sext and @zext parameter attribute handling properly instead ofReid Spencer1-11/+20
2007-03-08Don't use std::hex.Bill Wendling1-1/+1
2007-03-08Don't use a cast. It causes an error on some platforms.Bill Wendling1-1/+1
2007-03-06Fix some thinko's in the last patch. PtrSize has to be in bits and weReid Spencer1-2/+2