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
/
InstCombineAndOrXor.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[InstSimplify] use ConstantRange to simplify or-of-icmps
Sanjay Patel
2017-05-07
1
-55
/
+2
*
[InstCombine] don't use DeMorgan's Law on integer constants (2nd try)
Sanjay Patel
2017-05-02
1
-18
/
+21
*
revert r301923 : [InstCombine] don't use DeMorgan's Law on integer constants
Sanjay Patel
2017-05-02
1
-21
/
+18
*
[InstCombine] don't use DeMorgan's Law on integer constants
Sanjay Patel
2017-05-02
1
-18
/
+21
*
[InstCombine] check one-use before applying DeMorgan nor/nand folds
Sanjay Patel
2017-05-01
1
-10
/
+14
*
[InstCombine] fix matcher to bind to specific operand (PR32830)
Sanjay Patel
2017-04-27
1
-1
/
+1
*
InstCombine: Use the new SimplifyQuery versions of Simplify*. Use AssumptionC...
Daniel Berlin
2017-04-26
1
-3
/
+3
*
[InstCombine] Add missing commute handling to (A | B) & (B ^ (~A)) -> (A & B)
Craig Topper
2017-04-25
1
-3
/
+8
*
[InstCombine] Use commutable matchers to reduce some code. NFC
Craig Topper
2017-04-25
1
-4
/
+2
*
[InstSimplify] use ConstantRange to simplify more and-of-icmps
Sanjay Patel
2017-04-24
1
-40
/
+0
*
[InstSimplify] move (A & ~B) | (A ^ B) -> (A ^ B) from InstCombine
Sanjay Patel
2017-04-24
1
-13
/
+0
*
[InstCombine] add/move folds for [not]-xor
Sanjay Patel
2017-04-23
1
-38
/
+67
*
[InstCombine] add pattern matches for commuted variants of xor-to-xor
Sanjay Patel
2017-04-23
1
-34
/
+55
*
[InstCombine] use 'match' to reduce code; NFCI
Sanjay Patel
2017-04-22
1
-36
/
+31
*
[APInt] Rename getSignBit to getSignMask
Craig Topper
2017-04-20
1
-2
/
+2
*
[InstCombine] Matchers work with both ConstExpr and Instructions.
Davide Italiano
2017-04-17
1
-2
/
+2
*
[InstCombine] allow (X != C1 && X != C2) and similar patterns to match splat ...
Sanjay Patel
2017-04-15
1
-19
/
+19
*
[InstCombine] (X != C1 && X != C2) --> (X | (C1 ^ C2)) != C2
Sanjay Patel
2017-04-14
1
-36
/
+65
*
[InstCombine] fold X == 0 || X == -1 to one compare (PR32524)
Sanjay Patel
2017-04-13
1
-1
/
+5
*
[InstCombine] use similar ops for related folds; NFCI
Sanjay Patel
2017-04-13
1
-10
/
+9
*
[InstCombine] fix assert to not always be true
Sanjay Patel
2017-04-13
1
-1
/
+1
*
[InstCombine] morph an existing instruction instead of creating a new one
Sanjay Patel
2017-04-12
1
-7
/
+6
*
[InstCombine][IR] Add a commutable BinOp matcher. Use it to reduce some code....
Craig Topper
2017-04-12
1
-2
/
+1
*
revert r299851 - [InstCombine] fix matching of or-of-icmps constants (PR32524)
Sanjay Patel
2017-04-11
1
-16
/
+12
*
[InstCombine] improve variable names; NFCI
Sanjay Patel
2017-04-10
1
-34
/
+34
*
[InstCombine] fix matching of or-of-icmps constants (PR32524)
Sanjay Patel
2017-04-10
1
-12
/
+16
*
[InstCombine] use m_c_And and m_c_Xor to handle commuted versions of a transf...
Craig Topper
2017-04-10
1
-2
/
+2
*
[InstCombine] Remove unnecessary dyn_cast to BinaryOperator around some match...
Craig Topper
2017-04-10
1
-31
/
+29
*
[InstCombine] Make the (A|B)^B -> A & ~B transform code consistent with the v...
Craig Topper
2017-04-10
1
-5
/
+5
*
[InstCombine] Use m_OneUse to shorten some code. NFC
Craig Topper
2017-04-10
1
-6
/
+3
*
[InstCombine] remove dead cases from icmp pair switches; NFCI
Sanjay Patel
2017-04-09
1
-32
/
+0
*
[InstCombine] Extend some OR combines to support vectors.
Craig Topper
2017-04-09
1
-19
/
+23
*
[InstCombine] Extend a canonicalization check to apply to vector constants too.
Craig Topper
2017-04-09
1
-1
/
+2
*
[InstCombine] Use the SubOne helper function to shorten some code. NFC
Craig Topper
2017-04-09
1
-7
/
+4
*
[InstCombine] rename variable for easier reading; NFC
Craig Topper
2017-04-09
1
-9
/
+9
*
[InstCombine] Handle more commuted cases of ((A & B) | ~A) -> (~A | B)
Craig Topper
2017-04-07
1
-3
/
+4
*
[InstCombine] Add more commuted patterns to support folding ((~A & B) | A) ->...
Craig Topper
2017-04-07
1
-3
/
+4
*
[InstCombine] Remove redundant combine from visitAnd
Craig Topper
2017-04-06
1
-90
/
+0
*
[InstCombine] Fix a case where we weren't checking that an instruction had a ...
Craig Topper
2017-04-06
1
-6
/
+9
*
[InstCombine] fix formatting and variable names; NFCI
Sanjay Patel
2017-04-05
1
-236
/
+252
*
[InstCombine] Support folding and/or/xor with a constant vector RHS into sele...
Craig Topper
2017-04-04
1
-3
/
+6
*
[InstCombine] Remove canonicalization for (X & C1) | C2 --> (X | C2) & (C1|C2...
Craig Topper
2017-04-03
1
-11
/
+0
*
[DAGCombine][InstCombine] Fix inverted if condition in equivalent comments in...
Craig Topper
2017-04-03
1
-1
/
+1
*
Revert r299337 "[InstCombine] Remove redundant combine from visitAnd"
Craig Topper
2017-04-03
1
-0
/
+87
*
[InstCombine] fix formatting for foldLogOpOfMaskedICmps and related bits; NFCI
Sanjay Patel
2017-04-03
1
-145
/
+158
*
[InstCombine] Remove a And transform that should be handled by SimplifyDemand...
Craig Topper
2017-04-03
1
-7
/
+0
*
[InstCombine] Make InstCombiner::OptAndOp take a BinaryOperator instead of an...
Craig Topper
2017-04-02
1
-3
/
+3
*
[InstCombine] Remove redundant combine from visitAnd
Craig Topper
2017-04-02
1
-87
/
+0
*
[APInt] Fix bugs in isShiftedMask to match behavior of the similar function i...
Craig Topper
2017-03-31
1
-1
/
+1
*
[InstCombine] Remove some code from visitAnd that dealt with trying to reduce...
Craig Topper
2017-03-23
1
-12
/
+0
[prev]
[next]