oota-llvm.git
2006-05-06 Chris LattnerAdd some new methods for computing sign bit information.
2006-05-06 Chris LattnerWhen inserting casts, be careful of where we put them...
2006-05-06 Chris Lattnernew testcase
2006-05-06 Chris LattnerMove some code around.
2006-05-06 Chris Lattnernew testcase from ghostscript that inf looped instcombine
2006-05-06 Chris LattnerTeach the X86 backend about non-i32 inline asm register...
2006-05-06 Chris LattnerFold (trunc (srl x, c)) -> (srl (trunc x), c)
2006-05-05 Chris LattnerFold trunc(any_ext). This gives stuff like:
2006-05-05 Chris LattnerShrink shifts when possible.
2006-05-05 Chris LattnerImplement ComputeMaskedBits/SimplifyDemandedBits for...
2006-05-05 Chris LattnerPrint a grouping around inline asm blocks so that we...
2006-05-05 Chris LattnerPrint *some* grouping around inline asm blocks so we...
2006-05-05 Chris LattnerIndent multiline asm strings more nicely
2006-05-05 Chris LattnerTeach the code generator to use cvtss2sd as extload...
2006-05-05 Chris LattnerFold (fpext (load x)) -> (extload x)
2006-05-05 Chris LattnerMore aggressively sink GEP offsets into loops. For...
2006-05-05 Chris LattnerFix an infinite loop compiling oggenc last night.
2006-05-05 Evan ChengNeed extload patterns after Chris' DAG combiner changes
2006-05-05 Chris LattnerImplement InstCombine/cast.ll:test29
2006-05-05 Chris LattnerNew testcase
2006-05-05 Chris LattnerFold some common code.
2006-05-05 Chris LattnerImplement:
2006-05-05 Chris LattnerPull and through and/or/xor. This compiles some bitfie...
2006-05-05 Chris LattnerImplement a variety of simplifications for ANY_EXTEND.
2006-05-05 Chris LattnerFactor some code, add these transformations:
2006-05-05 Evan ChengBetter implementation of truncate. ISel matches it...
2006-05-05 Chris LattnerNew note, Nate, please check to see if I'm full of...
2006-05-05 Jeff CohenFix VC++ compilation error.
2006-05-05 Nate BegemanSomehow, I missed this part of the checkin a couple...
2006-05-05 Chris LattnerSink noop copies into the basic block that uses them...
2006-05-05 Chris LattnerAdd a helper method.
2006-05-04 Chris Lattnerwrap long line
2006-05-04 Chris LattnerAdjust to use proper TargetData copy ctor
2006-05-04 Chris LattnerFix this to be a proper copy ctor
2006-05-04 Chris LattnerFinal pass of minor cleanups for MachineInstr
2006-05-04 Evan ChengInitial support for register pressure aware scheduling...
2006-05-04 Chris LattnerRemove redundancy and a level of indirection when creat...
2006-05-04 Chris LattnerMove register numbers out of "extra" into "contents...
2006-05-04 Chris LattnerRemove and simplify some more machineinstr/machineopera...
2006-05-04 Chris LattnerRename MO_VirtualRegister -> MO_Register. Clean up...
2006-05-04 Chris Lattnerremove hasAllocatedReg
2006-05-04 Chris LattnerMove some methods out of MachineInstr into MachineOperand
2006-05-04 Chris LattnerFix Transforms/InstCombine/2006-05-04-DemandedBitCrash.ll
2006-05-04 Chris Lattnernew testcase that crashes the instcombine pass
2006-05-04 Chris LattnerThere shalt be only one "immediate" operand type!
2006-05-04 Chris LattnerChange "value" in MachineOperand to be a GlobalValue...
2006-05-04 Chris LattnerRevert Nate's CR patch from last night, which caused...
2006-05-04 Jeff CohenMake external globals public; other minor cleanup.
2006-05-04 Jeff CohenMake Intel syntax the default when LLVM is built with...
2006-05-04 Chris LattnerRemove a bunch more dead V9 specific stuff
2006-05-04 Chris LattnerRemove a bunch more SparcV9 specific stuff
2006-05-04 Chris LattnerRemove some more V9-specific stuff.
2006-05-04 Chris LattnerRemove some more unused stuff from MachineInstr that...
2006-05-04 Chris LattnerSimplify handling of relocations
2006-05-03 Evan ChengUse movsd to shuffle in the lowest two elements of...
2006-05-03 Chris LattnerChange from using MachineRelocation ctors to using...
2006-05-03 Chris Lattnerminor cleanups, no functionality change
2006-05-03 Chris LattnerCleanup the internal implementation of MachineRelocatio...
2006-05-03 Reid SpencerAttempt to get this script working on Darwin.
2006-05-03 Reid SpencerFor PR764:
2006-05-03 Chris Lattnerinline a simple method
2006-05-03 Chris LattnerSuck block address tracking out of targets into the...
2006-05-03 Chris LattnerFix a bug in Owen's checkin that broke the CBE on all...
2006-05-03 Nate BegemanTeach the x86 jit how to handle jump tables not directl...
2006-05-03 Nate BegemanFinish up the initial jump table implementation by...
2006-05-03 Evan ChengA few instruction scheduling test cases.
2006-05-03 Evan ChengBottom up register pressure reduction work: clean up...
2006-05-03 Evan ChengSet isStore of instructions with ISD::TRUNCSTORE root...
2006-05-03 Owen AndersonRefactor TargetMachine, pushing handling of TargetData...
2006-05-03 Chris LattnerAlign function bodies correctly.
2006-05-03 Chris LattnerAdd a new emitAlignment method
2006-05-03 Chris LattnerSimplify some code. Don't add memory blocks to the...
2006-05-03 Chris LattnerAdd assertions that verify that the actual arguments...
2006-05-03 Chris LattnerChange the BasicBlockAddrs map to be a vector, indexed...
2006-05-03 Chris LattnerKeep the alpha JIT similar to the PPC/X86 jits
2006-05-03 Jeff CohenKeep Visual Studio happy.
2006-05-03 Chris LattnerSimplify some code
2006-05-02 Chris LattnerSeveral related changes:
2006-05-02 Chris LattnerAdd a method for allocating space from the code buffer.
2006-05-02 Nate BegemanRemove some stuff from the README
2006-05-02 Chris LattnerDo not make the JIT memory manager manage the memory...
2006-05-02 Chris LattnerMinor cleanups, no functionality change.
2006-05-02 Chris LattnerFix a purely hypothetical problem (for now): emitWord...
2006-05-02 Chris LattnerRefactor the machine code emitter interface to pull...
2006-05-02 Nate BegemanSince we don't handle callee-save CRs right yet, don...
2006-05-02 Nate BegemanPrint function number instead of name
2006-05-02 Nate BegemanHooray, everyone now uses the same printBasicBlockLabel...
2006-05-02 Chris LattnerRemove dead method
2006-05-02 Chris LattnerRemove a now-dead method
2006-05-02 Chris LattnerThere is no reason to use a virtual method to store...
2006-05-02 Chris LattnerRemove the debug machine code emitter. The "FilePrinte...
2006-05-02 Chris LattnerRemove the debug machine code emitter. The "FilePrinte...
2006-05-02 Nate BegemanExtend printBasicBlockLabel a bit so that it can be...
2006-05-02 Nate BegemanUpdate the PPC compilation callback code to not need...
2006-05-02 Chris LattnerAdd pass ID's for various passes, so they can be AddReq...
2006-05-02 Jeff CohenDe-virtualize SwitchSection.
2006-05-02 Jeff CohenDe-virtualize EmitZeroes.
2006-05-02 Jeff CohenFinish support for Microsoft ML/MASM. May still be...
2006-05-02 Jeff CohenMake Intel syntax mode friendlier to Microsoft ML assem...
2006-05-01 Chris LattnerPut instruction names into the first non TargetInstrInf...
next