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] Generalize FADD constant combines to work with vectors
Simon Pilgrim
2015-10-03
1
-16
/
+17
*
[DAGCombiner] Merge SIGN_EXTEND_INREG vector constant folding methods. NCI.
Simon Pilgrim
2015-10-03
1
-24
/
+4
*
[DAGCombine] Fix getStoreMergeAndAliasCandidates's AA-enabled chain walking
Hal Finkel
2015-09-28
1
-0
/
+2
*
DAGCombiner: Check if store is volatile first
Matt Arsenault
2015-09-25
1
-3
/
+3
*
merge vector stores into wider vector stores and fix AArch64 misaligned acces...
Sanjay Patel
2015-09-25
1
-11
/
+24
*
Use new TokenFactor chain when merging stores
Matt Arsenault
2015-09-24
1
-5
/
+29
*
[DAGCombiner] Improve FMA support for interpolation patterns
Simon Pilgrim
2015-09-21
1
-0
/
+89
*
[DAGCombiner] Tidy up FMA combine helpers. NFCI.
Simon Pilgrim
2015-09-21
1
-25
/
+21
*
Fix accidentally committed debug printing
Matt Arsenault
2015-09-21
1
-14
/
+1
*
DAGCombiner: Replace store of FP constant after attemping store merges
Matt Arsenault
2015-09-21
1
-10
/
+10
*
Factor replacement of stores of FP constants into new function
Matt Arsenault
2015-09-21
1
-72
/
+104
*
Use makeArrayRef or None to avoid unnecessarily mentioning the ArrayRef type ...
Craig Topper
2015-09-21
1
-1
/
+1
*
propagate fast-math-flags on DAG nodes
Sanjay Patel
2015-09-16
1
-99
/
+129
*
[DAGCombine] Truncate BUILD_VECTOR operators if necessary when constant foldi...
Silviu Baranga
2015-09-10
1
-11
/
+25
*
check for fastness before merging in DAGCombiner::MergeConsecutiveStores()
Sanjay Patel
2015-09-03
1
-11
/
+16
*
[DAGCombine] Fixup SETCC legality checking
Hal Finkel
2015-08-31
1
-11
/
+17
*
don't set a legal vector type if we know we can't use that type (NFCI)
Sanjay Patel
2015-08-31
1
-18
/
+12
*
generalize helper function of MergeConsecutiveStores to handle vector types (...
Sanjay Patel
2015-08-31
1
-14
/
+21
*
[DAGCombine] Use getSetCCResultType utility function
Hal Finkel
2015-08-31
1
-1
/
+1
*
[DAGCombine] Remove some old dead code for forming SETCC nodes
Hal Finkel
2015-08-31
1
-45
/
+0
*
Make MergeConsecutiveStores look at other stores on same chain
Matt Arsenault
2015-08-28
1
-24
/
+149
*
[CodeGen] Check FoldConstantArithmetic result before using it.
Ahmed Bougacha
2015-08-27
1
-2
/
+3
*
Pass function attributes instead of boolean in isIntDivCheap().
Steve King
2015-08-25
1
-9
/
+6
*
Add DAG optimisation for FP16_TO_FP
Oliver Stannard
2015-08-24
1
-0
/
+17
*
[DAGCombiner] Fold CONCAT_VECTORS of bitcasted EXTRACT_SUBVECTOR
Simon Pilgrim
2015-08-23
1
-2
/
+11
*
Do not use dyn_cast<> after isa<>
Mehdi Amini
2015-08-23
1
-1
/
+1
*
[DAGCombiner] Fold together mul and shl when both are by a constant
John Brawn
2015-08-21
1
-0
/
+8
*
[DAGCombiner] Added SMAX/SMIN/UMAX/UMIN constant folding
Simon Pilgrim
2015-08-19
1
-0
/
+29
*
[DAGCombiner] Fold CONCAT_VECTORS of EXTRACT_SUBVECTOR (or undef) to VECTOR_S...
Simon Pilgrim
2015-08-19
1
-5
/
+79
*
[TLI] Refactor "is integer division cheap" queries.
Michael Kuperstein
2015-08-19
1
-5
/
+7
*
Fix backward operands in call to isTruncateFree() and improve comments.
Steve King
2015-08-18
1
-2
/
+2
*
DAGCombiner: Improve DAGCombiner select normalization
Matthias Braun
2015-08-18
1
-20
/
+30
*
DAGCombiner: Optimize SELECTs first before turning them into SELECT_CC
Matthias Braun
2015-08-18
1
-32
/
+32
*
use SDValue bool operator; NFCI
Sanjay Patel
2015-08-16
1
-4
/
+3
*
[DAGCombiner] Attempt to mask vectors before zero extension instead of after.
Simon Pilgrim
2015-08-15
1
-14
/
+28
*
PseudoSourceValue: Replace global manager with a manager in a machine function.
Alex Lorenz
2015-08-11
1
-3
/
+4
*
SelectionDAG: Prefer to combine multiplication with less uses for fma
Jingyue Wu
2015-08-11
1
-0
/
+8
*
wrap OptSize and MinSize attributes for easier and consistent access (NFCI)
Sanjay Patel
2015-08-04
1
-3
/
+1
*
Remove trailing whitespace. NFCI.
Simon Pilgrim
2015-08-01
1
-7
/
+7
*
Use SDValue bool check. NFCI.
Simon Pilgrim
2015-08-01
1
-20
/
+10
*
[DAGCombiner] Convert constant AND masks to shuffle clear masks down to the b...
Simon Pilgrim
2015-08-01
1
-21
/
+64
*
move DAGCombiner's allowableAlignment() helper function into the TLI
Sanjay Patel
2015-07-29
1
-36
/
+33
*
ignore duplicate divisor uses when transforming into reciprocal multiplies (P...
Sanjay Patel
2015-07-28
1
-4
/
+4
*
fix TLI's combineRepeatedFPDivisors interface to return the minimum user thre...
Sanjay Patel
2015-07-28
1
-4
/
+10
*
move combineRepeatedFPDivisors logic into a helper function; NFCI
Sanjay Patel
2015-07-27
1
-42
/
+57
*
[DAGCombiner] Fixed minor typo that was missed in D9097.
Simon Pilgrim
2015-07-19
1
-2
/
+2
*
Use SDValue bool check. NFCI.
Simon Pilgrim
2015-07-19
1
-58
/
+39
*
Only do fmul (fadd x, x), c combine if the fadd only has one use
Matt Arsenault
2015-07-17
1
-1
/
+3
*
Use more foreach loops in SelectionDAG. NFC
Pete Cooper
2015-07-14
1
-3
/
+2
*
DAGCombiner: Assume invariant load cannot alias a store
Matt Arsenault
2015-07-10
1
-0
/
+9
[next]