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
/
CodeGen
/
SelectionDAG
/
DAGCombiner.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[DAGCombiner] simplifyDivRem - add comment describing divide by undef/zero co...
Simon Pilgrim
2018-08-13
1
-0
/
+5
*
DAG: Check no-signed-zeros instead of unsafe-fp-math
Matt Arsenault
2018-08-12
1
-3
/
+3
*
extend folding fsub/fadd to fneg for FMF
Michael Berg
2018-08-09
1
-8
/
+10
*
[DAGCombiner] loosen constraints for fsub+fadd fold
Sanjay Patel
2018-08-08
1
-14
/
+7
*
[DAGCombiner] move fadd simplification ahead of other folds
Sanjay Patel
2018-08-08
1
-9
/
+6
*
[DAG] DAGCombiner::visitSDIVLike - remove unnecessary isConstOrConstSplat cal...
Simon Pilgrim
2018-08-08
1
-4
/
+1
*
[SelectionDAG] When splitting scatter nodes during DAGCombine, create a seria...
Craig Topper
2018-08-07
1
-12
/
+10
*
[DAG] Allow non-uniform constant vectors to call BuildSDIV
Simon Pilgrim
2018-08-07
1
-1
/
+2
*
[TargetLowering] Add support for non-uniform vectors to BuildUDIV
Simon Pilgrim
2018-08-07
1
-16
/
+21
*
[SelectionDAG][X86] Rename MaskedLoadSDNode::getSrc0 to getPassThru.
Craig Topper
2018-08-07
1
-7
/
+7
*
[SelectionDAG][X86] Rename getValue to getPassThru for gather SDNodes.
Craig Topper
2018-08-07
1
-5
/
+5
*
[TargetLowering] Generalise BuildSDIV function
Simon Pilgrim
2018-08-03
1
-13
/
+6
*
[DAGCombiner][TargetLowering] Pass a SmallVector instead of a std::vector to ...
Craig Topper
2018-07-30
1
-4
/
+3
*
[DAGCombiner] transform sub-of-shifted-signbit to add
Sanjay Patel
2018-07-30
1
-0
/
+11
*
[DAGCombiner][PowerPC][AArch64] Pass Created vector by reference to BuildSDIV...
Craig Topper
2018-07-30
1
-1
/
+1
*
Revert r338222 "[DAGCombiner] Remove unnecessary calls to AddToWorklist."
Craig Topper
2018-07-30
1
-8
/
+46
*
Remove trailing space
Fangrui Song
2018-07-30
1
-15
/
+15
*
[DAGCombiner] Bug 31275- Extract a shift from a constant mul or udiv if a rot...
David Bolvansky
2018-07-30
1
-17
/
+156
*
[DAGCombiner] Remove unnecessary calls to AddToWorklist.
Craig Topper
2018-07-29
1
-46
/
+8
*
[SelectionDAG] Pass std::vector by reference instead of by pointer to BuildSD...
Craig Topper
2018-07-28
1
-2
/
+2
*
[DAGCombiner] Teach DAG combiner that A-(B-C) can be folded to A+(C-B)
Craig Topper
2018-07-28
1
-0
/
+6
*
[DAGCombiner] fold 'not' with signbit math
Sanjay Patel
2018-07-27
1
-0
/
+45
*
[DAGCombiner] Remove some calls to AddToWorklist that should be unnecessary.
Craig Topper
2018-07-26
1
-3
/
+0
*
[DAG] Avoid Node Update assertion due to AND simplification
Nirav Dave
2018-07-20
1
-3
/
+5
*
[DAG] Fix Memory ordering check in ReduceLoadOpStore.
Nirav Dave
2018-07-20
1
-16
/
+18
*
[DAGCombiner] Fold X - (-Y *Z) -> X + (Y * Z)
Craig Topper
2018-07-20
1
-0
/
+18
*
[DAGCombiner] Teach DAGCombiner that A-(-B) is A+B.
Craig Topper
2018-07-19
1
-0
/
+5
*
[DAGCombiner] Call SimplifyDemandedVectorElts from EXTRACT_VECTOR_ELT
Simon Pilgrim
2018-07-17
1
-4
/
+23
*
[CodeGen] Fix inconsistent declaration parameter name
Fangrui Song
2018-07-16
1
-11
/
+11
*
[DAGCombiner] fix typo in comment; NFC
Sanjay Patel
2018-07-15
1
-1
/
+1
*
[DAGCombiner] extend(ifpositive(X)) -> shift-right (not X)
Sanjay Patel
2018-07-15
1
-0
/
+37
*
[NFC][InstCombine] Converts isLegalNarrowLoad into isLegalNarrowLdSt
Diogo N. Sampaio
2018-07-11
1
-41
/
+55
*
[SelectionDAG] Add constant buildvector support to isKnownNeverZero
Simon Pilgrim
2018-07-11
1
-4
/
+1
*
[DAGCombiner] Support non-uniform X%C -> X-(X/C)*C folds
Simon Pilgrim
2018-07-11
1
-1
/
+4
*
[DAGCombiner] Add (urem X, -1) -> select(X == -1, 0, x) fold
Simon Pilgrim
2018-07-11
1
-0
/
+6
*
[DAGCombiner] Add special case fast paths for udiv x,1 and udiv x,-1
Simon Pilgrim
2018-07-10
1
-0
/
+9
*
[DAGCombiner] visitREM - call visitSDIVLike/visitUDIVLike directly to avoid r...
Simon Pilgrim
2018-07-10
1
-12
/
+9
*
[DAGCombiner] Split SDIV/UDIV optimization expansions from the rest of the co...
Simon Pilgrim
2018-07-10
1
-15
/
+44
*
[X86][TLI] DAGCombine: Unfold variable bit-clearing mask to two shifts.
Roman Lebedev
2018-07-09
1
-0
/
+58
*
[DAGCombiner] Add EXTRACT_SUBVECTOR to SimplifyDemandedVectorElts
Simon Pilgrim
2018-07-07
1
-0
/
+3
*
Revert 336426 (and follow-ups 428, 440), it very likely caused PR38084.
Nico Weber
2018-07-06
1
-105
/
+0
*
Added missing semicolon
Diogo N. Sampaio
2018-07-06
1
-2
/
+1
*
[SelectionDAG] https://reviews.llvm.org/D48278
Diogo N. Sampaio
2018-07-06
1
-0
/
+106
*
Testing commit permision
Diogo N. Sampaio
2018-07-05
1
-1
/
+1
*
[DAGCombiner] visitSDIV - Permit MIN_SIGNED_VALUE in pow2 vector codegen
Simon Pilgrim
2018-07-03
1
-2
/
+0
*
[DAGCombiner] Handle correctly non-splat power of 2 -1 divisor (PR37119)
Simon Pilgrim
2018-06-30
1
-7
/
+9
*
[DAGCombiner] Ensure we use the correct CC result type in visitSDIV (REAPPLIED)
Simon Pilgrim
2018-06-28
1
-5
/
+6
*
Revert "[DAGCombiner] Ensure we use the correct CC result type in visitSDIV"
Haojian Wu
2018-06-28
1
-6
/
+5
*
[DAGCombiner] Ensure we use the correct CC result type in visitSDIV
Simon Pilgrim
2018-06-28
1
-5
/
+6
*
[DAGCombiner] Remove unused variable. NFCI.
Simon Pilgrim
2018-06-28
1
-2
/
+0
[prev]
[next]