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] Inefficient pattern for high-bits checking 2 (PR38708)
Roman Lebedev
2018-09-13
1
-19
/
+36
*
[InstCombine] Inefficient pattern for high-bits checking (PR38708)
Roman Lebedev
2018-09-12
1
-0
/
+38
*
[InstCombine] add folds for unsigned-overflow compares
Sanjay Patel
2018-09-11
1
-0
/
+12
*
[InstCombine] add folds for icmp with xor mask constant
Sanjay Patel
2018-09-11
1
-10
/
+19
*
InstCombine: move hasOneUse check to the top of foldICmpAddConstant
Tim Northover
2018-09-10
1
-3
/
+3
*
[InstCombine] Fold icmp ugt/ult (add nuw X, C2), C --> icmp ugt/ult X, (C - C2)
Nicola Zaghen
2018-09-04
1
-5
/
+8
*
[InstCombine] Add splat vector constant support to foldICmpAddOpConst.
Craig Topper
2018-08-20
1
-16
/
+18
*
[InstCombine] move vector compare before same-shuffled ops
Sanjay Patel
2018-08-16
1
-0
/
+28
*
ValueTracking: Start enhancing isKnownNeverNaN
Matt Arsenault
2018-08-09
1
-2
/
+2
*
[InstCombine] Re-commit: Fold 'check for [no] signed truncation' pattern
Roman Lebedev
2018-07-18
1
-0
/
+78
*
Revert "[InstCombine] Fold 'check for [no] signed truncation' pattern"
Bob Haarman
2018-07-18
1
-69
/
+0
*
Fix MSVC "result of 32-bit shift implicitly converted to 64 bits" warning. NFCI.
Simon Pilgrim
2018-07-17
1
-2
/
+2
*
[InstCombine] Fold 'check for [no] signed truncation' pattern
Roman Lebedev
2018-07-16
1
-0
/
+69
*
[InstCombine] fold icmp pred (sub 0, X) C for vector type
Chen Zheng
2018-07-16
1
-2
/
+2
*
[NFC][InstCombine] foldICmpWithLowBitMaskedVal(): update comments.
Roman Lebedev
2018-07-14
1
-2
/
+3
*
[InstCombine] Fold x & (-1 >> y) s< x to x s> (-1 >> y)
Roman Lebedev
2018-07-14
1
-0
/
+6
*
[InstCombine] Fold x & (-1 >> y) s>= x to x s<= (-1 >> y)
Roman Lebedev
2018-07-14
1
-0
/
+6
*
[InstCombine] Fold x s<= x & (-1 >> y) to x s<= (-1 >> y)
Roman Lebedev
2018-07-14
1
-0
/
+6
*
[InstCombine] Fold x s> x & (-1 >> y) to x s> (-1 >> y)
Roman Lebedev
2018-07-14
1
-0
/
+6
*
[InstCombine] Fold x u<= x & C to x u<= C
Roman Lebedev
2018-07-14
1
-0
/
+5
*
[InstCombine] Fold x u> x & C to x u> C
Roman Lebedev
2018-07-14
1
-0
/
+5
*
[InstCombine] Fold x & (-1 >> y) u< x to x u> (-1 >> y)
Roman Lebedev
2018-07-14
1
-0
/
+5
*
[InstCombine] Fold x & (-1 >> y) u>= x to x u<= (-1 >> y)
Roman Lebedev
2018-07-14
1
-0
/
+5
*
[InstCombine] Fold x & (-1 >> y) != x to x u> (-1 >> y)
Roman Lebedev
2018-07-12
1
-0
/
+4
*
[InstCombine] Fold x & (-1 >> y) == x to x u<= (-1 >> y)
Roman Lebedev
2018-07-11
1
-0
/
+34
*
Revert "[InstCombine] Delay foldICmpUsingKnownBits until simple transforms ar...
Max Kazantsev
2018-07-06
1
-7
/
+3
*
[InstCombine] Delay foldICmpUsingKnownBits until simple transforms are done
Max Kazantsev
2018-07-03
1
-3
/
+7
*
[InstCombine] Avoid iteration/mutation conflict
Joseph Tremoulet
2018-06-15
1
-1
/
+2
*
Fix a bunch of places where operator-> was used directly on the return from d...
Craig Topper
2018-05-05
1
-1
/
+1
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-01
1
-3
/
+3
*
[InstCombine] Fold compare of int constant against a splatted vector of ints
Daniel Neilson
2018-04-03
1
-0
/
+44
*
[InstCombine] add folds for icmp + sub (PR36969)
Sanjay Patel
2018-04-02
1
-2
/
+7
*
[PatternMatch] allow undef elements when matching vector FP +0.0
Sanjay Patel
2018-03-25
1
-2
/
+2
*
[InstCombine] peek through more icmp of FP cast + bitcast
Sanjay Patel
2018-03-25
1
-4
/
+14
*
[InstCombine] peek through FP casts for sign-bit compares (PR36682)
Sanjay Patel
2018-03-24
1
-0
/
+9
*
[InstCombine] peek through unsigned FP casts for zero-equality compares (PR36...
Roman Lebedev
2018-03-18
1
-0
/
+9
*
[InstCombine] Don't blow up in foldICmpWithCastAndCast on vector icmp instruc...
Daniel Neilson
2018-03-05
1
-1
/
+8
*
Adding a width of the GEP index to the Data Layout.
Elena Demikhovsky
2018-02-14
1
-3
/
+3
*
[InstCombine] simplify logic for swapMayExposeCSEOpportunities; NFCI
Sanjay Patel
2018-02-02
1
-23
/
+9
*
[InstCombine] fix typos, formatting; NFC
Sanjay Patel
2018-02-02
1
-7
/
+6
*
[InstCombine] weaken assertions for icmp folds (PR35846)
Sanjay Patel
2018-01-09
1
-10
/
+4
*
[InstCombine] safely create a constant of the right type (PR35794)
Sanjay Patel
2018-01-04
1
-4
/
+4
*
Remove redundant includes from lib/Transforms.
Michael Zolotukhin
2017-12-13
1
-2
/
+0
*
[InstCombine] Teach visitICmpInst to not break integer absolute value idioms
Craig Topper
2017-11-12
1
-6
/
+12
*
[InstCombine] Update stale comment. NFC
Craig Topper
2017-11-07
1
-2
/
+1
*
[InstCombine] don't unnecessarily generate a constant; NFCI
Sanjay Patel
2017-10-16
1
-3
/
+2
*
Move folding of icmp with zero after checking for min/max idioms.
Nikolai Bozhenov
2017-10-16
1
-11
/
+22
*
revert r314984: revert r314698 - [InstCombine] remove one-use restriction for...
Sanjay Patel
2017-10-15
1
-6
/
+6
*
[InstCombine] improve folds for icmp gt/lt (shr X, C1), C2
Sanjay Patel
2017-10-05
1
-37
/
+40
*
revert r314698 - [InstCombine] remove one-use restriction for icmp (shr exact...
Sanjay Patel
2017-10-05
1
-6
/
+6
[next]