Use the new script to sort the includes of every file under lib.
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineSelect.cpp
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-10-20 Benjamin KramerInstCombine: Fix an edge case where constant icmps...
2012-10-08 Micah VillmowMove TargetData to DataLayout.
2012-09-28 Nick LewyckySurprisingly, we missed a trivial case here. Fix that!
2012-09-27 Nick LewyckyPrefer shuffles to selects. Backends love shuffles!
2012-07-27 Nuno Lopesfix infinite loop in instcombine in the presence of...
2012-07-26 Pete CooperSimplify demanded bits of select sources where the...
2012-06-07 Nadav RotemFix a bug in FoldSelectOpOp. Bitcast ops may change...
2012-05-28 Benjamin KramerInstCombine: Fix infinite loop when encountering switch...
2012-01-20 David BlaikieMore dead code removal (using -Wunreachable-code)
2011-12-15 Pete CooperAdded InstCombine for "select cond, ~cond, x" type...
2011-12-02 Chad RosierFix a few more places where TargetData/TargetLibraryInf...
2011-10-02 Nick LewyckyAdd a new icmp+select optz'n. Also shows off the load...
2011-10-02 Nick LewyckyEnhance a couple places where we were doing constant...
2011-07-20 Eli FriedmanClean up includes of llvm/Analysis/ConstantFolding...
2011-07-19 Jay FoadUse ArrayRef in ConstantFoldInstOperands and ConstantFo...
2011-07-18 Chris Lattnerland David Blaikie's patch to de-constify Type, with...
2011-06-23 Eli FriedmanPR10180: Fix a instcombine crash with FP vectors.
2011-05-28 Benjamin KramerConstantFoldInstOperands doesn't like compares, hand...
2011-05-27 Benjamin KramerInstCombine: Make switch folding with equality compares...
2011-05-18 Eli FriedmanSwitch more inst insertion in instcombine to IRBuilder.
2011-05-18 Eli FriedmanSwitch more inst insertion in instcombine to IRBuilder.
2011-05-18 Eli FriedmanSwitch inst insertion in instcombine transform to IRBui...
2011-03-28 Nick LewyckyRemove tabs I accidentally added.
2011-03-27 Nick LewyckyTeach the transformation that moves binary operators...
2011-03-27 Nick LewyckyAdd a small missed optimization: turn X == C ? X :...
2011-03-11 Benjamin KramerInstCombine: Fix a thinko where transform an icmp under...
2011-01-28 Nick LewyckyFold select + select where both selects are on the...
2011-01-09 Tobias GrosserInstcombine: Fix pattern where the sext did not dominat...
2011-01-08 Frits van BommelFix a bug in r123034 (trying to sext/zext non-integers...
2011-01-07 Tobias GrosserInstCombine: Match min/max hidden by sext/zext
2011-01-07 Tobias GrosserSome whitespace fixes
2010-12-22 Benjamin KramerInstCombine: creating selects from -1 and 0 is fine...
2010-12-11 Benjamin KramerGeneralize the and-icmp-select instcombine further...
2010-12-11 Benjamin KramerFactor the (x & 2^n) ? 2^m : 0 instcombine into its...
2010-10-27 Dale JohannesenTeach InstCombine not to use Add and Neg on FP. PR...
2010-07-16 Owen AndersonRemove the rest of my instcombine changes. Back to...
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-08 Benjamin KramerTeach instcombine to transform
2010-04-20 Chris Lattnermove some select simplifications out out instcombine...
2010-02-23 Dan GohmanDon't do (X != Y) ? X : Y -> X for floating-point...
2010-02-15 Duncan SandsUniformize the names of type predicates: rather than...
2010-01-24 Chris Lattnerchange the canonical form of "cond ? -1 : 0" to be
2010-01-05 Benjamin KramerConvert a ton of simple integer type equality tests...
2010-01-05 Chris Lattnerclean up header.
2010-01-05 Chris Lattnersplit select out to its own file.