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
*
[PGO][PGSO] Add an optional query type parameter to shouldOptimizeForSize.
Hiroshi Yamauchi
2019-12-02
1
-1
/
+2
*
Sink all InitializePasses.h includes
Reid Kleckner
2019-11-13
1
-0
/
+1
*
[Unroll] Do NOT unroll a loop with small runtime upperbound
Zhaoshi Zheng
2019-09-26
1
-21
/
+38
*
[Unroll] Add an option to control complete unrolling
Serguei Katkov
2019-09-19
1
-8
/
+18
*
[LoopUnroll] Use LoopSize+1 as threshold, to allow unrolling loops matching L...
Florian Hahn
2019-09-17
1
-3
/
+3
*
[Loop Peeling] Introduce an option for profile based peeling disabling.
Serguei Katkov
2019-08-02
1
-21
/
+29
*
[Loop Peeling] Do not close further unroll/peel if profile based peeling was ...
Serguei Katkov
2019-08-02
1
-1
/
+2
*
[NewPassManager] Add tuning option: ForgetAllSCEVInLoopUnroll [NFC].
Alina Sbirlea
2019-05-23
1
-2
/
+8
*
[MemorySSA] Teach LoopSimplify to preserve MemorySSA.
Alina Sbirlea
2019-05-08
1
-1
/
+2
*
[LoopUnroll] Move list of params into a struct [NFCI].
Alina Sbirlea
2019-04-18
1
-3
/
+5
*
[LoopUnroll] Allow unrolling if the unrolled size does not exceed loop size.
Florian Hahn
2019-04-17
1
-2
/
+13
*
[PGO] Profile guided code size optimization.
Hiroshi Yamauchi
2019-04-15
1
-6
/
+18
*
[SCEV] Add option to forget everything in SCEV.
Alina Sbirlea
2019-04-12
1
-15
/
+23
*
[IR] Refactor attribute methods in Function class (NFC)
Evandro Menezes
2019-04-04
1
-1
/
+1
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[LoopUnroll] Honor '#pragma unroll' even with -fno-unroll-loops.
Michael Kruse
2018-12-18
1
-18
/
+36
*
[Unroll/UnrollAndJam/Vectorizer/Distribute] Add followup loop attributes.
Michael Kruse
2018-12-12
1
-7
/
+34
*
[LoopUnroll] allow customization for new-pass-manager version of LoopUnroll
Fedor Sergeev
2018-10-31
1
-12
/
+9
*
[TI removal] Make variables declared as `TerminatorInst` and initialized
Chandler Carruth
2018-10-15
1
-1
/
+1
*
Add missing period to comment to match style of file.
Neil Henning
2018-10-05
1
-1
/
+1
*
Remove trailing space
Fangrui Song
2018-07-30
1
-2
/
+2
*
[UnrollAndJam] New Unroll and Jam pass
David Green
2018-07-01
1
-9
/
+10
*
LoopUnroll: Allow analyzing intrinsic call costs
Matt Arsenault
2018-06-26
1
-2
/
+7
*
[NFC] fix trivial typos in comments
Hiroshi Inoue
2018-06-14
1
-3
/
+3
*
Revert 333358 as it's failing on some builders.
David Green
2018-05-27
1
-10
/
+9
*
[UnrollAndJam] Add a new Unroll and Jam pass
David Green
2018-05-27
1
-9
/
+10
*
Rename DEBUG macro to LLVM_DEBUG.
Nicola Zaghen
2018-05-14
1
-32
/
+36
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-01
1
-3
/
+3
*
[Hexagon] peel loops with runtime small trip counts
Ikhlas Ajbar
2018-04-03
1
-3
/
+0
*
peel loops with runtime small trip counts
Ikhlas Ajbar
2018-04-03
1
-0
/
+3
*
Transforms: Introduce Transforms/Utils.h rather than spreading the declaratio...
David Blaikie
2018-03-28
1
-0
/
+1
*
[LoopUnroll] Peel off iterations if it makes conditions true/false.
Florian Hahn
2018-03-15
1
-1
/
+1
*
[LoopUnroll] Ignore ephemeral values when checking full unroll profitability.
Andrei Elovikov
2018-03-15
1
-20
/
+26
*
LoopUnroll: respect pragma unroll when AllowRemainder is disabled
Yaxun Liu
2018-03-02
1
-1
/
+1
*
Add hasProfileData() to check if a function has profile data. NFC.
Easwaran Raman
2017-12-22
1
-1
/
+1
*
Fix MSVC signed/unsigned comparison warning
Simon Pilgrim
2017-10-19
1
-1
/
+1
*
[Transforms] Fix some Clang-tidy modernize and Include What You Use warnings;...
Eugene Zelenko
2017-10-18
1
-29
/
+64
*
[LoopInfo][Refactor] Make SetLoopAlreadyUnrolled a member function of the Loo...
Hongbin Zheng
2017-10-15
1
-38
/
+1
*
[NFC] Convert OptimizationRemarkEmitter old emit() calls to new closure
Vivek Pandya
2017-10-11
1
-27
/
+37
*
Rename OptimizationDiagnosticInfo.* to OptimizationRemarkEmitter.*
Adam Nemet
2017-10-09
1
-1
/
+1
*
[LoopUnroll] Fix use after poison.
Benjamin Kramer
2017-09-28
1
-1
/
+3
*
Use a BumpPtrAllocator for Loop objects
Sanjoy Das
2017-09-28
1
-8
/
+15
*
Fix -Wunused-variable for Release build.
Rui Ueyama
2017-09-27
1
-1
/
+1
*
Return the LoopUnrollResult from tryToUnrollLoop; NFC
Sanjoy Das
2017-09-27
1
-31
/
+22
*
Rename LoopUnrollStatus to LoopUnrollResult; NFC
Sanjoy Das
2017-09-27
1
-3
/
+3
*
Tighten the invariants around LoopBase::invalidate
Sanjoy Das
2017-09-20
1
-6
/
+7
*
[LoopUnroll] Add a cl::opt to force peeling, for testing purposes.
Davide Italiano
2017-08-28
1
-0
/
+6
*
[LoopUnroll] Enable option to peel remainder loop
Sam Parker
2017-08-14
1
-1
/
+9
*
[PM] Fix new LoopUnroll function pass by invalidating loop analysis
Chandler Carruth
2017-08-08
1
-2
/
+18
*
Use profile summary to disable peeling for huge working sets
Teresa Johnson
2017-08-03
1
-6
/
+18
[next]