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
*
[DAGCombine] Fix crash when store merging created an extract_subvector with i...
Amara Emerson
2018-09-13
1
-1
/
+8
*
[DAGCombiner] improve formatting for select+setcc code; NFC
Sanjay Patel
2018-09-12
1
-17
/
+15
*
[DAGCombiner] foldBitcastedFPLogic - Add basic vector support
Simon Pilgrim
2018-09-07
1
-8
/
+8
*
[DAGCombiner] try to convert pow(x, 0.25) to sqrt(sqrt(x))
Sanjay Patel
2018-09-05
1
-0
/
+41
*
[DAGCombiner] Fix bad identation. NFC
Craig Topper
2018-08-30
1
-1
/
+1
*
[DAGCombiner] Add X / X -> 1 & X % X -> 0 folds
Simon Pilgrim
2018-08-29
1
-1
/
+18
*
[DAGCombine] Rework MERGE_VALUES to inline in single pass. NFCI.
Nirav Dave
2018-08-28
1
-1
/
+4
*
[DAGCombiner][AMDGPU][Mips] Fold bitcast with volatile loads if the resulting...
Craig Topper
2018-08-28
1
-3
/
+12
*
DAG: Check transformed type for forming fminnum/fmaxnum from vselect
Matt Arsenault
2018-08-27
1
-2
/
+3
*
[SelectionDAG] add helper query for binops; NFC
Sanjay Patel
2018-08-27
1
-11
/
+2
*
[SelectionDAG][x86] turn insertelement into undef with variable index into splat
Sanjay Patel
2018-08-26
1
-3
/
+10
*
DAG: Allow matching fminnum/fmaxnum from vselect
Matt Arsenault
2018-08-24
1
-8
/
+27
*
[DAGCombiner][Mips] Don't combine bitcast+store after LegalOperations when th...
Craig Topper
2018-08-24
1
-1
/
+1
*
[DAGCombiner] Reduce load widths of shifted masks
Sam Parker
2018-08-21
1
-8
/
+41
*
[DAGCombiner] Allow divide by constant optimization on opaque constants.
Craig Topper
2018-08-18
1
-2
/
+2
*
[DAGCombiner] extractShiftForRotate - fix out of range shift issue
Simon Pilgrim
2018-08-17
1
-2
/
+2
*
[DAGCombine] Improve (sra (sra x, c1), c2) -> (sra x, (add c1, c2)) folding
Simon Pilgrim
2018-08-17
1
-17
/
+16
*
[DAGCombiner] Don't reassociate operations that have the vector reduction fla...
Craig Topper
2018-08-16
1
-9
/
+13
*
[DagCombiner] Don't bother adding to the work list if TLI.BuildSDIVPow2 faile...
Simon Pilgrim
2018-08-15
1
-4
/
+6
*
[ARM] Make PerformSHLSimplify add nodes to the DAG worklist correctly.
Eli Friedman
2018-08-14
1
-2
/
+3
*
[DAG] Avoid redundant chain transversal in store merge cycle check. NFCI.
Nirav Dave
2018-08-14
1
-1
/
+2
*
[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
[next]