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
/
LoopRotation.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[PM] Remove the Pass argument from all of the critical edge splitting
Chandler Carruth
2015-01-19
1
-2
/
+5
*
[PM] Replace another Pass argument with specific analyses that are
Chandler Carruth
2015-01-18
1
-1
/
+1
*
[PM] Refactor how the LoopRotation pass access the DominatorTree.
Chandler Carruth
2015-01-18
1
-20
/
+18
*
[PM] Split the LoopInfo object apart from the legacy pass, creating
Chandler Carruth
2015-01-17
1
-4
/
+4
*
[PM] Split the AssumptionTracker immutable pass into two separate APIs:
Chandler Carruth
2015-01-04
1
-7
/
+8
*
Do not simplifyLatch for loops where hoisting increments couldresult in extra...
Yi Jiang
2014-10-29
1
-3
/
+30
*
Make use of @llvm.assume in ValueTracking (computeKnownBits, etc.)
Hal Finkel
2014-09-07
1
-0
/
+1
*
Add functions for finding ephemeral values
Hal Finkel
2014-09-07
1
-1
/
+9
*
Fix typos in comments and doc
JF Bastien
2014-08-05
1
-2
/
+2
*
Make the LoopRotate pass's maximum header size configurable both programmatic...
Owen Anderson
2014-05-26
1
-4
/
+14
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-3
/
+3
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
D3348 - [BUG] "Rotate Loop" pass kills "llvm.vectorizer.enable" metadata
Alexey Bataev
2014-04-15
1
-0
/
+9
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-1
/
+1
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-2
/
+2
*
[Modules] Move CFG.h to the IR library as it defines graph traits over
Chandler Carruth
2014-03-04
1
-1
/
+1
*
Disable most IR-level transform passes on functions marked 'optnone'.
Paul Robinson
2014-02-06
1
-0
/
+3
*
[LPM] Fix PR18643, another scary place where loop transforms failed to
Chandler Carruth
2014-01-29
1
-3
/
+18
*
[PM] Split DominatorTree into a concrete analysis result object which
Chandler Carruth
2014-01-13
1
-16
/
+21
*
[cleanup] Move the Dominators.h and Verifier.h headers into the IR
Chandler Carruth
2014-01-13
1
-1
/
+1
*
Don't #include heavy Dominators.h file in LoopInfo.h. This change reduces
Jakub Staszak
2013-12-07
1
-0
/
+1
*
Correct word hyphenations
Alp Toker
2013-12-05
1
-1
/
+1
*
Rotate multi-exit loops even if the latch was simplified.
Andrew Trick
2013-05-06
1
-14
/
+29
*
Switch CodeMetrics itself over to use TTI to determine if an instruction
Chandler Carruth
2013-01-21
1
-1
/
+6
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-2
/
+2
*
Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...
James Molloy
2012-12-20
1
-1
/
+7
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-7
/
+7
*
LoopRotation: Make the brute force DomTree update more brute force.
Benjamin Kramer
2012-09-02
1
-32
/
+21
*
LoopRotation: Check some invariants of the dominator updating code.
Benjamin Kramer
2012-09-01
1
-0
/
+3
*
LoopRotate: Also rotate loops with multiple exits.
Benjamin Kramer
2012-08-30
1
-13
/
+60
*
Clean whitespaces.
Nadav Rotem
2012-07-24
1
-3
/
+4
*
loop-rotate shouldn't hoist alloca instructions out of a loop. Patch by Patr...
Eli Friedman
2012-02-16
1
-1
/
+2
*
Add simplifyLoopLatch to LoopRotate pass.
Andrew Trick
2012-02-14
1
-0
/
+103
*
whitespace
Andrew Trick
2012-02-14
1
-30
/
+30
*
Make better use of the PHINode API.
Jay Foad
2011-06-20
1
-1
/
+1
*
Preserve line number information.
Devang Patel
2011-04-29
1
-1
/
+2
*
fix PR9523, a crash in looprotate on a non-canonical loop made out of indirec...
Chris Lattner
2011-04-09
1
-1
/
+5
*
Do not hoist @llvm.dbg.value. Here, @llvm.dbg.value is "referring" a value th...
Devang Patel
2011-02-14
1
-1
/
+2
*
remove a bogus assertion: the latch block of a loop is not
Chris Lattner
2011-01-11
1
-6
/
+5
*
When loop rotation happens, it is *very* common for the duplicated condbr
Chris Lattner
2011-01-08
1
-21
/
+48
*
split ssa updating code out to its own helper function. Don't bother
Chris Lattner
2011-01-08
1
-74
/
+78
*
Implement a TODO: Enhance loopinfo to merge away the unconditional branch
Chris Lattner
2011-01-08
1
-11
/
+7
*
inline preserveCanonicalLoopForm now that it is simple.
Chris Lattner
2011-01-08
1
-39
/
+17
*
Three major changes:
Chris Lattner
2011-01-08
1
-115
/
+20
*
LoopRotate requires canonical loop form, so it always has preheaders
Chris Lattner
2011-01-08
1
-15
/
+11
*
use the LI ivar.
Chris Lattner
2011-01-08
1
-3
/
+2
*
some cleanups: remove dead arguments and eliminate ivars
Chris Lattner
2011-01-08
1
-55
/
+36
*
fix an issue duncan pointed out, which could cause loop rotate
Chris Lattner
2011-01-08
1
-12
/
+16
*
Have loop-rotate simplify instructions (yay instsimplify!) as it clones
Chris Lattner
2011-01-08
1
-5
/
+21
*
Revamp the ValueMapper interfaces in a couple ways:
Chris Lattner
2011-01-08
1
-1
/
+1
[next]