aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
AgeCommit message (Expand)Author
2007-09-21#ifdef out unsafe tracing code, which fixes PR1689Chris Lattner
2007-09-17Implement x86 long double in jit (not reallyDale Johannesen
2007-09-06Next round of APFloat changes.Dale Johannesen
2007-08-23rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()Chris Lattner
2007-08-13move assertion into mutex guard, a partial fix for PR1606.Chris Lattner
2007-08-11Fix a comment typo noticed by Sandro Magi.Reid Spencer
2007-08-08eliminate redundant conditions from the signless types conversion.Chris Lattner
2007-08-01New CallInst interface to address GLIBCXX_DEBUG errors caused byDavid Greene
2007-07-30Add a comment: don't expect from external function resolver in interpreterAnton Korobeynikov
2007-07-30Add detection of __dso_handle presence during configure. Use this information...Anton Korobeynikov
2007-07-30More explicit keywords.Dan Gohman
2007-07-27VStudio compiler errors and placing Function*->ExFunc map under ManagedStatic...Chuck Rose III
2007-07-19Hush a noisy warning from GCC 4.2 about overflow during conversion by usingReid Spencer
2007-07-09fix typosGabor Greif
2007-07-05Here is the bulk of the sanitizing.Gabor Greif
2007-06-30(For Chris): Fix failure where we rejected compiling stubs when lazy compilat...Evan Cheng
2007-06-03Add comments to fallsthrough cases. Also, this fixes PR1492Anton Korobeynikov
2007-06-03Check arguments & return types of main(). Abort in case of no match.Anton Korobeynikov
2007-06-01For PR1486:Reid Spencer
2007-05-24Compute the correct word number.Zhou Sheng
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-20avoid mutating a global in an accessorChris Lattner
2007-04-20fit in 80 colsChris Lattner
2007-04-20rename JIT::state -> JIT::jitstate to avoid shadowing ExecutionEngine::stateChris Lattner
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-12Unbreak C++ build.Jeff Cohen
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 all of last night's JIT failures in Prolangs-C++ by finishing theReid Spencer
2007-03-06Implement PR1240Anton Korobeynikov
2007-03-061. Make StoreValueToMemory a little more efficient by not requiring callerReid Spencer
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-06Simplify code as a result of the change in GenericValue to have a singleReid 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-06Simplify things significantly because GenericValue now has a single integerReid 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