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
/
Scalar
/
LoopStrengthReduce.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[multiversion] Thread a function argument through all the callers of the
Chandler Carruth
2015-02-01
1
-3
/
+5
*
[PM] Change the core design of the TTI analysis to use a polymorphic
Chandler Carruth
2015-01-31
1
-5
/
+5
*
[PM] Remove the Pass argument from all of the critical edge splitting
Chandler Carruth
2015-01-19
1
-3
/
+4
*
[PM] Lift the analyses into the interface for
Chandler Carruth
2015-01-19
1
-1
/
+2
*
[PM] Split the LoopInfo object apart from the legacy pass, creating
Chandler Carruth
2015-01-17
1
-4
/
+4
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-5
/
+5
*
LSR: Minor cleanup after Daniel's patch.
Andrew Trick
2014-10-25
1
-4
/
+2
*
Fix LSR compile time.
Andrew Trick
2014-10-25
1
-0
/
+5
*
Use range based for loops to avoid needing to re-mention SmallPtrSet size.
Craig Topper
2014-08-24
1
-19
/
+14
*
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
2014-08-21
1
-12
/
+12
*
Revert "Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoi...
Craig Topper
2014-08-18
1
-12
/
+12
*
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
2014-08-17
1
-12
/
+12
*
[LSR] Canonicalize reg1 + ... + regN into reg1 + ... + 1*regN.
Quentin Colombet
2014-05-20
1
-183
/
+375
*
Reapply r207271 without the testcase
Adam Nemet
2014-04-29
1
-9
/
+12
*
Revert r207271 for now. This commit introduced a test case that ran
Chandler Carruth
2014-04-28
1
-12
/
+9
*
[LoopStrengthReduce] Don't trim formula that uses a subset of required registers
Adam Nemet
2014-04-25
1
-9
/
+12
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-54
/
+55
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
Remove some dead assignements found by scan-build
Arnaud A. de Grandmaison
2014-03-15
1
-1
/
+1
*
LSR: Compress a pair (and get rid of the DenseMapInfo for it).
Benjamin Kramer
2014-03-15
1
-33
/
+6
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-20
/
+17
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-2
/
+2
*
[Modules] Move ValueHandle into the IR library where Value itself lives.
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[C++11] Use std::tie to simplify compare operators.
Benjamin Kramer
2014-03-03
1
-15
/
+5
*
[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
Benjamin Kramer
2014-03-02
1
-12
/
+13
*
Fix PR18165: LSR must avoid scaling factors that exceed the limit on truncate...
Andrew Trick
2014-02-26
1
-0
/
+12
*
Disable most IR-level transform passes on functions marked 'optnone'.
Paul Robinson
2014-02-06
1
-0
/
+3
*
Loop strength reduce: fix function name.
Tim Northover
2014-01-22
1
-8
/
+8
*
[PM] Split DominatorTree into a concrete analysis result object which
Chandler Carruth
2014-01-13
1
-8
/
+8
*
[cleanup] Move the Dominators.h and Verifier.h headers into the IR
Chandler Carruth
2014-01-13
1
-1
/
+1
*
Put the functionality for printing a value to a raw_ostream as an
Chandler Carruth
2014-01-09
1
-7
/
+6
*
Move the LLVM IR asm writer header files into the IR directory, as they
Chandler Carruth
2014-01-07
1
-1
/
+1
*
Re-sort all of the includes with ./utils/sort_includes.py so that
Chandler Carruth
2014-01-07
1
-1
/
+1
*
Fix SCEVExpander: don't try to expand quadratic recurrences outside a loop.
Andrew Trick
2013-10-25
1
-2
/
+19
*
LSR: Fix the parameters used to compute the scaling factor cost.
Quentin Colombet
2013-06-19
1
-5
/
+13
*
Use 0 instead of NULL.
Jakub Staszak
2013-06-15
1
-5
/
+5
*
Loop Strength Reduce: Scaling factor cost.
Quentin Colombet
2013-05-31
1
-3
/
+43
*
Modify how the formulae are rated in Loop Strength Reduce.
Quentin Colombet
2013-05-31
1
-6
/
+45
*
Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.
Michael J. Spencer
2013-05-24
1
-1
/
+1
*
Use dyn_cast instead of isa && cast.
Jakub Staszak
2013-03-24
1
-8
/
+6
*
Revert "Cleanup some SCEV logic a bit."
Andrew Trick
2013-03-19
1
-4
/
+3
*
Cleanup some SCEV logic a bit.
Andrew Trick
2013-03-19
1
-2
/
+4
*
Tighten up an internal LSR API that should check for NULL.
Andrew Trick
2013-03-19
1
-1
/
+1
*
Reduce indents in LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode method.
Jakub Staszak
2013-02-16
1
-67
/
+67
*
LSR IVChain improvement.
Andrew Trick
2013-02-09
1
-1
/
+13
*
Remove #includes from the commonly used LoopInfo.h.
Jakub Staszak
2013-02-09
1
-0
/
+1
*
This patch aims to improve compile time performance by increasing
Preston Gurd
2013-02-01
1
-13
/
+13
*
Fix an editor goof in r171738 that Bill spotted. He may even have a test
Chandler Carruth
2013-01-12
1
-1
/
+1
*
Remove LSR's use of the random AddrMode struct. These variables were
Chandler Carruth
2013-01-07
1
-68
/
+76
*
Switch the SCEV expander and LoopStrengthReduce to use
Chandler Carruth
2013-01-07
1
-161
/
+138
[prev]
[next]