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] Rewrite bswap/bitreverse handling completely.
James Molloy
2016-01-15
1
-179
/
+8
*
getParent() ^ 3 == getModule() ; NFCI
Sanjay Patel
2015-12-14
1
-6
/
+4
*
[InstCombine] Make MatchBSwap also match bit reversals
James Molloy
2015-12-11
1
-102
/
+135
*
Do (A == C1 || A == C2) -> (A & ~(C1 ^ C2)) == C1 rather than (A == C1 || A =...
David Majnemer
2015-12-02
1
-4
/
+4
*
[InstCombine] transform masking off of an FP sign bit into a fabs() intrinsic...
Sanjay Patel
2015-10-08
1
-4
/
+19
*
[InstCombine] match De Morgan's Law hidden by zext ops (PR22723)
Sanjay Patel
2015-09-25
1
-5
/
+25
*
[InstCombine] Recognize another bswap idiom.
Charlie Turner
2015-09-24
1
-5
/
+9
*
refactor matches for De Morgan's Laws; NFCI
Sanjay Patel
2015-09-08
1
-17
/
+32
*
remove function names from comments; NFC
Sanjay Patel
2015-09-08
1
-49
/
+45
*
Optimize bitwise even/odd test (-x&1 -> x&1) to not use negation.
Balaram Makam
2015-08-20
1
-0
/
+4
*
Fix a crash where a utility function wasn't aware of fcmp vectors and created...
Nick Lewycky
2015-08-14
1
-1
/
+2
*
[ConstantRange] Split makeICmpRegion in two.
Sanjoy Das
2015-03-18
1
-2
/
+2
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-6
/
+8
*
New instcombine rule: max(~a,~b) -> ~min(a, b)
Sanjoy Das
2015-02-24
1
-21
/
+5
*
InstCombine: Allow folding of xor into icmp by changing the predicate for vec...
Benjamin Kramer
2015-02-12
1
-3
/
+4
*
[PM] Rename InstCombine.h to InstCombineInternal.h in preparation for
Chandler Carruth
2015-01-22
1
-1
/
+1
*
[PM] Split the AssumptionTracker immutable pass into two separate APIs:
Chandler Carruth
2015-01-04
1
-9
/
+9
*
InstCombe: Infer nsw for multiplies
David Majnemer
2014-12-26
1
-2
/
+1
*
[InstCombine] Minor optimization for bswap with binary ops
Simon Pilgrim
2014-12-04
1
-0
/
+64
*
InstCombine: simplify signed range checks
Erik Eckstein
2014-12-03
1
-0
/
+73
*
InstCombine: FoldOrOfICmps harder
David Majnemer
2014-11-28
1
-2
/
+25
*
InstCombine: Fold away tautological masked compares
David Majnemer
2014-11-18
1
-1
/
+1
*
InstCombine: Clean up foldLogOpOfMaskedICmps
David Majnemer
2014-11-18
1
-16
/
+14
*
InstCombine: Turn (x != 0 & x <u C) into the canonical range check form (x-1 ...
Benjamin Kramer
2014-10-12
1
-0
/
+2
*
Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.)
Hal Finkel
2014-09-07
1
-21
/
+29
*
InstCombine: Remove a special case pattern
David Majnemer
2014-09-05
1
-15
/
+18
*
InstCombine: Try harder to combine icmp instructions
David Majnemer
2014-08-30
1
-3
/
+25
*
This patch enables SimplifyUsingDistributiveLaws() to handle following pattens.
Dinesh Dwivedi
2014-08-26
1
-39
/
+0
*
InstCombine: Fold ((A | B) & C1) ^ (B & C2) -> (A & C1) ^ B if C1^C2=-1
David Majnemer
2014-08-21
1
-0
/
+44
*
New InstCombine pattern: (icmp ult/ule (A + C1), C3) | (icmp ult/ule (A + C2)...
Yi Jiang
2014-08-20
1
-0
/
+55
*
InstCombine: ((A & ~B) ^ (~A & B)) to A ^ B
Mayur Pandey
2014-08-19
1
-0
/
+10
*
test commit (spelling correction)
Mayur Pandey
2014-08-19
1
-1
/
+1
*
InstCombine: ((A | ~B) ^ (~A | B)) to A ^ B
David Majnemer
2014-08-14
1
-0
/
+10
*
Added InstCombine Transform for ((B | C) & A) | B -> B | (A & C)
David Majnemer
2014-08-14
1
-0
/
+4
*
InstCombine: Combine (xor (or %a, %b) (xor %a, %b)) to (add %a, %b)
Karthik Bhat
2014-08-13
1
-0
/
+12
*
This patch implements transform for pattern "(A & ~B) ^ (~A) -> ~(A & B)".
Suyog Sarda
2014-08-01
1
-0
/
+5
*
This patch implements transform for pattern "(A | B) & ((~A) ^ B) -> (A & B)".
Suyog Sarda
2014-08-01
1
-0
/
+10
*
This patch implements transform for pattern "( A & (~B)) | (A ^ B) -> (A ^ B)"
Suyog Sarda
2014-08-01
1
-0
/
+10
*
This patch implements transform for pattern "(A & B) | ((~A) ^ B) -> (~A ^ B)".
Suyog Sarda
2014-08-01
1
-0
/
+10
*
InstCombine: Simplify (A ^ B) or/and (A ^ B ^ C)
David Majnemer
2014-07-30
1
-0
/
+24
*
Added InstCombine transform for pattern "(A & B) ^ (A ^ B) -> (A | B)"
Suyog Sarda
2014-07-22
1
-0
/
+8
*
Added InstCombine Transform for patterns:
Suyog Sarda
2014-07-22
1
-0
/
+10
*
This patch implements transform for pattern "(A | B) ^ (~A) -> (A | ~B)".
Suyog Sarda
2014-07-22
1
-0
/
+6
*
Move optimization of some cases of (A & C1)|(B & C2) from instcombine to inst...
Nick Lewycky
2014-06-19
1
-23
/
+0
*
Reorder shuffle and binary operation.
Serge Pavlov
2014-05-11
1
-0
/
+9
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-69
/
+69
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
[Modules] Sink all the DEBUG_TYPE defines for InstCombine out of the
Chandler Carruth
2014-04-21
1
-0
/
+1
*
[Modules] Move the ConstantRange class into the IR library. This is
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[Modules] Move the LLVM IR pattern match header into the IR library, it
Chandler Carruth
2014-03-04
1
-1
/
+1
[next]