[PATCH] D26784: [LoopUnroll] Move code to exit early. NFC.
Haicheng Wu via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 23 11:49:32 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL287800: [LoopUnroll] Move code to exit early. NFC. (authored by haicheng).
Changed prior to commit:
https://reviews.llvm.org/D26784?vs=78306&id=79134#toc
Repository:
rL LLVM
https://reviews.llvm.org/D26784
Files:
llvm/trunk/lib/Transforms/Scalar/LoopUnrollPass.cpp
Index: llvm/trunk/lib/Transforms/Scalar/LoopUnrollPass.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopUnrollPass.cpp
+++ llvm/trunk/lib/Transforms/Scalar/LoopUnrollPass.cpp
@@ -948,7 +948,11 @@
Optional<bool> ProvidedUpperBound) {
DEBUG(dbgs() << "Loop Unroll: F[" << L->getHeader()->getParent()->getName()
<< "] Loop %" << L->getHeader()->getName() << "\n");
- if (HasUnrollDisablePragma(L)) {
+ if (HasUnrollDisablePragma(L))
+ return false;
+ if (!L->isLoopSimplifyForm()) {
+ DEBUG(
+ dbgs() << " Not unrolling loop which is not in loop-simplify form.\n");
return false;
}
@@ -958,6 +962,9 @@
TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences(
L, TTI, ProvidedThreshold, ProvidedCount, ProvidedAllowPartial,
ProvidedRuntime, ProvidedUpperBound);
+ // Exit early if unrolling is disabled.
+ if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0))
+ return false;
unsigned LoopSize = ApproximateLoopSize(
L, NumInlineCandidates, NotDuplicatable, Convergent, TTI, &AC, UP.BEInsns);
DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n");
@@ -970,11 +977,6 @@
DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n");
return false;
}
- if (!L->isLoopSimplifyForm()) {
- DEBUG(
- dbgs() << " Not unrolling loop which is not in loop-simplify form.\n");
- return false;
- }
// Find trip count and trip multiple if count is not available
unsigned TripCount = 0;
@@ -991,10 +993,6 @@
TripMultiple = SE->getSmallConstantTripMultiple(L, ExitingBlock);
}
- // Exit early if unrolling is disabled.
- if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0))
- return false;
-
// If the loop contains a convergent operation, the prelude we'd add
// to do the first few instructions before we hit the unrolled loop
// is unsafe -- it adds a control-flow dependency to the convergent
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D26784.79134.patch
Type: text/x-patch
Size: 2063 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161123/163e499a/attachment.bin>
More information about the llvm-commits
mailing list