aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter
AgeCommit message (Expand)Author
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
2008-02-20Added memmove to interpreter external functions list. Patch by Daniel Dunbar.Evan Cheng
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-29remove attribution from lib Makefiles.Chris Lattner
2007-12-14Add explicit keywords, and fix a minor typo that they uncovered.Dan Gohman
2007-12-12Add a guard to cxxabi header as other platform mayZhou Sheng
2007-12-12Fixed PR1629.Zhou Sheng
2007-12-10It looks like this has been broken for some time -Duncan Sands
2007-12-06simplify creation of the interpreter, make ExecutionEngine ctor protected,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-07-30Add a comment: don't expect from external function resolver in interpreterAnton Korobeynikov
2007-07-30More explicit keywords.Dan Gohman
2007-07-27VStudio compiler errors and placing Function*->ExFunc map under ManagedStatic...Chuck Rose III
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