aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/InstCombine/InstCombineSelect.cpp
Commit message (Expand)AuthorAgeFilesLines
* Move TargetData to DataLayout.Micah Villmow2012-10-081-1/+1
* Surprisingly, we missed a trivial case here. Fix that!Nick Lewycky2012-09-281-0/+4
* Prefer shuffles to selects. Backends love shuffles!Nick Lewycky2012-09-271-1/+19
* fix infinite loop in instcombine in the presence of a (malformed) self-refere...Nuno Lopes2012-07-271-0/+4
* Simplify demanded bits of select sources where the condition is a constant ve...Pete Cooper2012-07-261-0/+11
* Fix a bug in FoldSelectOpOp. Bitcast ops may change the number of vector elem...Nadav Rotem2012-06-071-0/+6
* InstCombine: Fix infinite loop when encountering switch on trivial icmp.Benjamin Kramer2012-05-281-1/+1
* More dead code removal (using -Wunreachable-code)David Blaikie2012-01-201-1/+0
* Added InstCombine for "select cond, ~cond, x" type patternsPete Cooper2011-12-151-0/+7
* Fix a few more places where TargetData/TargetLibraryInfo is not being passed.Chad Rosier2011-12-021-14/+17
* Add a new icmp+select optz'n. Also shows off the load(cst) folding added inNick Lewycky2011-10-021-0/+6
* Enhance a couple places where we were doing constant folding of instructions,Nick Lewycky2011-10-021-1/+6
* Clean up includes of llvm/Analysis/ConstantFolding.h so it's included where i...Eli Friedman2011-07-201-0/+1
* Use ArrayRef in ConstantFoldInstOperands and ConstantFoldCall.Jay Foad2011-07-191-1/+1
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-181-2/+2
* PR10180: Fix a instcombine crash with FP vectors.Eli Friedman2011-06-231-2/+2
* ConstantFoldInstOperands doesn't like compares, hand it off to instsimplify i...Benjamin Kramer2011-05-281-0/+10
* InstCombine: Make switch folding with equality compares more aggressive by tr...Benjamin Kramer2011-05-271-15/+54
* Switch more inst insertion in instcombine to IRBuilder.Eli Friedman2011-05-181-10/+6
* Switch more inst insertion in instcombine to IRBuilder.Eli Friedman2011-05-181-13/+6
* Switch inst insertion in instcombine transform to IRBuilder.Eli Friedman2011-05-181-6/+2
* Remove tabs I accidentally added.Nick Lewycky2011-03-281-15/+15
* Teach the transformation that moves binary operators around selects to preserveNick Lewycky2011-03-271-8/+22
* Add a small missed optimization: turn X == C ? X : Y into X == C ? C : Y. ThisNick Lewycky2011-03-271-0/+13
* InstCombine: Fix a thinko where transform an icmp under the assumption that i...Benjamin Kramer2011-03-111-3/+2
* Fold select + select where both selects are on the same condition.Nick Lewycky2011-01-281-0/+13
* Instcombine: Fix pattern where the sext did not dominate the icmp using itTobias Grosser2011-01-091-2/+7
* Fix a bug in r123034 (trying to sext/zext non-integers) and clean up a little.Frits van Bommel2011-01-081-5/+8
* InstCombine: Match min/max hidden by sext/zextTobias Grosser2011-01-071-35/+70
* Some whitespace fixesTobias Grosser2011-01-071-24/+24
* InstCombine: creating selects from -1 and 0 is fine, they combine into a sext...Benjamin Kramer2010-12-221-3/+6
* Generalize the and-icmp-select instcombine further by allowing selects of the...Benjamin Kramer2010-12-111-4/+22
* Factor the (x & 2^n) ? 2^m : 0 instcombine into its own method and generalize itBenjamin Kramer2010-12-111-26/+54
* Teach InstCombine not to use Add and Neg on FP. PR 8490.Dale Johannesen2010-10-271-1/+8
* Remove the rest of my instcombine changes. Back to the drawing board on this...Owen Anderson2010-07-161-28/+0
* Speculatively revert r108429 to fix the clang self-host.Owen Anderson2010-07-151-0/+28
* Per Chris' suggestion, get rid of the select canonicalization and just addOwen Anderson2010-07-151-28/+0
* Reapply r108378, with bugfixes, testcase, and improved comment formatting.Owen Anderson2010-07-151-0/+28
* Speculatively revert r108378; may be causing bootstrap failures.Eli Friedman2010-07-151-25/+0
* Add instcombine transforms to optimize tests of multiple bits of the same val...Owen Anderson2010-07-141-0/+25
* Teach instcombine to transformBenjamin Kramer2010-07-081-0/+31
* move some select simplifications out out instcombine intoChris Lattner2010-04-201-31/+13
* Don't do (X != Y) ? X : Y -> X for floating-point values; it doesn'tDan Gohman2010-02-231-5/+23
* Uniformize the names of type predicates: rather than having isFloatTy andDuncan Sands2010-02-151-2/+2
* change the canonical form of "cond ? -1 : 0" to be Chris Lattner2010-01-241-48/+18
* Convert a ton of simple integer type equality tests to the new predicate.Benjamin Kramer2010-01-051-1/+1
* clean up header.Chris Lattner2010-01-051-7/+2
* split select out to its own file.Chris Lattner2010-01-051-0/+708