aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Execution.cpp
AgeCommit message (Expand)Author
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
2007-03-06Radically simplify execution. This patch gets rid of all the specialReid Spencer
2007-03-03Complete the APIntification of the interpreter. All asserts for > 64 bitsReid Spencer
2007-03-03Implement APInt support for the binary operators.Reid Spencer
2007-02-14From Dan Gohman:Chris Lattner
2007-02-10Privatize StructLayout::MemberOffsets, adding an accessorChris Lattner
2007-02-08For PR1188:Reid Spencer
2007-02-02Changes to support making the shift instructions be true BinaryOperators.Reid Spencer
2007-01-30For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoidReid Spencer
2007-01-21For PR970:Reid Spencer
2007-01-20Implement the signed icmp instructions properly. To do this we introduceReid Spencer
2007-01-20Implement bit-accurate sext instruction.Reid Spencer
2007-01-18Use the new maskToBitWidth function to ensure that the results ofReid Spencer
2007-01-18Make shl instruction mask its result to the correct bitsize. This isReid Spencer
2007-01-18Two changes:Reid Spencer
2007-01-15rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger.Chris Lattner
2007-01-15eliminate calls to Type::isInteger, preferring isIntegral instead.Chris Lattner
2007-01-12For PR1064:Reid Spencer
2007-01-11Rename BoolTy as Int1Ty. Patch by Sheng Zhou.Reid Spencer
2006-12-31For PR950:Reid Spencer
2006-12-23For PR950:Reid Spencer
2006-12-19elimiante Statistic static ctorsChris Lattner
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-12-02Unbreak VC++ build.Jeff Cohen