aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter
AgeCommit message (Expand)Author
2007-06-01For PR1486:Reid Spencer
2007-05-19On Linux platforms and at optimization levels -O1 and above, llvm-gcc canReid 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-21We only need one putchar which gives it a shot at getting matched by itsReid 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-30For PR1293:Reid 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-06Adjust and simplify external function processing now that GenericValue hasReid Spencer
2007-03-06APInt's are no longer allocated on the heap because they are directReid Spencer
2007-03-06Remove the insufficient code in Interpreter::create that computed theReid Spencer
2007-03-03Remove unnecessary #include.Reid Spencer
2007-03-03Deal with error handling better.Reid 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-03-031. Have the ExecutionContext keep track of the APInt's allocated andReid 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-29Remove tabs.Reid Spencer
2007-01-29Implement use of new IntrinsicLowering interface.Reid Spencer
2007-01-26For PR761:Reid 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-18Add an inline helper function that masks a GenericValue to a specifiedReid 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-07Removing even more <iostream> includes.Bill Wendling
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