Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1 | //===- LoopUnroll.cpp - Loop unroller pass --------------------------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 946b255 | 2004-04-18 05:20:17 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 946b255 | 2004-04-18 05:20:17 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass implements a simple loop unroller. It works best when loops have |
| 11 | // been canonicalized by the -indvars pass, allowing it to determine the trip |
| 12 | // counts of loops easily. |
Chris Lattner | 946b255 | 2004-04-18 05:20:17 +0000 | [diff] [blame] | 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Scalar/LoopUnrollPass.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMap.h" |
| 17 | #include "llvm/ADT/DenseMapInfo.h" |
| 18 | #include "llvm/ADT/DenseSet.h" |
| 19 | #include "llvm/ADT/None.h" |
| 20 | #include "llvm/ADT/Optional.h" |
| 21 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 3b057b3 | 2015-02-13 03:57:40 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/SetVector.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/SmallPtrSet.h" |
| 24 | #include "llvm/ADT/SmallVector.h" |
| 25 | #include "llvm/ADT/StringRef.h" |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/AssumptionCache.h" |
Chris Lattner | 679572e | 2011-01-02 07:35:53 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/CodeMetrics.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 28 | #include "llvm/Analysis/LoopAnalysisManager.h" |
| 29 | #include "llvm/Analysis/LoopInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/Analysis/LoopPass.h" |
Michael Zolotukhin | 1da4afd | 2016-02-08 23:03:59 +0000 | [diff] [blame] | 31 | #include "llvm/Analysis/LoopUnrollAnalyzer.h" |
Adam Nemet | 0965da2 | 2017-10-09 23:19:02 +0000 | [diff] [blame] | 32 | #include "llvm/Analysis/OptimizationRemarkEmitter.h" |
Teresa Johnson | 8482e56 | 2017-08-03 23:42:58 +0000 | [diff] [blame] | 33 | #include "llvm/Analysis/ProfileSummaryInfo.h" |
Dan Gohman | 0141c13 | 2010-07-26 18:11:16 +0000 | [diff] [blame] | 34 | #include "llvm/Analysis/ScalarEvolution.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 35 | #include "llvm/Analysis/TargetTransformInfo.h" |
| 36 | #include "llvm/IR/BasicBlock.h" |
| 37 | #include "llvm/IR/CFG.h" |
| 38 | #include "llvm/IR/Constant.h" |
| 39 | #include "llvm/IR/Constants.h" |
| 40 | #include "llvm/IR/DiagnosticInfo.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 41 | #include "llvm/IR/Dominators.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 42 | #include "llvm/IR/Function.h" |
| 43 | #include "llvm/IR/Instruction.h" |
| 44 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 45 | #include "llvm/IR/IntrinsicInst.h" |
Eli Bendersky | ff90324 | 2014-06-16 23:53:02 +0000 | [diff] [blame] | 46 | #include "llvm/IR/Metadata.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 47 | #include "llvm/IR/PassManager.h" |
| 48 | #include "llvm/Pass.h" |
| 49 | #include "llvm/Support/Casting.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 50 | #include "llvm/Support/CommandLine.h" |
| 51 | #include "llvm/Support/Debug.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 52 | #include "llvm/Support/ErrorHandling.h" |
Daniel Dunbar | 0dd5e1e | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 53 | #include "llvm/Support/raw_ostream.h" |
Dehao Chen | d55bc4c | 2016-05-05 00:54:54 +0000 | [diff] [blame] | 54 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | 3bab7e1 | 2017-01-11 09:43:56 +0000 | [diff] [blame] | 55 | #include "llvm/Transforms/Scalar/LoopPassManager.h" |
David Blaikie | a373d18 | 2018-03-28 17:44:36 +0000 | [diff] [blame] | 56 | #include "llvm/Transforms/Utils.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 57 | #include "llvm/Transforms/Utils/LoopSimplify.h" |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 58 | #include "llvm/Transforms/Utils/LoopUtils.h" |
Dan Gohman | 3dc2d92 | 2008-05-14 00:24:14 +0000 | [diff] [blame] | 59 | #include "llvm/Transforms/Utils/UnrollLoop.h" |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 60 | #include <algorithm> |
| 61 | #include <cassert> |
| 62 | #include <cstdint> |
| 63 | #include <limits> |
| 64 | #include <string> |
| 65 | #include <tuple> |
Benjamin Kramer | 82de7d3 | 2016-05-27 14:27:24 +0000 | [diff] [blame] | 66 | #include <utility> |
Chris Lattner | 946b255 | 2004-04-18 05:20:17 +0000 | [diff] [blame] | 67 | |
Dan Gohman | 3dc2d92 | 2008-05-14 00:24:14 +0000 | [diff] [blame] | 68 | using namespace llvm; |
Chris Lattner | 946b255 | 2004-04-18 05:20:17 +0000 | [diff] [blame] | 69 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 70 | #define DEBUG_TYPE "loop-unroll" |
| 71 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 72 | static cl::opt<unsigned> |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 73 | UnrollThreshold("unroll-threshold", cl::Hidden, |
Dehao Chen | c3f87f0 | 2017-01-17 23:39:33 +0000 | [diff] [blame] | 74 | cl::desc("The cost threshold for loop unrolling")); |
| 75 | |
| 76 | static cl::opt<unsigned> UnrollPartialThreshold( |
| 77 | "unroll-partial-threshold", cl::Hidden, |
| 78 | cl::desc("The cost threshold for partial loop unrolling")); |
Chandler Carruth | 9dabd14 | 2015-06-05 17:01:43 +0000 | [diff] [blame] | 79 | |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 80 | static cl::opt<unsigned> UnrollMaxPercentThresholdBoost( |
| 81 | "unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden, |
| 82 | cl::desc("The maximum 'boost' (represented as a percentage >= 100) applied " |
| 83 | "to the threshold when aggressively unrolling a loop due to the " |
| 84 | "dynamic cost savings. If completely unrolling a loop will reduce " |
| 85 | "the total runtime from X to Y, we boost the loop unroll " |
| 86 | "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, " |
| 87 | "X/Y). This limit avoids excessive code bloat.")); |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 88 | |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 89 | static cl::opt<unsigned> UnrollMaxIterationsCountToAnalyze( |
Michael Zolotukhin | 8f7a242 | 2016-05-24 23:00:05 +0000 | [diff] [blame] | 90 | "unroll-max-iteration-count-to-analyze", cl::init(10), cl::Hidden, |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 91 | cl::desc("Don't allow loop unrolling to simulate more than this number of" |
| 92 | "iterations when checking full unroll profitability")); |
| 93 | |
Dehao Chen | d55bc4c | 2016-05-05 00:54:54 +0000 | [diff] [blame] | 94 | static cl::opt<unsigned> UnrollCount( |
| 95 | "unroll-count", cl::Hidden, |
| 96 | cl::desc("Use this unroll count for all loops including those with " |
| 97 | "unroll_count pragma values, for testing purposes")); |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 98 | |
Dehao Chen | d55bc4c | 2016-05-05 00:54:54 +0000 | [diff] [blame] | 99 | static cl::opt<unsigned> UnrollMaxCount( |
| 100 | "unroll-max-count", cl::Hidden, |
| 101 | cl::desc("Set the max unroll count for partial and runtime unrolling, for" |
| 102 | "testing purposes")); |
Fiona Glaser | 045afc4 | 2016-04-06 16:57:25 +0000 | [diff] [blame] | 103 | |
Dehao Chen | d55bc4c | 2016-05-05 00:54:54 +0000 | [diff] [blame] | 104 | static cl::opt<unsigned> UnrollFullMaxCount( |
| 105 | "unroll-full-max-count", cl::Hidden, |
| 106 | cl::desc( |
| 107 | "Set the max unroll count for full unrolling, for testing purposes")); |
Fiona Glaser | 045afc4 | 2016-04-06 16:57:25 +0000 | [diff] [blame] | 108 | |
Davide Italiano | 9a09ae4 | 2017-08-28 19:50:55 +0000 | [diff] [blame] | 109 | static cl::opt<unsigned> UnrollPeelCount( |
| 110 | "unroll-peel-count", cl::Hidden, |
| 111 | cl::desc("Set the unroll peeling count, for testing purposes")); |
| 112 | |
Matthijs Kooijman | 98b5c16 | 2008-07-29 13:21:23 +0000 | [diff] [blame] | 113 | static cl::opt<bool> |
Dehao Chen | d55bc4c | 2016-05-05 00:54:54 +0000 | [diff] [blame] | 114 | UnrollAllowPartial("unroll-allow-partial", cl::Hidden, |
| 115 | cl::desc("Allows loops to be partially unrolled until " |
| 116 | "-unroll-threshold loop size is reached.")); |
Matthijs Kooijman | 98b5c16 | 2008-07-29 13:21:23 +0000 | [diff] [blame] | 117 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 118 | static cl::opt<bool> UnrollAllowRemainder( |
| 119 | "unroll-allow-remainder", cl::Hidden, |
| 120 | cl::desc("Allow generation of a loop remainder (extra iterations) " |
| 121 | "when unrolling a loop.")); |
| 122 | |
Andrew Trick | d04d1529 | 2011-12-09 06:19:40 +0000 | [diff] [blame] | 123 | static cl::opt<bool> |
Dehao Chen | d55bc4c | 2016-05-05 00:54:54 +0000 | [diff] [blame] | 124 | UnrollRuntime("unroll-runtime", cl::ZeroOrMore, cl::Hidden, |
| 125 | cl::desc("Unroll loops with run-time trip counts")); |
Andrew Trick | d04d1529 | 2011-12-09 06:19:40 +0000 | [diff] [blame] | 126 | |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 127 | static cl::opt<unsigned> UnrollMaxUpperBound( |
| 128 | "unroll-max-upperbound", cl::init(8), cl::Hidden, |
| 129 | cl::desc( |
| 130 | "The max of trip count upper bound that is considered in unrolling")); |
| 131 | |
Dehao Chen | d55bc4c | 2016-05-05 00:54:54 +0000 | [diff] [blame] | 132 | static cl::opt<unsigned> PragmaUnrollThreshold( |
| 133 | "pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden, |
| 134 | cl::desc("Unrolled size limit for loops with an unroll(full) or " |
| 135 | "unroll_count pragma.")); |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 136 | |
Dehao Chen | 41d72a8 | 2016-11-17 01:17:02 +0000 | [diff] [blame] | 137 | static cl::opt<unsigned> FlatLoopTripCountThreshold( |
| 138 | "flat-loop-tripcount-threshold", cl::init(5), cl::Hidden, |
| 139 | cl::desc("If the runtime tripcount for the loop is lower than the " |
| 140 | "threshold, the loop is considered as flat and will be less " |
| 141 | "aggressively unrolled.")); |
| 142 | |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 143 | static cl::opt<bool> |
Michael Kuperstein | c2af82b | 2017-02-22 00:27:34 +0000 | [diff] [blame] | 144 | UnrollAllowPeeling("unroll-allow-peeling", cl::init(true), cl::Hidden, |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 145 | cl::desc("Allows loops to be peeled when the dynamic " |
| 146 | "trip count is known to be low.")); |
| 147 | |
Sam Parker | 718c8a6 | 2017-08-14 09:25:26 +0000 | [diff] [blame] | 148 | static cl::opt<bool> UnrollUnrollRemainder( |
| 149 | "unroll-remainder", cl::Hidden, |
| 150 | cl::desc("Allow the loop remainder to be unrolled.")); |
| 151 | |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 152 | // This option isn't ever intended to be enabled, it serves to allow |
| 153 | // experiments to check the assumptions about when this kind of revisit is |
| 154 | // necessary. |
| 155 | static cl::opt<bool> UnrollRevisitChildLoops( |
| 156 | "unroll-revisit-child-loops", cl::Hidden, |
| 157 | cl::desc("Enqueue and re-visit child loops in the loop PM after unrolling. " |
| 158 | "This shouldn't typically be needed as child loops (or their " |
| 159 | "clones) were already visited.")); |
| 160 | |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 161 | /// A magic value for use with the Threshold parameter to indicate |
| 162 | /// that the loop unroll should be performed regardless of how much |
| 163 | /// code expansion would result. |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 164 | static const unsigned NoThreshold = std::numeric_limits<unsigned>::max(); |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 165 | |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 166 | /// Gather the various unrolling parameters based on the defaults, compiler |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 167 | /// flags, TTI overrides and user specified parameters. |
David Green | 963401d | 2018-07-01 12:47:30 +0000 | [diff] [blame] | 168 | TargetTransformInfo::UnrollingPreferences llvm::gatherUnrollingPreferences( |
Geoff Berry | 66d9bdb | 2017-06-28 15:53:17 +0000 | [diff] [blame] | 169 | Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI, int OptLevel, |
Dehao Chen | 7d23032 | 2017-02-18 03:46:51 +0000 | [diff] [blame] | 170 | Optional<unsigned> UserThreshold, Optional<unsigned> UserCount, |
| 171 | Optional<bool> UserAllowPartial, Optional<bool> UserRuntime, |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 172 | Optional<bool> UserUpperBound, Optional<bool> UserAllowPeeling) { |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 173 | TargetTransformInfo::UnrollingPreferences UP; |
| 174 | |
| 175 | // Set up the defaults |
Dehao Chen | 7d23032 | 2017-02-18 03:46:51 +0000 | [diff] [blame] | 176 | UP.Threshold = OptLevel > 2 ? 300 : 150; |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 177 | UP.MaxPercentThresholdBoost = 400; |
Hans Wennborg | 719b26b | 2016-05-10 21:45:55 +0000 | [diff] [blame] | 178 | UP.OptSizeThreshold = 0; |
Dehao Chen | c3f87f0 | 2017-01-17 23:39:33 +0000 | [diff] [blame] | 179 | UP.PartialThreshold = 150; |
Hans Wennborg | 719b26b | 2016-05-10 21:45:55 +0000 | [diff] [blame] | 180 | UP.PartialOptSizeThreshold = 0; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 181 | UP.Count = 0; |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 182 | UP.PeelCount = 0; |
Jonas Paulsson | 58c5a7f | 2016-09-28 09:41:38 +0000 | [diff] [blame] | 183 | UP.DefaultUnrollRuntimeCount = 8; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 184 | UP.MaxCount = std::numeric_limits<unsigned>::max(); |
| 185 | UP.FullUnrollMaxCount = std::numeric_limits<unsigned>::max(); |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 186 | UP.BEInsns = 2; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 187 | UP.Partial = false; |
| 188 | UP.Runtime = false; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 189 | UP.AllowRemainder = true; |
Sam Parker | 718c8a6 | 2017-08-14 09:25:26 +0000 | [diff] [blame] | 190 | UP.UnrollRemainder = false; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 191 | UP.AllowExpensiveTripCount = false; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 192 | UP.Force = false; |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 193 | UP.UpperBound = false; |
Michael Kuperstein | c2af82b | 2017-02-22 00:27:34 +0000 | [diff] [blame] | 194 | UP.AllowPeeling = true; |
David Green | 963401d | 2018-07-01 12:47:30 +0000 | [diff] [blame] | 195 | UP.UnrollAndJam = false; |
| 196 | UP.UnrollAndJamInnerLoopThreshold = 60; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 197 | |
| 198 | // Override with any target specific settings |
Geoff Berry | 66d9bdb | 2017-06-28 15:53:17 +0000 | [diff] [blame] | 199 | TTI.getUnrollingPreferences(L, SE, UP); |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 200 | |
| 201 | // Apply size attributes |
| 202 | if (L->getHeader()->getParent()->optForSize()) { |
| 203 | UP.Threshold = UP.OptSizeThreshold; |
| 204 | UP.PartialThreshold = UP.PartialOptSizeThreshold; |
| 205 | } |
| 206 | |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 207 | // Apply any user values specified by cl::opt |
Dehao Chen | c3f87f0 | 2017-01-17 23:39:33 +0000 | [diff] [blame] | 208 | if (UnrollThreshold.getNumOccurrences() > 0) |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 209 | UP.Threshold = UnrollThreshold; |
Dehao Chen | c3f87f0 | 2017-01-17 23:39:33 +0000 | [diff] [blame] | 210 | if (UnrollPartialThreshold.getNumOccurrences() > 0) |
| 211 | UP.PartialThreshold = UnrollPartialThreshold; |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 212 | if (UnrollMaxPercentThresholdBoost.getNumOccurrences() > 0) |
| 213 | UP.MaxPercentThresholdBoost = UnrollMaxPercentThresholdBoost; |
Fiona Glaser | 045afc4 | 2016-04-06 16:57:25 +0000 | [diff] [blame] | 214 | if (UnrollMaxCount.getNumOccurrences() > 0) |
| 215 | UP.MaxCount = UnrollMaxCount; |
| 216 | if (UnrollFullMaxCount.getNumOccurrences() > 0) |
| 217 | UP.FullUnrollMaxCount = UnrollFullMaxCount; |
Davide Italiano | 9a09ae4 | 2017-08-28 19:50:55 +0000 | [diff] [blame] | 218 | if (UnrollPeelCount.getNumOccurrences() > 0) |
| 219 | UP.PeelCount = UnrollPeelCount; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 220 | if (UnrollAllowPartial.getNumOccurrences() > 0) |
| 221 | UP.Partial = UnrollAllowPartial; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 222 | if (UnrollAllowRemainder.getNumOccurrences() > 0) |
| 223 | UP.AllowRemainder = UnrollAllowRemainder; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 224 | if (UnrollRuntime.getNumOccurrences() > 0) |
| 225 | UP.Runtime = UnrollRuntime; |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 226 | if (UnrollMaxUpperBound == 0) |
| 227 | UP.UpperBound = false; |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 228 | if (UnrollAllowPeeling.getNumOccurrences() > 0) |
| 229 | UP.AllowPeeling = UnrollAllowPeeling; |
Sam Parker | 718c8a6 | 2017-08-14 09:25:26 +0000 | [diff] [blame] | 230 | if (UnrollUnrollRemainder.getNumOccurrences() > 0) |
| 231 | UP.UnrollRemainder = UnrollUnrollRemainder; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 232 | |
| 233 | // Apply user values provided by argument |
| 234 | if (UserThreshold.hasValue()) { |
| 235 | UP.Threshold = *UserThreshold; |
| 236 | UP.PartialThreshold = *UserThreshold; |
| 237 | } |
| 238 | if (UserCount.hasValue()) |
| 239 | UP.Count = *UserCount; |
| 240 | if (UserAllowPartial.hasValue()) |
| 241 | UP.Partial = *UserAllowPartial; |
| 242 | if (UserRuntime.hasValue()) |
| 243 | UP.Runtime = *UserRuntime; |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 244 | if (UserUpperBound.hasValue()) |
| 245 | UP.UpperBound = *UserUpperBound; |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 246 | if (UserAllowPeeling.hasValue()) |
| 247 | UP.AllowPeeling = *UserAllowPeeling; |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 248 | |
Justin Bogner | a1dd493 | 2016-01-12 00:55:26 +0000 | [diff] [blame] | 249 | return UP; |
| 250 | } |
| 251 | |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 252 | namespace { |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 253 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 254 | /// A struct to densely store the state of an instruction after unrolling at |
| 255 | /// each iteration. |
| 256 | /// |
| 257 | /// This is designed to work like a tuple of <Instruction *, int> for the |
| 258 | /// purposes of hashing and lookup, but to be able to associate two boolean |
| 259 | /// states with each key. |
| 260 | struct UnrolledInstState { |
| 261 | Instruction *I; |
| 262 | int Iteration : 30; |
| 263 | unsigned IsFree : 1; |
| 264 | unsigned IsCounted : 1; |
| 265 | }; |
| 266 | |
| 267 | /// Hashing and equality testing for a set of the instruction states. |
| 268 | struct UnrolledInstStateKeyInfo { |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 269 | using PtrInfo = DenseMapInfo<Instruction *>; |
| 270 | using PairInfo = DenseMapInfo<std::pair<Instruction *, int>>; |
| 271 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 272 | static inline UnrolledInstState getEmptyKey() { |
| 273 | return {PtrInfo::getEmptyKey(), 0, 0, 0}; |
| 274 | } |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 275 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 276 | static inline UnrolledInstState getTombstoneKey() { |
| 277 | return {PtrInfo::getTombstoneKey(), 0, 0, 0}; |
| 278 | } |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 279 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 280 | static inline unsigned getHashValue(const UnrolledInstState &S) { |
| 281 | return PairInfo::getHashValue({S.I, S.Iteration}); |
| 282 | } |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 283 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 284 | static inline bool isEqual(const UnrolledInstState &LHS, |
| 285 | const UnrolledInstState &RHS) { |
| 286 | return PairInfo::isEqual({LHS.I, LHS.Iteration}, {RHS.I, RHS.Iteration}); |
| 287 | } |
| 288 | }; |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 289 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 290 | struct EstimatedUnrollCost { |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 291 | /// The estimated cost after unrolling. |
Dehao Chen | c3be225 | 2016-12-02 03:17:07 +0000 | [diff] [blame] | 292 | unsigned UnrolledCost; |
Chandler Carruth | 302a133 | 2015-02-13 02:10:56 +0000 | [diff] [blame] | 293 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 294 | /// The estimated dynamic cost of executing the instructions in the |
Chandler Carruth | 9dabd14 | 2015-06-05 17:01:43 +0000 | [diff] [blame] | 295 | /// rolled form. |
Dehao Chen | c3be225 | 2016-12-02 03:17:07 +0000 | [diff] [blame] | 296 | unsigned RolledDynamicCost; |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 297 | }; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 298 | |
| 299 | } // end anonymous namespace |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 300 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 301 | /// Figure out if the loop is worth full unrolling. |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 302 | /// |
| 303 | /// Complete loop unrolling can make some loads constant, and we need to know |
| 304 | /// if that would expose any further optimization opportunities. This routine |
Michael Zolotukhin | c4e4f33 | 2015-06-11 22:17:39 +0000 | [diff] [blame] | 305 | /// estimates this optimization. It computes cost of unrolled loop |
| 306 | /// (UnrolledCost) and dynamic cost of the original loop (RolledDynamicCost). By |
| 307 | /// dynamic cost we mean that we won't count costs of blocks that are known not |
| 308 | /// to be executed (i.e. if we have a branch in the loop and we know that at the |
| 309 | /// given iteration its condition would be resolved to true, we won't add up the |
| 310 | /// cost of the 'false'-block). |
| 311 | /// \returns Optional value, holding the RolledDynamicCost and UnrolledCost. If |
| 312 | /// the analysis failed (no benefits expected from the unrolling, or the loop is |
| 313 | /// too big to analyze), the returned value is None. |
Andrei Elovikov | f9b8035 | 2018-03-15 09:59:15 +0000 | [diff] [blame] | 314 | static Optional<EstimatedUnrollCost> analyzeLoopUnrollCost( |
| 315 | const Loop *L, unsigned TripCount, DominatorTree &DT, ScalarEvolution &SE, |
| 316 | const SmallPtrSetImpl<const Value *> &EphValues, |
| 317 | const TargetTransformInfo &TTI, unsigned MaxUnrolledLoopSize) { |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 318 | // We want to be able to scale offsets by the trip count and add more offsets |
| 319 | // to them without checking for overflows, and we already don't want to |
| 320 | // analyze *massive* trip counts, so we force the max to be reasonably small. |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 321 | assert(UnrollMaxIterationsCountToAnalyze < |
Simon Pilgrim | 0444e4f | 2017-10-19 15:00:31 +0000 | [diff] [blame] | 322 | (unsigned)(std::numeric_limits<int>::max() / 2) && |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 323 | "The unroll iterations max is too large!"); |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 324 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 325 | // Only analyze inner loops. We can't properly estimate cost of nested loops |
| 326 | // and we won't visit inner loops again anyway. |
| 327 | if (!L->empty()) |
| 328 | return None; |
| 329 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 330 | // Don't simulate loops with a big or unknown tripcount |
| 331 | if (!UnrollMaxIterationsCountToAnalyze || !TripCount || |
| 332 | TripCount > UnrollMaxIterationsCountToAnalyze) |
| 333 | return None; |
Chandler Carruth | a6ae877 | 2015-05-12 23:32:56 +0000 | [diff] [blame] | 334 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 335 | SmallSetVector<BasicBlock *, 16> BBWorklist; |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 336 | SmallSetVector<std::pair<BasicBlock *, BasicBlock *>, 4> ExitWorklist; |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 337 | DenseMap<Value *, Constant *> SimplifiedValues; |
Chandler Carruth | 87adb7a | 2015-08-03 20:32:27 +0000 | [diff] [blame] | 338 | SmallVector<std::pair<Value *, Constant *>, 4> SimplifiedInputValues; |
Chandler Carruth | 3b057b3 | 2015-02-13 03:57:40 +0000 | [diff] [blame] | 339 | |
Chandler Carruth | 9dabd14 | 2015-06-05 17:01:43 +0000 | [diff] [blame] | 340 | // The estimated cost of the unrolled form of the loop. We try to estimate |
| 341 | // this by simplifying as much as we can while computing the estimate. |
Dehao Chen | c3be225 | 2016-12-02 03:17:07 +0000 | [diff] [blame] | 342 | unsigned UnrolledCost = 0; |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 343 | |
Chandler Carruth | 9dabd14 | 2015-06-05 17:01:43 +0000 | [diff] [blame] | 344 | // We also track the estimated dynamic (that is, actually executed) cost in |
| 345 | // the rolled form. This helps identify cases when the savings from unrolling |
| 346 | // aren't just exposing dead control flows, but actual reduced dynamic |
| 347 | // instructions due to the simplifications which we expect to occur after |
| 348 | // unrolling. |
Dehao Chen | c3be225 | 2016-12-02 03:17:07 +0000 | [diff] [blame] | 349 | unsigned RolledDynamicCost = 0; |
Chandler Carruth | 8c86375 | 2015-02-13 03:48:38 +0000 | [diff] [blame] | 350 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 351 | // We track the simplification of each instruction in each iteration. We use |
| 352 | // this to recursively merge costs into the unrolled cost on-demand so that |
| 353 | // we don't count the cost of any dead code. This is essentially a map from |
| 354 | // <instruction, int> to <bool, bool>, but stored as a densely packed struct. |
| 355 | DenseSet<UnrolledInstState, UnrolledInstStateKeyInfo> InstCostMap; |
| 356 | |
| 357 | // A small worklist used to accumulate cost of instructions from each |
| 358 | // observable and reached root in the loop. |
| 359 | SmallVector<Instruction *, 16> CostWorklist; |
| 360 | |
| 361 | // PHI-used worklist used between iterations while accumulating cost. |
| 362 | SmallVector<Instruction *, 4> PHIUsedList; |
| 363 | |
| 364 | // Helper function to accumulate cost for instructions in the loop. |
| 365 | auto AddCostRecursively = [&](Instruction &RootI, int Iteration) { |
| 366 | assert(Iteration >= 0 && "Cannot have a negative iteration!"); |
| 367 | assert(CostWorklist.empty() && "Must start with an empty cost list"); |
| 368 | assert(PHIUsedList.empty() && "Must start with an empty phi used list"); |
| 369 | CostWorklist.push_back(&RootI); |
| 370 | for (;; --Iteration) { |
| 371 | do { |
| 372 | Instruction *I = CostWorklist.pop_back_val(); |
| 373 | |
| 374 | // InstCostMap only uses I and Iteration as a key, the other two values |
| 375 | // don't matter here. |
| 376 | auto CostIter = InstCostMap.find({I, Iteration, 0, 0}); |
| 377 | if (CostIter == InstCostMap.end()) |
| 378 | // If an input to a PHI node comes from a dead path through the loop |
| 379 | // we may have no cost data for it here. What that actually means is |
| 380 | // that it is free. |
| 381 | continue; |
| 382 | auto &Cost = *CostIter; |
| 383 | if (Cost.IsCounted) |
| 384 | // Already counted this instruction. |
| 385 | continue; |
| 386 | |
| 387 | // Mark that we are counting the cost of this instruction now. |
| 388 | Cost.IsCounted = true; |
| 389 | |
| 390 | // If this is a PHI node in the loop header, just add it to the PHI set. |
| 391 | if (auto *PhiI = dyn_cast<PHINode>(I)) |
| 392 | if (PhiI->getParent() == L->getHeader()) { |
| 393 | assert(Cost.IsFree && "Loop PHIs shouldn't be evaluated as they " |
| 394 | "inherently simplify during unrolling."); |
| 395 | if (Iteration == 0) |
| 396 | continue; |
| 397 | |
| 398 | // Push the incoming value from the backedge into the PHI used list |
| 399 | // if it is an in-loop instruction. We'll use this to populate the |
| 400 | // cost worklist for the next iteration (as we count backwards). |
| 401 | if (auto *OpI = dyn_cast<Instruction>( |
| 402 | PhiI->getIncomingValueForBlock(L->getLoopLatch()))) |
| 403 | if (L->contains(OpI)) |
| 404 | PHIUsedList.push_back(OpI); |
| 405 | continue; |
| 406 | } |
| 407 | |
| 408 | // First accumulate the cost of this instruction. |
| 409 | if (!Cost.IsFree) { |
| 410 | UnrolledCost += TTI.getUserCost(I); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 411 | LLVM_DEBUG(dbgs() << "Adding cost of instruction (iteration " |
| 412 | << Iteration << "): "); |
| 413 | LLVM_DEBUG(I->dump()); |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | // We must count the cost of every operand which is not free, |
| 417 | // recursively. If we reach a loop PHI node, simply add it to the set |
| 418 | // to be considered on the next iteration (backwards!). |
| 419 | for (Value *Op : I->operands()) { |
| 420 | // Check whether this operand is free due to being a constant or |
| 421 | // outside the loop. |
| 422 | auto *OpI = dyn_cast<Instruction>(Op); |
| 423 | if (!OpI || !L->contains(OpI)) |
| 424 | continue; |
| 425 | |
| 426 | // Otherwise accumulate its cost. |
| 427 | CostWorklist.push_back(OpI); |
| 428 | } |
| 429 | } while (!CostWorklist.empty()); |
| 430 | |
| 431 | if (PHIUsedList.empty()) |
| 432 | // We've exhausted the search. |
| 433 | break; |
| 434 | |
| 435 | assert(Iteration > 0 && |
| 436 | "Cannot track PHI-used values past the first iteration!"); |
| 437 | CostWorklist.append(PHIUsedList.begin(), PHIUsedList.end()); |
| 438 | PHIUsedList.clear(); |
| 439 | } |
| 440 | }; |
| 441 | |
Chandler Carruth | 87adb7a | 2015-08-03 20:32:27 +0000 | [diff] [blame] | 442 | // Ensure that we don't violate the loop structure invariants relied on by |
| 443 | // this analysis. |
| 444 | assert(L->isLoopSimplifyForm() && "Must put loop into normal form first."); |
| 445 | assert(L->isLCSSAForm(DT) && |
| 446 | "Must have loops in LCSSA form to track live-out values."); |
| 447 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 448 | LLVM_DEBUG(dbgs() << "Starting LoopUnroll profitability analysis...\n"); |
Michael Zolotukhin | 80d13ba | 2015-07-28 20:07:29 +0000 | [diff] [blame] | 449 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 450 | // Simulate execution of each iteration of the loop counting instructions, |
| 451 | // which would be simplified. |
| 452 | // Since the same load will take different values on different iterations, |
| 453 | // we literally have to go through all loop's iterations. |
| 454 | for (unsigned Iteration = 0; Iteration < TripCount; ++Iteration) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 455 | LLVM_DEBUG(dbgs() << " Analyzing iteration " << Iteration << "\n"); |
Chandler Carruth | 87adb7a | 2015-08-03 20:32:27 +0000 | [diff] [blame] | 456 | |
| 457 | // Prepare for the iteration by collecting any simplified entry or backedge |
| 458 | // inputs. |
| 459 | for (Instruction &I : *L->getHeader()) { |
| 460 | auto *PHI = dyn_cast<PHINode>(&I); |
| 461 | if (!PHI) |
| 462 | break; |
| 463 | |
| 464 | // The loop header PHI nodes must have exactly two input: one from the |
| 465 | // loop preheader and one from the loop latch. |
| 466 | assert( |
| 467 | PHI->getNumIncomingValues() == 2 && |
| 468 | "Must have an incoming value only for the preheader and the latch."); |
| 469 | |
| 470 | Value *V = PHI->getIncomingValueForBlock( |
| 471 | Iteration == 0 ? L->getLoopPreheader() : L->getLoopLatch()); |
| 472 | Constant *C = dyn_cast<Constant>(V); |
| 473 | if (Iteration != 0 && !C) |
| 474 | C = SimplifiedValues.lookup(V); |
| 475 | if (C) |
| 476 | SimplifiedInputValues.push_back({PHI, C}); |
| 477 | } |
| 478 | |
| 479 | // Now clear and re-populate the map for the next iteration. |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 480 | SimplifiedValues.clear(); |
Chandler Carruth | 87adb7a | 2015-08-03 20:32:27 +0000 | [diff] [blame] | 481 | while (!SimplifiedInputValues.empty()) |
| 482 | SimplifiedValues.insert(SimplifiedInputValues.pop_back_val()); |
| 483 | |
Michael Zolotukhin | 9f520eb | 2016-02-26 02:57:05 +0000 | [diff] [blame] | 484 | UnrolledInstAnalyzer Analyzer(Iteration, SimplifiedValues, SE, L); |
Chandler Carruth | f174a15 | 2015-05-22 02:47:29 +0000 | [diff] [blame] | 485 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 486 | BBWorklist.clear(); |
| 487 | BBWorklist.insert(L->getHeader()); |
| 488 | // Note that we *must not* cache the size, this loop grows the worklist. |
| 489 | for (unsigned Idx = 0; Idx != BBWorklist.size(); ++Idx) { |
| 490 | BasicBlock *BB = BBWorklist[Idx]; |
Chandler Carruth | f174a15 | 2015-05-22 02:47:29 +0000 | [diff] [blame] | 491 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 492 | // Visit all instructions in the given basic block and try to simplify |
| 493 | // it. We don't change the actual IR, just count optimization |
| 494 | // opportunities. |
| 495 | for (Instruction &I : *BB) { |
Andrei Elovikov | f9b8035 | 2018-03-15 09:59:15 +0000 | [diff] [blame] | 496 | // These won't get into the final code - don't even try calculating the |
| 497 | // cost for them. |
| 498 | if (isa<DbgInfoIntrinsic>(I) || EphValues.count(&I)) |
Dehao Chen | 977853b | 2016-09-30 18:30:04 +0000 | [diff] [blame] | 499 | continue; |
| 500 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 501 | // Track this instruction's expected baseline cost when executing the |
| 502 | // rolled loop form. |
| 503 | RolledDynamicCost += TTI.getUserCost(&I); |
Chandler Carruth | 17a0496 | 2015-02-13 03:49:41 +0000 | [diff] [blame] | 504 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 505 | // Visit the instruction to analyze its loop cost after unrolling, |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 506 | // and if the visitor returns true, mark the instruction as free after |
| 507 | // unrolling and continue. |
| 508 | bool IsFree = Analyzer.visit(I); |
| 509 | bool Inserted = InstCostMap.insert({&I, (int)Iteration, |
| 510 | (unsigned)IsFree, |
| 511 | /*IsCounted*/ false}).second; |
| 512 | (void)Inserted; |
| 513 | assert(Inserted && "Cannot have a state for an unvisited instruction!"); |
Chandler Carruth | 9dabd14 | 2015-06-05 17:01:43 +0000 | [diff] [blame] | 514 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 515 | if (IsFree) |
| 516 | continue; |
| 517 | |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 518 | // Can't properly model a cost of a call. |
| 519 | // FIXME: With a proper cost model we should be able to do it. |
Matt Arsenault | 2c1a570 | 2018-06-26 18:51:17 +0000 | [diff] [blame] | 520 | if (auto *CI = dyn_cast<CallInst>(&I)) { |
| 521 | const Function *Callee = CI->getCalledFunction(); |
| 522 | if (!Callee || TTI.isLoweredToCall(Callee)) { |
| 523 | LLVM_DEBUG(dbgs() << "Can't analyze cost of loop with call\n"); |
| 524 | return None; |
| 525 | } |
| 526 | } |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 527 | |
Haicheng Wu | e787763 | 2016-08-17 22:42:58 +0000 | [diff] [blame] | 528 | // If the instruction might have a side-effect recursively account for |
| 529 | // the cost of it and all the instructions leading up to it. |
| 530 | if (I.mayHaveSideEffects()) |
| 531 | AddCostRecursively(I, Iteration); |
| 532 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 533 | // If unrolled body turns out to be too big, bail out. |
Michael Zolotukhin | 80d13ba | 2015-07-28 20:07:29 +0000 | [diff] [blame] | 534 | if (UnrolledCost > MaxUnrolledLoopSize) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 535 | LLVM_DEBUG(dbgs() << " Exceeded threshold.. exiting.\n" |
| 536 | << " UnrolledCost: " << UnrolledCost |
| 537 | << ", MaxUnrolledLoopSize: " << MaxUnrolledLoopSize |
| 538 | << "\n"); |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 539 | return None; |
Michael Zolotukhin | 80d13ba | 2015-07-28 20:07:29 +0000 | [diff] [blame] | 540 | } |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 541 | } |
Chandler Carruth | 415f412 | 2015-02-13 02:17:39 +0000 | [diff] [blame] | 542 | |
Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 543 | Instruction *TI = BB->getTerminator(); |
Michael Zolotukhin | 57776b8 | 2015-07-24 01:53:04 +0000 | [diff] [blame] | 544 | |
| 545 | // Add in the live successors by first checking whether we have terminator |
| 546 | // that may be simplified based on the values simplified by this call. |
Michael Zolotukhin | 1ecdeda | 2016-05-26 21:42:51 +0000 | [diff] [blame] | 547 | BasicBlock *KnownSucc = nullptr; |
Michael Zolotukhin | 57776b8 | 2015-07-24 01:53:04 +0000 | [diff] [blame] | 548 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
| 549 | if (BI->isConditional()) { |
| 550 | if (Constant *SimpleCond = |
| 551 | SimplifiedValues.lookup(BI->getCondition())) { |
Michael Zolotukhin | 3a7d55b | 2015-07-29 18:10:29 +0000 | [diff] [blame] | 552 | // Just take the first successor if condition is undef |
| 553 | if (isa<UndefValue>(SimpleCond)) |
Michael Zolotukhin | 1ecdeda | 2016-05-26 21:42:51 +0000 | [diff] [blame] | 554 | KnownSucc = BI->getSuccessor(0); |
| 555 | else if (ConstantInt *SimpleCondVal = |
| 556 | dyn_cast<ConstantInt>(SimpleCond)) |
| 557 | KnownSucc = BI->getSuccessor(SimpleCondVal->isZero() ? 1 : 0); |
Michael Zolotukhin | 57776b8 | 2015-07-24 01:53:04 +0000 | [diff] [blame] | 558 | } |
| 559 | } |
| 560 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 561 | if (Constant *SimpleCond = |
| 562 | SimplifiedValues.lookup(SI->getCondition())) { |
Michael Zolotukhin | 3a7d55b | 2015-07-29 18:10:29 +0000 | [diff] [blame] | 563 | // Just take the first successor if condition is undef |
| 564 | if (isa<UndefValue>(SimpleCond)) |
Michael Zolotukhin | 1ecdeda | 2016-05-26 21:42:51 +0000 | [diff] [blame] | 565 | KnownSucc = SI->getSuccessor(0); |
| 566 | else if (ConstantInt *SimpleCondVal = |
| 567 | dyn_cast<ConstantInt>(SimpleCond)) |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 568 | KnownSucc = SI->findCaseValue(SimpleCondVal)->getCaseSuccessor(); |
Michael Zolotukhin | 57776b8 | 2015-07-24 01:53:04 +0000 | [diff] [blame] | 569 | } |
| 570 | } |
Michael Zolotukhin | 1ecdeda | 2016-05-26 21:42:51 +0000 | [diff] [blame] | 571 | if (KnownSucc) { |
| 572 | if (L->contains(KnownSucc)) |
| 573 | BBWorklist.insert(KnownSucc); |
| 574 | else |
| 575 | ExitWorklist.insert({BB, KnownSucc}); |
| 576 | continue; |
| 577 | } |
Michael Zolotukhin | 57776b8 | 2015-07-24 01:53:04 +0000 | [diff] [blame] | 578 | |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 579 | // Add BB's successors to the worklist. |
| 580 | for (BasicBlock *Succ : successors(BB)) |
| 581 | if (L->contains(Succ)) |
| 582 | BBWorklist.insert(Succ); |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 583 | else |
| 584 | ExitWorklist.insert({BB, Succ}); |
Michael Zolotukhin | d2268a7 | 2016-05-18 21:20:12 +0000 | [diff] [blame] | 585 | AddCostRecursively(*TI, Iteration); |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 586 | } |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 587 | |
| 588 | // If we found no optimization opportunities on the first iteration, we |
| 589 | // won't find them on later ones too. |
Michael Zolotukhin | 80d13ba | 2015-07-28 20:07:29 +0000 | [diff] [blame] | 590 | if (UnrolledCost == RolledDynamicCost) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 591 | LLVM_DEBUG(dbgs() << " No opportunities found.. exiting.\n" |
| 592 | << " UnrolledCost: " << UnrolledCost << "\n"); |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 593 | return None; |
Michael Zolotukhin | 80d13ba | 2015-07-28 20:07:29 +0000 | [diff] [blame] | 594 | } |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 595 | } |
Michael Zolotukhin | 963a6d9 | 2016-05-13 21:23:25 +0000 | [diff] [blame] | 596 | |
| 597 | while (!ExitWorklist.empty()) { |
| 598 | BasicBlock *ExitingBB, *ExitBB; |
| 599 | std::tie(ExitingBB, ExitBB) = ExitWorklist.pop_back_val(); |
| 600 | |
| 601 | for (Instruction &I : *ExitBB) { |
| 602 | auto *PN = dyn_cast<PHINode>(&I); |
| 603 | if (!PN) |
| 604 | break; |
| 605 | |
| 606 | Value *Op = PN->getIncomingValueForBlock(ExitingBB); |
| 607 | if (auto *OpI = dyn_cast<Instruction>(Op)) |
| 608 | if (L->contains(OpI)) |
| 609 | AddCostRecursively(*OpI, TripCount - 1); |
| 610 | } |
| 611 | } |
| 612 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 613 | LLVM_DEBUG(dbgs() << "Analysis finished:\n" |
| 614 | << "UnrolledCost: " << UnrolledCost << ", " |
| 615 | << "RolledDynamicCost: " << RolledDynamicCost << "\n"); |
Chandler Carruth | 9dabd14 | 2015-06-05 17:01:43 +0000 | [diff] [blame] | 616 | return {{UnrolledCost, RolledDynamicCost}}; |
Chandler Carruth | 0215608 | 2015-05-22 17:41:35 +0000 | [diff] [blame] | 617 | } |
Michael Zolotukhin | a9aadd2 | 2015-02-05 02:34:00 +0000 | [diff] [blame] | 618 | |
Dan Gohman | 49d08a5 | 2007-05-08 15:14:19 +0000 | [diff] [blame] | 619 | /// ApproximateLoopSize - Approximate the size of the loop. |
David Green | 963401d | 2018-07-01 12:47:30 +0000 | [diff] [blame] | 620 | unsigned llvm::ApproximateLoopSize( |
| 621 | const Loop *L, unsigned &NumCalls, bool &NotDuplicatable, bool &Convergent, |
| 622 | const TargetTransformInfo &TTI, |
| 623 | const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns) { |
Dan Gohman | 969e83a | 2009-10-31 14:54:17 +0000 | [diff] [blame] | 624 | CodeMetrics Metrics; |
Sanjay Patel | 5c96723 | 2016-03-08 19:06:12 +0000 | [diff] [blame] | 625 | for (BasicBlock *BB : L->blocks()) |
| 626 | Metrics.analyzeBasicBlock(BB, TTI, EphValues); |
Owen Anderson | 04cf3fd | 2010-09-09 20:32:23 +0000 | [diff] [blame] | 627 | NumCalls = Metrics.NumInlineCandidates; |
James Molloy | 4f6fb95 | 2012-12-20 16:04:27 +0000 | [diff] [blame] | 628 | NotDuplicatable = Metrics.notDuplicatable; |
Justin Lebar | 6827de1 | 2016-03-14 23:15:34 +0000 | [diff] [blame] | 629 | Convergent = Metrics.convergent; |
Andrew Trick | 279e7a6 | 2011-07-23 00:29:16 +0000 | [diff] [blame] | 630 | |
Owen Anderson | 62ea1b7 | 2010-09-09 19:07:31 +0000 | [diff] [blame] | 631 | unsigned LoopSize = Metrics.NumInsts; |
Andrew Trick | 279e7a6 | 2011-07-23 00:29:16 +0000 | [diff] [blame] | 632 | |
Owen Anderson | 62ea1b7 | 2010-09-09 19:07:31 +0000 | [diff] [blame] | 633 | // Don't allow an estimate of size zero. This would allows unrolling of loops |
| 634 | // with huge iteration counts, which is a compile time problem even if it's |
Hal Finkel | 38dd590 | 2015-01-10 00:30:55 +0000 | [diff] [blame] | 635 | // not a problem for code quality. Also, the code using this size may assume |
| 636 | // that each loop has at least three instructions (likely a conditional |
| 637 | // branch, a comparison feeding that branch, and some kind of loop increment |
| 638 | // feeding that comparison instruction). |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 639 | LoopSize = std::max(LoopSize, BEInsns + 1); |
Andrew Trick | 279e7a6 | 2011-07-23 00:29:16 +0000 | [diff] [blame] | 640 | |
Owen Anderson | 62ea1b7 | 2010-09-09 19:07:31 +0000 | [diff] [blame] | 641 | return LoopSize; |
Chris Lattner | 946b255 | 2004-04-18 05:20:17 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Mark Heffernan | e6b4ba1 | 2014-07-23 17:31:37 +0000 | [diff] [blame] | 644 | // Returns the loop hint metadata node with the given name (for example, |
| 645 | // "llvm.loop.unroll.count"). If no such metadata node exists, then nullptr is |
| 646 | // returned. |
Jingyue Wu | 49a766e | 2015-02-02 20:41:11 +0000 | [diff] [blame] | 647 | static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) { |
| 648 | if (MDNode *LoopID = L->getLoopID()) |
| 649 | return GetUnrollMetadata(LoopID, Name); |
| 650 | return nullptr; |
Eli Bendersky | ff90324 | 2014-06-16 23:53:02 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Mark Heffernan | e6b4ba1 | 2014-07-23 17:31:37 +0000 | [diff] [blame] | 653 | // Returns true if the loop has an unroll(full) pragma. |
| 654 | static bool HasUnrollFullPragma(const Loop *L) { |
Jingyue Wu | 0220df0 | 2015-02-01 02:27:45 +0000 | [diff] [blame] | 655 | return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.full"); |
Eli Bendersky | ff90324 | 2014-06-16 23:53:02 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Mark Heffernan | 8939154 | 2015-08-10 17:28:08 +0000 | [diff] [blame] | 658 | // Returns true if the loop has an unroll(enable) pragma. This metadata is used |
| 659 | // for both "#pragma unroll" and "#pragma clang loop unroll(enable)" directives. |
| 660 | static bool HasUnrollEnablePragma(const Loop *L) { |
| 661 | return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.enable"); |
| 662 | } |
| 663 | |
Kevin Qin | 715b01e | 2015-03-09 06:14:18 +0000 | [diff] [blame] | 664 | // Returns true if the loop has an runtime unroll(disable) pragma. |
| 665 | static bool HasRuntimeUnrollDisablePragma(const Loop *L) { |
| 666 | return GetUnrollMetadataForLoop(L, "llvm.loop.unroll.runtime.disable"); |
| 667 | } |
| 668 | |
Eli Bendersky | ff90324 | 2014-06-16 23:53:02 +0000 | [diff] [blame] | 669 | // If loop has an unroll_count pragma return the (necessarily |
| 670 | // positive) value from the pragma. Otherwise return 0. |
| 671 | static unsigned UnrollCountPragmaValue(const Loop *L) { |
Jingyue Wu | 49a766e | 2015-02-02 20:41:11 +0000 | [diff] [blame] | 672 | MDNode *MD = GetUnrollMetadataForLoop(L, "llvm.loop.unroll.count"); |
Mark Heffernan | e6b4ba1 | 2014-07-23 17:31:37 +0000 | [diff] [blame] | 673 | if (MD) { |
| 674 | assert(MD->getNumOperands() == 2 && |
| 675 | "Unroll count hint metadata should have two operands."); |
Duncan P. N. Exon Smith | 5bf8fef | 2014-12-09 18:38:53 +0000 | [diff] [blame] | 676 | unsigned Count = |
| 677 | mdconst::extract<ConstantInt>(MD->getOperand(1))->getZExtValue(); |
Eli Bendersky | ff90324 | 2014-06-16 23:53:02 +0000 | [diff] [blame] | 678 | assert(Count >= 1 && "Unroll count must be positive."); |
| 679 | return Count; |
| 680 | } |
| 681 | return 0; |
| 682 | } |
| 683 | |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 684 | // Computes the boosting factor for complete unrolling. |
| 685 | // If fully unrolling the loop would save a lot of RolledDynamicCost, it would |
| 686 | // be beneficial to fully unroll the loop even if unrolledcost is large. We |
| 687 | // use (RolledDynamicCost / UnrolledCost) to model the unroll benefits to adjust |
| 688 | // the unroll threshold. |
| 689 | static unsigned getFullUnrollBoostingFactor(const EstimatedUnrollCost &Cost, |
| 690 | unsigned MaxPercentThresholdBoost) { |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 691 | if (Cost.RolledDynamicCost >= std::numeric_limits<unsigned>::max() / 100) |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 692 | return 100; |
| 693 | else if (Cost.UnrolledCost != 0) |
| 694 | // The boosting factor is RolledDynamicCost / UnrolledCost |
| 695 | return std::min(100 * Cost.RolledDynamicCost / Cost.UnrolledCost, |
| 696 | MaxPercentThresholdBoost); |
| 697 | else |
| 698 | return MaxPercentThresholdBoost; |
Michael Zolotukhin | 8c68171 | 2015-05-12 17:20:03 +0000 | [diff] [blame] | 699 | } |
| 700 | |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 701 | // Returns loop size estimation for unrolled loop. |
| 702 | static uint64_t getUnrolledLoopSize( |
| 703 | unsigned LoopSize, |
| 704 | TargetTransformInfo::UnrollingPreferences &UP) { |
| 705 | assert(LoopSize >= UP.BEInsns && "LoopSize should not be less than BEInsns!"); |
| 706 | return (uint64_t)(LoopSize - UP.BEInsns) * UP.Count + UP.BEInsns; |
| 707 | } |
| 708 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 709 | // Returns true if unroll count was set explicitly. |
| 710 | // Calculates unroll count and writes it to UP.Count. |
Michael Kruse | 7244852 | 2018-12-12 17:32:52 +0000 | [diff] [blame] | 711 | // Unless IgnoreUser is true, will also use metadata and command-line options |
| 712 | // that are specific to to the LoopUnroll pass (which, for instance, are |
| 713 | // irrelevant for the LoopUnrollAndJam pass). |
| 714 | // FIXME: This function is used by LoopUnroll and LoopUnrollAndJam, but consumes |
| 715 | // many LoopUnroll-specific options. The shared functionality should be |
| 716 | // refactored into it own function. |
David Green | 963401d | 2018-07-01 12:47:30 +0000 | [diff] [blame] | 717 | bool llvm::computeUnrollCount( |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 718 | Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI, |
Andrei Elovikov | f9b8035 | 2018-03-15 09:59:15 +0000 | [diff] [blame] | 719 | ScalarEvolution &SE, const SmallPtrSetImpl<const Value *> &EphValues, |
| 720 | OptimizationRemarkEmitter *ORE, unsigned &TripCount, unsigned MaxTripCount, |
| 721 | unsigned &TripMultiple, unsigned LoopSize, |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 722 | TargetTransformInfo::UnrollingPreferences &UP, bool &UseUpperBound) { |
Michael Kruse | 7244852 | 2018-12-12 17:32:52 +0000 | [diff] [blame] | 723 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 724 | // Check for explicit Count. |
| 725 | // 1st priority is unroll count set by "unroll-count" option. |
| 726 | bool UserUnrollCount = UnrollCount.getNumOccurrences() > 0; |
| 727 | if (UserUnrollCount) { |
| 728 | UP.Count = UnrollCount; |
| 729 | UP.AllowExpensiveTripCount = true; |
| 730 | UP.Force = true; |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 731 | if (UP.AllowRemainder && getUnrolledLoopSize(LoopSize, UP) < UP.Threshold) |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 732 | return true; |
| 733 | } |
| 734 | |
| 735 | // 2nd priority is unroll count set by pragma. |
| 736 | unsigned PragmaCount = UnrollCountPragmaValue(L); |
| 737 | if (PragmaCount > 0) { |
| 738 | UP.Count = PragmaCount; |
| 739 | UP.Runtime = true; |
| 740 | UP.AllowExpensiveTripCount = true; |
| 741 | UP.Force = true; |
Yaxun Liu | 3c42f1c | 2018-03-02 16:22:32 +0000 | [diff] [blame] | 742 | if ((UP.AllowRemainder || (TripMultiple % PragmaCount == 0)) && |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 743 | getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold) |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 744 | return true; |
| 745 | } |
| 746 | bool PragmaFullUnroll = HasUnrollFullPragma(L); |
| 747 | if (PragmaFullUnroll && TripCount != 0) { |
| 748 | UP.Count = TripCount; |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 749 | if (getUnrolledLoopSize(LoopSize, UP) < PragmaUnrollThreshold) |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 750 | return false; |
| 751 | } |
| 752 | |
| 753 | bool PragmaEnableUnroll = HasUnrollEnablePragma(L); |
| 754 | bool ExplicitUnroll = PragmaCount > 0 || PragmaFullUnroll || |
| 755 | PragmaEnableUnroll || UserUnrollCount; |
| 756 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 757 | if (ExplicitUnroll && TripCount != 0) { |
| 758 | // If the loop has an unrolling pragma, we want to be more aggressive with |
David Green | 963401d | 2018-07-01 12:47:30 +0000 | [diff] [blame] | 759 | // unrolling limits. Set thresholds to at least the PragmaUnrollThreshold |
| 760 | // value which is larger than the default limits. |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 761 | UP.Threshold = std::max<unsigned>(UP.Threshold, PragmaUnrollThreshold); |
| 762 | UP.PartialThreshold = |
| 763 | std::max<unsigned>(UP.PartialThreshold, PragmaUnrollThreshold); |
| 764 | } |
| 765 | |
| 766 | // 3rd priority is full unroll count. |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 767 | // Full unroll makes sense only when TripCount or its upper bound could be |
| 768 | // statically calculated. |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 769 | // Also we need to check if we exceed FullUnrollMaxCount. |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 770 | // If using the upper bound to unroll, TripMultiple should be set to 1 because |
| 771 | // we do not know when loop may exit. |
| 772 | // MaxTripCount and ExactTripCount cannot both be non zero since we only |
| 773 | // compute the former when the latter is zero. |
| 774 | unsigned ExactTripCount = TripCount; |
| 775 | assert((ExactTripCount == 0 || MaxTripCount == 0) && |
Hiroshi Inoue | f209649 | 2018-06-14 05:41:49 +0000 | [diff] [blame] | 776 | "ExtractTripCount and MaxTripCount cannot both be non zero."); |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 777 | unsigned FullUnrollTripCount = ExactTripCount ? ExactTripCount : MaxTripCount; |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 778 | UP.Count = FullUnrollTripCount; |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 779 | if (FullUnrollTripCount && FullUnrollTripCount <= UP.FullUnrollMaxCount) { |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 780 | // When computing the unrolled size, note that BEInsns are not replicated |
| 781 | // like the rest of the loop body. |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 782 | if (getUnrolledLoopSize(LoopSize, UP) < UP.Threshold) { |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 783 | UseUpperBound = (MaxTripCount == FullUnrollTripCount); |
| 784 | TripCount = FullUnrollTripCount; |
| 785 | TripMultiple = UP.UpperBound ? 1 : TripMultiple; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 786 | return ExplicitUnroll; |
| 787 | } else { |
| 788 | // The loop isn't that small, but we still can fully unroll it if that |
| 789 | // helps to remove a significant number of instructions. |
| 790 | // To check that, run additional analysis on the loop. |
| 791 | if (Optional<EstimatedUnrollCost> Cost = analyzeLoopUnrollCost( |
Andrei Elovikov | f9b8035 | 2018-03-15 09:59:15 +0000 | [diff] [blame] | 792 | L, FullUnrollTripCount, DT, SE, EphValues, TTI, |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 793 | UP.Threshold * UP.MaxPercentThresholdBoost / 100)) { |
| 794 | unsigned Boost = |
| 795 | getFullUnrollBoostingFactor(*Cost, UP.MaxPercentThresholdBoost); |
| 796 | if (Cost->UnrolledCost < UP.Threshold * Boost / 100) { |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 797 | UseUpperBound = (MaxTripCount == FullUnrollTripCount); |
| 798 | TripCount = FullUnrollTripCount; |
| 799 | TripMultiple = UP.UpperBound ? 1 : TripMultiple; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 800 | return ExplicitUnroll; |
| 801 | } |
Dehao Chen | cc76344 | 2016-12-30 00:50:28 +0000 | [diff] [blame] | 802 | } |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 803 | } |
| 804 | } |
| 805 | |
Neil Henning | d2261f61 | 2018-10-05 09:39:07 +0000 | [diff] [blame] | 806 | // 4th priority is loop peeling. |
Florian Hahn | fc97b61 | 2018-03-15 21:34:43 +0000 | [diff] [blame] | 807 | computePeelCount(L, LoopSize, UP, TripCount, SE); |
Sanjoy Das | eed71b9 | 2017-03-03 18:19:10 +0000 | [diff] [blame] | 808 | if (UP.PeelCount) { |
| 809 | UP.Runtime = false; |
| 810 | UP.Count = 1; |
| 811 | return ExplicitUnroll; |
| 812 | } |
| 813 | |
| 814 | // 5th priority is partial unrolling. |
Hiroshi Inoue | f209649 | 2018-06-14 05:41:49 +0000 | [diff] [blame] | 815 | // Try partial unroll only when TripCount could be statically calculated. |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 816 | if (TripCount) { |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 817 | UP.Partial |= ExplicitUnroll; |
| 818 | if (!UP.Partial) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 819 | LLVM_DEBUG(dbgs() << " will not try to unroll partially because " |
| 820 | << "-unroll-allow-partial not given\n"); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 821 | UP.Count = 0; |
| 822 | return false; |
| 823 | } |
Haicheng Wu | 430b3e4 | 2016-10-27 18:40:02 +0000 | [diff] [blame] | 824 | if (UP.Count == 0) |
| 825 | UP.Count = TripCount; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 826 | if (UP.PartialThreshold != NoThreshold) { |
| 827 | // Reduce unroll count to be modulo of TripCount for partial unrolling. |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 828 | if (getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold) |
| 829 | UP.Count = |
| 830 | (std::max(UP.PartialThreshold, UP.BEInsns + 1) - UP.BEInsns) / |
| 831 | (LoopSize - UP.BEInsns); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 832 | if (UP.Count > UP.MaxCount) |
| 833 | UP.Count = UP.MaxCount; |
| 834 | while (UP.Count != 0 && TripCount % UP.Count != 0) |
| 835 | UP.Count--; |
| 836 | if (UP.AllowRemainder && UP.Count <= 1) { |
| 837 | // If there is no Count that is modulo of TripCount, set Count to |
| 838 | // largest power-of-two factor that satisfies the threshold limit. |
| 839 | // As we'll create fixup loop, do the type of unrolling only if |
| 840 | // remainder loop is allowed. |
Jonas Paulsson | 58c5a7f | 2016-09-28 09:41:38 +0000 | [diff] [blame] | 841 | UP.Count = UP.DefaultUnrollRuntimeCount; |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 842 | while (UP.Count != 0 && |
| 843 | getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold) |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 844 | UP.Count >>= 1; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 845 | } |
| 846 | if (UP.Count < 2) { |
| 847 | if (PragmaEnableUnroll) |
Vivek Pandya | 9590658 | 2017-10-11 17:12:59 +0000 | [diff] [blame] | 848 | ORE->emit([&]() { |
| 849 | return OptimizationRemarkMissed(DEBUG_TYPE, |
| 850 | "UnrollAsDirectedTooLarge", |
| 851 | L->getStartLoc(), L->getHeader()) |
| 852 | << "Unable to unroll loop as directed by unroll(enable) " |
| 853 | "pragma " |
| 854 | "because unrolled size is too large."; |
| 855 | }); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 856 | UP.Count = 0; |
| 857 | } |
| 858 | } else { |
| 859 | UP.Count = TripCount; |
| 860 | } |
Geoff Berry | b057354 | 2017-06-28 17:01:15 +0000 | [diff] [blame] | 861 | if (UP.Count > UP.MaxCount) |
| 862 | UP.Count = UP.MaxCount; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 863 | if ((PragmaFullUnroll || PragmaEnableUnroll) && TripCount && |
| 864 | UP.Count != TripCount) |
Vivek Pandya | 9590658 | 2017-10-11 17:12:59 +0000 | [diff] [blame] | 865 | ORE->emit([&]() { |
| 866 | return OptimizationRemarkMissed(DEBUG_TYPE, |
| 867 | "FullUnrollAsDirectedTooLarge", |
| 868 | L->getStartLoc(), L->getHeader()) |
| 869 | << "Unable to fully unroll loop as directed by unroll pragma " |
| 870 | "because " |
| 871 | "unrolled size is too large."; |
| 872 | }); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 873 | return ExplicitUnroll; |
| 874 | } |
| 875 | assert(TripCount == 0 && |
| 876 | "All cases when TripCount is constant should be covered here."); |
| 877 | if (PragmaFullUnroll) |
Vivek Pandya | 9590658 | 2017-10-11 17:12:59 +0000 | [diff] [blame] | 878 | ORE->emit([&]() { |
| 879 | return OptimizationRemarkMissed( |
| 880 | DEBUG_TYPE, "CantFullUnrollAsDirectedRuntimeTripCount", |
| 881 | L->getStartLoc(), L->getHeader()) |
| 882 | << "Unable to fully unroll loop as directed by unroll(full) " |
| 883 | "pragma " |
| 884 | "because loop has a runtime trip count."; |
| 885 | }); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 886 | |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 887 | // 6th priority is runtime unrolling. |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 888 | // Don't unroll a runtime trip count loop when it is disabled. |
| 889 | if (HasRuntimeUnrollDisablePragma(L)) { |
| 890 | UP.Count = 0; |
| 891 | return false; |
| 892 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 893 | |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 894 | // Check if the runtime trip count is too small when profile is available. |
Easwaran Raman | a17f220 | 2017-12-22 01:33:52 +0000 | [diff] [blame] | 895 | if (L->getHeader()->getParent()->hasProfileData()) { |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 896 | if (auto ProfileTripCount = getLoopEstimatedTripCount(L)) { |
| 897 | if (*ProfileTripCount < FlatLoopTripCountThreshold) |
| 898 | return false; |
| 899 | else |
| 900 | UP.AllowExpensiveTripCount = true; |
| 901 | } |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 902 | } |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 903 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 904 | // Reduce count based on the type of unrolling and the threshold values. |
| 905 | UP.Runtime |= PragmaEnableUnroll || PragmaCount > 0 || UserUnrollCount; |
| 906 | if (!UP.Runtime) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 907 | LLVM_DEBUG( |
| 908 | dbgs() << " will not try to unroll loop with runtime trip count " |
| 909 | << "-unroll-runtime not given\n"); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 910 | UP.Count = 0; |
| 911 | return false; |
| 912 | } |
| 913 | if (UP.Count == 0) |
Jonas Paulsson | 58c5a7f | 2016-09-28 09:41:38 +0000 | [diff] [blame] | 914 | UP.Count = UP.DefaultUnrollRuntimeCount; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 915 | |
| 916 | // Reduce unroll count to be the largest power-of-two factor of |
| 917 | // the original count which satisfies the threshold limit. |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 918 | while (UP.Count != 0 && |
| 919 | getUnrolledLoopSize(LoopSize, UP) > UP.PartialThreshold) |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 920 | UP.Count >>= 1; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 921 | |
Evgeny Stupachenko | b787522 | 2016-05-28 00:14:58 +0000 | [diff] [blame] | 922 | #ifndef NDEBUG |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 923 | unsigned OrigCount = UP.Count; |
Evgeny Stupachenko | b787522 | 2016-05-28 00:14:58 +0000 | [diff] [blame] | 924 | #endif |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 925 | |
| 926 | if (!UP.AllowRemainder && UP.Count != 0 && (TripMultiple % UP.Count) != 0) { |
| 927 | while (UP.Count != 0 && TripMultiple % UP.Count != 0) |
| 928 | UP.Count >>= 1; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 929 | LLVM_DEBUG( |
| 930 | dbgs() << "Remainder loop is restricted (that could architecture " |
| 931 | "specific or because the loop contains a convergent " |
| 932 | "instruction), so unroll count must divide the trip " |
| 933 | "multiple, " |
| 934 | << TripMultiple << ". Reducing unroll count from " << OrigCount |
| 935 | << " to " << UP.Count << ".\n"); |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 936 | |
Adam Nemet | f57cc62 | 2016-09-30 03:44:16 +0000 | [diff] [blame] | 937 | using namespace ore; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 938 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 939 | if (PragmaCount > 0 && !UP.AllowRemainder) |
Vivek Pandya | 9590658 | 2017-10-11 17:12:59 +0000 | [diff] [blame] | 940 | ORE->emit([&]() { |
| 941 | return OptimizationRemarkMissed(DEBUG_TYPE, |
| 942 | "DifferentUnrollCountFromDirected", |
| 943 | L->getStartLoc(), L->getHeader()) |
| 944 | << "Unable to unroll loop the number of times directed by " |
| 945 | "unroll_count pragma because remainder loop is restricted " |
| 946 | "(that could architecture specific or because the loop " |
| 947 | "contains a convergent instruction) and so must have an " |
| 948 | "unroll " |
| 949 | "count that divides the loop trip multiple of " |
| 950 | << NV("TripMultiple", TripMultiple) << ". Unrolling instead " |
| 951 | << NV("UnrollCount", UP.Count) << " time(s)."; |
| 952 | }); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 953 | } |
| 954 | |
| 955 | if (UP.Count > UP.MaxCount) |
| 956 | UP.Count = UP.MaxCount; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 957 | LLVM_DEBUG(dbgs() << " partially unrolling with count: " << UP.Count |
| 958 | << "\n"); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 959 | if (UP.Count < 2) |
| 960 | UP.Count = 0; |
| 961 | return ExplicitUnroll; |
| 962 | } |
| 963 | |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 964 | static LoopUnrollResult tryToUnrollLoop( |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 965 | Loop *L, DominatorTree &DT, LoopInfo *LI, ScalarEvolution &SE, |
| 966 | const TargetTransformInfo &TTI, AssumptionCache &AC, |
| 967 | OptimizationRemarkEmitter &ORE, bool PreserveLCSSA, int OptLevel, |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 968 | bool OnlyWhenForced, Optional<unsigned> ProvidedCount, |
| 969 | Optional<unsigned> ProvidedThreshold, Optional<bool> ProvidedAllowPartial, |
| 970 | Optional<bool> ProvidedRuntime, Optional<bool> ProvidedUpperBound, |
| 971 | Optional<bool> ProvidedAllowPeeling) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 972 | LLVM_DEBUG(dbgs() << "Loop Unroll: F[" |
| 973 | << L->getHeader()->getParent()->getName() << "] Loop %" |
| 974 | << L->getHeader()->getName() << "\n"); |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 975 | TransformationMode TM = hasUnrollTransformation(L); |
| 976 | if (TM & TM_Disable) |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 977 | return LoopUnrollResult::Unmodified; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 978 | if (!L->isLoopSimplifyForm()) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 979 | LLVM_DEBUG( |
Haicheng Wu | 731b04c | 2016-11-23 19:39:26 +0000 | [diff] [blame] | 980 | dbgs() << " Not unrolling loop which is not in loop-simplify form.\n"); |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 981 | return LoopUnrollResult::Unmodified; |
Eli Bendersky | ff90324 | 2014-06-16 23:53:02 +0000 | [diff] [blame] | 982 | } |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 983 | |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 984 | // When automtatic unrolling is disabled, do not unroll unless overridden for |
| 985 | // this loop. |
| 986 | if (OnlyWhenForced && !(TM & TM_Enable)) |
| 987 | return LoopUnrollResult::Unmodified; |
| 988 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 989 | unsigned NumInlineCandidates; |
| 990 | bool NotDuplicatable; |
| 991 | bool Convergent; |
Evgeny Stupachenko | c2698cd | 2016-11-09 19:56:39 +0000 | [diff] [blame] | 992 | TargetTransformInfo::UnrollingPreferences UP = gatherUnrollingPreferences( |
Geoff Berry | 66d9bdb | 2017-06-28 15:53:17 +0000 | [diff] [blame] | 993 | L, SE, TTI, OptLevel, ProvidedThreshold, ProvidedCount, |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 994 | ProvidedAllowPartial, ProvidedRuntime, ProvidedUpperBound, |
| 995 | ProvidedAllowPeeling); |
Haicheng Wu | 731b04c | 2016-11-23 19:39:26 +0000 | [diff] [blame] | 996 | // Exit early if unrolling is disabled. |
| 997 | if (UP.Threshold == 0 && (!UP.Partial || UP.PartialThreshold == 0)) |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 998 | return LoopUnrollResult::Unmodified; |
Andrei Elovikov | f9b8035 | 2018-03-15 09:59:15 +0000 | [diff] [blame] | 999 | |
| 1000 | SmallPtrSet<const Value *, 32> EphValues; |
| 1001 | CodeMetrics::collectEphemeralValues(L, &AC, EphValues); |
| 1002 | |
| 1003 | unsigned LoopSize = |
| 1004 | ApproximateLoopSize(L, NumInlineCandidates, NotDuplicatable, Convergent, |
| 1005 | TTI, EphValues, UP.BEInsns); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1006 | LLVM_DEBUG(dbgs() << " Loop Size = " << LoopSize << "\n"); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 1007 | if (NotDuplicatable) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1008 | LLVM_DEBUG(dbgs() << " Not unrolling loop which contains non-duplicatable" |
| 1009 | << " instructions.\n"); |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1010 | return LoopUnrollResult::Unmodified; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 1011 | } |
| 1012 | if (NumInlineCandidates != 0) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1013 | LLVM_DEBUG(dbgs() << " Not unrolling loop with inlinable calls.\n"); |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1014 | return LoopUnrollResult::Unmodified; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 1015 | } |
Andrew Trick | 279e7a6 | 2011-07-23 00:29:16 +0000 | [diff] [blame] | 1016 | |
Andrew Trick | 2b6860f | 2011-08-11 23:36:16 +0000 | [diff] [blame] | 1017 | // Find trip count and trip multiple if count is not available |
| 1018 | unsigned TripCount = 0; |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 1019 | unsigned MaxTripCount = 0; |
Andrew Trick | 1cabe54 | 2011-07-23 00:33:05 +0000 | [diff] [blame] | 1020 | unsigned TripMultiple = 1; |
Chandler Carruth | 6666c27 | 2014-10-11 00:12:11 +0000 | [diff] [blame] | 1021 | // If there are multiple exiting blocks but one of them is the latch, use the |
| 1022 | // latch for the trip count estimation. Otherwise insist on a single exiting |
| 1023 | // block for the trip count estimation. |
| 1024 | BasicBlock *ExitingBlock = L->getLoopLatch(); |
| 1025 | if (!ExitingBlock || !L->isLoopExiting(ExitingBlock)) |
| 1026 | ExitingBlock = L->getExitingBlock(); |
| 1027 | if (ExitingBlock) { |
Geoff Berry | 66d9bdb | 2017-06-28 15:53:17 +0000 | [diff] [blame] | 1028 | TripCount = SE.getSmallConstantTripCount(L, ExitingBlock); |
| 1029 | TripMultiple = SE.getSmallConstantTripMultiple(L, ExitingBlock); |
Andrew Trick | 2b6860f | 2011-08-11 23:36:16 +0000 | [diff] [blame] | 1030 | } |
Hal Finkel | 8f2e700 | 2013-09-11 19:25:43 +0000 | [diff] [blame] | 1031 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 1032 | // If the loop contains a convergent operation, the prelude we'd add |
| 1033 | // to do the first few instructions before we hit the unrolled loop |
| 1034 | // is unsafe -- it adds a control-flow dependency to the convergent |
| 1035 | // operation. Therefore restrict remainder loop (try unrollig without). |
| 1036 | // |
| 1037 | // TODO: This is quite conservative. In practice, convergent_op() |
| 1038 | // is likely to be called unconditionally in the loop. In this |
| 1039 | // case, the program would be ill-formed (on most architectures) |
| 1040 | // unless n were the same on all threads in a thread group. |
| 1041 | // Assuming n is the same on all threads, any kind of unrolling is |
| 1042 | // safe. But currently llvm's notion of convergence isn't powerful |
| 1043 | // enough to express this. |
| 1044 | if (Convergent) |
| 1045 | UP.AllowRemainder = false; |
Eli Bendersky | dc6de2c | 2014-06-12 18:05:39 +0000 | [diff] [blame] | 1046 | |
John Brawn | 84b2183 | 2016-10-21 11:08:48 +0000 | [diff] [blame] | 1047 | // Try to find the trip count upper bound if we cannot find the exact trip |
| 1048 | // count. |
| 1049 | bool MaxOrZero = false; |
| 1050 | if (!TripCount) { |
Geoff Berry | 66d9bdb | 2017-06-28 15:53:17 +0000 | [diff] [blame] | 1051 | MaxTripCount = SE.getSmallConstantMaxTripCount(L); |
| 1052 | MaxOrZero = SE.isBackedgeTakenCountMaxOrZero(L); |
John Brawn | 84b2183 | 2016-10-21 11:08:48 +0000 | [diff] [blame] | 1053 | // We can unroll by the upper bound amount if it's generally allowed or if |
| 1054 | // we know that the loop is executed either the upper bound or zero times. |
| 1055 | // (MaxOrZero unrolling keeps only the first loop test, so the number of |
| 1056 | // loop tests remains the same compared to the non-unrolled version, whereas |
| 1057 | // the generic upper bound unrolling keeps all but the last loop test so the |
| 1058 | // number of loop tests goes up which may end up being worse on targets with |
Hiroshi Inoue | f209649 | 2018-06-14 05:41:49 +0000 | [diff] [blame] | 1059 | // constrained branch predictor resources so is controlled by an option.) |
John Brawn | 84b2183 | 2016-10-21 11:08:48 +0000 | [diff] [blame] | 1060 | // In addition we only unroll small upper bounds. |
| 1061 | if (!(UP.UpperBound || MaxOrZero) || MaxTripCount > UnrollMaxUpperBound) { |
| 1062 | MaxTripCount = 0; |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 1063 | } |
| 1064 | } |
| 1065 | |
| 1066 | // computeUnrollCount() decides whether it is beneficial to use upper bound to |
| 1067 | // fully unroll the loop. |
| 1068 | bool UseUpperBound = false; |
Andrei Elovikov | f9b8035 | 2018-03-15 09:59:15 +0000 | [diff] [blame] | 1069 | bool IsCountSetExplicitly = computeUnrollCount( |
| 1070 | L, TTI, DT, LI, SE, EphValues, &ORE, TripCount, MaxTripCount, |
| 1071 | TripMultiple, LoopSize, UP, UseUpperBound); |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 1072 | if (!UP.Count) |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1073 | return LoopUnrollResult::Unmodified; |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 1074 | // Unroll factor (Count) must be less or equal to TripCount. |
| 1075 | if (TripCount && UP.Count > TripCount) |
| 1076 | UP.Count = TripCount; |
Dan Gohman | 2980d9d | 2007-05-11 20:53:41 +0000 | [diff] [blame] | 1077 | |
Michael Kruse | 7244852 | 2018-12-12 17:32:52 +0000 | [diff] [blame] | 1078 | // Save loop properties before it is transformed. |
| 1079 | MDNode *OrigLoopID = L->getLoopID(); |
| 1080 | |
Dan Gohman | 3dc2d92 | 2008-05-14 00:24:14 +0000 | [diff] [blame] | 1081 | // Unroll the loop. |
Michael Kruse | 7244852 | 2018-12-12 17:32:52 +0000 | [diff] [blame] | 1082 | Loop *RemainderLoop = nullptr; |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1083 | LoopUnrollResult UnrollResult = UnrollLoop( |
Sanjoy Das | 09613b1 | 2017-09-20 02:31:57 +0000 | [diff] [blame] | 1084 | L, UP.Count, TripCount, UP.Force, UP.Runtime, UP.AllowExpensiveTripCount, |
| 1085 | UseUpperBound, MaxOrZero, TripMultiple, UP.PeelCount, UP.UnrollRemainder, |
Michael Kruse | 7244852 | 2018-12-12 17:32:52 +0000 | [diff] [blame] | 1086 | LI, &SE, &DT, &AC, &ORE, PreserveLCSSA, &RemainderLoop); |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1087 | if (UnrollResult == LoopUnrollResult::Unmodified) |
| 1088 | return LoopUnrollResult::Unmodified; |
Dan Gohman | 2980d9d | 2007-05-11 20:53:41 +0000 | [diff] [blame] | 1089 | |
Michael Kruse | 7244852 | 2018-12-12 17:32:52 +0000 | [diff] [blame] | 1090 | if (RemainderLoop) { |
| 1091 | Optional<MDNode *> RemainderLoopID = |
| 1092 | makeFollowupLoopID(OrigLoopID, {LLVMLoopUnrollFollowupAll, |
| 1093 | LLVMLoopUnrollFollowupRemainder}); |
| 1094 | if (RemainderLoopID.hasValue()) |
| 1095 | RemainderLoop->setLoopID(RemainderLoopID.getValue()); |
| 1096 | } |
| 1097 | |
| 1098 | if (UnrollResult != LoopUnrollResult::FullyUnrolled) { |
| 1099 | Optional<MDNode *> NewLoopID = |
| 1100 | makeFollowupLoopID(OrigLoopID, {LLVMLoopUnrollFollowupAll, |
| 1101 | LLVMLoopUnrollFollowupUnrolled}); |
| 1102 | if (NewLoopID.hasValue()) { |
| 1103 | L->setLoopID(NewLoopID.getValue()); |
| 1104 | |
| 1105 | // Do not setLoopAlreadyUnrolled if loop attributes have been specified |
| 1106 | // explicitly. |
| 1107 | return UnrollResult; |
| 1108 | } |
| 1109 | } |
| 1110 | |
Evgeny Stupachenko | ea2aef4 | 2016-05-27 23:15:06 +0000 | [diff] [blame] | 1111 | // If loop has an unroll count pragma or unrolled by explicitly set count |
| 1112 | // mark loop as unrolled to prevent unrolling beyond that requested. |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 1113 | // If the loop was peeled, we already "used up" the profile information |
| 1114 | // we had, so we don't want to unroll or peel again. |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1115 | if (UnrollResult != LoopUnrollResult::FullyUnrolled && |
Sanjoy Das | 09613b1 | 2017-09-20 02:31:57 +0000 | [diff] [blame] | 1116 | (IsCountSetExplicitly || UP.PeelCount)) |
Hongbin Zheng | 73f6504 | 2017-10-15 07:31:02 +0000 | [diff] [blame] | 1117 | L->setLoopAlreadyUnrolled(); |
Michael Kuperstein | b151a64 | 2016-11-30 21:13:57 +0000 | [diff] [blame] | 1118 | |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1119 | return UnrollResult; |
Chris Lattner | 946b255 | 2004-04-18 05:20:17 +0000 | [diff] [blame] | 1120 | } |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1121 | |
| 1122 | namespace { |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1123 | |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1124 | class LoopUnroll : public LoopPass { |
| 1125 | public: |
| 1126 | static char ID; // Pass ID, replacement for typeid |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1127 | |
| 1128 | int OptLevel; |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1129 | |
| 1130 | /// If false, use a cost model to determine whether unrolling of a loop is |
| 1131 | /// profitable. If true, only loops that explicitly request unrolling via |
| 1132 | /// metadata are considered. All other loops are skipped. |
| 1133 | bool OnlyWhenForced; |
| 1134 | |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1135 | Optional<unsigned> ProvidedCount; |
| 1136 | Optional<unsigned> ProvidedThreshold; |
| 1137 | Optional<bool> ProvidedAllowPartial; |
| 1138 | Optional<bool> ProvidedRuntime; |
| 1139 | Optional<bool> ProvidedUpperBound; |
| 1140 | Optional<bool> ProvidedAllowPeeling; |
| 1141 | |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1142 | LoopUnroll(int OptLevel = 2, bool OnlyWhenForced = false, |
| 1143 | Optional<unsigned> Threshold = None, |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1144 | Optional<unsigned> Count = None, |
Haicheng Wu | 1ef17e9 | 2016-10-12 21:29:38 +0000 | [diff] [blame] | 1145 | Optional<bool> AllowPartial = None, Optional<bool> Runtime = None, |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 1146 | Optional<bool> UpperBound = None, |
| 1147 | Optional<bool> AllowPeeling = None) |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1148 | : LoopPass(ID), OptLevel(OptLevel), OnlyWhenForced(OnlyWhenForced), |
| 1149 | ProvidedCount(std::move(Count)), ProvidedThreshold(Threshold), |
| 1150 | ProvidedAllowPartial(AllowPartial), ProvidedRuntime(Runtime), |
| 1151 | ProvidedUpperBound(UpperBound), ProvidedAllowPeeling(AllowPeeling) { |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1152 | initializeLoopUnrollPass(*PassRegistry::getPassRegistry()); |
| 1153 | } |
| 1154 | |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 1155 | bool runOnLoop(Loop *L, LPPassManager &LPM) override { |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 1156 | if (skipLoop(L)) |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1157 | return false; |
| 1158 | |
| 1159 | Function &F = *L->getHeader()->getParent(); |
| 1160 | |
| 1161 | auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
| 1162 | LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
Geoff Berry | 66d9bdb | 2017-06-28 15:53:17 +0000 | [diff] [blame] | 1163 | ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE(); |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1164 | const TargetTransformInfo &TTI = |
| 1165 | getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F); |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 1166 | auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); |
Adam Nemet | 4f155b6 | 2016-08-26 15:58:34 +0000 | [diff] [blame] | 1167 | // For the old PM, we can't use OptimizationRemarkEmitter as an analysis |
| 1168 | // pass. Function analyses need to be preserved across loop transformations |
| 1169 | // but ORE cannot be preserved (see comment before the pass definition). |
| 1170 | OptimizationRemarkEmitter ORE(&F); |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1171 | bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID); |
| 1172 | |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 1173 | LoopUnrollResult Result = tryToUnrollLoop( |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1174 | L, DT, LI, SE, TTI, AC, ORE, PreserveLCSSA, OptLevel, OnlyWhenForced, |
| 1175 | ProvidedCount, ProvidedThreshold, ProvidedAllowPartial, ProvidedRuntime, |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 1176 | ProvidedUpperBound, ProvidedAllowPeeling); |
| 1177 | |
| 1178 | if (Result == LoopUnrollResult::FullyUnrolled) |
| 1179 | LPM.markLoopAsDeleted(*L); |
| 1180 | |
| 1181 | return Result != LoopUnrollResult::Unmodified; |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1182 | } |
| 1183 | |
| 1184 | /// This transformation requires natural loop information & requires that |
| 1185 | /// loop preheaders be inserted into the CFG... |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1186 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 1187 | AU.addRequired<AssumptionCacheTracker>(); |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1188 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 1189 | // FIXME: Loop passes are required to preserve domtree, and for now we just |
| 1190 | // recreate dom info if anything gets unrolled. |
| 1191 | getLoopAnalysisUsage(AU); |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1192 | } |
| 1193 | }; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1194 | |
| 1195 | } // end anonymous namespace |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1196 | |
| 1197 | char LoopUnroll::ID = 0; |
Eugene Zelenko | 306d299 | 2017-10-18 21:46:47 +0000 | [diff] [blame] | 1198 | |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1199 | INITIALIZE_PASS_BEGIN(LoopUnroll, "loop-unroll", "Unroll loops", false, false) |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 1200 | INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 1201 | INITIALIZE_PASS_DEPENDENCY(LoopPass) |
| 1202 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1203 | INITIALIZE_PASS_END(LoopUnroll, "loop-unroll", "Unroll loops", false, false) |
| 1204 | |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1205 | Pass *llvm::createLoopUnrollPass(int OptLevel, bool OnlyWhenForced, |
| 1206 | int Threshold, int Count, int AllowPartial, |
| 1207 | int Runtime, int UpperBound, |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 1208 | int AllowPeeling) { |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1209 | // TODO: It would make more sense for this function to take the optionals |
| 1210 | // directly, but that's dangerous since it would silently break out of tree |
| 1211 | // callers. |
Dehao Chen | 7d23032 | 2017-02-18 03:46:51 +0000 | [diff] [blame] | 1212 | return new LoopUnroll( |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1213 | OptLevel, OnlyWhenForced, |
| 1214 | Threshold == -1 ? None : Optional<unsigned>(Threshold), |
Dehao Chen | 7d23032 | 2017-02-18 03:46:51 +0000 | [diff] [blame] | 1215 | Count == -1 ? None : Optional<unsigned>(Count), |
| 1216 | AllowPartial == -1 ? None : Optional<bool>(AllowPartial), |
| 1217 | Runtime == -1 ? None : Optional<bool>(Runtime), |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 1218 | UpperBound == -1 ? None : Optional<bool>(UpperBound), |
| 1219 | AllowPeeling == -1 ? None : Optional<bool>(AllowPeeling)); |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1220 | } |
| 1221 | |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1222 | Pass *llvm::createSimpleLoopUnrollPass(int OptLevel, bool OnlyWhenForced) { |
| 1223 | return createLoopUnrollPass(OptLevel, OnlyWhenForced, -1, -1, 0, 0, 0, 0); |
Justin Bogner | b8d82ab | 2016-01-12 05:21:37 +0000 | [diff] [blame] | 1224 | } |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 1225 | |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1226 | PreservedAnalyses LoopFullUnrollPass::run(Loop &L, LoopAnalysisManager &AM, |
| 1227 | LoopStandardAnalysisResults &AR, |
| 1228 | LPMUpdater &Updater) { |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 1229 | const auto &FAM = |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 1230 | AM.getResult<FunctionAnalysisManagerLoopProxy>(L, AR).getManager(); |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 1231 | Function *F = L.getHeader()->getParent(); |
| 1232 | |
Adam Nemet | 12937c3 | 2016-07-29 19:29:47 +0000 | [diff] [blame] | 1233 | auto *ORE = FAM.getCachedResult<OptimizationRemarkEmitterAnalysis>(*F); |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 1234 | // FIXME: This should probably be optional rather than required. |
Adam Nemet | 12937c3 | 2016-07-29 19:29:47 +0000 | [diff] [blame] | 1235 | if (!ORE) |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1236 | report_fatal_error( |
| 1237 | "LoopFullUnrollPass: OptimizationRemarkEmitterAnalysis not " |
| 1238 | "cached at a higher level"); |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 1239 | |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 1240 | // Keep track of the previous loop structure so we can identify new loops |
| 1241 | // created by unrolling. |
| 1242 | Loop *ParentL = L.getParentLoop(); |
| 1243 | SmallPtrSet<Loop *, 4> OldLoops; |
| 1244 | if (ParentL) |
| 1245 | OldLoops.insert(ParentL->begin(), ParentL->end()); |
| 1246 | else |
| 1247 | OldLoops.insert(AR.LI.begin(), AR.LI.end()); |
| 1248 | |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 1249 | std::string LoopName = L.getName(); |
| 1250 | |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1251 | bool Changed = |
| 1252 | tryToUnrollLoop(&L, AR.DT, &AR.LI, AR.SE, AR.TTI, AR.AC, *ORE, |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1253 | /*PreserveLCSSA*/ true, OptLevel, OnlyWhenForced, |
| 1254 | /*Count*/ None, |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1255 | /*Threshold*/ None, /*AllowPartial*/ false, |
Teresa Johnson | 9a18a6f | 2017-08-03 17:52:38 +0000 | [diff] [blame] | 1256 | /*Runtime*/ false, /*UpperBound*/ false, |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1257 | /*AllowPeeling*/ false) != LoopUnrollResult::Unmodified; |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 1258 | if (!Changed) |
| 1259 | return PreservedAnalyses::all(); |
Chandler Carruth | ca68a3e | 2017-01-15 06:32:49 +0000 | [diff] [blame] | 1260 | |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 1261 | // The parent must not be damaged by unrolling! |
| 1262 | #ifndef NDEBUG |
| 1263 | if (ParentL) |
| 1264 | ParentL->verifyLoop(); |
| 1265 | #endif |
| 1266 | |
| 1267 | // Unrolling can do several things to introduce new loops into a loop nest: |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 1268 | // - Full unrolling clones child loops within the current loop but then |
| 1269 | // removes the current loop making all of the children appear to be new |
| 1270 | // sibling loops. |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 1271 | // |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1272 | // When a new loop appears as a sibling loop after fully unrolling, |
| 1273 | // its nesting structure has fundamentally changed and we want to revisit |
| 1274 | // it to reflect that. |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 1275 | // |
| 1276 | // When unrolling has removed the current loop, we need to tell the |
| 1277 | // infrastructure that it is gone. |
| 1278 | // |
| 1279 | // Finally, we support a debugging/testing mode where we revisit child loops |
| 1280 | // as well. These are not expected to require further optimizations as either |
| 1281 | // they or the loop they were cloned from have been directly visited already. |
| 1282 | // But the debugging mode allows us to check this assumption. |
| 1283 | bool IsCurrentLoopValid = false; |
| 1284 | SmallVector<Loop *, 4> SibLoops; |
| 1285 | if (ParentL) |
| 1286 | SibLoops.append(ParentL->begin(), ParentL->end()); |
| 1287 | else |
| 1288 | SibLoops.append(AR.LI.begin(), AR.LI.end()); |
| 1289 | erase_if(SibLoops, [&](Loop *SibLoop) { |
| 1290 | if (SibLoop == &L) { |
| 1291 | IsCurrentLoopValid = true; |
| 1292 | return true; |
| 1293 | } |
| 1294 | |
| 1295 | // Otherwise erase the loop from the list if it was in the old loops. |
| 1296 | return OldLoops.count(SibLoop) != 0; |
| 1297 | }); |
| 1298 | Updater.addSiblingLoops(SibLoops); |
| 1299 | |
| 1300 | if (!IsCurrentLoopValid) { |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 1301 | Updater.markLoopAsDeleted(L, LoopName); |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 1302 | } else { |
| 1303 | // We can only walk child loops if the current loop remained valid. |
| 1304 | if (UnrollRevisitChildLoops) { |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1305 | // Walk *all* of the child loops. |
Chandler Carruth | ce40fa1 | 2017-01-25 02:49:01 +0000 | [diff] [blame] | 1306 | SmallVector<Loop *, 4> ChildLoops(L.begin(), L.end()); |
| 1307 | Updater.addChildLoops(ChildLoops); |
| 1308 | } |
| 1309 | } |
| 1310 | |
Sean Silva | e3c18a5 | 2016-07-19 23:54:23 +0000 | [diff] [blame] | 1311 | return getLoopPassPreservedAnalyses(); |
| 1312 | } |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1313 | |
| 1314 | template <typename RangeT> |
| 1315 | static SmallVector<Loop *, 8> appendLoopsToWorklist(RangeT &&Loops) { |
| 1316 | SmallVector<Loop *, 8> Worklist; |
| 1317 | // We use an internal worklist to build up the preorder traversal without |
| 1318 | // recursion. |
| 1319 | SmallVector<Loop *, 4> PreOrderLoops, PreOrderWorklist; |
| 1320 | |
| 1321 | for (Loop *RootL : Loops) { |
| 1322 | assert(PreOrderLoops.empty() && "Must start with an empty preorder walk."); |
| 1323 | assert(PreOrderWorklist.empty() && |
| 1324 | "Must start with an empty preorder walk worklist."); |
| 1325 | PreOrderWorklist.push_back(RootL); |
| 1326 | do { |
| 1327 | Loop *L = PreOrderWorklist.pop_back_val(); |
| 1328 | PreOrderWorklist.append(L->begin(), L->end()); |
| 1329 | PreOrderLoops.push_back(L); |
| 1330 | } while (!PreOrderWorklist.empty()); |
| 1331 | |
| 1332 | Worklist.append(PreOrderLoops.begin(), PreOrderLoops.end()); |
| 1333 | PreOrderLoops.clear(); |
| 1334 | } |
| 1335 | return Worklist; |
| 1336 | } |
| 1337 | |
| 1338 | PreservedAnalyses LoopUnrollPass::run(Function &F, |
| 1339 | FunctionAnalysisManager &AM) { |
| 1340 | auto &SE = AM.getResult<ScalarEvolutionAnalysis>(F); |
| 1341 | auto &LI = AM.getResult<LoopAnalysis>(F); |
| 1342 | auto &TTI = AM.getResult<TargetIRAnalysis>(F); |
| 1343 | auto &DT = AM.getResult<DominatorTreeAnalysis>(F); |
| 1344 | auto &AC = AM.getResult<AssumptionAnalysis>(F); |
| 1345 | auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F); |
| 1346 | |
Chandler Carruth | 7c888dc | 2017-08-08 02:24:20 +0000 | [diff] [blame] | 1347 | LoopAnalysisManager *LAM = nullptr; |
| 1348 | if (auto *LAMProxy = AM.getCachedResult<LoopAnalysisManagerFunctionProxy>(F)) |
| 1349 | LAM = &LAMProxy->getManager(); |
| 1350 | |
Teresa Johnson | 8482e56 | 2017-08-03 23:42:58 +0000 | [diff] [blame] | 1351 | const ModuleAnalysisManager &MAM = |
| 1352 | AM.getResult<ModuleAnalysisManagerFunctionProxy>(F).getManager(); |
| 1353 | ProfileSummaryInfo *PSI = |
| 1354 | MAM.getCachedResult<ProfileSummaryAnalysis>(*F.getParent()); |
| 1355 | |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1356 | bool Changed = false; |
| 1357 | |
| 1358 | // The unroller requires loops to be in simplified form, and also needs LCSSA. |
| 1359 | // Since simplification may add new inner loops, it has to run before the |
| 1360 | // legality and profitability checks. This means running the loop unroller |
| 1361 | // will simplify all loops, regardless of whether anything end up being |
| 1362 | // unrolled. |
| 1363 | for (auto &L : LI) { |
| 1364 | Changed |= simplifyLoop(L, &DT, &LI, &SE, &AC, false /* PreserveLCSSA */); |
| 1365 | Changed |= formLCSSARecursively(*L, DT, &LI, &SE); |
| 1366 | } |
| 1367 | |
| 1368 | SmallVector<Loop *, 8> Worklist = appendLoopsToWorklist(LI); |
| 1369 | |
| 1370 | while (!Worklist.empty()) { |
| 1371 | // Because the LoopInfo stores the loops in RPO, we walk the worklist |
| 1372 | // from back to front so that we work forward across the CFG, which |
| 1373 | // for unrolling is only needed to get optimization remarks emitted in |
| 1374 | // a forward order. |
| 1375 | Loop &L = *Worklist.pop_back_val(); |
Benjamin Kramer | c965b30 | 2017-09-28 14:47:39 +0000 | [diff] [blame] | 1376 | #ifndef NDEBUG |
| 1377 | Loop *ParentL = L.getParentLoop(); |
| 1378 | #endif |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1379 | |
Teresa Johnson | 8482e56 | 2017-08-03 23:42:58 +0000 | [diff] [blame] | 1380 | // Check if the profile summary indicates that the profiled application |
| 1381 | // has a huge working set size, in which case we disable peeling to avoid |
| 1382 | // bloating it further. |
Fedor Sergeev | 412ed34 | 2018-10-31 14:33:14 +0000 | [diff] [blame] | 1383 | Optional<bool> LocalAllowPeeling = UnrollOpts.AllowPeeling; |
Teresa Johnson | 8482e56 | 2017-08-03 23:42:58 +0000 | [diff] [blame] | 1384 | if (PSI && PSI->hasHugeWorkingSetSize()) |
Fedor Sergeev | 412ed34 | 2018-10-31 14:33:14 +0000 | [diff] [blame] | 1385 | LocalAllowPeeling = false; |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 1386 | std::string LoopName = L.getName(); |
Fedor Sergeev | 412ed34 | 2018-10-31 14:33:14 +0000 | [diff] [blame] | 1387 | // The API here is quite complex to call and we allow to select some |
| 1388 | // flavors of unrolling during construction time (by setting UnrollOpts). |
| 1389 | LoopUnrollResult Result = tryToUnrollLoop( |
| 1390 | &L, DT, &LI, SE, TTI, AC, ORE, |
Michael Kruse | 3284775 | 2018-12-18 17:16:05 +0000 | [diff] [blame^] | 1391 | /*PreserveLCSSA*/ true, UnrollOpts.OptLevel, UnrollOpts.OnlyWhenForced, |
| 1392 | /*Count*/ None, |
Fedor Sergeev | 412ed34 | 2018-10-31 14:33:14 +0000 | [diff] [blame] | 1393 | /*Threshold*/ None, UnrollOpts.AllowPartial, UnrollOpts.AllowRuntime, |
| 1394 | UnrollOpts.AllowUpperBound, LocalAllowPeeling); |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1395 | Changed |= Result != LoopUnrollResult::Unmodified; |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1396 | |
| 1397 | // The parent must not be damaged by unrolling! |
| 1398 | #ifndef NDEBUG |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1399 | if (Result != LoopUnrollResult::Unmodified && ParentL) |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1400 | ParentL->verifyLoop(); |
| 1401 | #endif |
Chandler Carruth | 7c888dc | 2017-08-08 02:24:20 +0000 | [diff] [blame] | 1402 | |
Sanjoy Das | 4f3ebd5 | 2017-09-27 21:45:22 +0000 | [diff] [blame] | 1403 | // Clear any cached analysis results for L if we removed it completely. |
| 1404 | if (LAM && Result == LoopUnrollResult::FullyUnrolled) |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 1405 | LAM->clear(L, LoopName); |
Teresa Johnson | ecd9013 | 2017-08-02 20:35:29 +0000 | [diff] [blame] | 1406 | } |
| 1407 | |
| 1408 | if (!Changed) |
| 1409 | return PreservedAnalyses::all(); |
| 1410 | |
| 1411 | return getLoopPassPreservedAnalyses(); |
| 1412 | } |