aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter
AgeCommit message (Expand)Author
2008-10-08Add <cstdio> include where needed by gcc-4.4.Duncan Sands
2008-09-25 Large mechanical patch.Devang Patel
2008-09-23s/ParameterAttributes/Attributes/gDevang Patel
2008-09-22Initial support for the CMake build system.Oscar Fuentes
2008-08-08Add new parameter Fast to createJIT to enable the fast codegen path.Evan Cheng
2008-08-05Use strcpy instead of sprintf here. This avoids a GCC 4.3 format-stringDan Gohman
2008-07-08Add a new hidden option to the interpreter to cause it to printChris Lattner
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
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
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