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
*
[InstCombine] In visitXor, use m_Not on the instruction itself instead of loo...
Craig Topper
2017-06-29
1
-3
/
+2
*
[InstCombine] Add one use checks to or/and->xnor folding
Craig Topper
2017-06-22
1
-6
/
+8
*
[InstCombine] reverse bitcast + bitwise-logic canonicalization (PR33138)
Sanjay Patel
2017-06-22
1
-16
/
+10
*
[InstCombine] add peekThroughBitcast() helper; NFC
Sanjay Patel
2017-06-22
1
-6
/
+2
*
[InstCombine] Cleanup using commutable matchers. Make a couple helper methods...
Craig Topper
2017-06-21
1
-21
/
+19
*
[InstCombine] fix code/test comments for r305792; NFC
Sanjay Patel
2017-06-20
1
-1
/
+1
*
[InstCombine] try to canonicalize xor-of-icmps to and-of-icmps
Sanjay Patel
2017-06-20
1
-0
/
+24
*
[InstCombine] Cleanup some duplicated one use checks
Craig Topper
2017-06-19
1
-10
/
+4
*
[InstCombine] Fold (!iszero(A & K1) & !iszero(A & K2)) -> (A & (K1 | K2)) ==...
Craig Topper
2017-06-16
1
-31
/
+58
*
[InstCombine] Add two FIXMEs for bad single use checks. NFC
Craig Topper
2017-06-15
1
-0
/
+4
*
[InstCombine] Make the context instruction parameter of foldOrOfICmps a refer...
Craig Topper
2017-06-15
1
-9
/
+9
*
[InstCombine] Handle (iszero(A & K1) | iszero(A & K2)) -> (A & (K1 | K2)) != ...
Craig Topper
2017-06-15
1
-20
/
+14
*
[InstCombine] Pass a proper context instruction to all of the calls into Inst...
Craig Topper
2017-06-09
1
-3
/
+3
*
[InstCombine][InstSimplify] Use APInt::isNullValue/isOneValue to reduce compi...
Craig Topper
2017-06-07
1
-10
/
+11
*
[InstCombine] Add an InstCombine specific wrapper around isKnownToBeAPowerOfT...
Craig Topper
2017-05-25
1
-8
/
+4
*
[InstCombine] add helper to foldXorOfICmps(); NFCI
Sanjay Patel
2017-05-18
1
-37
/
+42
*
[ValueTracking] Replace all uses of ComputeSignBit with computeKnownBits.
Craig Topper
2017-05-15
1
-3
/
+2
*
[InstCombine] remove fold that swaps xor/or with constants; NFCI
Sanjay Patel
2017-05-10
1
-12
/
+0
*
[InstCombine] clean up matchDeMorgansLaws(); NFCI
Sanjay Patel
2017-05-09
1
-32
/
+13
*
[InstCombine] add folds for not-of-shift-right
Sanjay Patel
2017-05-08
1
-15
/
+32
*
[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
[next]