stop testing for invalid output.
[oota-llvm.git] / test / Transforms /
2010-01-23 Mon P WangInstCombine should not fold sext/zext of a vector and...
2010-01-23 Victor HernandezIn mem2reg, for all alloca/stores that get promoted...
2010-01-22 Dan GohmanRevert LoopStrengthReduce.cpp to pre-r94061 for now.
2010-01-21 Nick LewyckyFix a crasher trying to fold each element in a comparis...
2010-01-21 Dan GohmanRe-implement the main strength-reduction portion of...
2010-01-19 Dan GohmanAdd nounwinds.
2010-01-19 Chris Lattneroptimize ~(~X >>s Y) --> (X >>s Y), patch by Edmund...
2010-01-19 Bob WilsonFix a crash in scalarrepl for memcpy/memmove where...
2010-01-18 Chris Lattnermy instcombine transformations to make extension elimin...
2010-01-18 Chris Lattnerfilecheckize this.
2010-01-18 Chris Lattnerfilecheckize
2010-01-18 Chris Lattnerremove a redundant test, filecheckize another.
2010-01-17 Bill WendlingReduce fsub-fadd.ll and merge it into fsub-fsub.ll...
2010-01-13 Bill WendlingWhen the visitSub method was split into visitSub and...
2010-01-12 Chris Lattner1) Use the new SimplifyInstructionsInBlock routine...
2010-01-12 Dan GohmanMake several tests less fragile.
2010-01-12 Chris LattnerTeach jump threading to duplicate small blocks when...
2010-01-11 Chris Lattnerdisable this testcase, PR5997
2010-01-11 Chris Lattneradd one more bitfield optimization, allowing clang...
2010-01-11 Chris LattnerExtend CanEvaluateZExtd to handle and/or/xor more aggre...
2010-01-11 Chris LattnerRemove the dead TD argument to CanEvaluateZExtd, and...
2010-01-10 Chris Lattnerteach sext optimization to handle truncs from types...
2010-01-10 Chris Lattnerteach zext optimization how to deal with truncs that...
2010-01-10 Chris Lattnernow that the cost model has changed, we can always...
2010-01-10 Chris Lattnerchange the preferred canonical form for a sign extensio...
2010-01-10 Chris Lattnertwo changes:
2010-01-10 Chris Lattnerenhance CanEvaluateZExtd to handle shift left and sext...
2010-01-09 Dan GohmanUse WriteAsOperand instead of getName() to print loop...
2010-01-09 Chris Lattneronly factor from expressions whose uses are empty and...
2010-01-08 Chris Lattnerteach instcombine to delete sign extending shift pairs...
2010-01-08 Chris Lattnerfix PR5978 by peeling the loop so that we avoid shiftin...
2010-01-07 Chris Lattnerteach ComputeNumSignBits to look through PHI nodes.
2010-01-07 Chris Lattnerfilecheckize
2010-01-07 Chris LattnerEnhance instcombine to reason more strongly about promo...
2010-01-07 Chris Lattnerfix a globalopt crash on 'bullet' (handling evaluation...
2010-01-06 Duncan SandsFix a README item: have functionattrs look through...
2010-01-06 Duncan SandsPartially address a README by having functionattrs...
2010-01-06 Chris LattnerTeach instcombine's sext elimination logic to be more...
2010-01-05 Dan GohmanMove this test from test/Transforms/IndVarSimplify to
2010-01-05 Chris Lattnermore rearrangement and cleanup, fix my test failure.
2010-01-05 Chris Lattnerremove two trunc xforms that are subsumed by EvaluateIn...
2010-01-05 Chris Lattnermerge some tests.
2010-01-05 Chris Lattnermerge cast2 into cast.ll
2010-01-05 Chris Lattnerremove useless test.
2010-01-05 Chris Lattneranother example.
2010-01-05 Chris Lattnerremove a useless negative test, add a rdar # to an...
2010-01-05 Chris Lattnerclean up tests.
2010-01-05 Chris Lattnerjust remove this xform which is subsumed by others.
2010-01-05 Chris Lattneroptimize comparisons against cttz/ctlz/ctpop, patch...
2010-01-05 Dan GohmanDelete useless trailing semicolons.
2010-01-05 Chris Lattneroptimize cttz and ctlz when we can prove something...
2010-01-05 Chris Lattnerfix an infinite loop in reassociate building emacs.
2010-01-05 Devang PatelRemove dead debug info intrinsics.
2010-01-04 Chris LattnerTruncate GEP indexes larger than the pointer size down...
2010-01-04 Chris Lattnerimplement an instcombine xform needed by clang's codegen
2010-01-03 Chris Lattnergeneralize the previous transformation to handle indexi...
2010-01-02 Chris Lattnerteach instcombine to optimize idioms like A[i]&42 ...
2010-01-02 Chris LattnerTeach the table lookup optimization to generate range...
2010-01-02 Nick LewyckyFix logic error in previous commit. The != case needs...
2010-01-02 Nick LewyckyOptimize pointer comparison into the typesafe form...
2010-01-02 Chris LattnerGeneralize the previous xform to handle cases where...
2010-01-02 Chris Lattnerenhance the compare/load/index optimization to work...
2010-01-02 Chris Lattnerenhance the previous optimization to work with fcmp...
2010-01-02 Chris LattnerTeach instcombine to fold compares of loads from constant
2010-01-02 Chris Lattnerremove the instcombine transformations that are inserti...
2010-01-01 Chris Lattneradd a simple instcombine xform, simplify another one...
2010-01-01 Chris Lattnergeneralize the pointer difference optimization to handle
2010-01-01 Chris Lattnerteach instcombine to optimize pointer difference idioms...
2010-01-01 Chris Lattnerimplement the transform requested in PR5284
2010-01-01 Chris Lattneradd a few trivial instcombines for llvm.powi.
2010-01-01 Chris LattnerWhen factoring multiply expressions across adds, factor...
2010-01-01 Chris Lattnertest case we alredy get right.
2009-12-31 Chris Lattnerreuse negates where possible instead of always creating...
2009-12-31 Chris Lattnerteach reassociate to factor x+x+x -> x*3. While I...
2009-12-31 Chris Lattnersimple fix for an incorrect factoring which causes a
2009-12-31 Chris Lattnermerge some more tests in.
2009-12-31 Chris Lattnerfilecheckize
2009-12-30 Chris Lattnerfix two bogus tests that the asmparser now rejects.
2009-12-24 Chris Lattnermove an optimization for memcmp out of simplifylibcalls...
2009-12-22 Bob WilsonGeneralize SROA to allow the first index of a GEP to...
2009-12-22 Chris LattnerImplement PR5795 by merging duplicated return blocks...
2009-12-22 Chris Lattnerconvert to filecheck
2009-12-21 Chris Lattnerfix PR5837 by having SSAUpdate reuse phi nodes for the
2009-12-21 Chris Lattneradd check lines for min/max tests.
2009-12-21 Chris Lattnerreally convert this to filecheck.
2009-12-21 Chris Lattnergive instcombine some helper functions for matching...
2009-12-21 Chris Lattnerfilecheckize
2009-12-21 Chris Lattnerenhance x-(-A) -> x+A to preserve NUW/NSW.
2009-12-21 Chris LattnerOptimize all cases of "icmp (X+Cst), X" to something...
2009-12-21 Chris Lattnerconvert to filecheck
2009-12-19 Chris Lattnerfix an overly conservative caching issue that caused...
2009-12-19 Chris Lattnerfix inconsistent use of tabs
2009-12-19 Chris Lattnerfix PR5827 by disabling the phi slicing transformation...
2009-12-18 Bob WilsonReapply 91459 with a simple fix for the problem that...
2009-12-18 Eli FriedmanOptimize icmp of null and select of two constants even...
2009-12-17 Eli FriedmanAllow instcombine to combine "sext(a) >u const" to...
2009-12-17 Eli FriedmanMake the ptrtoint comparison simplification work if...
2009-12-17 Eli FriedmanSlightly generalize transformation of memmove(a,a,n...
2009-12-17 Bob WilsonRe-revert 91459. It's breaking the x86_64 darwin boots...
2009-12-17 Eli FriedmanAggressively flip compare constant expressions where...
next