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