index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Transforms
/
InstCombine
/
InstCombineCompares.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[InstCombine] Fix wrong folding of constant comparison involving ahsr and neg...
Andrea Di Biagio
2014-09-17
1
-9
/
+13
*
Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.)
Hal Finkel
2014-09-07
1
-6
/
+8
*
InstCombine: Remove redundant combines
David Majnemer
2014-08-28
1
-15
/
+0
*
InstSimplify: Move a transform from InstCombine to InstSimplify
David Majnemer
2014-08-28
1
-10
/
+0
*
InstCombine: Properly optimize or'ing bittests together
David Majnemer
2014-08-24
1
-0
/
+42
*
This patch implements optimization as mentioned in PR19753: Optimize comparis...
Suyog Sarda
2014-07-22
1
-0
/
+93
*
InstCombine: Simplify code, no functionality change.
Benjamin Kramer
2014-07-07
1
-16
/
+2
*
InstCombine: Disable umul.with.overflow recognition for vectors.
Benjamin Kramer
2014-06-24
1
-1
/
+5
*
Look through addrspacecasts when turning ptr comparisons into
Matt Arsenault
2014-06-09
1
-5
/
+21
*
Revert 209903 and 210040.
Rafael Espindola
2014-06-07
1
-40
/
+0
*
Added support to optimize comparisons with "lshr exact" of a constant.
Rafael Espindola
2014-06-02
1
-6
/
+29
*
Added inst combine tarnsform for (1 << X) & C pattrens where C is (some Power...
Dinesh Dwivedi
2014-06-02
1
-8
/
+24
*
PR19753: Optimize comparisons with "ashr exact" of a constanst.
Rafael Espindola
2014-05-30
1
-0
/
+17
*
InstCombine: Optimize -x s< cst
David Majnemer
2014-05-15
1
-0
/
+10
*
Rename ComputeMaskedBits to computeKnownBits. "Masked" has been
Jay Foad
2014-05-14
1
-1
/
+1
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-79
/
+79
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
[Modules] Sink all the DEBUG_TYPE defines for InstCombine out of the
Chandler Carruth
2014-04-21
1
-0
/
+1
*
Use APInt arithmetic, fixed typo. Thanks to Benjamin Kramer for noticing that.
Serge Pavlov
2014-04-14
1
-2
/
+2
*
Recognize test for overflow in integer multiplication.
Serge Pavlov
2014-04-13
1
-0
/
+240
*
Revert "InstCombine: merge constants in both operands of icmp."
Erik Verbruggen
2014-03-28
1
-14
/
+0
*
InstCombine: Don't combine constants on unsigned icmps
Reid Kleckner
2014-03-27
1
-1
/
+2
*
InstCombine: merge constants in both operands of icmp.
Erik Verbruggen
2014-03-27
1
-0
/
+13
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-7
/
+6
*
[Modules] Move the ConstantRange class into the IR library. This is
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move the LLVM IR pattern match header into the IR library, it
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move GetElementPtrTypeIterator into the IR library. As its
Chandler Carruth
2014-03-04
1
-1
/
+1
*
Make some DataLayout pointers const.
Rafael Espindola
2014-02-24
1
-1
/
+1
*
Rename many DataLayout variables from TD to DL.
Rafael Espindola
2014-02-21
1
-23
/
+23
*
Remove a very old instcombine where we would turn sequences of selects into
Owen Anderson
2014-02-12
1
-25
/
+0
*
Fix known typos
Alp Toker
2014-01-24
1
-2
/
+2
*
InstCombine: Hoist 3 copies of AddOne/SubOne into a header.
Benjamin Kramer
2014-01-19
1
-9
/
+0
*
Stay classy (and legal) LLVM. Remove links to 3rd party SMT solver whose link...
Kay Tiong Khoo
2013-12-19
1
-4
/
+2
*
Improved fix for PR17827 (instcombine of shift/and/compare).
Kay Tiong Khoo
2013-12-19
1
-22
/
+32
*
Use local variable for repeated use rather than 'get' method. No functional c...
Kay Tiong Khoo
2013-12-02
1
-4
/
+3
*
Move variables to where they are used and give them better names. No function...
Kay Tiong Khoo
2013-12-02
1
-6
/
+8
*
Rename variables to be consistent (CST -> Cst). No functional change intended.
Kay Tiong Khoo
2013-12-02
1
-30
/
+30
*
Conservative fix for PR17827 - don't optimize a shift + and + compare sequenc...
Kay Tiong Khoo
2013-12-02
1
-4
/
+12
*
InstCombine: fold (A >> C) == (B >> C) --> (A^B) < (1 << C) for constant Cs.
Benjamin Kramer
2013-11-16
1
-0
/
+18
*
Use right address space size in InstCombineCompares
Matt Arsenault
2013-09-30
1
-3
/
+6
*
Constant fold ptrtoint + compare with address spaces
Matt Arsenault
2013-09-30
1
-1
/
+1
*
Use type helper functions
Matt Arsenault
2013-09-27
1
-2
/
+1
*
InstCombine: Remove unused argument. No functionality change.
Benjamin Kramer
2013-09-20
1
-10
/
+4
*
[InstCombiner] Expose opportunities to merge subtract and comparison.
Quentin Colombet
2013-09-09
1
-1
/
+46
*
Teach InstCombine about address spaces
Matt Arsenault
2013-08-21
1
-4
/
+5
*
Revert non-test parts of r188507
Matt Arsenault
2013-08-19
1
-1
/
+9
*
Don't do FoldCmpLoadFromIndexedGlobal for non inbounds GEPs
Matt Arsenault
2013-08-15
1
-9
/
+2
*
InstCombine: Fix typo in comment for visitICmpInstWithInstAndIntCst
David Majnemer
2013-07-09
1
-2
/
+2
*
InstCombine: variations on 0xffffffff - x >= 4
David Majnemer
2013-07-09
1
-0
/
+12
*
InstCombine: X & -C != -C -> X <= u ~C
David Majnemer
2013-07-09
1
-0
/
+9
[prev]
[next]