Somehow this wasn't committed last time. M_CLOBBERS_PRED is gone.
[oota-llvm.git] / lib / ExecutionEngine /
2007-07-09 Gabor Greiffix typos
2007-07-05 Gabor GreifHere is the bulk of the sanitizing.
2007-06-30 Evan Cheng(For Chris): Fix failure where we rejected compiling...
2007-06-03 Anton KorobeynikovAdd comments to fallsthrough cases. Also, this fixes...
2007-06-03 Anton KorobeynikovCheck arguments & return types of main(). Abort in...
2007-06-01 Reid SpencerFor PR1486:
2007-05-24 Zhou ShengCompute the correct word number.
2007-05-19 Reid SpencerOn Linux platforms and at optimization levels -O1 and...
2007-05-17 Reid SpencerPrint integer values as both decimal and hexadecimal...
2007-05-16 Reid SpencerAvoid a "loss of precision" error in gcc 4.1.3.
2007-05-16 Reid SpencerImplement printing of instruction result values when...
2007-05-04 Reid SpencerBitcast all the bits of a floating point value, not...
2007-04-26 Reid Spencer1. Don't swap byte order in scanf. It isn't necessary...
2007-04-21 Reid SpencerWe only need one putchar which gives it a shot at getti...
2007-04-20 Chris Lattneravoid mutating a global in an accessor
2007-04-20 Chris Lattnerfit in 80 cols
2007-04-20 Chris Lattnerrename JIT::state -> JIT::jitstate to avoid shadowing...
2007-04-17 Chris Lattnereliminate use of Instruction::getPrev(). Patch by...
2007-04-16 Reid SpencerImplement @sext and @zext parameter attribute handling...
2007-03-30 Reid SpencerFor PR1293:
2007-03-12 Jeff CohenUnbreak C++ build.
2007-03-08 Bill WendlingDon't use std::hex.
2007-03-08 Bill WendlingDon't use a cast. It causes an error on some platforms.
2007-03-06 Reid SpencerFix all of last night's JIT failures in Prolangs-C...
2007-03-06 Anton KorobeynikovImplement PR1240
2007-03-06 Reid Spencer1. Make StoreValueToMemory a little more efficient...
2007-03-06 Reid SpencerFix some thinko's in the last patch. PtrSize has to...
2007-03-06 Reid SpencerFix a bug in IntToPtr. Truncating to 64-bits only works...
2007-03-06 Reid SpencerSimplify code as a result of the change in GenericValue...
2007-03-06 Reid SpencerRadically simplify execution. This patch gets rid of...
2007-03-06 Reid SpencerAdjust and simplify external function processing now...
2007-03-06 Reid SpencerAPInt's are no longer allocated on the heap because...
2007-03-06 Reid SpencerRemove the insufficient code in Interpreter::create...
2007-03-06 Reid SpencerSimplify things significantly because GenericValue...
2007-03-03 Reid SpencerRemove unnecessary #include.
2007-03-03 Reid SpencerDeal with error handling better.
2007-03-03 Reid SpencerComplete the APIntification of the interpreter. All...
2007-03-03 Reid SpencerAvoid memory leakage by having caller construct the...
2007-03-03 Reid SpencerImplement APInt support for the binary operators.
2007-03-03 Reid Spencer1. Have the ExecutionContext keep track of the APInt...
2007-03-03 Reid SpencerImplement loading and storing of APInt values from...
2007-02-24 Chris LattnerFix PR1216 by cleaning up the ownership of JITResolver.
2007-02-15 Reid SpencerFor PR1195:
2007-02-14 Chris LattnerFrom Dan Gohman:
2007-02-14 Chris LattnerGeneralize TargetData strings, to support more interest...
2007-02-13 Chris Lattnereliminate vector-related allocations
2007-02-10 Chris Lattnereliminate use of TargetData::getIndexedOffset that...
2007-02-10 Chris LattnerPrivatize StructLayout::MemberOffsets, adding an accessor
2007-02-08 Reid SpencerFor PR1188:
2007-02-05 Reid SpencerFor PR411:
2007-02-02 Reid SpencerChanges to support making the shift instructions be...
2007-01-30 Reid SpencerFor PR1136: Rename GlobalVariable::isExternal as isDecl...
2007-01-29 Reid SpencerRemove tabs.
2007-01-29 Reid SpencerImplement use of new IntrinsicLowering interface.
2007-01-26 Reid SpencerFor PR761:
2007-01-23 Anton KorobeynikovMoved disassembler to libSystem
2007-01-21 Reid SpencerFor PR970:
2007-01-20 Chris LattnerTeach TargetData to handle 'preferred' alignment for...
2007-01-20 Chris LattnerDOUT still evaluates side effects, even though it doesn...
2007-01-20 Reid SpencerImplement the signed icmp instructions properly. To...
2007-01-20 Reid SpencerImplement bit-accurate sext instruction.
2007-01-19 Reid SpencerFor PR1043:
2007-01-19 Andrew Lenharthfix build on amd64
2007-01-19 Anton KorobeynikovAdding disassembler interface and external hook to...
2007-01-18 Reid SpencerFix a regression in the last patch. When constructing...
2007-01-18 Reid SpencerUse the new maskToBitWidth function to ensure that...
2007-01-18 Reid SpencerAdd an inline helper function that masks a GenericValue...
2007-01-18 Reid SpencerMake shl instruction mask its result to the correct...
2007-01-18 Reid SpencerTwo changes:
2007-01-18 Reid SpencerMake sure we truncate stored values to their bit width.
2007-01-15 Chris Lattnerrename Type::isIntegral to Type::isInteger, eliminating...
2007-01-15 Chris Lattnereliminate calls to Type::isInteger, preferring isIntegr...
2007-01-12 Reid SpencerFor PR1064:
2007-01-12 Reid SpencerImplement review feedback for the ConstantBool->Constan...
2007-01-11 Reid SpencerRename BoolTy as Int1Ty. Patch by Sheng Zhou.
2007-01-11 Zhou ShengFor PR1043:
2006-12-31 Reid SpencerFor PR950:
2006-12-23 Reid SpencerFor PR950:
2006-12-19 Chris Lattnerelimiante Statistic static ctors
2006-12-19 Chris Lattnerremove static ctors from Statistic objects
2006-12-17 Chris LattnerFix PR1057 (compilation on macos 10.3), patch by Scott...
2006-12-14 Jim LaskeySimplify the fetching of relocation mode.
2006-12-14 Jim Laskey1. Tidy up jump table info.
2006-12-12 Reid SpencerChange inferred cast creation calls to more specific...
2006-12-07 Bill WendlingRemoving even more <iostream> includes.
2006-12-07 Bill WendlingChanged llvm_ostream et all to OStream. llvm_cerr,...
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-12-02 Jeff CohenUnbreak VC++ build.
2006-12-01 Anton KorobeynikovIntroducing external weak linkage. Darwin codegen shoul...
2006-11-27 Bill WendlingRemoved #include <iostream> and replaced streams with...
2006-11-27 Reid SpencerFor PR950:
2006-11-16 Evan ChengAllow target to specify alignment for function stub.
2006-11-15 Chris LattnerSimplify IntrinsicLowering and clarify that it is only...
2006-11-09 Chris Lattnerif lazy compilation is disabled, print an error message...
2006-11-09 Chris Lattnerinit ivar
2006-11-08 Jim LaskeyRemove redundant <cmath>.
2006-11-08 Reid SpencerFor PR950:
2006-11-02 Reid SpencerFor PR786:
2006-11-02 Reid SpencerRemove a function prototype that is no longer needed...
2006-11-02 Reid SpencerFor PR950:
next