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
/
InstCombineAddSub.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[InstCombine] prevent possible miscompile with negate+sdiv of vector op
Sanjay Patel
2019-04-09
1
-3
/
+6
*
[InstCombine] sdiv exact flag fixup.
Chen Zheng
2019-04-08
1
-2
/
+5
*
[InstCombine] form uaddsat from add+umin (PR14613)
Sanjay Patel
2019-03-26
1
-0
/
+25
*
[InstCombine] fold adds of constants separated by sext/zext
Sanjay Patel
2019-02-28
1
-8
/
+44
*
[InstCombine] canonicalize add/sub with bool
Sanjay Patel
2019-02-24
1
-0
/
+6
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[InstCombine] Don't undo 0 - (X * Y) canonicalization when combining subs.
Florian Hahn
2019-01-15
1
-4
/
+3
*
[InstCombine] name change: foldShuffledBinop -> foldVectorBinop; NFC
Sanjay Patel
2018-10-03
1
-4
/
+4
*
[InstCombine] Fold ~A - Min/Max(~A, O) -> Max/Min(A, ~O) - A
David Green
2018-10-02
1
-0
/
+33
*
[InstCombine] Support (sub (sext x), (sext y)) --> (sext (sub x, y)) and (sub...
Craig Topper
2018-09-15
1
-0
/
+3
*
[InstCombine] refactor mul narrowing folds; NFCI
Sanjay Patel
2018-09-14
1
-40
/
+1
*
[InstCombine] add/use overflowing math helper functions; NFC
Sanjay Patel
2018-09-14
1
-3
/
+1
*
[InstCombine] refactor add narrowing folds; NFCI
Sanjay Patel
2018-09-14
1
-71
/
+43
*
[InstCombine] Use dyn_cast instead of match(m_Constant). NFC
Craig Topper
2018-09-11
1
-4
/
+2
*
[InstCombine] Extend (add (sext x), cst) --> (sext (add x, cst')) and (add (z...
Craig Topper
2018-08-28
1
-2
/
+4
*
[InstCombine] Remove unused method FAddCombine::createFDiv(). NFC
Andrea Di Biagio
2018-08-17
1
-8
/
+0
*
[InstCombine] fix/enhance fadd/fsub factorization
Sanjay Patel
2018-08-12
1
-87
/
+45
*
[InstCombine] allow fsub+fmul FMF folds for vectors
Sanjay Patel
2018-08-09
1
-0
/
+11
*
[InstCombine] reduce code duplication; NFC
Sanjay Patel
2018-08-09
1
-9
/
+7
*
[InstCombine] fold fadd+fsub with common operand
Sanjay Patel
2018-08-08
1
-0
/
+5
*
[InstCombine] fold fsub+fsub with common operand
Sanjay Patel
2018-08-08
1
-0
/
+8
*
[InstCombine] fold fneg into constant operand of fmul/fdiv
Sanjay Patel
2018-08-08
1
-2
/
+15
*
Remove trailing space
Fangrui Song
2018-07-30
1
-1
/
+1
*
[InstCombine] try to fold 'add+sub' to 'not+add'
Sanjay Patel
2018-07-29
1
-0
/
+8
*
[InstCombine] try to fold 'sub' to 'not'
Sanjay Patel
2018-07-28
1
-1
/
+7
*
[InstCombine] return when SimplifyAssociativeOrCommutative makes a change
Sanjay Patel
2018-07-13
1
-3
/
+8
*
[InstCombine] (A + 1) + (B ^ -1) --> A - B
Gil Rapaport
2018-06-26
1
-0
/
+5
*
[InstCombine] simplify binops before trying other folds
Sanjay Patel
2018-06-21
1
-14
/
+16
*
[InstCombine] fold another shifty abs pattern to cmp+sel (PR36036)
Sanjay Patel
2018-06-06
1
-0
/
+21
*
[InstCombine] PR37603: low bit mask canonicalization
Roman Lebedev
2018-06-06
1
-0
/
+27
*
[InstCombine] improve sub with bool folds
Sanjay Patel
2018-06-03
1
-13
/
+14
*
[InstCombine] call simplify before trying vector folds
Sanjay Patel
2018-06-02
1
-15
/
+12
*
[InstCombine] don't negate constant expression with fsub (PR37605)
Sanjay Patel
2018-05-30
1
-1
/
+3
*
[InstCombine] Negate ABS/NABS patterns by swapping the select operands to rem...
Craig Topper
2018-05-23
1
-0
/
+16
*
[InstCombine] Moving overflow computation logic from InstCombine to ValueTrac...
Omer Paparo Bivas
2018-05-10
1
-42
/
+0
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-01
1
-2
/
+2
*
[PatternMatch] Stabilize the matching order of commutative matchers
Roman Lebedev
2018-04-27
1
-15
/
+4
*
[InstCombine] Simplify Add with remainder expressions as operands.
Sanjoy Das
2018-04-26
1
-0
/
+109
*
[InstCombine] simplify fneg+fadd folds; NFC
Sanjay Patel
2018-04-16
1
-8
/
+7
*
[InstCombine] Enable Add/Sub simplifications with only 'reassoc' FMF
Warren Ristow
2018-04-14
1
-3
/
+4
*
[InstCombine] limit X - (cast(-Y) --> X + cast(Y) with hasOneUse()
Sanjay Patel
2018-04-11
1
-10
/
+10
*
[InstCombine] limit nsz: -(X - Y) --> Y - X to hasOneUse()
Sanjay Patel
2018-04-06
1
-12
/
+9
*
[InstCombine] FP: Z - (X - Y) --> Z + (Y - X)
Sanjay Patel
2018-04-05
1
-2
/
+11
*
[InstCombine] nsz: -(X - Y) --> Y - X
Sanjay Patel
2018-04-05
1
-4
/
+11
*
[InstCombine] use pattern matchers for fsub --> fadd folds
Sanjay Patel
2018-04-05
1
-4
/
+9
*
[PatternMatch] allow undef elements when matching vector FP +0.0
Sanjay Patel
2018-03-25
1
-1
/
+1
*
[InstCombine] (~X) - (~Y) --> Y - X
Sanjay Patel
2018-03-03
1
-0
/
+5
*
[InstCombine] move constant check into foldBinOpIntoSelectOrPhi; NFCI
Sanjay Patel
2018-02-28
1
-4
/
+3
*
[InstCombine] use FMF-copying functions to reduce code; NFCI
Sanjay Patel
2018-02-23
1
-28
/
+12
*
[InstCombine] canonicalize constant-minus-boolean to select-of-constants
Sanjay Patel
2017-12-06
1
-1
/
+6
[next]