index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
InstCombine
/
InstCombineSelect.cpp
Age
Commit message (
Expand
)
Author
2011-07-20
Clean up includes of llvm/Analysis/ConstantFolding.h so it's included where i...
Eli Friedman
2011-07-19
Use ArrayRef in ConstantFoldInstOperands and ConstantFoldCall.
Jay Foad
2011-07-18
land David Blaikie's patch to de-constify Type, with a few tweaks.
Chris Lattner
2011-06-23
PR10180: Fix a instcombine crash with FP vectors.
Eli Friedman
2011-05-28
ConstantFoldInstOperands doesn't like compares, hand it off to instsimplify i...
Benjamin Kramer
2011-05-27
InstCombine: Make switch folding with equality compares more aggressive by tr...
Benjamin Kramer
2011-05-18
Switch more inst insertion in instcombine to IRBuilder.
Eli Friedman
2011-05-18
Switch more inst insertion in instcombine to IRBuilder.
Eli Friedman
2011-05-18
Switch inst insertion in instcombine transform to IRBuilder.
Eli Friedman
2011-03-28
Remove tabs I accidentally added.
Nick Lewycky
2011-03-27
Teach the transformation that moves binary operators around selects to preserve
Nick Lewycky
2011-03-27
Add a small missed optimization: turn X == C ? X : Y into X == C ? C : Y. This
Nick Lewycky
2011-03-11
InstCombine: Fix a thinko where transform an icmp under the assumption that i...
Benjamin Kramer
2011-01-28
Fold select + select where both selects are on the same condition.
Nick Lewycky
2011-01-09
Instcombine: Fix pattern where the sext did not dominate the icmp using it
Tobias Grosser
2011-01-08
Fix a bug in r123034 (trying to sext/zext non-integers) and clean up a little.
Frits van Bommel
2011-01-07
InstCombine: Match min/max hidden by sext/zext
Tobias Grosser
2011-01-07
Some whitespace fixes
Tobias Grosser
2010-12-22
InstCombine: creating selects from -1 and 0 is fine, they combine into a sext...
Benjamin Kramer
2010-12-11
Generalize the and-icmp-select instcombine further by allowing selects of the...
Benjamin Kramer
2010-12-11
Factor the (x & 2^n) ? 2^m : 0 instcombine into its own method and generalize it
Benjamin Kramer
2010-10-27
Teach InstCombine not to use Add and Neg on FP. PR 8490.
Dale Johannesen
2010-07-16
Remove the rest of my instcombine changes. Back to the drawing board on this...
Owen Anderson
2010-07-15
Speculatively revert r108429 to fix the clang self-host.
Owen Anderson
2010-07-15
Per Chris' suggestion, get rid of the select canonicalization and just add
Owen Anderson
2010-07-15
Reapply r108378, with bugfixes, testcase, and improved comment formatting.
Owen Anderson
2010-07-15
Speculatively revert r108378; may be causing bootstrap failures.
Eli Friedman
2010-07-14
Add instcombine transforms to optimize tests of multiple bits of the same val...
Owen Anderson
2010-07-08
Teach instcombine to transform
Benjamin Kramer
2010-04-20
move some select simplifications out out instcombine into
Chris Lattner
2010-02-23
Don't do (X != Y) ? X : Y -> X for floating-point values; it doesn't
Dan Gohman
2010-02-15
Uniformize the names of type predicates: rather than having isFloatTy and
Duncan Sands
2010-01-24
change the canonical form of "cond ? -1 : 0" to be
Chris Lattner
2010-01-05
Convert a ton of simple integer type equality tests to the new predicate.
Benjamin Kramer
2010-01-05
clean up header.
Chris Lattner
2010-01-05
split select out to its own file.
Chris Lattner