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
...
*
Removing an unused variable that was missed with the refactoring in r310272; ...
Aaron Ballman
2017-08-07
1
-3
/
+0
*
[InstCombine] Support (X | C1) & C2 --> (X & C2^(C1&C2)) | (C1&C2) for vector...
Craig Topper
2017-08-07
1
-15
/
+16
*
[InstCombine] Remove shift handling from OptAndOp.
Craig Topper
2017-08-06
1
-58
/
+0
*
[InstCombine] Support (X ^ C1) & C2 --> (X & C2) ^ (C1&C2) for vector splats.
Craig Topper
2017-08-06
1
-8
/
+10
*
[InstCombine] Support '(C - X) ^ signmask -> (C + signmask - X)' and '(X + C)...
Craig Topper
2017-08-06
1
-16
/
+11
*
[InstCombine] Support ~(c-X) --> X+(-c-1) and ~(X-c) --> (-c-1)-X for splat v...
Craig Topper
2017-08-06
1
-14
/
+25
*
[InstCombine] Fold (C - X) ^ signmask -> (C + signmask - X).
Craig Topper
2017-08-05
1
-6
/
+11
*
[InstCombine] Remove the (not (sext)) case from foldBoolSextMaskToSelect and ...
Craig Topper
2017-08-04
1
-27
/
+8
*
[InstCombine] Remove explicit code for folding (xor(zext(cmp)), 1) and (xor(s...
Craig Topper
2017-08-02
1
-15
/
+0
*
[InstCombine] Support sext in foldLogicCastConstant
Craig Topper
2017-08-02
1
-4
/
+14
*
[InstCombine] allow mask hoisting transform for vector types
Sanjay Patel
2017-07-31
1
-33
/
+27
*
[InstCombine] Move (0 - x) & 1 --> x & 1 to SimplifyDemandedUseBits.
Craig Topper
2017-07-16
1
-5
/
+1
*
[InstCombine] Improve the expansion in SimplifyUsingDistributiveLaws to handl...
Craig Topper
2017-07-15
1
-18
/
+0
*
[InstCombine] improve (1 << x) & 1 --> zext(x == 0) folding
Sanjay Patel
2017-07-15
1
-15
/
+13
*
[InstCombine] allow (0 - x) & 1 --> x & 1 for vectors
Sanjay Patel
2017-07-15
1
-6
/
+5
*
[InstCombine] remove dead code/tests; NFCI
Sanjay Patel
2017-07-15
1
-11
/
+0
*
[IR] Add Type::isIntOrIntVectorTy(unsigned) similar to the existing isInteger...
Craig Topper
2017-07-09
1
-8
/
+7
*
[InstCombine] Make InstCombine's IRBuilder be passed by reference everywhere
Craig Topper
2017-07-07
1
-132
/
+132
*
[Constants] If we already have a ConstantInt*, prefer to use isZero/isOne/isM...
Craig Topper
2017-07-06
1
-3
/
+3
*
[InstCombine] Change helper method to a file local static method. NFC
Craig Topper
2017-07-06
1
-4
/
+5
*
[InstCombine] Clarify comment to mention other transform that it does. NFC
Craig Topper
2017-07-06
1
-1
/
+2
*
[InstCombine] Add single use checks to SimplifyBSwap to ensure we are really ...
Craig Topper
2017-07-06
1
-4
/
+9
*
[InstCombine] Use CmpInst::Predicate with m_Cmp instead of ICmpInst::Predicat...
Craig Topper
2017-07-05
1
-1
/
+1
*
[InstCombine] Add a TODO for a probable missing single use check. NFC
Craig Topper
2017-07-03
1
-0
/
+2
*
[InstCombine] Support BITWISE_OP( BSWAP(x), CONSTANT ) -> BSWAP( BITWISE_OP(x...
Craig Topper
2017-07-03
1
-18
/
+12
*
[InstCombine] Remove support for BITWISE_OP(CONSTANT, BSWAP(x)) -> BSWAP(OP(B...
Craig Topper
2017-07-03
1
-7
/
+2
*
[InstCombine] Support BITWISE_OP(BSWAP(A),BSWAP(B))->BSWAP(BITWISE_OP(A, B)) ...
Craig Topper
2017-07-03
1
-7
/
+3
*
[InstCombine] Remove an if that should have been guaranteed by the caller. Re...
Craig Topper
2017-07-03
1
-4
/
+2
*
[InstCombine] Fold (a | b) ^ (~a | ~b) --> ~(a ^ b) and (a & b) ^ (~a & ~b) -...
Craig Topper
2017-07-02
1
-2
/
+18
*
[InstCombine] In foldXorToXor, move the commutable matcher from the LHS match...
Craig Topper
2017-06-30
1
-8
/
+8
*
[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
[prev]
[next]