Asm printing bug.
[oota-llvm.git] / lib / Transforms /
2006-12-05 Chris Lattneradd an instcombine xform. This speeds up 462.libquantu...
2006-12-04 Devang PatelSCCP does not handle Packed Type properly. Disable...
2006-12-04 Reid SpencerUpdate call to CastInst::getCastOpcode for its new...
2006-12-02 Jeff CohenUnbreak VC++ build.
2006-12-02 Chris Lattnerdisable transformations that are invalid for fp vector...
2006-11-30 Reid SpencerRemove 4 FIXMEs to hack around cast-to-bool problems...
2006-11-30 Chris Lattnermake it clear that this is always a zext
2006-11-30 Chris LattnerOne more bugfix, 3 cases of making casts explicit.
2006-11-30 Chris LattnerFix a bug in globalopt due to the recent cast patch.
2006-11-29 Chris Lattnerimplement cast.ll:test35. With this, we recognize:
2006-11-29 Chris LattnerTeach instcombine to turn trunc(srl x, c) -> srl (trunc...
2006-11-29 Chris LattnerImplement Regression/Transforms/InstCombine/bswap-fold.ll,
2006-11-29 Reid SpencerJoin a split line.
2006-11-28 Reid SpencerUndo the last patch until 253.perlbmk passes with these...
2006-11-28 Reid SpencerRemove 4 FIXME's from the CAST patch now that the back...
2006-11-27 Chris LattnerFix PR1014 and InstCombine/2006-11-27-XorBug.ll.
2006-11-27 Reid SpencerFor PR950:
2006-11-26 Bill WendlingRemove #include <iostream> and use llvm_* streams instead.
2006-11-26 Bill WendlingReplace #include <iostream> with llvm_* streams.
2006-11-26 Bill WendlingRemoved #include <iostream> and replaced with llvm_...
2006-11-26 Bill WendlingRemoved #include <iostream> and used the llvm_cerr...
2006-11-22 Nick LewyckyUpdate to new predicate simplifier VRP design. Fixes...
2006-11-21 Chris LattnerThis xform is handled by FoldOpIntoPhi in visitCastInst...
2006-11-18 Chris LattnerDo not convert massive blocks on phi nodes into select...
2006-11-17 Chris LattnerIf an indvar with a variable stride is used by the...
2006-11-15 Chris LattnerFix a gcc 4.2 warning.
2006-11-14 Chris Lattnerimplement InstCombine/shift-simplify.ll by transforming:
2006-11-14 Chris Lattnerimplement InstCombine/and-compare.ll:test1. This compiles:
2006-11-10 Chris LattnerFix InstCombine/2006-11-10-ashr-miscompile.ll a miscomp...
2006-11-09 Chris Lattnersecond patch to fix PR992/993.
2006-11-09 Chris LattnerMinimal patch to fix PR992/PR993
2006-11-09 Chris LattnerTeach ShrinkDemandedConstant how to handle X+C. This...
2006-11-08 Chris Lattnerreenable factoring of GEP expressions, being more preci...
2006-11-08 Chris Lattnermake this code more efficient by not creating a phi...
2006-11-08 Jim LaskeyRemove redundant <cmath>.
2006-11-08 Chris Lattnerdisable this factoring optzn for GEPs for now, this...
2006-11-08 Reid SpencerFor PR950:
2006-11-07 Chris Lattnerscalarrepl should not split the two elements of the...
2006-11-05 Jeff CohenUnbreak VC++ build.
2006-11-05 Nick LewyckyRemove commented line from earlier debugging.
2006-11-03 Andrew LenharthThe wrong parameter was being tested to deturmine i32...
2006-11-03 Chris Lattnerremove dead code
2006-11-02 Reid SpencerFor PR786:
2006-11-02 Reid SpencerFor PR950:
2006-11-01 Devang PatelThere can be more than one PHINode at the start of...
2006-11-01 Devang PatelHandle PHINode with only one incoming value.
2006-11-01 Chris LattnerFix GlobalOpt/2006-11-01-ShrinkGlobalPhiCrash.ll and...
2006-11-01 Chris LattnerFactor gep instructions through phi nodes.
2006-11-01 Chris LattnerTurn a phi of many loads into a phi of the address...
2006-11-01 Chris LattnerFix a bug in the previous patch
2006-11-01 Chris LattnerFold things like "phi [add (a,b), add(c,d)]" into two...
2006-10-31 Chris Lattnergeneralize the fix for PR977 to also fix
2006-10-31 Chris LattnerFix PR977 and Transforms/LCSSA/2006-10-31-UnreachableBl...
2006-10-29 Chris LattnerFix SimplifyCFG/2006-10-29-InvokeCrash.ll, a crash...
2006-10-28 Chris Lattneradd option to isCriticalEdge
2006-10-28 Chris Lattnerbreak edges more intelligently
2006-10-28 Chris LattnerExpose a smarter way to break critical edges.
2006-10-28 Chris LattnerSplitCriticalEdge checks to see if an edge is critical...
2006-10-28 Chris Lattnerprepare for a change I'm about to make
2006-10-26 Reid SpencerSimplify code a bit by changing instances of:
2006-10-26 Reid SpencerFor PR950:
2006-10-26 Nick LewyckyFix 2006-10-25-AddSetCC. A relational operator (like...
2006-10-25 Nick LewyckyResurrect r1.25.
2006-10-25 Chris Lattnerhide symbols properly
2006-10-24 Chris LattnerFix Transforms/ScalarRepl/2006-10-23-PointerUnionCrash.ll
2006-10-24 Chris LattnerRevert back to r1.21, which was the last revision of...
2006-10-23 Chris LattnerHandle fallout from the recent branch-on-undef changes...
2006-10-23 Nick LewyckyRemove the Backwards operation. Resolving now works...
2006-10-22 Nick LewyckyFix similar missing optimization opportunity in XOR.
2006-10-22 Nick LewyckyWhoops! Add missing NULL check.
2006-10-22 Nick LewyckyHandle "if ((x|y) != 0)" for ints like we do for bools...
2006-10-22 Nick LewyckyAllocaInst can't return a null pointer. Fixes missed...
2006-10-22 Chris LattnerAdd a workaround for PR962, disabling the more aggressi...
2006-10-22 Chris Lattner3 Changes:
2006-10-20 Chris Lattnerllvm-extract should remove module-level asm
2006-10-20 Chris LattnerFix an ugly problem in SCCP. This fixes Benchmarks...
2006-10-20 Chris LattnerFix miscompilation of MallocBench/espresso which code...
2006-10-20 Reid SpencerFor PR950:
2006-10-20 Devang PatelWhile creating mask, use 1ULL instead of 1.
2006-10-20 Chris LattnerFix SimplifyCFG/2006-10-19-UncondDiv.ll by disabling...
2006-10-19 Devang PatelIt is OK to remove extra cast if operation is EQ/NE...
2006-10-19 Devang PatelTypo Typo.
2006-10-19 Devang PatelTypo.
2006-10-19 Devang PatelFix bug in PR454 resolution. Added new test case.
2006-10-16 Reid SpencerUndo Chris' last patch, it caused a regression.
2006-10-15 Chris Lattnerfix a buggy check that accidentally disabled this xform
2006-10-12 Nick LewyckyReplace custom dispatch code with two uses of InstVisit...
2006-10-08 Chris LattnerImplement SROA of unions with mixed pointers/integers...
2006-10-08 Chris LattnerImplement Transforms/ScalarRepl/union-pointer.ll:test
2006-10-05 Chris Lattneradd a new SimplifyDemandedVectorElts method, which...
2006-10-04 Chris LattnerThis case isn't implemented yet. It seems unlikely...
2006-10-03 Nick LewyckySimplify logic further.
2006-10-03 Nick LewyckySimplify, now that predsimplify depends on break-crit...
2006-10-03 Nick LewyckyMove break-crit-edges before the predicate simplifier...
2006-10-03 Evan ChengRevert previous patch. Still breaking things.
2006-10-03 Chris LattnerFix PR932 and Analysis/Dominators/2006-10-02-BreakCritE...
2006-10-01 Chris LattnerFix a bug from r1.391 of this file, where we checked...
2006-09-30 Chris LattnerFix debug output
2006-09-30 Chris LattnerImplement SRA of heap allocations.
2006-09-30 Chris LattnerAdd some ifdef'd out debug info
next