silence a bogus gcc warning
[oota-llvm.git] / lib / Transforms /
2006-03-22 Chris Lattnersilence a bogus gcc warning
2006-03-19 Chris LattnerTeach cee to propagate through switch statements. ...
2006-03-18 Evan Cheng- Fixed a bogus if condition.
2006-03-18 Evan ChengSort StrideOrder so we can process the smallest strides...
2006-03-17 Evan ChengAllow users of iv / stride to be rewritten with express...
2006-03-16 Evan ChengFor each loop, keep track of all the IV expressions...
2006-03-15 Chris LattnerTeach the strip pass to strip type names in addition...
2006-03-14 Chris LattnerImplement a FIXME, recusively reassociating
2006-03-14 Chris Lattnerextract some code into a method, no functionality change
2006-03-14 Chris LattnerPromote shifts by a constant to multiplies so that...
2006-03-13 Evan ChengAdded target lowering hooks which LSR consults to make...
2006-03-13 Jim LaskeyHandle the removal of the debug chain.
2006-03-09 Chris Lattneruse autogenerated side-effect information
2006-03-09 Chris Lattnerfix a pasto
2006-03-08 Chris LattnerFix a miscompilation of 188.ammp with the new CFE....
2006-03-07 Jim LaskeySwitch to using a numeric id for anchors.
2006-03-07 Chris LattnerFix ConstantMerge/2006-03-07-DontMergeDiffSections...
2006-03-07 Chris LattnerTeach the alignment handling code to look through const...
2006-03-06 Chris LattnerTeach instcombine to increase the alignment of memset...
2006-03-05 Chris LattnerMake vector narrowing more effective, implementing
2006-03-04 Chris LattnerAdd factoring of multiplications, e.g. turning A*A...
2006-03-04 Chris LattnerCanonicalize (X+C1)*C2 -> X*C2+C1*C2
2006-03-03 Chris LattnerChange this to work with renamed intrinsics.
2006-03-03 Chris LattnerMake this work with renamed intrinsics.
2006-03-02 Chris LattnerGeneralize the REM folding code to handle another case...
2006-02-28 Chris LattnerFix a regression in a patch from a couple of days ago...
2006-02-28 Chris LattnerImplement rem.ll:test[7-9] and PR712
2006-02-28 Chris LattnerSimplify some code now that the RHS of a rem can't...
2006-02-28 Chris LattnerRearrange some code, fold "rem X, 0", implementing...
2006-02-27 Chris LattnerMerge two almost-identical pieces of code.
2006-02-27 Chris LattnerFold (A^B) == A -> B == 0
2006-02-26 Chris LattnerFold (X|C1)^C2 -> X^(C1|C2) when possible. This implements
2006-02-24 Chris LattnerFix a problem that Nate noticed that boils down to...
2006-02-22 Chris LattnerFix Regression/Transforms/LoopUnswitch/2006-02-22-Unswi...
2006-02-22 Chris LattnerAdd some comments, simplify some code, and fix a bug...
2006-02-18 Chris Lattnerimproved support for branch folding, still not enabled.
2006-02-18 Jeff CohenFix bugs identified by VC++.
2006-02-18 Chris LattnerImplement deletion of dead blocks, currently disabled.
2006-02-18 Chris Lattnera previous patch completely disabled trivial unswitchin...
2006-02-18 Chris Lattnerinitial trivial support for folding branches that have...
2006-02-18 Chris LattnerWhen unswitching a loop, make sure to update loop info...
2006-02-18 Chris LattnerFix Transforms/SimplifyCFG/2006-02-17-InfiniteUnroll.ll
2006-02-17 Chris LattnerFix loops where the header has an exit, fixing a loop...
2006-02-17 Chris Lattnerstart of some new simplification code, not thoroughly...
2006-02-16 Nate BegemanRework the SelectionDAG-based implementations of Simpli...
2006-02-16 Chris LattnerChange SplitBlock to increment a BasicBlock::iterator...
2006-02-16 Jeff CohenFix VC++ warning.
2006-02-16 Chris Lattnerfix a bug where we unswitched the wrong way
2006-02-15 Chris LattnerImplement trivial unswitching for switch stmts. This...
2006-02-15 Chris Lattnermake "trivial" unswitching significantly more general...
2006-02-15 Andrew Lenharthfix a bunch of alpha regressions. see bug 709
2006-02-15 Chris LattnerChecking the wrong value. This caused us to emit silly...
2006-02-15 Chris Lattnermore refactoring, no functionality change.
2006-02-15 Chris Lattnerpull some code out into a function
2006-02-14 Chris LattnerCanonicalize inner loops before outer loops. Inner...
2006-02-14 Chris LattnerWhen splitting exit edges to canonicalize loops, make...
2006-02-14 Chris LattnerUse statistics to keep track of what flavors of loops...
2006-02-13 Chris LattnerImplement Instcombine/and.ll:test34
2006-02-13 Chris LattnerIf any of the sign extended bits are demanded, the...
2006-02-13 Chris LattnerBe careful not to request or look at bits shifted in...
2006-02-12 Chris Lattnerremove some more dead special case code
2006-02-12 Chris LattnerEliminate special case hacks that are superceded by...
2006-02-12 Chris LattnerThree changes:
2006-02-12 Chris LattnerRevert my last patch. It too breaks stuff
2006-02-11 Chris LattnerFix for my previously reverted patch
2006-02-11 Chris LattnerPort the recent innovations in ComputeMaskedBits to...
2006-02-11 Chris Lattnerrevert my previous change, it exposed other problems.
2006-02-11 Chris LattnerMake this check stricter. Disallow loop exit blocks...
2006-02-11 Chris Lattnerremove dead expr
2006-02-11 Chris Lattnerimplement unswitching of loops with switch stmts and...
2006-02-10 Chris LattnerUpdate PHI nodes in successors of exit blocks.
2006-02-10 Chris LattnerReform the unswitching code in terms of edge splitting...
2006-02-10 Chris LattnerFix a case where UnswitchTrivialCondition broke critica...
2006-02-10 Chris Lattneradd some notes, move some code around. Implement unswi...
2006-02-10 Chris LattnerMove code around to be more logical, no functionality...
2006-02-10 Chris LattnerWhen unswitching a trivial loop, do admit we are doing...
2006-02-10 Chris LattnerImplement unconditional unswitching of 'trivial' loops...
2006-02-09 Chris LattnerSimplify control flow a bit, note that unswitch preserv...
2006-02-09 Chris LattnerMake the threshold a parameter
2006-02-09 Chris LattnerSimplify the loop-unswitch pass, by not even trying...
2006-02-09 Chris LattnerFix 80-column violations
2006-02-09 Chris LattnerEnhance MVIZ in three ways:
2006-02-08 Chris LattnerSimplify some code, reducing calls to MaskedValueIsZero...
2006-02-08 Chris LattnerUse EraseInstFromFunction in a few cases to put the...
2006-02-08 Chris LattnerImplement some more interesting select sccp cases....
2006-02-08 Chris LattnerFix a problem in my patch yesterday, causing a miscompi...
2006-02-07 Chris LattnerFix Transforms/InstCombine/2006-02-07-SextZextCrash.ll
2006-02-07 Chris LattnerGeneralize MaskedValueIsZero into a ComputeMaskedNonZer...
2006-02-07 Chris LattnerMake MaskedValueIsZero take a uint64_t instead of a...
2006-02-07 Chris LattnerUse Type::getIntegralTypeMask() to simplify some code
2006-02-07 Chris LattnerImplement the beginnings of a facility for simplifying...
2006-02-05 Chris LattnerTurn A % (C << N), where C is 2^k, into A & ((C <<...
2006-02-04 Chris LattnerUse SCEVExpander::InsertCastOfTo instead of our own...
2006-02-04 Chris LattnerFix two significant bugs in LSR:
2006-01-26 Jeff CohenImprove compatibility with VC2005, patch by Morten...
2006-01-26 Chris Lattnerteach the cloner to handle inline asms
2006-01-24 Chris LattnerFix Regression/Transforms/ScalarRepl/2006-01-24-Illegal...
2006-01-24 Chris Lattnerrename method
2006-01-23 Chris LattnerWhen cloning a module, clone the inline asm.
2006-01-23 Chris Lattneradd a bunch more optimizations for unary double math...
next