Speculatively revert r108429 to fix the clang self-host.
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineAndOrXor.cpp
2010-07-15 Owen AndersonSpeculatively revert r108429 to fix the clang self...
2010-07-15 Owen AndersonPer Chris' suggestion, get rid of the select canonicali...
2010-07-15 Owen AndersonReapply r108378, with bugfixes, testcase, and improved...
2010-07-15 Eli FriedmanSpeculatively revert r108378; may be causing bootstrap...
2010-07-14 Owen AndersonAdd instcombine transforms to optimize tests of multipl...
2010-07-14 Chris Lattnerrevert r108320, I see the failures now...
2010-07-14 Chris Lattnerreapply benjamin's instcombine patch, I don't see anyth...
2010-07-12 Benjamin KramerNope, still breaks the release selfhost bots :(
2010-07-12 Benjamin KramerReapply the "or" half of r108136, which seems to be...
2010-07-12 Benjamin KramerRevert r108141 again, sigh.
2010-07-12 Benjamin KramerReapply 108136 with an ugly pasto fixed.
2010-07-12 Benjamin KramerMove optimization to avoid redundant matching.
2010-07-12 Benjamin KramerRevert r108136 until I figure out why it broke selfhost.
2010-07-12 Benjamin Kramerinstcombine: fold (x & y) | (~x & z) and (x & y) ^...
2010-04-09 Dan GohmanMinor code simplification.
2010-03-05 Chris LattnerFix PR6503. This turned into a much more interesting...
2010-03-05 Chris Lattnersimplify some functions and make them work with vector
2010-03-03 Bill WendlingThis test case:
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-02-15 Duncan SandsUniformize the names of type predicates: rather than...
2010-02-11 Chris LattnerRename ValueRequiresCast to ShouldOptimizeCast, to...
2010-02-10 Dan GohmanFix "the the" and similar typos.
2010-02-09 Chris Lattnersimplify this code, duh.
2010-02-09 Chris Lattnerfix PR6193, only considering sign extensions *from...
2010-02-05 Chris Lattnerfix logical-select to invoke filecheck right, and fix...
2010-02-02 Chris Lattnerdon't turn (A & (C0?-1:0)) | (B & ~(C0?-1:0)) -> C0...
2010-01-24 Chris Lattnerchange the canonical form of "cond ? -1 : 0" to be
2010-01-19 Chris Lattneroptimize ~(~X >>s Y) --> (X >>s Y), patch by Edmund...
2010-01-11 Chris Lattneradd one more bitfield optimization, allowing clang...
2010-01-05 Chris Lattnersplit and/or/xor out into one overly-large (2000LOC...