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
/
LoopUnrollPass.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Do not add unroll disable metadata after unrolling pass for loops with #pragm...
Mark Heffernan
2014-07-23
1
-3
/
+4
*
In unroll pragma syntax and loop hint metadata, change "enable" forms to a ne...
Mark Heffernan
2014-07-23
1
-42
/
+34
*
Fix build breakage introduced with r213412.
Mark Heffernan
2014-07-18
1
-3
/
+4
*
Remove unroll pragma metadata after it is used.
Mark Heffernan
2014-07-18
1
-0
/
+40
*
Rename loop unrolling and loop vectorizer metadata to have a common prefix.
Eli Bendersky
2014-06-25
1
-6
/
+4
*
Teach LoopUnrollPass to respect loop unrolling hints in metadata.
Eli Bendersky
2014-06-16
1
-87
/
+275
*
Revert r210721 as it causes breakage in internal builds (and possibly GDB).
Eli Bendersky
2014-06-12
1
-109
/
+6
*
Teach LoopUnrollPass to respect loop unrolling hints in metadata.
Eli Bendersky
2014-06-11
1
-6
/
+109
*
LoopUnroll: If we're doing partial unrolling, use the PartialThreshold to lim...
Benjamin Kramer
2014-05-04
1
-3
/
+6
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
Add some additional fields to TTI::UnrollingPreferences
Hal Finkel
2014-04-01
1
-4
/
+13
*
Move partial/runtime unrolling late in the pipeline
Hal Finkel
2014-03-31
1
-0
/
+4
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-2
/
+2
*
Disable most IR-level transform passes on functions marked 'optnone'.
Paul Robinson
2014-02-06
1
-0
/
+3
*
[LPM] Make LoopSimplify no longer a LoopPass and instead both a utility
Chandler Carruth
2014-01-23
1
-1
/
+1
*
[PM] Split DominatorTree into a concrete analysis result object which
Chandler Carruth
2014-01-13
1
-1
/
+1
*
[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
*
Add a runtime unrolling parameter to the LoopUnroll pass constructor
Hal Finkel
2013-11-05
1
-6
/
+10
*
Add getUnrollingPreferences to TTI
Hal Finkel
2013-09-11
1
-7
/
+25
*
Revert: r189565 - Add getUnrollingPreferences to TTI
Hal Finkel
2013-08-29
1
-17
/
+5
*
Add getUnrollingPreferences to TTI
Hal Finkel
2013-08-29
1
-5
/
+17
*
Switch CodeMetrics itself over to use TTI to determine if an instruction
Chandler Carruth
2013-01-21
1
-4
/
+8
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-2
/
+2
*
Remove the Function::getFnAttributes method in favor of using the AttributeSet
Bill Wendling
2012-12-30
1
-2
/
+3
*
Add a new attribute, 'noduplicate'. If a function contains a noduplicate call...
James Molloy
2012-12-20
1
-2
/
+10
*
Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...
Bill Wendling
2012-12-19
1
-1
/
+1
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-3
/
+3
*
Create enums for the different attributes.
Bill Wendling
2012-10-09
1
-1
/
+2
*
Move TargetData to DataLayout.
Micah Villmow
2012-10-08
1
-3
/
+3
*
Remove the `hasFnAttr' method from Function.
Bill Wendling
2012-09-26
1
-1
/
+1
*
LoopUnrollPass: Use variable "Threshold" instead of "CurrentThreshold" when
Hongbin Zheng
2012-04-04
1
-2
/
+2
*
Add -unroll-runtime for unrolling loops with run-time trip counts.
Andrew Trick
2011-12-09
1
-7
/
+28
*
Remove the temporary flag -disable-unroll-scev and dead code.
Andrew Trick
2011-11-28
1
-19
/
+7
*
Initialze ScalarEvalution dependency.
Devang Patel
2011-10-19
1
-0
/
+1
*
Inlining and unrolling heuristics should be aware of free truncs.
Andrew Trick
2011-10-01
1
-3
/
+6
*
Enable SCEV-based unrolling by default.
Andrew Trick
2011-09-02
1
-3
/
+3
*
Allow loop unrolling to get known trip counts from ScalarEvolution.
Andrew Trick
2011-08-11
1
-7
/
+23
*
Invoke SimplifyIndVar when we partially unroll a loop. Fixes PR10534.
Andrew Trick
2011-08-10
1
-4
/
+1
*
Move trip count discovery outside of the generic LoopUnroll helper. This
Andrew Trick
2011-07-23
1
-2
/
+7
*
whitespace
Andrew Trick
2011-07-23
1
-8
/
+8
*
fix a couple -Wsign-compare warnings.
Chris Lattner
2011-04-14
1
-2
/
+2
*
Fixed the revision 129449.
Junjie Gu
2011-04-13
1
-1
/
+1
*
Passing unroll parameters (unroll-count, threshold, and partial unroll) via L...
Junjie Gu
2011-04-13
1
-12
/
+23
*
Remove dead code, that I apparently wrote a while back. We seem to be doing ...
Owen Anderson
2011-01-17
1
-15
/
+0
*
random cleanups
Chris Lattner
2011-01-11
1
-1
/
+0
*
improve loop rotation to use CodeMetrics to analyze the
Chris Lattner
2011-01-02
1
-1
/
+1
*
Passes do not need to recursively initialize passes that they preserve, if
Owen Anderson
2010-10-19
1
-2
/
+0
*
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
2010-10-19
1
-1
/
+3
[prev]
[next]