Add some "missing" instrinsics to make the SSE intrinsic set a bit more
[oota-llvm.git] / test / Transforms /
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...
2009-12-16 Daniel DunbarReapply r91459, it was only unmasking the bug, and...
2009-12-16 Daniel DunbarRevert "Reapply 91184 with fixes and an addition to...
2009-12-16 Chris Lattnerreapply my strstr optimization. I have reproduced...
2009-12-16 Chris Lattnerrevert my strstr optimization, I'm told it breaks x86...
2009-12-15 Bob WilsonReapply 91184 with fixes and an addition to the testcas...
2009-12-15 Chris Lattneroptimize strstr, PR5783
2009-12-14 Eric ChristopherAdd radar fixed in comment.
2009-12-14 Shantonu SenRemove empty file completely
2009-12-14 Chris Lattnerrevert r91184, because it causes a crash on a .bc file...
2009-12-12 Benjamin KramerFix some CHECK lines which were ignored by accident.
2009-12-11 Bob WilsonRevise scalar replacement to be more flexible about...
2009-12-11 Dan GohmanMake getUniqueExitBlocks's precondition assert more...
2009-12-10 Eric ChristopherAdd a test for the fix in revision 91009.
2009-12-10 Chris LattnerFix PR5744, a case where we were getting the pointer...
2009-12-09 Chris Lattnerfix hte last remaining known (by me) phi translation...
2009-12-09 Chris LattnerAdd a minor optimization: if we haven't changed the...
2009-12-09 Chris Lattnerfix PR5733, a case where we'd replace an add with a...
2009-12-09 Chris Lattnermerge crash-2.ll into crash.ll
2009-12-09 Chris Lattnerthe code in GVN that tries to forward large loads to...
2009-12-09 Chris LattnerSwitch GVN and memdep to use PHITransAddr, which correc...
2009-12-08 Duncan SandsTeach GlobalOpt to delete aliases with internal linkage...
2009-12-06 Chris Lattnerfix PR5698
2009-12-06 Chris Lattnerconstant fold loads from memcpy's from global constants...
2009-12-06 Chris Lattneradd support for forwarding mem intrinsic values to...
2009-12-06 Chris LattnerHandle forwarding local memsets to loads. For example...
2009-12-06 Chris Lattnermerge two tests.
2009-12-05 Nick LewyckyGeneralize this optimization to work on equality compar...
2009-12-04 Chris LattnerFix PR5551 by not ignoring the top level constantexpr...
2009-12-04 Chris LattnerSmall and carefully crafted testcase showing a miscompi...
2009-12-03 Owen AndersonFix this crasher, and add a FIXME for a missed optimiza...
2009-12-03 Chris Lattneradd a failing testcase.
2009-12-03 Chris Lattnerfix PR5673 by being more careful about pointers to...
2009-12-02 Owen AndersonCleanup/remove some parts of the lifetime region handli...
2009-12-02 Chris Lattnermerge sext-2 into sext.ll
next