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
*
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
*
fix an invisible bug when combining repeated FP divisors
Sanjay Patel
2015-07-09
1
-2
/
+9
*
Re-instate the EVT parameter to getScalarShiftAmountTy() for OOT user
Mehdi Amini
2015-07-09
1
-1
/
+2
*
Make isLegalAddressingMode() taking DataLayout as an argument
Mehdi Amini
2015-07-09
1
-1
/
+2
*
Make TargetLowering::getShiftAmountTy() taking DataLayout as an argument
Mehdi Amini
2015-07-09
1
-2
/
+1
*
Make TargetLowering::getPointerTy() taking DataLayout as an argument
Mehdi Amini
2015-07-09
1
-11
/
+16
*
early exits -> less indenting; NFCI
Sanjay Patel
2015-07-08
1
-23
/
+22
*
Remove IsLittleEndian from TargetLowering and redirect to DataLayout
Mehdi Amini
2015-07-08
1
-2
/
+2
*
Redirect DataLayout from TargetMachine to Module in SelectionDAG
Mehdi Amini
2015-07-07
1
-24
/
+24
*
Reapply r240291: Fix shl folding in DAG combiner.
Pawel Bylica
2015-07-02
1
-1
/
+1
*
[DAGCombiner] Fix & simplify constant folding of sext/zext.
Pawel Bylica
2015-06-29
1
-13
/
+11
*
[SDAG] Now that we have a way to communicate the exact bit on sdiv use it to ...
Benjamin Kramer
2015-06-27
1
-0
/
+4
*
Convert a bunch of loops to foreach. NFC.
Pete Cooper
2015-06-26
1
-14
/
+12
*
[DAGCombine] fold (X >>?,exact C1) << C2 --> X << (C2-C1)
Benjamin Kramer
2015-06-26
1
-0
/
+16
*
DAGCombiner: Use pop_back_val()
Matt Arsenault
2015-06-25
1
-2
/
+1
*
DAGCombiner: Remove redundant check
Matt Arsenault
2015-06-25
1
-1
/
+1
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-3
/
+3
*
Revert r240291: causes problems in self-hosted builds.
Pawel Bylica
2015-06-22
1
-1
/
+1
*
Fix shl folding in DAG combiner.
Pawel Bylica
2015-06-22
1
-1
/
+1
*
[PM/AA] Hoist the AliasResult enum out of the AliasAnalysis class.
Chandler Carruth
2015-06-22
1
-2
/
+2
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-3
/
+3
*
[PM/AA] Remove the Location typedef from the AliasAnalysis class now
Chandler Carruth
2015-06-17
1
-6
/
+4
*
rename variables; NFC
Sanjay Patel
2015-06-16
1
-13
/
+13
*
extract some code into a helper function for MergeConsecutiveStores(); NFCI
Sanjay Patel
2015-06-16
1
-43
/
+57
*
propagate IR-level fast-math-flags to DAG nodes, disabled by default
Sanjay Patel
2015-06-16
1
-5
/
+2
*
Revert "Revert "Fix merges of non-zero vector stores""
Matt Arsenault
2015-06-16
1
-6
/
+20
*
[DAGCombiner] Added BSWAP(BSWAP(x)) -> x combine pattern.
Simon Pilgrim
2015-06-13
1
-0
/
+3
*
[DAGCombiner] Added BSWAP vector constant folding support.
Simon Pilgrim
2015-06-13
1
-0
/
+12
*
Stripped trailing whitespace. NFC.
Simon Pilgrim
2015-06-13
1
-5
/
+5
*
Revert "Fix merges of non-zero vector stores"
Reid Kleckner
2015-06-11
1
-19
/
+6
*
Fix merges of non-zero vector stores
Matt Arsenault
2015-06-11
1
-6
/
+19
*
[DAGCombiner] Added CTLZ vector constant folding support.
Simon Pilgrim
2015-06-08
1
-2
/
+2
*
[DAGCombiner] Added CTTZ vector constant folding support.
Simon Pilgrim
2015-06-08
1
-2
/
+2
*
[DAGCombiner] Added CTPOP vector constant folding support.
Simon Pilgrim
2015-06-07
1
-1
/
+1
*
DAGCombiner: don't duplicate (fmul x, c) in visitFNEG if fneg is free
Fiona Glaser
2015-06-05
1
-1
/
+2
*
Simplify code; NFC.
Andrea Di Biagio
2015-06-05
1
-7
/
+7
*
[DAGCombiner] Fix wrong folding of a build_vector into a blend with zero.
Andrea Di Biagio
2015-06-04
1
-3
/
+6
*
Pass address space to isLegalAddressingMode in DAGCombiner
Matt Arsenault
2015-06-04
1
-1
/
+5
*
Add target hook to allow merging stores of nonzero constants
Matt Arsenault
2015-05-24
1
-3
/
+10
*
[X86][SSE] Improve support for 128-bit vector sign extension
Simon Pilgrim
2015-05-21
1
-3
/
+20
*
DAGCombiner: Continue combining if FoldConstantArithmetic() fails.
Matthias Braun
2015-05-20
1
-73
/
+95
*
use 'auto *' for pointers; clearer usage, no deep copying
Sanjay Patel
2015-05-19
1
-2
/
+2
*
tidy up
Sanjay Patel
2015-05-19
1
-5
/
+5
*
use range-based for-loop
Sanjay Patel
2015-05-19
1
-7
/
+4
*
use range-based for loop
Sanjay Patel
2015-05-19
1
-5
/
+5
*
DAGCombiner: Factor common pattern into isOneConstant() function. NFC
Matthias Braun
2015-05-19
1
-35
/
+32
*
DAGCombiner: Factor common pattern into isAllOnesConstant() function. NFC
Matthias Braun
2015-05-19
1
-46
/
+43
*
DAGCombiner: Use isNullConstant() where possible
Matthias Braun
2015-05-19
1
-19
/
+13
*
Revert accidental change in r237633
Matthias Braun
2015-05-18
1
-1
/
+1
[next]