Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1 | //===- ScopDetection.cpp - Detect Scops -----------------------------------===// |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Detect the maximal Scops of a function. |
| 11 | // |
| 12 | // A static control part (Scop) is a subgraph of the control flow graph (CFG) |
| 13 | // that only has statically known control flow and can therefore be described |
| 14 | // within the polyhedral model. |
| 15 | // |
Michael Kruse | a6d48f5 | 2017-06-08 12:06:15 +0000 | [diff] [blame] | 16 | // Every Scop fulfills these restrictions: |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 17 | // |
| 18 | // * It is a single entry single exit region |
| 19 | // |
| 20 | // * Only affine linear bounds in the loops |
| 21 | // |
| 22 | // Every natural loop in a Scop must have a number of loop iterations that can |
| 23 | // be described as an affine linear function in surrounding loop iterators or |
| 24 | // parameters. (A parameter is a scalar that does not change its value during |
| 25 | // execution of the Scop). |
| 26 | // |
| 27 | // * Only comparisons of affine linear expressions in conditions |
| 28 | // |
| 29 | // * All loops and conditions perfectly nested |
| 30 | // |
| 31 | // The control flow needs to be structured such that it could be written using |
| 32 | // just 'for' and 'if' statements, without the need for any 'goto', 'break' or |
| 33 | // 'continue'. |
| 34 | // |
| 35 | // * Side effect free functions call |
| 36 | // |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 37 | // Function calls and intrinsics that do not have side effects (readnone) |
| 38 | // or memory intrinsics (memset, memcpy, memmove) are allowed. |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 39 | // |
| 40 | // The Scop detection finds the largest Scops by checking if the largest |
| 41 | // region is a Scop. If this is not the case, its canonical subregions are |
| 42 | // checked until a region is a Scop. It is now tried to extend this Scop by |
| 43 | // creating a larger non canonical region. |
| 44 | // |
| 45 | //===----------------------------------------------------------------------===// |
| 46 | |
Tobias Grosser | 5624d3c | 2015-12-21 12:38:56 +0000 | [diff] [blame] | 47 | #include "polly/ScopDetection.h" |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 48 | #include "polly/LinkAllPasses.h" |
Tobias Grosser | 637bd63 | 2013-05-07 07:31:10 +0000 | [diff] [blame] | 49 | #include "polly/Options.h" |
Tobias Grosser | ba0d092 | 2015-05-09 09:13:42 +0000 | [diff] [blame] | 50 | #include "polly/ScopDetectionDiagnostic.h" |
Tobias Grosser | 120db6b | 2011-11-07 12:58:54 +0000 | [diff] [blame] | 51 | #include "polly/Support/SCEVValidator.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 52 | #include "polly/Support/ScopHelper.h" |
Tobias Grosser | a63b7ce | 2015-05-03 05:21:36 +0000 | [diff] [blame] | 53 | #include "polly/Support/ScopLocation.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 54 | #include "llvm/ADT/DenseMap.h" |
| 55 | #include "llvm/ADT/SetVector.h" |
| 56 | #include "llvm/ADT/SmallPtrSet.h" |
| 57 | #include "llvm/ADT/SmallVector.h" |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 58 | #include "llvm/ADT/Statistic.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 59 | #include "llvm/ADT/StringRef.h" |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 60 | #include "llvm/Analysis/AliasAnalysis.h" |
Tobias Grosser | 8bd7f3c | 2017-03-09 11:36:00 +0000 | [diff] [blame] | 61 | #include "llvm/Analysis/Loads.h" |
Tobias Grosser | 6e9f25a | 2011-11-09 22:35:00 +0000 | [diff] [blame] | 62 | #include "llvm/Analysis/LoopInfo.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 63 | #include "llvm/Analysis/MemoryLocation.h" |
Adam Nemet | e0f1541 | 2017-10-09 23:49:08 +0000 | [diff] [blame] | 64 | #include "llvm/Analysis/OptimizationRemarkEmitter.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 65 | #include "llvm/Analysis/RegionInfo.h" |
Tobias Grosser | 6e9f25a | 2011-11-09 22:35:00 +0000 | [diff] [blame] | 66 | #include "llvm/Analysis/ScalarEvolution.h" |
Tobias Grosser | b8710b5 | 2011-11-10 12:44:50 +0000 | [diff] [blame] | 67 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 68 | #include "llvm/IR/BasicBlock.h" |
| 69 | #include "llvm/IR/Constants.h" |
| 70 | #include "llvm/IR/DebugLoc.h" |
| 71 | #include "llvm/IR/DerivedTypes.h" |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 72 | #include "llvm/IR/DiagnosticInfo.h" |
| 73 | #include "llvm/IR/DiagnosticPrinter.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 74 | #include "llvm/IR/Dominators.h" |
| 75 | #include "llvm/IR/Function.h" |
| 76 | #include "llvm/IR/InstrTypes.h" |
| 77 | #include "llvm/IR/Instruction.h" |
| 78 | #include "llvm/IR/Instructions.h" |
Tobias Grosser | ba0d092 | 2015-05-09 09:13:42 +0000 | [diff] [blame] | 79 | #include "llvm/IR/IntrinsicInst.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 80 | #include "llvm/IR/Intrinsics.h" |
Chandler Carruth | 6b96c24 | 2014-03-06 00:47:27 +0000 | [diff] [blame] | 81 | #include "llvm/IR/LLVMContext.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 82 | #include "llvm/IR/Metadata.h" |
| 83 | #include "llvm/IR/Module.h" |
| 84 | #include "llvm/IR/PassManager.h" |
| 85 | #include "llvm/IR/Type.h" |
| 86 | #include "llvm/IR/Value.h" |
| 87 | #include "llvm/Pass.h" |
| 88 | #include "llvm/Support/Casting.h" |
| 89 | #include "llvm/Support/CommandLine.h" |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 90 | #include "llvm/Support/Debug.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 91 | #include "llvm/Support/ErrorHandling.h" |
Siddharth Bhat | e2699b5 | 2017-07-24 12:40:52 +0000 | [diff] [blame] | 92 | #include "llvm/Support/Regex.h" |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 93 | #include "llvm/Support/raw_ostream.h" |
| 94 | #include <algorithm> |
| 95 | #include <cassert> |
| 96 | #include <memory> |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 97 | #include <stack> |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 98 | #include <string> |
| 99 | #include <utility> |
| 100 | #include <vector> |
Tobias Grosser | 60b54f1 | 2011-11-08 15:41:28 +0000 | [diff] [blame] | 101 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 102 | using namespace llvm; |
| 103 | using namespace polly; |
| 104 | |
Chandler Carruth | 95fef94 | 2014-04-22 03:30:19 +0000 | [diff] [blame] | 105 | #define DEBUG_TYPE "polly-detect" |
| 106 | |
Tobias Grosser | c1a269b | 2015-12-21 21:00:43 +0000 | [diff] [blame] | 107 | // This option is set to a very high value, as analyzing such loops increases |
| 108 | // compile time on several cases. For experiments that enable this option, |
| 109 | // a value of around 40 has been working to avoid run-time regressions with |
| 110 | // Polly while still exposing interesting optimization opportunities. |
| 111 | static cl::opt<int> ProfitabilityMinPerLoopInstructions( |
| 112 | "polly-detect-profitability-min-per-loop-insts", |
| 113 | cl::desc("The minimal number of per-loop instructions before a single loop " |
| 114 | "region is considered profitable"), |
| 115 | cl::Hidden, cl::ValueRequired, cl::init(100000000), cl::cat(PollyCategory)); |
| 116 | |
Tobias Grosser | 575aca8 | 2015-10-06 16:10:29 +0000 | [diff] [blame] | 117 | bool polly::PollyProcessUnprofitable; |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 118 | |
Tobias Grosser | 575aca8 | 2015-10-06 16:10:29 +0000 | [diff] [blame] | 119 | static cl::opt<bool, true> XPollyProcessUnprofitable( |
| 120 | "polly-process-unprofitable", |
| 121 | cl::desc( |
| 122 | "Process scops that are unlikely to benefit from Polly optimizations."), |
| 123 | cl::location(PollyProcessUnprofitable), cl::init(false), cl::ZeroOrMore, |
| 124 | cl::cat(PollyCategory)); |
Tobias Grosser | d1e33e7 | 2015-02-19 05:31:07 +0000 | [diff] [blame] | 125 | |
Siddharth Bhat | 286c916 | 2017-06-09 08:23:40 +0000 | [diff] [blame] | 126 | static cl::list<std::string> OnlyFunctions( |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 127 | "polly-only-func", |
Siddharth Bhat | e2699b5 | 2017-07-24 12:40:52 +0000 | [diff] [blame] | 128 | cl::desc("Only run on functions that match a regex. " |
| 129 | "Multiple regexes can be comma separated. " |
| 130 | "Scop detection will run on all functions that match " |
| 131 | "ANY of the regexes provided."), |
Siddharth Bhat | 286c916 | 2017-06-09 08:23:40 +0000 | [diff] [blame] | 132 | cl::ZeroOrMore, cl::CommaSeparated, cl::cat(PollyCategory)); |
Tobias Grosser | 2ff8723 | 2011-10-23 11:17:06 +0000 | [diff] [blame] | 133 | |
Siddharth Bhat | 0a1177b | 2017-07-28 11:47:24 +0000 | [diff] [blame] | 134 | static cl::list<std::string> IgnoredFunctions( |
| 135 | "polly-ignore-func", |
| 136 | cl::desc("Ignore functions that match a regex. " |
| 137 | "Multiple regexes can be comma separated. " |
| 138 | "Scop detection will ignore all functions that match " |
| 139 | "ANY of the regexes provided."), |
| 140 | cl::ZeroOrMore, cl::CommaSeparated, cl::cat(PollyCategory)); |
| 141 | |
Siddharth Bhat | b46847c | 2017-08-17 21:57:23 +0000 | [diff] [blame] | 142 | bool polly::PollyAllowFullFunction; |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 143 | |
Siddharth Bhat | b46847c | 2017-08-17 21:57:23 +0000 | [diff] [blame] | 144 | static cl::opt<bool, true> |
| 145 | XAllowFullFunction("polly-detect-full-functions", |
| 146 | cl::desc("Allow the detection of full functions"), |
| 147 | cl::location(polly::PollyAllowFullFunction), |
| 148 | cl::init(false), cl::cat(PollyCategory)); |
Tobias Grosser | d8945ba | 2017-05-19 12:13:02 +0000 | [diff] [blame] | 149 | |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 150 | static cl::opt<std::string> OnlyRegion( |
| 151 | "polly-only-region", |
| 152 | cl::desc("Only run on certain regions (The provided identifier must " |
| 153 | "appear in the name of the region's entry block"), |
| 154 | cl::value_desc("identifier"), cl::ValueRequired, cl::init(""), |
| 155 | cl::cat(PollyCategory)); |
Tobias Grosser | 4449e52 | 2014-01-27 14:24:53 +0000 | [diff] [blame] | 156 | |
Tobias Grosser | 60cd932 | 2011-11-10 12:47:26 +0000 | [diff] [blame] | 157 | static cl::opt<bool> |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 158 | IgnoreAliasing("polly-ignore-aliasing", |
| 159 | cl::desc("Ignore possible aliasing of the array bases"), |
| 160 | cl::Hidden, cl::init(false), cl::ZeroOrMore, |
| 161 | cl::cat(PollyCategory)); |
Tobias Grosser | 2ff8723 | 2011-10-23 11:17:06 +0000 | [diff] [blame] | 162 | |
Johannes Doerfert | bda8143 | 2016-12-02 17:55:41 +0000 | [diff] [blame] | 163 | bool polly::PollyAllowUnsignedOperations; |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 164 | |
Johannes Doerfert | bda8143 | 2016-12-02 17:55:41 +0000 | [diff] [blame] | 165 | static cl::opt<bool, true> XPollyAllowUnsignedOperations( |
| 166 | "polly-allow-unsigned-operations", |
| 167 | cl::desc("Allow unsigned operations such as comparisons or zero-extends."), |
| 168 | cl::location(PollyAllowUnsignedOperations), cl::Hidden, cl::ZeroOrMore, |
| 169 | cl::init(true), cl::cat(PollyCategory)); |
| 170 | |
Johannes Doerfert | b164c79 | 2014-09-18 11:17:17 +0000 | [diff] [blame] | 171 | bool polly::PollyUseRuntimeAliasChecks; |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 172 | |
Johannes Doerfert | b164c79 | 2014-09-18 11:17:17 +0000 | [diff] [blame] | 173 | static cl::opt<bool, true> XPollyUseRuntimeAliasChecks( |
| 174 | "polly-use-runtime-alias-checks", |
| 175 | cl::desc("Use runtime alias checks to resolve possible aliasing."), |
| 176 | cl::location(PollyUseRuntimeAliasChecks), cl::Hidden, cl::ZeroOrMore, |
| 177 | cl::init(true), cl::cat(PollyCategory)); |
| 178 | |
Tobias Grosser | 637bd63 | 2013-05-07 07:31:10 +0000 | [diff] [blame] | 179 | static cl::opt<bool> |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 180 | ReportLevel("polly-report", |
| 181 | cl::desc("Print information about the activities of Polly"), |
| 182 | cl::init(false), cl::ZeroOrMore, cl::cat(PollyCategory)); |
Tobias Grosser | 531891e | 2012-11-01 16:45:20 +0000 | [diff] [blame] | 183 | |
Tobias Grosser | 8ebdc2d | 2016-02-07 08:48:57 +0000 | [diff] [blame] | 184 | static cl::opt<bool> AllowDifferentTypes( |
| 185 | "polly-allow-differing-element-types", |
| 186 | cl::desc("Allow different element types for array accesses"), cl::Hidden, |
Tobias Grosser | a2ee003 | 2016-02-16 14:37:24 +0000 | [diff] [blame] | 187 | cl::init(true), cl::ZeroOrMore, cl::cat(PollyCategory)); |
Tobias Grosser | 8ebdc2d | 2016-02-07 08:48:57 +0000 | [diff] [blame] | 188 | |
Tobias Grosser | 531891e | 2012-11-01 16:45:20 +0000 | [diff] [blame] | 189 | static cl::opt<bool> |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 190 | AllowNonAffine("polly-allow-nonaffine", |
| 191 | cl::desc("Allow non affine access functions in arrays"), |
| 192 | cl::Hidden, cl::init(false), cl::ZeroOrMore, |
| 193 | cl::cat(PollyCategory)); |
Tobias Grosser | a187964 | 2011-12-20 10:43:14 +0000 | [diff] [blame] | 194 | |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 195 | static cl::opt<bool> |
| 196 | AllowModrefCall("polly-allow-modref-calls", |
| 197 | cl::desc("Allow functions with known modref behavior"), |
| 198 | cl::Hidden, cl::init(false), cl::ZeroOrMore, |
| 199 | cl::cat(PollyCategory)); |
| 200 | |
Johannes Doerfert | ba65c16 | 2015-02-24 11:45:21 +0000 | [diff] [blame] | 201 | static cl::opt<bool> AllowNonAffineSubRegions( |
| 202 | "polly-allow-nonaffine-branches", |
| 203 | cl::desc("Allow non affine conditions for branches"), cl::Hidden, |
Johannes Doerfert | a36842f | 2015-02-26 11:09:24 +0000 | [diff] [blame] | 204 | cl::init(true), cl::ZeroOrMore, cl::cat(PollyCategory)); |
Johannes Doerfert | ba65c16 | 2015-02-24 11:45:21 +0000 | [diff] [blame] | 205 | |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 206 | static cl::opt<bool> |
| 207 | AllowNonAffineSubLoops("polly-allow-nonaffine-loops", |
| 208 | cl::desc("Allow non affine conditions for loops"), |
| 209 | cl::Hidden, cl::init(false), cl::ZeroOrMore, |
| 210 | cl::cat(PollyCategory)); |
| 211 | |
Tobias Grosser | c7d3fc5 | 2013-07-25 03:02:29 +0000 | [diff] [blame] | 212 | static cl::opt<bool, true> |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 213 | TrackFailures("polly-detect-track-failures", |
| 214 | cl::desc("Track failure strings in detecting scop regions"), |
| 215 | cl::location(PollyTrackFailures), cl::Hidden, cl::ZeroOrMore, |
Andreas Simbuerger | 3efe40b | 2014-08-17 10:09:03 +0000 | [diff] [blame] | 216 | cl::init(true), cl::cat(PollyCategory)); |
Tobias Grosser | c7d3fc5 | 2013-07-25 03:02:29 +0000 | [diff] [blame] | 217 | |
Andreas Simbuerger | 0447240 | 2014-05-24 09:25:10 +0000 | [diff] [blame] | 218 | static cl::opt<bool> KeepGoing("polly-detect-keep-going", |
| 219 | cl::desc("Do not fail on the first error."), |
| 220 | cl::Hidden, cl::ZeroOrMore, cl::init(false), |
| 221 | cl::cat(PollyCategory)); |
| 222 | |
Sebastian Pop | 1801668 | 2014-04-08 21:20:44 +0000 | [diff] [blame] | 223 | static cl::opt<bool, true> |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 224 | PollyDelinearizeX("polly-delinearize", |
| 225 | cl::desc("Delinearize array access functions"), |
| 226 | cl::location(PollyDelinearize), cl::Hidden, |
Tobias Grosser | 6973cb6 | 2015-03-08 15:21:18 +0000 | [diff] [blame] | 227 | cl::ZeroOrMore, cl::init(true), cl::cat(PollyCategory)); |
Sebastian Pop | 1801668 | 2014-04-08 21:20:44 +0000 | [diff] [blame] | 228 | |
Tobias Grosser | a168993 | 2014-02-18 18:49:49 +0000 | [diff] [blame] | 229 | static cl::opt<bool> |
Tobias Grosser | 483a90d | 2014-07-09 10:50:10 +0000 | [diff] [blame] | 230 | VerifyScops("polly-detect-verify", |
| 231 | cl::desc("Verify the detected SCoPs after each transformation"), |
| 232 | cl::Hidden, cl::init(false), cl::ZeroOrMore, |
| 233 | cl::cat(PollyCategory)); |
Tobias Grosser | a168993 | 2014-02-18 18:49:49 +0000 | [diff] [blame] | 234 | |
Tobias Grosser | 8fa3e4c | 2016-02-26 16:43:35 +0000 | [diff] [blame] | 235 | bool polly::PollyInvariantLoadHoisting; |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 236 | |
Tobias Grosser | 8fa3e4c | 2016-02-26 16:43:35 +0000 | [diff] [blame] | 237 | static cl::opt<bool, true> XPollyInvariantLoadHoisting( |
| 238 | "polly-invariant-load-hoisting", cl::desc("Hoist invariant loads."), |
| 239 | cl::location(PollyInvariantLoadHoisting), cl::Hidden, cl::ZeroOrMore, |
Tobias Grosser | 74814e1 | 2016-08-15 16:43:36 +0000 | [diff] [blame] | 240 | cl::init(false), cl::cat(PollyCategory)); |
Tobias Grosser | 8fa3e4c | 2016-02-26 16:43:35 +0000 | [diff] [blame] | 241 | |
Tobias Grosser | c80d697 | 2016-09-02 06:33:33 +0000 | [diff] [blame] | 242 | /// The minimal trip count under which loops are considered unprofitable. |
Johannes Doerfert | e526de5 | 2015-09-21 19:10:11 +0000 | [diff] [blame] | 243 | static const unsigned MIN_LOOP_TRIP_COUNT = 8; |
| 244 | |
Tobias Grosser | c7d3fc5 | 2013-07-25 03:02:29 +0000 | [diff] [blame] | 245 | bool polly::PollyTrackFailures = false; |
Sebastian Pop | 1801668 | 2014-04-08 21:20:44 +0000 | [diff] [blame] | 246 | bool polly::PollyDelinearize = false; |
Johannes Doerfert | 43e1ead | 2014-07-15 21:06:48 +0000 | [diff] [blame] | 247 | StringRef polly::PollySkipFnAttr = "polly.skip.fn"; |
Tobias Grosser | c7d3fc5 | 2013-07-25 03:02:29 +0000 | [diff] [blame] | 248 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 249 | //===----------------------------------------------------------------------===// |
| 250 | // Statistics. |
| 251 | |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 252 | STATISTIC(NumScopRegions, "Number of scops"); |
| 253 | STATISTIC(NumLoopsInScop, "Number of loops in scops"); |
Tobias Grosser | fcc3ad5 | 2018-04-18 20:03:36 +0000 | [diff] [blame] | 254 | STATISTIC(NumScopsDepthZero, "Number of scops with maximal loop depth 0"); |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 255 | STATISTIC(NumScopsDepthOne, "Number of scops with maximal loop depth 1"); |
| 256 | STATISTIC(NumScopsDepthTwo, "Number of scops with maximal loop depth 2"); |
| 257 | STATISTIC(NumScopsDepthThree, "Number of scops with maximal loop depth 3"); |
| 258 | STATISTIC(NumScopsDepthFour, "Number of scops with maximal loop depth 4"); |
| 259 | STATISTIC(NumScopsDepthFive, "Number of scops with maximal loop depth 5"); |
| 260 | STATISTIC(NumScopsDepthLarger, |
| 261 | "Number of scops with maximal loop depth 6 and larger"); |
| 262 | STATISTIC(NumProfScopRegions, "Number of scops (profitable scops only)"); |
| 263 | STATISTIC(NumLoopsInProfScop, |
| 264 | "Number of loops in scops (profitable scops only)"); |
| 265 | STATISTIC(NumLoopsOverall, "Number of total loops"); |
Tobias Grosser | fcc3ad5 | 2018-04-18 20:03:36 +0000 | [diff] [blame] | 266 | STATISTIC(NumProfScopsDepthZero, |
| 267 | "Number of scops with maximal loop depth 0 (profitable scops only)"); |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 268 | STATISTIC(NumProfScopsDepthOne, |
| 269 | "Number of scops with maximal loop depth 1 (profitable scops only)"); |
| 270 | STATISTIC(NumProfScopsDepthTwo, |
| 271 | "Number of scops with maximal loop depth 2 (profitable scops only)"); |
| 272 | STATISTIC(NumProfScopsDepthThree, |
| 273 | "Number of scops with maximal loop depth 3 (profitable scops only)"); |
| 274 | STATISTIC(NumProfScopsDepthFour, |
| 275 | "Number of scops with maximal loop depth 4 (profitable scops only)"); |
| 276 | STATISTIC(NumProfScopsDepthFive, |
| 277 | "Number of scops with maximal loop depth 5 (profitable scops only)"); |
Tobias Grosser | 21a059a | 2017-01-16 14:08:10 +0000 | [diff] [blame] | 278 | STATISTIC(NumProfScopsDepthLarger, |
| 279 | "Number of scops with maximal loop depth 6 and larger " |
| 280 | "(profitable scops only)"); |
Tobias Grosser | 9fe37df | 2017-02-12 10:52:57 +0000 | [diff] [blame] | 281 | STATISTIC(MaxNumLoopsInScop, "Maximal number of loops in scops"); |
| 282 | STATISTIC(MaxNumLoopsInProfScop, |
| 283 | "Maximal number of loops in scops (profitable scops only)"); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 284 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 285 | static void updateLoopCountStatistic(ScopDetection::LoopStats Stats, |
| 286 | bool OnlyProfitable); |
| 287 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 288 | namespace { |
| 289 | |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 290 | class DiagnosticScopFound : public DiagnosticInfo { |
| 291 | private: |
| 292 | static int PluginDiagnosticKind; |
| 293 | |
| 294 | Function &F; |
| 295 | std::string FileName; |
| 296 | unsigned EntryLine, ExitLine; |
| 297 | |
| 298 | public: |
Tobias Grosser | 1b12f46 | 2013-12-18 11:14:36 +0000 | [diff] [blame] | 299 | DiagnosticScopFound(Function &F, std::string FileName, unsigned EntryLine, |
| 300 | unsigned ExitLine) |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 301 | : DiagnosticInfo(PluginDiagnosticKind, DS_Note), F(F), FileName(FileName), |
Tobias Grosser | 1b12f46 | 2013-12-18 11:14:36 +0000 | [diff] [blame] | 302 | EntryLine(EntryLine), ExitLine(ExitLine) {} |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 303 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 304 | void print(DiagnosticPrinter &DP) const override; |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 305 | |
| 306 | static bool classof(const DiagnosticInfo *DI) { |
| 307 | return DI->getKind() == PluginDiagnosticKind; |
| 308 | } |
| 309 | }; |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 310 | } // namespace |
| 311 | |
Tobias Grosser | db6db50 | 2016-04-01 07:15:19 +0000 | [diff] [blame] | 312 | int DiagnosticScopFound::PluginDiagnosticKind = |
| 313 | getNextAvailablePluginDiagnosticKind(); |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 314 | |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 315 | void DiagnosticScopFound::print(DiagnosticPrinter &DP) const { |
Tobias Grosser | 1b12f46 | 2013-12-18 11:14:36 +0000 | [diff] [blame] | 316 | DP << "Polly detected an optimizable loop region (scop) in function '" << F |
| 317 | << "'\n"; |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 318 | |
| 319 | if (FileName.empty()) { |
| 320 | DP << "Scop location is unknown. Compile with debug info " |
| 321 | "(-g) to get more precise information. "; |
Tobias Grosser | 1b12f46 | 2013-12-18 11:14:36 +0000 | [diff] [blame] | 322 | return; |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | DP << FileName << ":" << EntryLine << ": Start of scop\n"; |
| 326 | DP << FileName << ":" << ExitLine << ": End of scop"; |
| 327 | } |
| 328 | |
Siddharth Bhat | 0a1177b | 2017-07-28 11:47:24 +0000 | [diff] [blame] | 329 | /// Check if a string matches any regex in a list of regexes. |
| 330 | /// @param Str the input string to match against. |
| 331 | /// @param RegexList a list of strings that are regular expressions. |
| 332 | static bool doesStringMatchAnyRegex(StringRef Str, |
| 333 | const cl::list<std::string> &RegexList) { |
| 334 | for (auto RegexStr : RegexList) { |
Siddharth Bhat | e2699b5 | 2017-07-24 12:40:52 +0000 | [diff] [blame] | 335 | Regex R(RegexStr); |
| 336 | |
| 337 | std::string Err; |
| 338 | if (!R.isValid(Err)) |
Siddharth Bhat | 0a1177b | 2017-07-28 11:47:24 +0000 | [diff] [blame] | 339 | report_fatal_error("invalid regex given as input to polly: " + Err, true); |
Siddharth Bhat | e2699b5 | 2017-07-24 12:40:52 +0000 | [diff] [blame] | 340 | |
Siddharth Bhat | 0a1177b | 2017-07-28 11:47:24 +0000 | [diff] [blame] | 341 | if (R.match(Str)) |
Siddharth Bhat | 286c916 | 2017-06-09 08:23:40 +0000 | [diff] [blame] | 342 | return true; |
Siddharth Bhat | e2699b5 | 2017-07-24 12:40:52 +0000 | [diff] [blame] | 343 | } |
Siddharth Bhat | 286c916 | 2017-06-09 08:23:40 +0000 | [diff] [blame] | 344 | return false; |
| 345 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 346 | //===----------------------------------------------------------------------===// |
| 347 | // ScopDetection. |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 348 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 349 | ScopDetection::ScopDetection(Function &F, const DominatorTree &DT, |
| 350 | ScalarEvolution &SE, LoopInfo &LI, RegionInfo &RI, |
Eli Friedman | e737fc1 | 2017-07-17 23:58:33 +0000 | [diff] [blame] | 351 | AliasAnalysis &AA, OptimizationRemarkEmitter &ORE) |
| 352 | : DT(DT), SE(SE), LI(LI), RI(RI), AA(AA), ORE(ORE) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 353 | if (!PollyProcessUnprofitable && LI.empty()) |
| 354 | return; |
| 355 | |
| 356 | Region *TopRegion = RI.getTopLevelRegion(); |
| 357 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 358 | if (!OnlyFunctions.empty() && |
Siddharth Bhat | 0a1177b | 2017-07-28 11:47:24 +0000 | [diff] [blame] | 359 | !doesStringMatchAnyRegex(F.getName(), OnlyFunctions)) |
| 360 | return; |
| 361 | |
| 362 | if (doesStringMatchAnyRegex(F.getName(), IgnoredFunctions)) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 363 | return; |
| 364 | |
| 365 | if (!isValidFunction(F)) |
| 366 | return; |
| 367 | |
| 368 | findScops(*TopRegion); |
| 369 | |
| 370 | NumScopRegions += ValidRegions.size(); |
| 371 | |
| 372 | // Prune non-profitable regions. |
| 373 | for (auto &DIt : DetectionContextMap) { |
| 374 | auto &DC = DIt.getSecond(); |
| 375 | if (DC.Log.hasErrors()) |
| 376 | continue; |
| 377 | if (!ValidRegions.count(&DC.CurRegion)) |
| 378 | continue; |
| 379 | LoopStats Stats = countBeneficialLoops(&DC.CurRegion, SE, LI, 0); |
| 380 | updateLoopCountStatistic(Stats, false /* OnlyProfitable */); |
| 381 | if (isProfitableRegion(DC)) { |
| 382 | updateLoopCountStatistic(Stats, true /* OnlyProfitable */); |
| 383 | continue; |
| 384 | } |
| 385 | |
| 386 | ValidRegions.remove(&DC.CurRegion); |
| 387 | } |
| 388 | |
| 389 | NumProfScopRegions += ValidRegions.size(); |
| 390 | NumLoopsOverall += countBeneficialLoops(TopRegion, SE, LI, 0).NumLoops; |
| 391 | |
| 392 | // Only makes sense when we tracked errors. |
| 393 | if (PollyTrackFailures) |
| 394 | emitMissedRemarks(F); |
| 395 | |
| 396 | if (ReportLevel) |
| 397 | printLocations(F); |
| 398 | |
| 399 | assert(ValidRegions.size() <= DetectionContextMap.size() && |
| 400 | "Cached more results than valid regions"); |
Johannes Doerfert | b164c79 | 2014-09-18 11:17:17 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 403 | template <class RR, typename... Args> |
| 404 | inline bool ScopDetection::invalid(DetectionContext &Context, bool Assert, |
| 405 | Args &&... Arguments) const { |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 406 | if (!Context.Verifying) { |
Andreas Simbuerger | 4870e09 | 2014-05-24 09:25:01 +0000 | [diff] [blame] | 407 | RejectLog &Log = Context.Log; |
| 408 | std::shared_ptr<RR> RejectReason = std::make_shared<RR>(Arguments...); |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 409 | |
Andreas Simbuerger | 8a00c9b | 2014-05-24 09:25:06 +0000 | [diff] [blame] | 410 | if (PollyTrackFailures) |
Andreas Simbuerger | 4870e09 | 2014-05-24 09:25:01 +0000 | [diff] [blame] | 411 | Log.report(RejectReason); |
Andreas Simbuerger | 4870e09 | 2014-05-24 09:25:01 +0000 | [diff] [blame] | 412 | |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 413 | LLVM_DEBUG(dbgs() << RejectReason->getMessage()); |
| 414 | LLVM_DEBUG(dbgs() << "\n"); |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 415 | } else { |
| 416 | assert(!Assert && "Verification of detected scop failed"); |
| 417 | } |
| 418 | |
| 419 | return false; |
| 420 | } |
| 421 | |
Tobias Grosser | a168993 | 2014-02-18 18:49:49 +0000 | [diff] [blame] | 422 | bool ScopDetection::isMaxRegionInScop(const Region &R, bool Verify) const { |
| 423 | if (!ValidRegions.count(&R)) |
| 424 | return false; |
| 425 | |
Johannes Doerfert | 3f1c285 | 2015-02-19 18:11:50 +0000 | [diff] [blame] | 426 | if (Verify) { |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 427 | DetectionContextMap.erase(getBBPairForRegion(&R)); |
| 428 | const auto &It = DetectionContextMap.insert(std::make_pair( |
| 429 | getBBPairForRegion(&R), |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 430 | DetectionContext(const_cast<Region &>(R), AA, false /*verifying*/))); |
Tobias Grosser | 907090c | 2015-10-25 10:55:35 +0000 | [diff] [blame] | 431 | DetectionContext &Context = It.first->second; |
Johannes Doerfert | 3f1c285 | 2015-02-19 18:11:50 +0000 | [diff] [blame] | 432 | return isValidRegion(Context); |
| 433 | } |
Tobias Grosser | a168993 | 2014-02-18 18:49:49 +0000 | [diff] [blame] | 434 | |
| 435 | return true; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 436 | } |
| 437 | |
Tobias Grosser | 4f129a6 | 2011-10-08 00:30:55 +0000 | [diff] [blame] | 438 | std::string ScopDetection::regionIsInvalidBecause(const Region *R) const { |
Andreas Simbuerger | 8a00c9b | 2014-05-24 09:25:06 +0000 | [diff] [blame] | 439 | // Get the first error we found. Even in keep-going mode, this is the first |
| 440 | // reason that caused the candidate to be rejected. |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 441 | auto *Log = lookupRejectionLog(R); |
Andreas Simbuerger | 83ed861 | 2014-06-12 07:25:08 +0000 | [diff] [blame] | 442 | |
| 443 | // This can happen when we marked a region invalid, but didn't track |
| 444 | // an error for it. |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 445 | if (!Log || !Log->hasErrors()) |
Andreas Simbuerger | 83ed861 | 2014-06-12 07:25:08 +0000 | [diff] [blame] | 446 | return ""; |
| 447 | |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 448 | RejectReasonPtr RR = *Log->begin(); |
Andreas Simbuerger | 83ed861 | 2014-06-12 07:25:08 +0000 | [diff] [blame] | 449 | return RR->getMessage(); |
Tobias Grosser | 4f129a6 | 2011-10-08 00:30:55 +0000 | [diff] [blame] | 450 | } |
| 451 | |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 452 | bool ScopDetection::addOverApproximatedRegion(Region *AR, |
| 453 | DetectionContext &Context) const { |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 454 | // If we already know about Ar we can exit. |
| 455 | if (!Context.NonAffineSubRegionSet.insert(AR)) |
| 456 | return true; |
| 457 | |
| 458 | // All loops in the region have to be overapproximated too if there |
| 459 | // are accesses that depend on the iteration count. |
Michael Kruse | 41f046a | 2016-06-27 19:00:49 +0000 | [diff] [blame] | 460 | |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 461 | for (BasicBlock *BB : AR->blocks()) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 462 | Loop *L = LI.getLoopFor(BB); |
Tobias Grosser | 349d1c3 | 2016-09-20 17:05:22 +0000 | [diff] [blame] | 463 | if (AR->contains(L)) |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 464 | Context.BoxedLoopsSet.insert(L); |
Johannes Doerfert | ba65c16 | 2015-02-24 11:45:21 +0000 | [diff] [blame] | 465 | } |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 466 | |
| 467 | return (AllowNonAffineSubLoops || Context.BoxedLoopsSet.empty()); |
Johannes Doerfert | ba65c16 | 2015-02-24 11:45:21 +0000 | [diff] [blame] | 468 | } |
| 469 | |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 470 | bool ScopDetection::onlyValidRequiredInvariantLoads( |
| 471 | InvariantLoadsSetTy &RequiredILS, DetectionContext &Context) const { |
| 472 | Region &CurRegion = Context.CurRegion; |
Tobias Grosser | 7b5a4df | 2017-04-11 04:59:13 +0000 | [diff] [blame] | 473 | const DataLayout &DL = CurRegion.getEntry()->getModule()->getDataLayout(); |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 474 | |
Tobias Grosser | 8fa3e4c | 2016-02-26 16:43:35 +0000 | [diff] [blame] | 475 | if (!PollyInvariantLoadHoisting && !RequiredILS.empty()) |
| 476 | return false; |
| 477 | |
Tobias Grosser | 1c787e0 | 2017-03-02 12:15:37 +0000 | [diff] [blame] | 478 | for (LoadInst *Load : RequiredILS) { |
Tobias Grosser | 3f25a7e | 2017-05-04 10:16:20 +0000 | [diff] [blame] | 479 | // If we already know a load has been accepted as required invariant, we |
| 480 | // already run the validation below once and consequently don't need to |
| 481 | // run it again. Hence, we return early. For certain test cases (e.g., |
| 482 | // COSMO this avoids us spending 50% of scop-detection time in this |
| 483 | // very function (and its children). |
| 484 | if (Context.RequiredILS.count(Load)) |
| 485 | continue; |
Philip Pfaffe | ec1a304 | 2018-06-29 07:29:45 +0000 | [diff] [blame] | 486 | if (!isHoistableLoad(Load, CurRegion, LI, SE, DT, Context.RequiredILS)) |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 487 | return false; |
| 488 | |
Tobias Grosser | 8bd7f3c | 2017-03-09 11:36:00 +0000 | [diff] [blame] | 489 | for (auto NonAffineRegion : Context.NonAffineSubRegionSet) { |
Tobias Grosser | 8bd7f3c | 2017-03-09 11:36:00 +0000 | [diff] [blame] | 490 | if (isSafeToLoadUnconditionally(Load->getPointerOperand(), |
| 491 | Load->getAlignment(), DL)) |
| 492 | continue; |
| 493 | |
Tobias Grosser | 1c787e0 | 2017-03-02 12:15:37 +0000 | [diff] [blame] | 494 | if (NonAffineRegion->contains(Load) && |
| 495 | Load->getParent() != NonAffineRegion->getEntry()) |
| 496 | return false; |
Tobias Grosser | 8bd7f3c | 2017-03-09 11:36:00 +0000 | [diff] [blame] | 497 | } |
Tobias Grosser | 1c787e0 | 2017-03-02 12:15:37 +0000 | [diff] [blame] | 498 | } |
| 499 | |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 500 | Context.RequiredILS.insert(RequiredILS.begin(), RequiredILS.end()); |
| 501 | |
| 502 | return true; |
| 503 | } |
| 504 | |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 505 | bool ScopDetection::involvesMultiplePtrs(const SCEV *S0, const SCEV *S1, |
| 506 | Loop *Scope) const { |
| 507 | SetVector<Value *> Values; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 508 | findValues(S0, SE, Values); |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 509 | if (S1) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 510 | findValues(S1, SE, Values); |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 511 | |
| 512 | SmallPtrSet<Value *, 8> PtrVals; |
| 513 | for (auto *V : Values) { |
| 514 | if (auto *P2I = dyn_cast<PtrToIntInst>(V)) |
| 515 | V = P2I->getOperand(0); |
| 516 | |
| 517 | if (!V->getType()->isPointerTy()) |
| 518 | continue; |
| 519 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 520 | auto *PtrSCEV = SE.getSCEVAtScope(V, Scope); |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 521 | if (isa<SCEVConstant>(PtrSCEV)) |
| 522 | continue; |
| 523 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 524 | auto *BasePtr = dyn_cast<SCEVUnknown>(SE.getPointerBase(PtrSCEV)); |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 525 | if (!BasePtr) |
| 526 | return true; |
| 527 | |
| 528 | auto *BasePtrVal = BasePtr->getValue(); |
| 529 | if (PtrVals.insert(BasePtrVal).second) { |
| 530 | for (auto *PtrVal : PtrVals) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 531 | if (PtrVal != BasePtrVal && !AA.isNoAlias(PtrVal, BasePtrVal)) |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 532 | return true; |
| 533 | } |
| 534 | } |
| 535 | |
| 536 | return false; |
| 537 | } |
| 538 | |
Michael Kruse | 09eb445 | 2016-03-03 22:10:47 +0000 | [diff] [blame] | 539 | bool ScopDetection::isAffine(const SCEV *S, Loop *Scope, |
Johannes Doerfert | ec8a217 | 2016-04-25 13:32:36 +0000 | [diff] [blame] | 540 | DetectionContext &Context) const { |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 541 | InvariantLoadsSetTy AccessILS; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 542 | if (!isAffineExpr(&Context.CurRegion, Scope, S, SE, &AccessILS)) |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 543 | return false; |
| 544 | |
| 545 | if (!onlyValidRequiredInvariantLoads(AccessILS, Context)) |
| 546 | return false; |
| 547 | |
| 548 | return true; |
| 549 | } |
| 550 | |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 551 | bool ScopDetection::isValidSwitch(BasicBlock &BB, SwitchInst *SI, |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 552 | Value *Condition, bool IsLoopBranch, |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 553 | DetectionContext &Context) const { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 554 | Loop *L = LI.getLoopFor(&BB); |
| 555 | const SCEV *ConditionSCEV = SE.getSCEVAtScope(Condition, L); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 556 | |
Tobias Grosser | bbaeda3 | 2016-11-10 05:20:29 +0000 | [diff] [blame] | 557 | if (IsLoopBranch && L->isLoopLatch(&BB)) |
| 558 | return false; |
| 559 | |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 560 | // Check for invalid usage of different pointers in one expression. |
| 561 | if (involvesMultiplePtrs(ConditionSCEV, nullptr, L)) |
| 562 | return false; |
| 563 | |
Michael Kruse | 09eb445 | 2016-03-03 22:10:47 +0000 | [diff] [blame] | 564 | if (isAffine(ConditionSCEV, L, Context)) |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 565 | return true; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 566 | |
Tobias Grosser | bbaeda3 | 2016-11-10 05:20:29 +0000 | [diff] [blame] | 567 | if (AllowNonAffineSubRegions && |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 568 | addOverApproximatedRegion(RI.getRegionFor(&BB), Context)) |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 569 | return true; |
| 570 | |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 571 | return invalid<ReportNonAffBranch>(Context, /*Assert=*/true, &BB, |
| 572 | ConditionSCEV, ConditionSCEV, SI); |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | bool ScopDetection::isValidBranch(BasicBlock &BB, BranchInst *BI, |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 576 | Value *Condition, bool IsLoopBranch, |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 577 | DetectionContext &Context) const { |
Tobias Grosser | bbaeda3 | 2016-11-10 05:20:29 +0000 | [diff] [blame] | 578 | // Constant integer conditions are always affine. |
| 579 | if (isa<ConstantInt>(Condition)) |
| 580 | return true; |
| 581 | |
Johannes Doerfert | 9b1f9c8 | 2015-10-11 13:21:03 +0000 | [diff] [blame] | 582 | if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Condition)) { |
| 583 | auto Opcode = BinOp->getOpcode(); |
| 584 | if (Opcode == Instruction::And || Opcode == Instruction::Or) { |
| 585 | Value *Op0 = BinOp->getOperand(0); |
| 586 | Value *Op1 = BinOp->getOperand(1); |
| 587 | return isValidBranch(BB, BI, Op0, IsLoopBranch, Context) && |
| 588 | isValidBranch(BB, BI, Op1, IsLoopBranch, Context); |
| 589 | } |
| 590 | } |
| 591 | |
Tobias Grosser | 0a62b2d | 2017-09-25 16:37:15 +0000 | [diff] [blame] | 592 | if (auto PHI = dyn_cast<PHINode>(Condition)) { |
| 593 | auto *Unique = dyn_cast_or_null<ConstantInt>( |
| 594 | getUniqueNonErrorValue(PHI, &Context.CurRegion, LI, DT)); |
| 595 | if (Unique && (Unique->isZero() || Unique->isOne())) |
| 596 | return true; |
| 597 | } |
| 598 | |
Tobias Grosser | 5e531df | 2017-09-25 20:27:15 +0000 | [diff] [blame] | 599 | if (auto Load = dyn_cast<LoadInst>(Condition)) |
Michael Kruse | c013399 | 2017-10-01 22:19:28 +0000 | [diff] [blame] | 600 | if (!IsLoopBranch && Context.CurRegion.contains(Load)) { |
Tobias Grosser | 5e531df | 2017-09-25 20:27:15 +0000 | [diff] [blame] | 601 | Context.RequiredILS.insert(Load); |
| 602 | return true; |
| 603 | } |
| 604 | |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 605 | // Non constant conditions of branches need to be ICmpInst. |
| 606 | if (!isa<ICmpInst>(Condition)) { |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 607 | if (!IsLoopBranch && AllowNonAffineSubRegions && |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 608 | addOverApproximatedRegion(RI.getRegionFor(&BB), Context)) |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 609 | return true; |
| 610 | return invalid<ReportInvalidCond>(Context, /*Assert=*/true, BI, &BB); |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 611 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 612 | |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 613 | ICmpInst *ICmp = cast<ICmpInst>(Condition); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 614 | |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 615 | // Are both operands of the ICmp affine? |
| 616 | if (isa<UndefValue>(ICmp->getOperand(0)) || |
| 617 | isa<UndefValue>(ICmp->getOperand(1))) |
| 618 | return invalid<ReportUndefOperand>(Context, /*Assert=*/true, &BB, ICmp); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 619 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 620 | Loop *L = LI.getLoopFor(&BB); |
| 621 | const SCEV *LHS = SE.getSCEVAtScope(ICmp->getOperand(0), L); |
| 622 | const SCEV *RHS = SE.getSCEVAtScope(ICmp->getOperand(1), L); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 623 | |
Tobias Grosser | ee45759 | 2017-09-24 09:25:30 +0000 | [diff] [blame] | 624 | LHS = tryForwardThroughPHI(LHS, Context.CurRegion, SE, LI, DT); |
| 625 | RHS = tryForwardThroughPHI(RHS, Context.CurRegion, SE, LI, DT); |
| 626 | |
Johannes Doerfert | bda8143 | 2016-12-02 17:55:41 +0000 | [diff] [blame] | 627 | // If unsigned operations are not allowed try to approximate the region. |
| 628 | if (ICmp->isUnsigned() && !PollyAllowUnsignedOperations) |
| 629 | return !IsLoopBranch && AllowNonAffineSubRegions && |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 630 | addOverApproximatedRegion(RI.getRegionFor(&BB), Context); |
Johannes Doerfert | bda8143 | 2016-12-02 17:55:41 +0000 | [diff] [blame] | 631 | |
Johannes Doerfert | a94ae1a | 2016-12-02 17:49:52 +0000 | [diff] [blame] | 632 | // Check for invalid usage of different pointers in one expression. |
| 633 | if (ICmp->isEquality() && involvesMultiplePtrs(LHS, nullptr, L) && |
| 634 | involvesMultiplePtrs(RHS, nullptr, L)) |
| 635 | return false; |
| 636 | |
| 637 | // Check for invalid usage of different pointers in a relational comparison. |
| 638 | if (ICmp->isRelational() && involvesMultiplePtrs(LHS, RHS, L)) |
| 639 | return false; |
| 640 | |
Michael Kruse | 09eb445 | 2016-03-03 22:10:47 +0000 | [diff] [blame] | 641 | if (isAffine(LHS, L, Context) && isAffine(RHS, L, Context)) |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 642 | return true; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 643 | |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 644 | if (!IsLoopBranch && AllowNonAffineSubRegions && |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 645 | addOverApproximatedRegion(RI.getRegionFor(&BB), Context)) |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 646 | return true; |
| 647 | |
| 648 | if (IsLoopBranch) |
| 649 | return false; |
| 650 | |
| 651 | return invalid<ReportNonAffBranch>(Context, /*Assert=*/true, &BB, LHS, RHS, |
| 652 | ICmp); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 655 | bool ScopDetection::isValidCFG(BasicBlock &BB, bool IsLoopBranch, |
Tobias Grosser | b76cd3c | 2015-11-11 08:42:20 +0000 | [diff] [blame] | 656 | bool AllowUnreachable, |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 657 | DetectionContext &Context) const { |
| 658 | Region &CurRegion = Context.CurRegion; |
| 659 | |
| 660 | TerminatorInst *TI = BB.getTerminator(); |
| 661 | |
Tobias Grosser | b76cd3c | 2015-11-11 08:42:20 +0000 | [diff] [blame] | 662 | if (AllowUnreachable && isa<UnreachableInst>(TI)) |
| 663 | return true; |
| 664 | |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 665 | // Return instructions are only valid if the region is the top level region. |
Philip Pfaffe | 1a0128f | 2017-05-24 18:39:39 +0000 | [diff] [blame] | 666 | if (isa<ReturnInst>(TI) && CurRegion.isTopLevelRegion()) |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 667 | return true; |
| 668 | |
| 669 | Value *Condition = getConditionFromTerminator(TI); |
| 670 | |
| 671 | if (!Condition) |
| 672 | return invalid<ReportInvalidTerminator>(Context, /*Assert=*/true, &BB); |
| 673 | |
| 674 | // UndefValue is not allowed as condition. |
| 675 | if (isa<UndefValue>(Condition)) |
| 676 | return invalid<ReportUndefCond>(Context, /*Assert=*/true, TI, &BB); |
| 677 | |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 678 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 679 | return isValidBranch(BB, BI, Condition, IsLoopBranch, Context); |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 680 | |
| 681 | SwitchInst *SI = dyn_cast<SwitchInst>(TI); |
| 682 | assert(SI && "Terminator was neither branch nor switch"); |
| 683 | |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 684 | return isValidSwitch(BB, SI, Condition, IsLoopBranch, Context); |
Johannes Doerfert | 9a132f3 | 2015-09-28 09:33:22 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 687 | bool ScopDetection::isValidCallInst(CallInst &CI, |
| 688 | DetectionContext &Context) const { |
Johannes Doerfert | 3f500fa | 2015-01-25 18:07:30 +0000 | [diff] [blame] | 689 | if (CI.doesNotReturn()) |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 690 | return false; |
| 691 | |
| 692 | if (CI.doesNotAccessMemory()) |
| 693 | return true; |
| 694 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 695 | if (auto *II = dyn_cast<IntrinsicInst>(&CI)) |
Johannes Doerfert | a792098 | 2016-02-25 14:08:48 +0000 | [diff] [blame] | 696 | if (isValidIntrinsicInst(*II, Context)) |
| 697 | return true; |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 698 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 699 | Function *CalledFunction = CI.getCalledFunction(); |
| 700 | |
| 701 | // Indirect calls are not supported. |
Tobias Grosser | 8dd653d | 2016-06-22 16:22:00 +0000 | [diff] [blame] | 702 | if (CalledFunction == nullptr) |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 703 | return false; |
| 704 | |
Michael Kruse | 5369ea5 | 2018-04-20 18:55:44 +0000 | [diff] [blame] | 705 | if (isDebugCall(&CI)) { |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 706 | LLVM_DEBUG(dbgs() << "Allow call to debug function: " |
| 707 | << CalledFunction->getName() << '\n'); |
Michael Kruse | 5369ea5 | 2018-04-20 18:55:44 +0000 | [diff] [blame] | 708 | return true; |
| 709 | } |
| 710 | |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 711 | if (AllowModrefCall) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 712 | switch (AA.getModRefBehavior(CalledFunction)) { |
Tobias Grosser | b94e9b3 | 2016-11-21 09:04:45 +0000 | [diff] [blame] | 713 | case FMRB_UnknownModRefBehavior: |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 714 | return false; |
Tobias Grosser | b94e9b3 | 2016-11-21 09:04:45 +0000 | [diff] [blame] | 715 | case FMRB_DoesNotAccessMemory: |
| 716 | case FMRB_OnlyReadsMemory: |
Johannes Doerfert | a792098 | 2016-02-25 14:08:48 +0000 | [diff] [blame] | 717 | // Implicitly disable delinearization since we have an unknown |
| 718 | // accesses with an unknown access function. |
| 719 | Context.HasUnknownAccess = true; |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 720 | Context.AST.add(&CI); |
| 721 | return true; |
Tobias Grosser | b94e9b3 | 2016-11-21 09:04:45 +0000 | [diff] [blame] | 722 | case FMRB_OnlyReadsArgumentPointees: |
| 723 | case FMRB_OnlyAccessesArgumentPointees: |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 724 | for (const auto &Arg : CI.arg_operands()) { |
| 725 | if (!Arg->getType()->isPointerTy()) |
| 726 | continue; |
Johannes Doerfert | a792098 | 2016-02-25 14:08:48 +0000 | [diff] [blame] | 727 | |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 728 | // Bail if a pointer argument has a base address not known to |
| 729 | // ScalarEvolution. Note that a zero pointer is acceptable. |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 730 | auto *ArgSCEV = SE.getSCEVAtScope(Arg, LI.getLoopFor(CI.getParent())); |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 731 | if (ArgSCEV->isZero()) |
| 732 | continue; |
| 733 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 734 | auto *BP = dyn_cast<SCEVUnknown>(SE.getPointerBase(ArgSCEV)); |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 735 | if (!BP) |
| 736 | return false; |
| 737 | |
| 738 | // Implicitly disable delinearization since we have an unknown |
| 739 | // accesses with an unknown access function. |
| 740 | Context.HasUnknownAccess = true; |
| 741 | } |
| 742 | |
| 743 | Context.AST.add(&CI); |
| 744 | return true; |
Weiming Zhao | 7614e17 | 2016-07-11 18:27:52 +0000 | [diff] [blame] | 745 | case FMRB_DoesNotReadMemory: |
Tobias Grosser | 70d2709 | 2016-11-13 19:27:24 +0000 | [diff] [blame] | 746 | case FMRB_OnlyAccessesInaccessibleMem: |
| 747 | case FMRB_OnlyAccessesInaccessibleOrArgMem: |
Weiming Zhao | 7614e17 | 2016-07-11 18:27:52 +0000 | [diff] [blame] | 748 | return false; |
Tobias Grosser | 898a636 | 2016-03-23 06:40:15 +0000 | [diff] [blame] | 749 | } |
Johannes Doerfert | a792098 | 2016-02-25 14:08:48 +0000 | [diff] [blame] | 750 | } |
| 751 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 752 | return false; |
| 753 | } |
| 754 | |
| 755 | bool ScopDetection::isValidIntrinsicInst(IntrinsicInst &II, |
| 756 | DetectionContext &Context) const { |
| 757 | if (isIgnoredIntrinsic(&II)) |
Tobias Grosser | 9c0ffe3 | 2015-08-30 16:57:15 +0000 | [diff] [blame] | 758 | return true; |
Johannes Doerfert | 3f500fa | 2015-01-25 18:07:30 +0000 | [diff] [blame] | 759 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 760 | // The closest loop surrounding the call instruction. |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 761 | Loop *L = LI.getLoopFor(II.getParent()); |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 762 | |
| 763 | // The access function and base pointer for memory intrinsics. |
| 764 | const SCEV *AF; |
| 765 | const SCEVUnknown *BP; |
| 766 | |
| 767 | switch (II.getIntrinsicID()) { |
| 768 | // Memory intrinsics that can be represented are supported. |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 769 | case Intrinsic::memmove: |
| 770 | case Intrinsic::memcpy: |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 771 | AF = SE.getSCEVAtScope(cast<MemTransferInst>(II).getSource(), L); |
Johannes Doerfert | 733ea34 | 2016-03-24 13:50:04 +0000 | [diff] [blame] | 772 | if (!AF->isZero()) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 773 | BP = dyn_cast<SCEVUnknown>(SE.getPointerBase(AF)); |
Johannes Doerfert | 733ea34 | 2016-03-24 13:50:04 +0000 | [diff] [blame] | 774 | // Bail if the source pointer is not valid. |
| 775 | if (!isValidAccess(&II, AF, BP, Context)) |
| 776 | return false; |
| 777 | } |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 778 | // Fall through |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 779 | case Intrinsic::memset: |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 780 | AF = SE.getSCEVAtScope(cast<MemIntrinsic>(II).getDest(), L); |
Johannes Doerfert | 733ea34 | 2016-03-24 13:50:04 +0000 | [diff] [blame] | 781 | if (!AF->isZero()) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 782 | BP = dyn_cast<SCEVUnknown>(SE.getPointerBase(AF)); |
Johannes Doerfert | 733ea34 | 2016-03-24 13:50:04 +0000 | [diff] [blame] | 783 | // Bail if the destination pointer is not valid. |
| 784 | if (!isValidAccess(&II, AF, BP, Context)) |
| 785 | return false; |
| 786 | } |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 787 | |
| 788 | // Bail if the length is not affine. |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 789 | if (!isAffine(SE.getSCEVAtScope(cast<MemIntrinsic>(II).getLength(), L), L, |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 790 | Context)) |
| 791 | return false; |
| 792 | |
| 793 | return true; |
| 794 | default: |
| 795 | break; |
| 796 | } |
| 797 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 798 | return false; |
| 799 | } |
| 800 | |
Michael Kruse | 5a4ec5c | 2017-03-07 20:28:43 +0000 | [diff] [blame] | 801 | bool ScopDetection::isInvariant(Value &Val, const Region &Reg, |
| 802 | DetectionContext &Ctx) const { |
Tobias Grosser | 458fb78 | 2014-01-28 12:58:58 +0000 | [diff] [blame] | 803 | // A reference to function argument or constant value is invariant. |
| 804 | if (isa<Argument>(Val) || isa<Constant>(Val)) |
| 805 | return true; |
| 806 | |
Michael Kruse | 5a4ec5c | 2017-03-07 20:28:43 +0000 | [diff] [blame] | 807 | Instruction *I = dyn_cast<Instruction>(&Val); |
Tobias Grosser | 458fb78 | 2014-01-28 12:58:58 +0000 | [diff] [blame] | 808 | if (!I) |
| 809 | return false; |
| 810 | |
| 811 | if (!Reg.contains(I)) |
| 812 | return true; |
| 813 | |
Michael Kruse | 5a4ec5c | 2017-03-07 20:28:43 +0000 | [diff] [blame] | 814 | // Loads within the SCoP may read arbitrary values, need to hoist them. If it |
| 815 | // is not hoistable, it will be rejected later, but here we assume it is and |
| 816 | // that makes the value invariant. |
| 817 | if (auto LI = dyn_cast<LoadInst>(I)) { |
| 818 | Ctx.RequiredILS.insert(LI); |
| 819 | return true; |
| 820 | } |
| 821 | |
Michael Kruse | 6744efa8d | 2017-03-08 15:14:46 +0000 | [diff] [blame] | 822 | return false; |
Tobias Grosser | 458fb78 | 2014-01-28 12:58:58 +0000 | [diff] [blame] | 823 | } |
| 824 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 825 | namespace { |
| 826 | |
Tobias Grosser | c80d697 | 2016-09-02 06:33:33 +0000 | [diff] [blame] | 827 | /// Remove smax of smax(0, size) expressions from a SCEV expression and |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 828 | /// register the '...' components. |
| 829 | /// |
Michael Kruse | a6d48f5 | 2017-06-08 12:06:15 +0000 | [diff] [blame] | 830 | /// Array access expressions as they are generated by GFortran contain smax(0, |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 831 | /// size) expressions that confuse the 'normal' delinearization algorithm. |
| 832 | /// However, if we extract such expressions before the normal delinearization |
| 833 | /// takes place they can actually help to identify array size expressions in |
Michael Kruse | a6d48f5 | 2017-06-08 12:06:15 +0000 | [diff] [blame] | 834 | /// Fortran accesses. For the subsequently following delinearization the smax(0, |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 835 | /// size) component can be replaced by just 'size'. This is correct as we will |
| 836 | /// always add and verify the assumption that for all subscript expressions |
| 837 | /// 'exp' the inequality 0 <= exp < size holds. Hence, we will also verify |
| 838 | /// that 0 <= size, which means smax(0, size) == size. |
Tobias Grosser | ebb626e | 2016-10-29 06:19:34 +0000 | [diff] [blame] | 839 | class SCEVRemoveMax : public SCEVRewriteVisitor<SCEVRemoveMax> { |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 840 | public: |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 841 | SCEVRemoveMax(ScalarEvolution &SE, std::vector<const SCEV *> *Terms) |
| 842 | : SCEVRewriteVisitor(SE), Terms(Terms) {} |
| 843 | |
Tobias Grosser | ebb626e | 2016-10-29 06:19:34 +0000 | [diff] [blame] | 844 | static const SCEV *rewrite(const SCEV *Scev, ScalarEvolution &SE, |
| 845 | std::vector<const SCEV *> *Terms = nullptr) { |
| 846 | SCEVRemoveMax Rewriter(SE, Terms); |
| 847 | return Rewriter.visit(Scev); |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 848 | } |
| 849 | |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 850 | const SCEV *visitSMaxExpr(const SCEVSMaxExpr *Expr) { |
Michael Kruse | 8fc2896 | 2015-12-20 14:42:32 +0000 | [diff] [blame] | 851 | if ((Expr->getNumOperands() == 2) && Expr->getOperand(0)->isZero()) { |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 852 | auto Res = visit(Expr->getOperand(1)); |
| 853 | if (Terms) |
| 854 | (*Terms).push_back(Res); |
| 855 | return Res; |
| 856 | } |
| 857 | |
| 858 | return Expr; |
| 859 | } |
| 860 | |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 861 | private: |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 862 | std::vector<const SCEV *> *Terms; |
| 863 | }; |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 864 | } // namespace |
| 865 | |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 866 | SmallVector<const SCEV *, 4> |
| 867 | ScopDetection::getDelinearizationTerms(DetectionContext &Context, |
| 868 | const SCEVUnknown *BasePointer) const { |
| 869 | SmallVector<const SCEV *, 4> Terms; |
| 870 | for (const auto &Pair : Context.Accesses[BasePointer]) { |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 871 | std::vector<const SCEV *> MaxTerms; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 872 | SCEVRemoveMax::rewrite(Pair.second, SE, &MaxTerms); |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 873 | if (!MaxTerms.empty()) { |
Tobias Grosser | 2f8e43d | 2015-11-24 17:06:38 +0000 | [diff] [blame] | 874 | Terms.insert(Terms.begin(), MaxTerms.begin(), MaxTerms.end()); |
| 875 | continue; |
| 876 | } |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 877 | // In case the outermost expression is a plain add, we check if any of its |
| 878 | // terms has the form 4 * %inst * %param * %param ..., aka a term that |
| 879 | // contains a product between a parameter and an instruction that is |
| 880 | // inside the scop. Such instructions, if allowed at all, are instructions |
| 881 | // SCEV can not represent, but Polly is still looking through. As a |
| 882 | // result, these instructions can depend on induction variables and are |
| 883 | // most likely no array sizes. However, terms that are multiplied with |
| 884 | // them are likely candidates for array sizes. |
| 885 | if (auto *AF = dyn_cast<SCEVAddExpr>(Pair.second)) { |
| 886 | for (auto Op : AF->operands()) { |
| 887 | if (auto *AF2 = dyn_cast<SCEVAddRecExpr>(Op)) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 888 | SE.collectParametricTerms(AF2, Terms); |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 889 | if (auto *AF2 = dyn_cast<SCEVMulExpr>(Op)) { |
| 890 | SmallVector<const SCEV *, 0> Operands; |
Johannes Doerfert | fb79a96 | 2015-02-23 14:18:28 +0000 | [diff] [blame] | 891 | |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 892 | for (auto *MulOp : AF2->operands()) { |
| 893 | if (auto *Const = dyn_cast<SCEVConstant>(MulOp)) |
| 894 | Operands.push_back(Const); |
| 895 | if (auto *Unknown = dyn_cast<SCEVUnknown>(MulOp)) { |
| 896 | if (auto *Inst = dyn_cast<Instruction>(Unknown->getValue())) { |
| 897 | if (!Context.CurRegion.contains(Inst)) |
Tobias Grosser | 1b13dde | 2015-06-29 14:44:22 +0000 | [diff] [blame] | 898 | Operands.push_back(MulOp); |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 899 | |
| 900 | } else { |
| 901 | Operands.push_back(MulOp); |
Tobias Grosser | 1b13dde | 2015-06-29 14:44:22 +0000 | [diff] [blame] | 902 | } |
| 903 | } |
Tobias Grosser | 1b13dde | 2015-06-29 14:44:22 +0000 | [diff] [blame] | 904 | } |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 905 | if (Operands.size()) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 906 | Terms.push_back(SE.getMulExpr(Operands)); |
Tobias Grosser | 1b13dde | 2015-06-29 14:44:22 +0000 | [diff] [blame] | 907 | } |
| 908 | } |
Tobias Grosser | 230acc4 | 2014-09-13 14:47:55 +0000 | [diff] [blame] | 909 | } |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 910 | if (Terms.empty()) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 911 | SE.collectParametricTerms(Pair.second, Terms); |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 912 | } |
| 913 | return Terms; |
| 914 | } |
Sebastian Pop | e8863b8 | 2014-05-12 19:02:02 +0000 | [diff] [blame] | 915 | |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 916 | bool ScopDetection::hasValidArraySizes(DetectionContext &Context, |
| 917 | SmallVectorImpl<const SCEV *> &Sizes, |
Michael Kruse | c7e0d9c | 2016-03-01 21:44:06 +0000 | [diff] [blame] | 918 | const SCEVUnknown *BasePointer, |
| 919 | Loop *Scope) const { |
Tobias Grosser | 1e55db3 | 2017-05-27 15:18:53 +0000 | [diff] [blame] | 920 | // If no sizes were found, all sizes are trivially valid. We allow this case |
| 921 | // to make it possible to pass known-affine accesses to the delinearization to |
| 922 | // try to recover some interesting multi-dimensional accesses, but to still |
| 923 | // allow the already known to be affine access in case the delinearization |
| 924 | // fails. In such situations, the delinearization will just return a Sizes |
| 925 | // array of size zero. |
| 926 | if (Sizes.size() == 0) |
| 927 | return true; |
| 928 | |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 929 | Value *BaseValue = BasePointer->getValue(); |
| 930 | Region &CurRegion = Context.CurRegion; |
| 931 | for (const SCEV *DelinearizedSize : Sizes) { |
Johannes Doerfert | ec8a217 | 2016-04-25 13:32:36 +0000 | [diff] [blame] | 932 | if (!isAffine(DelinearizedSize, Scope, Context)) { |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 933 | Sizes.clear(); |
| 934 | break; |
Tobias Grosser | 5528dcd | 2015-10-25 08:40:38 +0000 | [diff] [blame] | 935 | } |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 936 | if (auto *Unknown = dyn_cast<SCEVUnknown>(DelinearizedSize)) { |
| 937 | auto *V = dyn_cast<Value>(Unknown->getValue()); |
| 938 | if (auto *Load = dyn_cast<LoadInst>(V)) { |
| 939 | if (Context.CurRegion.contains(Load) && |
Philip Pfaffe | ec1a304 | 2018-06-29 07:29:45 +0000 | [diff] [blame] | 940 | isHoistableLoad(Load, CurRegion, LI, SE, DT, Context.RequiredILS)) |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 941 | Context.RequiredILS.insert(Load); |
Tobias Grosser | 230acc4 | 2014-09-13 14:47:55 +0000 | [diff] [blame] | 942 | continue; |
Tobias Grosser | 230acc4 | 2014-09-13 14:47:55 +0000 | [diff] [blame] | 943 | } |
Sebastian Pop | 46e1ecd | 2014-05-09 22:45:15 +0000 | [diff] [blame] | 944 | } |
Siddharth Bhat | a1b2086 | 2017-07-13 12:18:56 +0000 | [diff] [blame] | 945 | if (hasScalarDepsInsideRegion(DelinearizedSize, &CurRegion, Scope, false, |
| 946 | Context.RequiredILS)) |
Tobias Grosser | bfaf1ae | 2015-12-21 09:09:39 +0000 | [diff] [blame] | 947 | return invalid<ReportNonAffineAccess>( |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 948 | Context, /*Assert=*/true, DelinearizedSize, |
| 949 | Context.Accesses[BasePointer].front().first, BaseValue); |
| 950 | } |
Tobias Grosser | 230acc4 | 2014-09-13 14:47:55 +0000 | [diff] [blame] | 951 | |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 952 | // No array shape derived. |
| 953 | if (Sizes.empty()) { |
| 954 | if (AllowNonAffine) |
| 955 | return true; |
| 956 | |
Tobias Grosser | 230acc4 | 2014-09-13 14:47:55 +0000 | [diff] [blame] | 957 | for (const auto &Pair : Context.Accesses[BasePointer]) { |
| 958 | const Instruction *Insn = Pair.first; |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 959 | const SCEV *AF = Pair.second; |
Tobias Grosser | 230acc4 | 2014-09-13 14:47:55 +0000 | [diff] [blame] | 960 | |
Johannes Doerfert | ec8a217 | 2016-04-25 13:32:36 +0000 | [diff] [blame] | 961 | if (!isAffine(AF, Scope, Context)) { |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 962 | invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Insn, |
| 963 | BaseValue); |
| 964 | if (!KeepGoing) |
Tobias Grosser | 230acc4 | 2014-09-13 14:47:55 +0000 | [diff] [blame] | 965 | return false; |
| 966 | } |
| 967 | } |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 968 | return false; |
Sebastian Pop | 46e1ecd | 2014-05-09 22:45:15 +0000 | [diff] [blame] | 969 | } |
Sebastian Pop | e8863b8 | 2014-05-12 19:02:02 +0000 | [diff] [blame] | 970 | return true; |
Sebastian Pop | 46e1ecd | 2014-05-09 22:45:15 +0000 | [diff] [blame] | 971 | } |
| 972 | |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 973 | // We first store the resulting memory accesses in TempMemoryAccesses. Only |
| 974 | // if the access functions for all memory accesses have been successfully |
| 975 | // delinearized we continue. Otherwise, we either report a failure or, if |
| 976 | // non-affine accesses are allowed, we drop the information. In case the |
| 977 | // information is dropped the memory accesses need to be overapproximated |
| 978 | // when translated to a polyhedral representation. |
| 979 | bool ScopDetection::computeAccessFunctions( |
| 980 | DetectionContext &Context, const SCEVUnknown *BasePointer, |
| 981 | std::shared_ptr<ArrayShape> Shape) const { |
| 982 | Value *BaseValue = BasePointer->getValue(); |
| 983 | bool BasePtrHasNonAffine = false; |
| 984 | MapInsnToMemAcc TempMemoryAccesses; |
| 985 | for (const auto &Pair : Context.Accesses[BasePointer]) { |
| 986 | const Instruction *Insn = Pair.first; |
| 987 | auto *AF = Pair.second; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 988 | AF = SCEVRemoveMax::rewrite(AF, SE); |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 989 | bool IsNonAffine = false; |
| 990 | TempMemoryAccesses.insert(std::make_pair(Insn, MemAcc(Insn, Shape))); |
| 991 | MemAcc *Acc = &TempMemoryAccesses.find(Insn)->second; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 992 | auto *Scope = LI.getLoopFor(Insn->getParent()); |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 993 | |
| 994 | if (!AF) { |
Johannes Doerfert | ec8a217 | 2016-04-25 13:32:36 +0000 | [diff] [blame] | 995 | if (isAffine(Pair.second, Scope, Context)) |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 996 | Acc->DelinearizedSubscripts.push_back(Pair.second); |
| 997 | else |
| 998 | IsNonAffine = true; |
| 999 | } else { |
Tobias Grosser | 1e55db3 | 2017-05-27 15:18:53 +0000 | [diff] [blame] | 1000 | if (Shape->DelinearizedSizes.size() == 0) { |
| 1001 | Acc->DelinearizedSubscripts.push_back(AF); |
| 1002 | } else { |
| 1003 | SE.computeAccessFunctions(AF, Acc->DelinearizedSubscripts, |
| 1004 | Shape->DelinearizedSizes); |
| 1005 | if (Acc->DelinearizedSubscripts.size() == 0) |
| 1006 | IsNonAffine = true; |
| 1007 | } |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1008 | for (const SCEV *S : Acc->DelinearizedSubscripts) |
Johannes Doerfert | ec8a217 | 2016-04-25 13:32:36 +0000 | [diff] [blame] | 1009 | if (!isAffine(S, Scope, Context)) |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1010 | IsNonAffine = true; |
| 1011 | } |
| 1012 | |
| 1013 | // (Possibly) report non affine access |
| 1014 | if (IsNonAffine) { |
| 1015 | BasePtrHasNonAffine = true; |
| 1016 | if (!AllowNonAffine) |
| 1017 | invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, Pair.second, |
| 1018 | Insn, BaseValue); |
| 1019 | if (!KeepGoing && !AllowNonAffine) |
| 1020 | return false; |
| 1021 | } |
| 1022 | } |
| 1023 | |
| 1024 | if (!BasePtrHasNonAffine) |
Hongbin Zheng | 2262320 | 2016-02-15 00:20:58 +0000 | [diff] [blame] | 1025 | Context.InsnToMemAcc.insert(TempMemoryAccesses.begin(), |
| 1026 | TempMemoryAccesses.end()); |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1027 | |
| 1028 | return true; |
| 1029 | } |
| 1030 | |
Michael Kruse | c7e0d9c | 2016-03-01 21:44:06 +0000 | [diff] [blame] | 1031 | bool ScopDetection::hasBaseAffineAccesses(DetectionContext &Context, |
| 1032 | const SCEVUnknown *BasePointer, |
| 1033 | Loop *Scope) const { |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1034 | auto Shape = std::shared_ptr<ArrayShape>(new ArrayShape(BasePointer)); |
| 1035 | |
| 1036 | auto Terms = getDelinearizationTerms(Context, BasePointer); |
| 1037 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1038 | SE.findArrayDimensions(Terms, Shape->DelinearizedSizes, |
| 1039 | Context.ElementSize[BasePointer]); |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1040 | |
Michael Kruse | c7e0d9c | 2016-03-01 21:44:06 +0000 | [diff] [blame] | 1041 | if (!hasValidArraySizes(Context, Shape->DelinearizedSizes, BasePointer, |
| 1042 | Scope)) |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1043 | return false; |
| 1044 | |
| 1045 | return computeAccessFunctions(Context, BasePointer, Shape); |
| 1046 | } |
| 1047 | |
| 1048 | bool ScopDetection::hasAffineMemoryAccesses(DetectionContext &Context) const { |
Johannes Doerfert | a792098 | 2016-02-25 14:08:48 +0000 | [diff] [blame] | 1049 | // TODO: If we have an unknown access and other non-affine accesses we do |
| 1050 | // not try to delinearize them for now. |
| 1051 | if (Context.HasUnknownAccess && !Context.NonAffineAccesses.empty()) |
| 1052 | return AllowNonAffine; |
| 1053 | |
Michael Kruse | c7e0d9c | 2016-03-01 21:44:06 +0000 | [diff] [blame] | 1054 | for (auto &Pair : Context.NonAffineAccesses) { |
| 1055 | auto *BasePointer = Pair.first; |
| 1056 | auto *Scope = Pair.second; |
| 1057 | if (!hasBaseAffineAccesses(Context, BasePointer, Scope)) { |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1058 | if (KeepGoing) |
| 1059 | continue; |
| 1060 | else |
| 1061 | return false; |
| 1062 | } |
Michael Kruse | c7e0d9c | 2016-03-01 21:44:06 +0000 | [diff] [blame] | 1063 | } |
Tobias Grosser | d68ba42 | 2015-11-24 05:00:36 +0000 | [diff] [blame] | 1064 | return true; |
| 1065 | } |
| 1066 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1067 | bool ScopDetection::isValidAccess(Instruction *Inst, const SCEV *AF, |
| 1068 | const SCEVUnknown *BP, |
| 1069 | DetectionContext &Context) const { |
Johannes Doerfert | fb79a96 | 2015-02-23 14:18:28 +0000 | [diff] [blame] | 1070 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1071 | if (!BP) |
Michael Kruse | 70131d3 | 2016-01-27 17:09:17 +0000 | [diff] [blame] | 1072 | return invalid<ReportNoBasePtr>(Context, /*Assert=*/true, Inst); |
Tobias Grosser | b8710b5 | 2011-11-10 12:44:50 +0000 | [diff] [blame] | 1073 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1074 | auto *BV = BP->getValue(); |
| 1075 | if (isa<UndefValue>(BV)) |
Michael Kruse | 70131d3 | 2016-01-27 17:09:17 +0000 | [diff] [blame] | 1076 | return invalid<ReportUndefBasePtr>(Context, /*Assert=*/true, Inst); |
Tobias Grosser | b8710b5 | 2011-11-10 12:44:50 +0000 | [diff] [blame] | 1077 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1078 | // FIXME: Think about allowing IntToPtrInst |
| 1079 | if (IntToPtrInst *Inst = dyn_cast<IntToPtrInst>(BV)) |
| 1080 | return invalid<ReportIntToPtr>(Context, /*Assert=*/true, Inst); |
| 1081 | |
Tobias Grosser | 458fb78 | 2014-01-28 12:58:58 +0000 | [diff] [blame] | 1082 | // Check that the base address of the access is invariant in the current |
| 1083 | // region. |
Michael Kruse | 5a4ec5c | 2017-03-07 20:28:43 +0000 | [diff] [blame] | 1084 | if (!isInvariant(*BV, Context.CurRegion, Context)) |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1085 | return invalid<ReportVariantBasePtr>(Context, /*Assert=*/true, BV, Inst); |
Tobias Grosser | 458fb78 | 2014-01-28 12:58:58 +0000 | [diff] [blame] | 1086 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1087 | AF = SE.getMinusSCEV(AF, BP); |
Tobias Grosser | b8710b5 | 2011-11-10 12:44:50 +0000 | [diff] [blame] | 1088 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1089 | const SCEV *Size; |
| 1090 | if (!isa<MemIntrinsic>(Inst)) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1091 | Size = SE.getElementSize(Inst); |
Tobias Grosser | 8ebdc2d | 2016-02-07 08:48:57 +0000 | [diff] [blame] | 1092 | } else { |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1093 | auto *SizeTy = |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1094 | SE.getEffectiveSCEVType(PointerType::getInt8PtrTy(SE.getContext())); |
| 1095 | Size = SE.getConstant(SizeTy, 8); |
Tobias Grosser | 8ebdc2d | 2016-02-07 08:48:57 +0000 | [diff] [blame] | 1096 | } |
Tobias Grosser | bcd4eff | 2014-09-13 14:47:40 +0000 | [diff] [blame] | 1097 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1098 | if (Context.ElementSize[BP]) { |
| 1099 | if (!AllowDifferentTypes && Context.ElementSize[BP] != Size) |
| 1100 | return invalid<ReportDifferentArrayElementSize>(Context, /*Assert=*/true, |
| 1101 | Inst, BV); |
| 1102 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1103 | Context.ElementSize[BP] = SE.getSMinExpr(Size, Context.ElementSize[BP]); |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1104 | } else { |
| 1105 | Context.ElementSize[BP] = Size; |
| 1106 | } |
| 1107 | |
| 1108 | bool IsVariantInNonAffineLoop = false; |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 1109 | SetVector<const Loop *> Loops; |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1110 | findLoops(AF, Loops); |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 1111 | for (const Loop *L : Loops) |
| 1112 | if (Context.BoxedLoopsSet.count(L)) |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1113 | IsVariantInNonAffineLoop = true; |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 1114 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1115 | auto *Scope = LI.getLoopFor(Inst->getParent()); |
Johannes Doerfert | ec8a217 | 2016-04-25 13:32:36 +0000 | [diff] [blame] | 1116 | bool IsAffine = !IsVariantInNonAffineLoop && isAffine(AF, Scope, Context); |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1117 | // Do not try to delinearize memory intrinsics and force them to be affine. |
| 1118 | if (isa<MemIntrinsic>(Inst) && !IsAffine) { |
| 1119 | return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Inst, |
| 1120 | BV); |
| 1121 | } else if (PollyDelinearize && !IsVariantInNonAffineLoop) { |
| 1122 | Context.Accesses[BP].push_back({Inst, AF}); |
Sebastian Pop | 46e1ecd | 2014-05-09 22:45:15 +0000 | [diff] [blame] | 1123 | |
Tobias Grosser | 1e55db3 | 2017-05-27 15:18:53 +0000 | [diff] [blame] | 1124 | if (!IsAffine || hasIVParams(AF)) |
Michael Kruse | c7e0d9c | 2016-03-01 21:44:06 +0000 | [diff] [blame] | 1125 | Context.NonAffineAccesses.insert( |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1126 | std::make_pair(BP, LI.getLoopFor(Inst->getParent()))); |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1127 | } else if (!AllowNonAffine && !IsAffine) { |
| 1128 | return invalid<ReportNonAffineAccess>(Context, /*Assert=*/true, AF, Inst, |
| 1129 | BV); |
Sebastian Pop | 1801668 | 2014-04-08 21:20:44 +0000 | [diff] [blame] | 1130 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1131 | |
Tobias Grosser | 1eedb67 | 2014-09-24 21:04:29 +0000 | [diff] [blame] | 1132 | if (IgnoreAliasing) |
Sebastian Pop | 8c2d753 | 2013-07-03 22:50:36 +0000 | [diff] [blame] | 1133 | return true; |
Tobias Grosser | fff5adc | 2011-11-10 13:21:43 +0000 | [diff] [blame] | 1134 | |
Sebastian Pop | 8c2d753 | 2013-07-03 22:50:36 +0000 | [diff] [blame] | 1135 | // Check if the base pointer of the memory access does alias with |
| 1136 | // any other pointer. This cannot be handled at the moment. |
Benjamin Kramer | ae81abf | 2014-10-05 11:58:57 +0000 | [diff] [blame] | 1137 | AAMDNodes AATags; |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1138 | Inst->getAAMetadata(AATags); |
Michael Kruse | b67e5d3 | 2018-08-17 19:31:41 +0000 | [diff] [blame] | 1139 | AliasSet &AS = Context.AST.getAliasSetFor( |
| 1140 | MemoryLocation(BP->getValue(), MemoryLocation::UnknownSize, AATags)); |
Tobias Grosser | 428b3e4 | 2013-02-04 15:46:25 +0000 | [diff] [blame] | 1141 | |
Tobias Grosser | 1eedb67 | 2014-09-24 21:04:29 +0000 | [diff] [blame] | 1142 | if (!AS.isMustAlias()) { |
| 1143 | if (PollyUseRuntimeAliasChecks) { |
| 1144 | bool CanBuildRunTimeCheck = true; |
| 1145 | // The run-time alias check places code that involves the base pointer at |
| 1146 | // the beginning of the SCoP. This breaks if the base pointer is defined |
| 1147 | // inside the scop. Hence, we can only create a run-time check if we are |
| 1148 | // sure the base pointer is not an instruction defined inside the scop. |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 1149 | // However, we can ignore loads that will be hoisted. |
Johannes Doerfert | 09e3697 | 2015-10-07 20:17:36 +0000 | [diff] [blame] | 1150 | |
Philip Pfaffe | ec1a304 | 2018-06-29 07:29:45 +0000 | [diff] [blame] | 1151 | InvariantLoadsSetTy VariantLS, InvariantLS; |
| 1152 | // In order to detect loads which are dependent on other invariant loads |
| 1153 | // as invariant, we use fixed-point iteration method here i.e we iterate |
| 1154 | // over the alias set for arbitrary number of times until it is safe to |
| 1155 | // assume that all the invariant loads have been detected |
| 1156 | while (1) { |
| 1157 | const unsigned int VariantSize = VariantLS.size(), |
| 1158 | InvariantSize = InvariantLS.size(); |
| 1159 | |
| 1160 | for (const auto &Ptr : AS) { |
| 1161 | Instruction *Inst = dyn_cast<Instruction>(Ptr.getValue()); |
| 1162 | if (Inst && Context.CurRegion.contains(Inst)) { |
| 1163 | auto *Load = dyn_cast<LoadInst>(Inst); |
| 1164 | if (Load && InvariantLS.count(Load)) |
| 1165 | continue; |
| 1166 | if (Load && isHoistableLoad(Load, Context.CurRegion, LI, SE, DT, |
| 1167 | InvariantLS)) { |
| 1168 | if (VariantLS.count(Load)) |
| 1169 | VariantLS.remove(Load); |
| 1170 | Context.RequiredILS.insert(Load); |
| 1171 | InvariantLS.insert(Load); |
| 1172 | } else { |
| 1173 | CanBuildRunTimeCheck = false; |
| 1174 | VariantLS.insert(Load); |
| 1175 | } |
| 1176 | } |
Tobias Grosser | 1eedb67 | 2014-09-24 21:04:29 +0000 | [diff] [blame] | 1177 | } |
Philip Pfaffe | ec1a304 | 2018-06-29 07:29:45 +0000 | [diff] [blame] | 1178 | |
| 1179 | if (InvariantSize == InvariantLS.size() && |
| 1180 | VariantSize == VariantLS.size()) |
| 1181 | break; |
Tobias Grosser | 1eedb67 | 2014-09-24 21:04:29 +0000 | [diff] [blame] | 1182 | } |
| 1183 | |
| 1184 | if (CanBuildRunTimeCheck) |
| 1185 | return true; |
| 1186 | } |
Michael Kruse | 70131d3 | 2016-01-27 17:09:17 +0000 | [diff] [blame] | 1187 | return invalid<ReportAlias>(Context, /*Assert=*/true, Inst, AS); |
Tobias Grosser | 1eedb67 | 2014-09-24 21:04:29 +0000 | [diff] [blame] | 1188 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1189 | |
| 1190 | return true; |
| 1191 | } |
| 1192 | |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1193 | bool ScopDetection::isValidMemoryAccess(MemAccInst Inst, |
| 1194 | DetectionContext &Context) const { |
| 1195 | Value *Ptr = Inst.getPointerOperand(); |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1196 | Loop *L = LI.getLoopFor(Inst->getParent()); |
| 1197 | const SCEV *AccessFunction = SE.getSCEVAtScope(Ptr, L); |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1198 | const SCEVUnknown *BasePointer; |
| 1199 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1200 | BasePointer = dyn_cast<SCEVUnknown>(SE.getPointerBase(AccessFunction)); |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1201 | |
| 1202 | return isValidAccess(Inst, AccessFunction, BasePointer, Context); |
| 1203 | } |
| 1204 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1205 | bool ScopDetection::isValidInstruction(Instruction &Inst, |
| 1206 | DetectionContext &Context) const { |
Tobias Grosser | b12b006 | 2015-11-11 12:44:18 +0000 | [diff] [blame] | 1207 | for (auto &Op : Inst.operands()) { |
| 1208 | auto *OpInst = dyn_cast<Instruction>(&Op); |
| 1209 | |
| 1210 | if (!OpInst) |
| 1211 | continue; |
| 1212 | |
Tobias Grosser | 1f93d0f | 2017-09-26 15:00:10 +0000 | [diff] [blame] | 1213 | if (isErrorBlock(*OpInst->getParent(), Context.CurRegion, LI, DT)) { |
| 1214 | auto *PHI = dyn_cast<PHINode>(OpInst); |
| 1215 | if (PHI) { |
| 1216 | for (User *U : PHI->users()) { |
Chandler Carruth | 9ae926b | 2018-08-26 09:51:22 +0000 | [diff] [blame^] | 1217 | auto *UI = dyn_cast<Instruction>(U); |
| 1218 | if (!UI || !UI->isTerminator()) |
Tobias Grosser | 1f93d0f | 2017-09-26 15:00:10 +0000 | [diff] [blame] | 1219 | return false; |
| 1220 | } |
| 1221 | } else { |
| 1222 | return false; |
| 1223 | } |
| 1224 | } |
Tobias Grosser | b12b006 | 2015-11-11 12:44:18 +0000 | [diff] [blame] | 1225 | } |
| 1226 | |
Johannes Doerfert | 81c41b9 | 2016-04-09 21:55:58 +0000 | [diff] [blame] | 1227 | if (isa<LandingPadInst>(&Inst) || isa<ResumeInst>(&Inst)) |
| 1228 | return false; |
| 1229 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1230 | // We only check the call instruction but not invoke instruction. |
| 1231 | if (CallInst *CI = dyn_cast<CallInst>(&Inst)) { |
Johannes Doerfert | cea6193 | 2016-02-21 19:13:19 +0000 | [diff] [blame] | 1232 | if (isValidCallInst(*CI, Context)) |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1233 | return true; |
| 1234 | |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 1235 | return invalid<ReportFuncCall>(Context, /*Assert=*/true, &Inst); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
Tobias Grosser | 1f0236d | 2016-11-21 09:07:30 +0000 | [diff] [blame] | 1238 | if (!Inst.mayReadOrWriteMemory()) { |
Tobias Grosser | 5b1a7f2 | 2013-07-22 03:50:33 +0000 | [diff] [blame] | 1239 | if (!isa<AllocaInst>(Inst)) |
| 1240 | return true; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1241 | |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 1242 | return invalid<ReportAlloca>(Context, /*Assert=*/true, &Inst); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
| 1245 | // Check the access function. |
Michael Kruse | 70131d3 | 2016-01-27 17:09:17 +0000 | [diff] [blame] | 1246 | if (auto MemInst = MemAccInst::dyn_cast(Inst)) { |
Hongbin Zheng | 8efb22e | 2016-02-27 01:49:58 +0000 | [diff] [blame] | 1247 | Context.hasStores |= isa<StoreInst>(MemInst); |
| 1248 | Context.hasLoads |= isa<LoadInst>(MemInst); |
Michael Kruse | 70131d3 | 2016-01-27 17:09:17 +0000 | [diff] [blame] | 1249 | if (!MemInst.isSimple()) |
| 1250 | return invalid<ReportNonSimpleMemoryAccess>(Context, /*Assert=*/true, |
| 1251 | &Inst); |
Tobias Grosser | bf45e74 | 2015-10-25 13:48:40 +0000 | [diff] [blame] | 1252 | |
Michael Kruse | 70131d3 | 2016-01-27 17:09:17 +0000 | [diff] [blame] | 1253 | return isValidMemoryAccess(MemInst, Context); |
Tobias Grosser | d1e33e7 | 2015-02-19 05:31:07 +0000 | [diff] [blame] | 1254 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1255 | |
| 1256 | // We do not know this instruction, therefore we assume it is invalid. |
Andreas Simbuerger | 01a37a0 | 2014-04-02 11:54:01 +0000 | [diff] [blame] | 1257 | return invalid<ReportUnknownInst>(Context, /*Assert=*/true, &Inst); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1258 | } |
| 1259 | |
Tobias Grosser | 6d0970f | 2017-08-24 19:47:15 +0000 | [diff] [blame] | 1260 | /// Check whether @p L has exiting blocks. |
| 1261 | /// |
| 1262 | /// @param L The loop of interest |
| 1263 | /// |
| 1264 | /// @return True if the loop has exiting blocks, false otherwise. |
| 1265 | static bool hasExitingBlocks(Loop *L) { |
| 1266 | SmallVector<BasicBlock *, 4> ExitingBlocks; |
| 1267 | L->getExitingBlocks(ExitingBlocks); |
| 1268 | return !ExitingBlocks.empty(); |
| 1269 | } |
| 1270 | |
Johannes Doerfert | d020b77 | 2015-08-27 06:53:52 +0000 | [diff] [blame] | 1271 | bool ScopDetection::canUseISLTripCount(Loop *L, |
| 1272 | DetectionContext &Context) const { |
Johannes Doerfert | 30ffb6f | 2015-10-04 14:53:18 +0000 | [diff] [blame] | 1273 | // Ensure the loop has valid exiting blocks as well as latches, otherwise we |
| 1274 | // need to overapproximate it as a boxed loop. |
| 1275 | SmallVector<BasicBlock *, 4> LoopControlBlocks; |
Tobias Grosser | 151ae32 | 2016-04-03 19:36:52 +0000 | [diff] [blame] | 1276 | L->getExitingBlocks(LoopControlBlocks); |
Johannes Doerfert | d5edbd6 | 2016-04-03 23:09:06 +0000 | [diff] [blame] | 1277 | L->getLoopLatches(LoopControlBlocks); |
Johannes Doerfert | 30ffb6f | 2015-10-04 14:53:18 +0000 | [diff] [blame] | 1278 | for (BasicBlock *ControlBB : LoopControlBlocks) { |
Tobias Grosser | b76cd3c | 2015-11-11 08:42:20 +0000 | [diff] [blame] | 1279 | if (!isValidCFG(*ControlBB, true, false, Context)) |
Johannes Doerfert | d020b77 | 2015-08-27 06:53:52 +0000 | [diff] [blame] | 1280 | return false; |
| 1281 | } |
| 1282 | |
Johannes Doerfert | d020b77 | 2015-08-27 06:53:52 +0000 | [diff] [blame] | 1283 | // We can use ISL to compute the trip count of L. |
| 1284 | return true; |
| 1285 | } |
| 1286 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1287 | bool ScopDetection::isValidLoop(Loop *L, DetectionContext &Context) const { |
Tobias Grosser | 349d1c3 | 2016-09-20 17:05:22 +0000 | [diff] [blame] | 1288 | // Loops that contain part but not all of the blocks of a region cannot be |
| 1289 | // handled by the schedule generation. Such loop constructs can happen |
| 1290 | // because a region can contain BBs that have no path to the exit block |
Tobias Grosser | 6d0970f | 2017-08-24 19:47:15 +0000 | [diff] [blame] | 1291 | // (Infinite loops, UnreachableInst), but such blocks are never part of a |
| 1292 | // loop. |
| 1293 | // |
| 1294 | // _______________ |
| 1295 | // | Loop Header | <-----------. |
| 1296 | // --------------- | |
| 1297 | // | | |
| 1298 | // _______________ ______________ |
| 1299 | // | RegionEntry |-----> | RegionExit |-----> |
| 1300 | // --------------- -------------- |
| 1301 | // | |
| 1302 | // _______________ |
| 1303 | // | EndlessLoop | <--. |
| 1304 | // --------------- | |
| 1305 | // | | |
| 1306 | // \------------/ |
| 1307 | // |
| 1308 | // In the example above, the loop (LoopHeader,RegionEntry,RegionExit) is |
| 1309 | // neither entirely contained in the region RegionEntry->RegionExit |
| 1310 | // (containing RegionEntry,EndlessLoop) nor is the region entirely contained |
| 1311 | // in the loop. |
| 1312 | // The block EndlessLoop is contained in the region because Region::contains |
| 1313 | // tests whether it is not dominated by RegionExit. This is probably to not |
| 1314 | // having to query the PostdominatorTree. Instead of an endless loop, a dead |
| 1315 | // end can also be formed by an UnreachableInst. This case is already caught |
| 1316 | // by isErrorBlock(). We hence only have to reject endless loops here. |
| 1317 | if (!hasExitingBlocks(L)) |
| 1318 | return invalid<ReportLoopHasNoExit>(Context, /*Assert=*/true, L); |
Tobias Grosser | 349d1c3 | 2016-09-20 17:05:22 +0000 | [diff] [blame] | 1319 | |
Michael Kruse | beffdb9 | 2018-04-25 18:53:33 +0000 | [diff] [blame] | 1320 | // The algorithm for domain construction assumes that loops has only a single |
| 1321 | // exit block (and hence corresponds to a subregion). Note that we cannot use |
| 1322 | // L->getExitBlock() because it does not check whether all exiting edges point |
| 1323 | // to the same BB. |
| 1324 | SmallVector<BasicBlock *, 4> ExitBlocks; |
| 1325 | L->getExitBlocks(ExitBlocks); |
| 1326 | BasicBlock *TheExitBlock = ExitBlocks[0]; |
| 1327 | for (BasicBlock *ExitBB : ExitBlocks) { |
| 1328 | if (TheExitBlock != ExitBB) |
| 1329 | return invalid<ReportLoopHasMultipleExits>(Context, /*Assert=*/true, L); |
| 1330 | } |
| 1331 | |
Johannes Doerfert | f61df69 | 2015-10-04 14:56:08 +0000 | [diff] [blame] | 1332 | if (canUseISLTripCount(L, Context)) |
Johannes Doerfert | ba65c16 | 2015-02-24 11:45:21 +0000 | [diff] [blame] | 1333 | return true; |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 1334 | |
Johannes Doerfert | b68cffb | 2015-09-10 15:27:46 +0000 | [diff] [blame] | 1335 | if (AllowNonAffineSubLoops && AllowNonAffineSubRegions) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1336 | Region *R = RI.getRegionFor(L->getHeader()); |
Johannes Doerfert | 757a32b | 2015-10-04 14:54:27 +0000 | [diff] [blame] | 1337 | while (R != &Context.CurRegion && !R->contains(L)) |
| 1338 | R = R->getParent(); |
| 1339 | |
| 1340 | if (addOverApproximatedRegion(R, Context)) |
| 1341 | return true; |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 1342 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1343 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1344 | const SCEV *LoopCount = SE.getBackedgeTakenCount(L); |
Johannes Doerfert | ba65c16 | 2015-02-24 11:45:21 +0000 | [diff] [blame] | 1345 | return invalid<ReportLoopBound>(Context, /*Assert=*/true, L, LoopCount); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1346 | } |
| 1347 | |
Tobias Grosser | c80d697 | 2016-09-02 06:33:33 +0000 | [diff] [blame] | 1348 | /// Return the number of loops in @p L (incl. @p L) that have a trip |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1349 | /// count that is not known to be less than @MinProfitableTrips. |
| 1350 | ScopDetection::LoopStats |
| 1351 | ScopDetection::countBeneficialSubLoops(Loop *L, ScalarEvolution &SE, |
Tobias Grosser | cd01a36 | 2017-02-17 08:12:36 +0000 | [diff] [blame] | 1352 | unsigned MinProfitableTrips) { |
Johannes Doerfert | 7175bdf | 2015-09-20 14:56:54 +0000 | [diff] [blame] | 1353 | auto *TripCount = SE.getBackedgeTakenCount(L); |
| 1354 | |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1355 | int NumLoops = 1; |
| 1356 | int MaxLoopDepth = 1; |
Michael Kruse | 7fac28fa | 2017-08-23 13:29:59 +0000 | [diff] [blame] | 1357 | if (MinProfitableTrips > 0) |
| 1358 | if (auto *TripCountC = dyn_cast<SCEVConstant>(TripCount)) |
| 1359 | if (TripCountC->getType()->getScalarSizeInBits() <= 64) |
| 1360 | if (TripCountC->getValue()->getZExtValue() <= MinProfitableTrips) |
| 1361 | NumLoops -= 1; |
Johannes Doerfert | 7175bdf | 2015-09-20 14:56:54 +0000 | [diff] [blame] | 1362 | |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1363 | for (auto &SubLoop : *L) { |
| 1364 | LoopStats Stats = countBeneficialSubLoops(SubLoop, SE, MinProfitableTrips); |
| 1365 | NumLoops += Stats.NumLoops; |
Tobias Grosser | 65ce936 | 2017-02-17 08:08:54 +0000 | [diff] [blame] | 1366 | MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth + 1); |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1367 | } |
Johannes Doerfert | 7175bdf | 2015-09-20 14:56:54 +0000 | [diff] [blame] | 1368 | |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1369 | return {NumLoops, MaxLoopDepth}; |
Johannes Doerfert | 7175bdf | 2015-09-20 14:56:54 +0000 | [diff] [blame] | 1370 | } |
| 1371 | |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1372 | ScopDetection::LoopStats |
Tobias Grosser | cd01a36 | 2017-02-17 08:12:36 +0000 | [diff] [blame] | 1373 | ScopDetection::countBeneficialLoops(Region *R, ScalarEvolution &SE, |
| 1374 | LoopInfo &LI, unsigned MinProfitableTrips) { |
Johannes Doerfert | f61df69 | 2015-10-04 14:56:08 +0000 | [diff] [blame] | 1375 | int LoopNum = 0; |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1376 | int MaxLoopDepth = 0; |
Tobias Grosser | ed21a1f | 2015-08-27 16:55:18 +0000 | [diff] [blame] | 1377 | |
Tobias Grosser | cd01a36 | 2017-02-17 08:12:36 +0000 | [diff] [blame] | 1378 | auto L = LI.getLoopFor(R->getEntry()); |
Tobias Grosser | 93ab558 | 2017-08-27 21:39:25 +0000 | [diff] [blame] | 1379 | |
| 1380 | // If L is fully contained in R, move to first loop surrounding R. Otherwise, |
| 1381 | // L is either nullptr or already surrounding R. |
| 1382 | if (L && R->contains(L)) { |
| 1383 | L = R->outermostLoopInRegion(L); |
| 1384 | L = L->getParentLoop(); |
| 1385 | } |
Tobias Grosser | ed21a1f | 2015-08-27 16:55:18 +0000 | [diff] [blame] | 1386 | |
Tobias Grosser | 050e0cb | 2015-08-31 12:08:11 +0000 | [diff] [blame] | 1387 | auto SubLoops = |
Tobias Grosser | cd01a36 | 2017-02-17 08:12:36 +0000 | [diff] [blame] | 1388 | L ? L->getSubLoopsVector() : std::vector<Loop *>(LI.begin(), LI.end()); |
Tobias Grosser | 050e0cb | 2015-08-31 12:08:11 +0000 | [diff] [blame] | 1389 | |
| 1390 | for (auto &SubLoop : SubLoops) |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1391 | if (R->contains(SubLoop)) { |
| 1392 | LoopStats Stats = |
Tobias Grosser | cd01a36 | 2017-02-17 08:12:36 +0000 | [diff] [blame] | 1393 | countBeneficialSubLoops(SubLoop, SE, MinProfitableTrips); |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1394 | LoopNum += Stats.NumLoops; |
| 1395 | MaxLoopDepth = std::max(MaxLoopDepth, Stats.MaxDepth); |
| 1396 | } |
Tobias Grosser | 050e0cb | 2015-08-31 12:08:11 +0000 | [diff] [blame] | 1397 | |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1398 | return {LoopNum, MaxLoopDepth}; |
Tobias Grosser | ed21a1f | 2015-08-27 16:55:18 +0000 | [diff] [blame] | 1399 | } |
| 1400 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1401 | Region *ScopDetection::expandRegion(Region &R) { |
Hongbin Zheng | ed986ab | 2012-04-07 15:14:28 +0000 | [diff] [blame] | 1402 | // Initial no valid region was found (greater than R) |
Tobias Grosser | d5d93ec | 2015-06-04 17:59:54 +0000 | [diff] [blame] | 1403 | std::unique_ptr<Region> LastValidRegion; |
| 1404 | auto ExpandedRegion = std::unique_ptr<Region>(R.getExpandedRegion()); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1405 | |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1406 | LLVM_DEBUG(dbgs() << "\tExpanding " << R.getNameStr() << "\n"); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1407 | |
Hongbin Zheng | ed986ab | 2012-04-07 15:14:28 +0000 | [diff] [blame] | 1408 | while (ExpandedRegion) { |
Siddharth Bhat | c0f5f4d | 2017-12-05 00:06:09 +0000 | [diff] [blame] | 1409 | const auto &It = DetectionContextMap.insert(std::make_pair( |
| 1410 | getBBPairForRegion(ExpandedRegion.get()), |
| 1411 | DetectionContext(*ExpandedRegion, AA, false /*verifying*/))); |
Johannes Doerfert | c06b7d6 | 2015-10-07 20:46:06 +0000 | [diff] [blame] | 1412 | DetectionContext &Context = It.first->second; |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1413 | LLVM_DEBUG(dbgs() << "\t\tTrying " << ExpandedRegion->getNameStr() << "\n"); |
Andreas Simbuerger | b379edb | 2014-06-27 06:21:14 +0000 | [diff] [blame] | 1414 | // Only expand when we did not collect errors. |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1415 | |
Johannes Doerfert | 717b866 | 2015-09-08 21:44:27 +0000 | [diff] [blame] | 1416 | if (!Context.Log.hasErrors()) { |
Hongbin Zheng | ed986ab | 2012-04-07 15:14:28 +0000 | [diff] [blame] | 1417 | // If the exit is valid check all blocks |
| 1418 | // - if true, a valid region was found => store it + keep expanding |
| 1419 | // - if false, .tbd. => stop (should this really end the loop?) |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1420 | if (!allBlocksValid(Context) || Context.Log.hasErrors()) { |
| 1421 | removeCachedResults(*ExpandedRegion); |
Michael Kruse | a6cc0d3 | 2016-08-08 22:39:32 +0000 | [diff] [blame] | 1422 | DetectionContextMap.erase(It.first); |
Andreas Simbuerger | b379edb | 2014-06-27 06:21:14 +0000 | [diff] [blame] | 1423 | break; |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1424 | } |
Andreas Simbuerger | b379edb | 2014-06-27 06:21:14 +0000 | [diff] [blame] | 1425 | |
Tobias Grosser | d7e5864 | 2013-04-10 06:55:45 +0000 | [diff] [blame] | 1426 | // Store this region, because it is the greatest valid (encountered so |
| 1427 | // far). |
Michael Kruse | a6cc0d3 | 2016-08-08 22:39:32 +0000 | [diff] [blame] | 1428 | if (LastValidRegion) { |
| 1429 | removeCachedResults(*LastValidRegion); |
| 1430 | DetectionContextMap.erase(getBBPairForRegion(LastValidRegion.get())); |
| 1431 | } |
Tobias Grosser | d5d93ec | 2015-06-04 17:59:54 +0000 | [diff] [blame] | 1432 | LastValidRegion = std::move(ExpandedRegion); |
Hongbin Zheng | ed986ab | 2012-04-07 15:14:28 +0000 | [diff] [blame] | 1433 | |
| 1434 | // Create and test the next greater region (if any) |
Tobias Grosser | d5d93ec | 2015-06-04 17:59:54 +0000 | [diff] [blame] | 1435 | ExpandedRegion = |
| 1436 | std::unique_ptr<Region>(LastValidRegion->getExpandedRegion()); |
Hongbin Zheng | ed986ab | 2012-04-07 15:14:28 +0000 | [diff] [blame] | 1437 | |
| 1438 | } else { |
| 1439 | // Create and test the next greater region (if any) |
Johannes Doerfert | c06b7d6 | 2015-10-07 20:46:06 +0000 | [diff] [blame] | 1440 | removeCachedResults(*ExpandedRegion); |
Michael Kruse | a6cc0d3 | 2016-08-08 22:39:32 +0000 | [diff] [blame] | 1441 | DetectionContextMap.erase(It.first); |
Tobias Grosser | d5d93ec | 2015-06-04 17:59:54 +0000 | [diff] [blame] | 1442 | ExpandedRegion = |
| 1443 | std::unique_ptr<Region>(ExpandedRegion->getExpandedRegion()); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1444 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1445 | } |
| 1446 | |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1447 | LLVM_DEBUG({ |
Tobias Grosser | 378a9f2 | 2013-11-16 19:34:11 +0000 | [diff] [blame] | 1448 | if (LastValidRegion) |
| 1449 | dbgs() << "\tto " << LastValidRegion->getNameStr() << "\n"; |
| 1450 | else |
| 1451 | dbgs() << "\tExpanding " << R.getNameStr() << " failed\n"; |
| 1452 | }); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1453 | |
Tobias Grosser | d5d93ec | 2015-06-04 17:59:54 +0000 | [diff] [blame] | 1454 | return LastValidRegion.release(); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1455 | } |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1456 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1457 | static bool regionWithoutLoops(Region &R, LoopInfo &LI) { |
Tobias Grosser | 2610889 | 2014-04-02 20:18:19 +0000 | [diff] [blame] | 1458 | for (const BasicBlock *BB : R.blocks()) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1459 | if (R.contains(LI.getLoopFor(BB))) |
Sebastian Pop | 2c9ec2e | 2013-06-03 16:35:37 +0000 | [diff] [blame] | 1460 | return false; |
| 1461 | |
| 1462 | return true; |
| 1463 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1464 | |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1465 | void ScopDetection::removeCachedResultsRecursively(const Region &R) { |
David Blaikie | b035f6d | 2014-04-15 18:45:27 +0000 | [diff] [blame] | 1466 | for (auto &SubRegion : R) { |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1467 | if (ValidRegions.count(SubRegion.get())) { |
| 1468 | removeCachedResults(*SubRegion.get()); |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1469 | } else |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1470 | removeCachedResultsRecursively(*SubRegion); |
Tobias Grosser | 28a70c5 | 2014-01-29 19:05:30 +0000 | [diff] [blame] | 1471 | } |
Tobias Grosser | 28a70c5 | 2014-01-29 19:05:30 +0000 | [diff] [blame] | 1472 | } |
| 1473 | |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1474 | void ScopDetection::removeCachedResults(const Region &R) { |
| 1475 | ValidRegions.remove(&R); |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1476 | } |
| 1477 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1478 | void ScopDetection::findScops(Region &R) { |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 1479 | const auto &It = DetectionContextMap.insert(std::make_pair( |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1480 | getBBPairForRegion(&R), DetectionContext(R, AA, false /*verifying*/))); |
Johannes Doerfert | c06b7d6 | 2015-10-07 20:46:06 +0000 | [diff] [blame] | 1481 | DetectionContext &Context = It.first->second; |
Johannes Doerfert | 6a4d81c | 2015-03-08 15:11:50 +0000 | [diff] [blame] | 1482 | |
| 1483 | bool RegionIsValid = false; |
Michael Kruse | 0b56681 | 2016-02-29 16:54:18 +0000 | [diff] [blame] | 1484 | if (!PollyProcessUnprofitable && regionWithoutLoops(R, LI)) |
Johannes Doerfert | 6a4d81c | 2015-03-08 15:11:50 +0000 | [diff] [blame] | 1485 | invalid<ReportUnprofitable>(Context, /*Assert=*/true, &R); |
Michael Kruse | 0b56681 | 2016-02-29 16:54:18 +0000 | [diff] [blame] | 1486 | else |
Johannes Doerfert | 6a4d81c | 2015-03-08 15:11:50 +0000 | [diff] [blame] | 1487 | RegionIsValid = isValidRegion(Context); |
| 1488 | |
Johannes Doerfert | 3f1c285 | 2015-02-19 18:11:50 +0000 | [diff] [blame] | 1489 | bool HasErrors = !RegionIsValid || Context.Log.size() > 0; |
Andreas Simbuerger | 0447240 | 2014-05-24 09:25:10 +0000 | [diff] [blame] | 1490 | |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1491 | if (HasErrors) { |
| 1492 | removeCachedResults(R); |
| 1493 | } else { |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1494 | ValidRegions.insert(&R); |
| 1495 | return; |
| 1496 | } |
| 1497 | |
David Blaikie | b035f6d | 2014-04-15 18:45:27 +0000 | [diff] [blame] | 1498 | for (auto &SubRegion : R) |
Tobias Grosser | 00dc309 | 2014-03-02 12:02:46 +0000 | [diff] [blame] | 1499 | findScops(*SubRegion); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1500 | |
| 1501 | // Try to expand regions. |
| 1502 | // |
| 1503 | // As the region tree normally only contains canonical regions, non canonical |
| 1504 | // regions that form a Scop are not found. Therefore, those non canonical |
| 1505 | // regions are checked by expanding the canonical ones. |
| 1506 | |
Tobias Grosser | 0d1eee3 | 2013-02-05 11:56:05 +0000 | [diff] [blame] | 1507 | std::vector<Region *> ToExpand; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1508 | |
David Blaikie | b035f6d | 2014-04-15 18:45:27 +0000 | [diff] [blame] | 1509 | for (auto &SubRegion : R) |
| 1510 | ToExpand.push_back(SubRegion.get()); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1511 | |
Tobias Grosser | 2610889 | 2014-04-02 20:18:19 +0000 | [diff] [blame] | 1512 | for (Region *CurrentRegion : ToExpand) { |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1513 | // Skip invalid regions. Regions may become invalid, if they are element of |
| 1514 | // an already expanded region. |
David Peixotto | 8da2b93 | 2014-10-22 20:39:07 +0000 | [diff] [blame] | 1515 | if (!ValidRegions.count(CurrentRegion)) |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1516 | continue; |
| 1517 | |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 1518 | // Skip regions that had errors. |
| 1519 | bool HadErrors = lookupRejectionLog(CurrentRegion)->hasErrors(); |
| 1520 | if (HadErrors) |
| 1521 | continue; |
| 1522 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1523 | Region *ExpandedR = expandRegion(*CurrentRegion); |
| 1524 | |
| 1525 | if (!ExpandedR) |
| 1526 | continue; |
| 1527 | |
| 1528 | R.addSubRegion(ExpandedR, true); |
| 1529 | ValidRegions.insert(ExpandedR); |
Johannes Doerfert | e46925f | 2015-10-01 10:59:14 +0000 | [diff] [blame] | 1530 | removeCachedResults(*CurrentRegion); |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1531 | removeCachedResultsRecursively(*ExpandedR); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1532 | } |
| 1533 | } |
| 1534 | |
| 1535 | bool ScopDetection::allBlocksValid(DetectionContext &Context) const { |
Johannes Doerfert | fb79a96 | 2015-02-23 14:18:28 +0000 | [diff] [blame] | 1536 | Region &CurRegion = Context.CurRegion; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1537 | |
Johannes Doerfert | fb79a96 | 2015-02-23 14:18:28 +0000 | [diff] [blame] | 1538 | for (const BasicBlock *BB : CurRegion.blocks()) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1539 | Loop *L = LI.getLoopFor(BB); |
Tobias Grosser | a3aa423 | 2017-07-15 22:42:17 +0000 | [diff] [blame] | 1540 | if (L && L->getHeader() == BB) { |
| 1541 | if (CurRegion.contains(L)) { |
| 1542 | if (!isValidLoop(L, Context) && !KeepGoing) |
| 1543 | return false; |
| 1544 | } else { |
| 1545 | SmallVector<BasicBlock *, 1> Latches; |
| 1546 | L->getLoopLatches(Latches); |
| 1547 | for (BasicBlock *Latch : Latches) |
| 1548 | if (CurRegion.contains(Latch)) |
| 1549 | return invalid<ReportLoopOnlySomeLatches>(Context, /*Assert=*/true, |
| 1550 | L); |
| 1551 | } |
| 1552 | } |
Sebastian Pop | b88ea5e | 2013-06-11 22:20:32 +0000 | [diff] [blame] | 1553 | } |
| 1554 | |
Johannes Doerfert | 90db75e | 2015-09-10 17:51:27 +0000 | [diff] [blame] | 1555 | for (BasicBlock *BB : CurRegion.blocks()) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1556 | bool IsErrorBlock = isErrorBlock(*BB, CurRegion, LI, DT); |
Tobias Grosser | b76cd3c | 2015-11-11 08:42:20 +0000 | [diff] [blame] | 1557 | |
| 1558 | // Also check exception blocks (and possibly register them as non-affine |
| 1559 | // regions). Even though exception blocks are not modeled, we use them |
| 1560 | // to forward-propagate domain constraints during ScopInfo construction. |
| 1561 | if (!isValidCFG(*BB, false, IsErrorBlock, Context) && !KeepGoing) |
| 1562 | return false; |
| 1563 | |
| 1564 | if (IsErrorBlock) |
Johannes Doerfert | 90db75e | 2015-09-10 17:51:27 +0000 | [diff] [blame] | 1565 | continue; |
| 1566 | |
Tobias Grosser | 1d19190 | 2014-03-03 13:13:55 +0000 | [diff] [blame] | 1567 | for (BasicBlock::iterator I = BB->begin(), E = --BB->end(); I != E; ++I) |
Andreas Simbuerger | 0447240 | 2014-05-24 09:25:10 +0000 | [diff] [blame] | 1568 | if (!isValidInstruction(*I, Context) && !KeepGoing) |
Sebastian Pop | 8ca899c | 2013-06-14 20:20:43 +0000 | [diff] [blame] | 1569 | return false; |
Johannes Doerfert | 90db75e | 2015-09-10 17:51:27 +0000 | [diff] [blame] | 1570 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1571 | |
Sebastian Pop | e8863b8 | 2014-05-12 19:02:02 +0000 | [diff] [blame] | 1572 | if (!hasAffineMemoryAccesses(Context)) |
Sebastian Pop | 46e1ecd | 2014-05-09 22:45:15 +0000 | [diff] [blame] | 1573 | return false; |
| 1574 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1575 | return true; |
| 1576 | } |
| 1577 | |
Tobias Grosser | c1a269b | 2015-12-21 21:00:43 +0000 | [diff] [blame] | 1578 | bool ScopDetection::hasSufficientCompute(DetectionContext &Context, |
| 1579 | int NumLoops) const { |
| 1580 | int InstCount = 0; |
| 1581 | |
Tobias Grosser | b316dc1 | 2016-09-08 14:08:05 +0000 | [diff] [blame] | 1582 | if (NumLoops == 0) |
| 1583 | return false; |
| 1584 | |
Tobias Grosser | c1a269b | 2015-12-21 21:00:43 +0000 | [diff] [blame] | 1585 | for (auto *BB : Context.CurRegion.blocks()) |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1586 | if (Context.CurRegion.contains(LI.getLoopFor(BB))) |
Tobias Grosser | c6424ae | 2015-12-22 17:38:59 +0000 | [diff] [blame] | 1587 | InstCount += BB->size(); |
Tobias Grosser | c1a269b | 2015-12-21 21:00:43 +0000 | [diff] [blame] | 1588 | |
| 1589 | InstCount = InstCount / NumLoops; |
| 1590 | |
| 1591 | return InstCount >= ProfitabilityMinPerLoopInstructions; |
| 1592 | } |
| 1593 | |
Johannes Doerfert | bf9473b | 2016-05-10 14:42:30 +0000 | [diff] [blame] | 1594 | bool ScopDetection::hasPossiblyDistributableLoop( |
| 1595 | DetectionContext &Context) const { |
| 1596 | for (auto *BB : Context.CurRegion.blocks()) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1597 | auto *L = LI.getLoopFor(BB); |
Johannes Doerfert | bf9473b | 2016-05-10 14:42:30 +0000 | [diff] [blame] | 1598 | if (!Context.CurRegion.contains(L)) |
| 1599 | continue; |
| 1600 | if (Context.BoxedLoopsSet.count(L)) |
| 1601 | continue; |
| 1602 | unsigned StmtsWithStoresInLoops = 0; |
| 1603 | for (auto *LBB : L->blocks()) { |
| 1604 | bool MemStore = false; |
| 1605 | for (auto &I : *LBB) |
| 1606 | MemStore |= isa<StoreInst>(&I); |
| 1607 | StmtsWithStoresInLoops += MemStore; |
| 1608 | } |
| 1609 | return (StmtsWithStoresInLoops > 1); |
| 1610 | } |
| 1611 | return false; |
| 1612 | } |
| 1613 | |
Tobias Grosser | 97fc5bb | 2015-12-21 12:14:48 +0000 | [diff] [blame] | 1614 | bool ScopDetection::isProfitableRegion(DetectionContext &Context) const { |
| 1615 | Region &CurRegion = Context.CurRegion; |
| 1616 | |
| 1617 | if (PollyProcessUnprofitable) |
| 1618 | return true; |
| 1619 | |
| 1620 | // We can probably not do a lot on scops that only write or only read |
| 1621 | // data. |
| 1622 | if (!Context.hasStores || !Context.hasLoads) |
| 1623 | return invalid<ReportUnprofitable>(Context, /*Assert=*/true, &CurRegion); |
| 1624 | |
Tobias Grosser | cd01a36 | 2017-02-17 08:12:36 +0000 | [diff] [blame] | 1625 | int NumLoops = |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1626 | countBeneficialLoops(&CurRegion, SE, LI, MIN_LOOP_TRIP_COUNT).NumLoops; |
Tobias Grosser | 97fc5bb | 2015-12-21 12:14:48 +0000 | [diff] [blame] | 1627 | int NumAffineLoops = NumLoops - Context.BoxedLoopsSet.size(); |
Tobias Grosser | 97fc5bb | 2015-12-21 12:14:48 +0000 | [diff] [blame] | 1628 | |
Tobias Grosser | c1a269b | 2015-12-21 21:00:43 +0000 | [diff] [blame] | 1629 | // Scops with at least two loops may allow either loop fusion or tiling and |
| 1630 | // are consequently interesting to look at. |
| 1631 | if (NumAffineLoops >= 2) |
| 1632 | return true; |
| 1633 | |
Michael Kruse | a6d48f5 | 2017-06-08 12:06:15 +0000 | [diff] [blame] | 1634 | // A loop with multiple non-trivial blocks might be amendable to distribution. |
Johannes Doerfert | bf9473b | 2016-05-10 14:42:30 +0000 | [diff] [blame] | 1635 | if (NumAffineLoops == 1 && hasPossiblyDistributableLoop(Context)) |
| 1636 | return true; |
| 1637 | |
Tobias Grosser | c1a269b | 2015-12-21 21:00:43 +0000 | [diff] [blame] | 1638 | // Scops that contain a loop with a non-trivial amount of computation per |
| 1639 | // loop-iteration are interesting as we may be able to parallelize such |
| 1640 | // loops. Individual loops that have only a small amount of computation |
| 1641 | // per-iteration are performance-wise very fragile as any change to the |
| 1642 | // loop induction variables may affect performance. To not cause spurious |
| 1643 | // performance regressions, we do not consider such loops. |
| 1644 | if (NumAffineLoops == 1 && hasSufficientCompute(Context, NumLoops)) |
| 1645 | return true; |
| 1646 | |
| 1647 | return invalid<ReportUnprofitable>(Context, /*Assert=*/true, &CurRegion); |
Tobias Grosser | 97fc5bb | 2015-12-21 12:14:48 +0000 | [diff] [blame] | 1648 | } |
| 1649 | |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1650 | bool ScopDetection::isValidRegion(DetectionContext &Context) const { |
Johannes Doerfert | fb79a96 | 2015-02-23 14:18:28 +0000 | [diff] [blame] | 1651 | Region &CurRegion = Context.CurRegion; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1652 | |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1653 | LLVM_DEBUG(dbgs() << "Checking region: " << CurRegion.getNameStr() << "\n\t"); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1654 | |
Siddharth Bhat | b46847c | 2017-08-17 21:57:23 +0000 | [diff] [blame] | 1655 | if (!PollyAllowFullFunction && CurRegion.isTopLevelRegion()) { |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1656 | LLVM_DEBUG(dbgs() << "Top level region is invalid\n"); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1657 | return false; |
| 1658 | } |
| 1659 | |
Tobias Grosser | 134a572 | 2017-03-07 15:50:43 +0000 | [diff] [blame] | 1660 | DebugLoc DbgLoc; |
Philip Pfaffe | 1a0128f | 2017-05-24 18:39:39 +0000 | [diff] [blame] | 1661 | if (CurRegion.getExit() && |
| 1662 | isa<UnreachableInst>(CurRegion.getExit()->getTerminator())) { |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1663 | LLVM_DEBUG(dbgs() << "Unreachable in exit\n"); |
Tobias Grosser | 134a572 | 2017-03-07 15:50:43 +0000 | [diff] [blame] | 1664 | return invalid<ReportUnreachableInExit>(Context, /*Assert=*/true, |
| 1665 | CurRegion.getExit(), DbgLoc); |
| 1666 | } |
| 1667 | |
Johannes Doerfert | fb79a96 | 2015-02-23 14:18:28 +0000 | [diff] [blame] | 1668 | if (!CurRegion.getEntry()->getName().count(OnlyRegion)) { |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1669 | LLVM_DEBUG({ |
Tobias Grosser | 4449e52 | 2014-01-27 14:24:53 +0000 | [diff] [blame] | 1670 | dbgs() << "Region entry does not match -polly-region-only"; |
| 1671 | dbgs() << "\n"; |
| 1672 | }); |
| 1673 | return false; |
| 1674 | } |
| 1675 | |
Tobias Grosser | d654c25 | 2012-04-10 18:12:19 +0000 | [diff] [blame] | 1676 | // SCoP cannot contain the entry block of the function, because we need |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1677 | // to insert alloca instruction there when translate scalar to array. |
Siddharth Bhat | b46847c | 2017-08-17 21:57:23 +0000 | [diff] [blame] | 1678 | if (!PollyAllowFullFunction && |
Tobias Grosser | d8945ba | 2017-05-19 12:13:02 +0000 | [diff] [blame] | 1679 | CurRegion.getEntry() == |
| 1680 | &(CurRegion.getEntry()->getParent()->getEntryBlock())) |
Johannes Doerfert | fb79a96 | 2015-02-23 14:18:28 +0000 | [diff] [blame] | 1681 | return invalid<ReportEntry>(Context, /*Assert=*/true, CurRegion.getEntry()); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1682 | |
Hongbin Zheng | 94868e6 | 2012-04-07 12:29:17 +0000 | [diff] [blame] | 1683 | if (!allBlocksValid(Context)) |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1684 | return false; |
| 1685 | |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1686 | if (!isReducibleRegion(CurRegion, DbgLoc)) |
| 1687 | return invalid<ReportIrreducibleRegion>(Context, /*Assert=*/true, |
| 1688 | &CurRegion, DbgLoc); |
| 1689 | |
Nicola Zaghen | 349506a | 2018-05-15 13:37:17 +0000 | [diff] [blame] | 1690 | LLVM_DEBUG(dbgs() << "OK\n"); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1691 | return true; |
| 1692 | } |
| 1693 | |
Tobias Grosser | 629109b | 2016-08-03 12:00:07 +0000 | [diff] [blame] | 1694 | void ScopDetection::markFunctionAsInvalid(Function *F) { |
Johannes Doerfert | 43e1ead | 2014-07-15 21:06:48 +0000 | [diff] [blame] | 1695 | F->addFnAttr(PollySkipFnAttr); |
| 1696 | } |
| 1697 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1698 | bool ScopDetection::isValidFunction(Function &F) { |
Johannes Doerfert | 43e1ead | 2014-07-15 21:06:48 +0000 | [diff] [blame] | 1699 | return !F.hasFnAttribute(PollySkipFnAttr); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1700 | } |
| 1701 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1702 | void ScopDetection::printLocations(Function &F) { |
Tobias Grosser | 2610889 | 2014-04-02 20:18:19 +0000 | [diff] [blame] | 1703 | for (const Region *R : *this) { |
Tobias Grosser | 531891e | 2012-11-01 16:45:20 +0000 | [diff] [blame] | 1704 | unsigned LineEntry, LineExit; |
| 1705 | std::string FileName; |
| 1706 | |
Tobias Grosser | 00dc309 | 2014-03-02 12:02:46 +0000 | [diff] [blame] | 1707 | getDebugLocation(R, LineEntry, LineExit, FileName); |
Tobias Grosser | 8519f89 | 2013-12-18 10:49:53 +0000 | [diff] [blame] | 1708 | DiagnosticScopFound Diagnostic(F, FileName, LineEntry, LineExit); |
| 1709 | F.getContext().diagnose(Diagnostic); |
Tobias Grosser | 531891e | 2012-11-01 16:45:20 +0000 | [diff] [blame] | 1710 | } |
| 1711 | } |
| 1712 | |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 1713 | void ScopDetection::emitMissedRemarks(const Function &F) { |
| 1714 | for (auto &DIt : DetectionContextMap) { |
| 1715 | auto &DC = DIt.getSecond(); |
| 1716 | if (DC.Log.hasErrors()) |
Eli Friedman | e737fc1 | 2017-07-17 23:58:33 +0000 | [diff] [blame] | 1717 | emitRejectionRemarks(DIt.getFirst(), DC.Log, ORE); |
Andreas Simbuerger | 5569bf3 | 2014-06-26 10:06:40 +0000 | [diff] [blame] | 1718 | } |
| 1719 | } |
| 1720 | |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1721 | bool ScopDetection::isReducibleRegion(Region &R, DebugLoc &DbgLoc) const { |
Tobias Grosser | c80d697 | 2016-09-02 06:33:33 +0000 | [diff] [blame] | 1722 | /// Enum for coloring BBs in Region. |
Tobias Grosser | ef6ae70 | 2016-06-11 09:00:37 +0000 | [diff] [blame] | 1723 | /// |
| 1724 | /// WHITE - Unvisited BB in DFS walk. |
| 1725 | /// GREY - BBs which are currently on the DFS stack for processing. |
| 1726 | /// BLACK - Visited and completely processed BB. |
| 1727 | enum Color { WHITE, GREY, BLACK }; |
| 1728 | |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1729 | BasicBlock *REntry = R.getEntry(); |
| 1730 | BasicBlock *RExit = R.getExit(); |
| 1731 | // Map to match the color of a BasicBlock during the DFS walk. |
| 1732 | DenseMap<const BasicBlock *, Color> BBColorMap; |
| 1733 | // Stack keeping track of current BB and index of next child to be processed. |
| 1734 | std::stack<std::pair<BasicBlock *, unsigned>> DFSStack; |
| 1735 | |
| 1736 | unsigned AdjacentBlockIndex = 0; |
| 1737 | BasicBlock *CurrBB, *SuccBB; |
| 1738 | CurrBB = REntry; |
| 1739 | |
| 1740 | // Initialize the map for all BB with WHITE color. |
| 1741 | for (auto *BB : R.blocks()) |
Johannes Doerfert | 469db6a | 2016-05-19 12:36:43 +0000 | [diff] [blame] | 1742 | BBColorMap[BB] = WHITE; |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1743 | |
| 1744 | // Process the entry block of the Region. |
Johannes Doerfert | 469db6a | 2016-05-19 12:36:43 +0000 | [diff] [blame] | 1745 | BBColorMap[CurrBB] = GREY; |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1746 | DFSStack.push(std::make_pair(CurrBB, 0)); |
| 1747 | |
| 1748 | while (!DFSStack.empty()) { |
| 1749 | // Get next BB on stack to be processed. |
| 1750 | CurrBB = DFSStack.top().first; |
| 1751 | AdjacentBlockIndex = DFSStack.top().second; |
| 1752 | DFSStack.pop(); |
| 1753 | |
| 1754 | // Loop to iterate over the successors of current BB. |
| 1755 | const TerminatorInst *TInst = CurrBB->getTerminator(); |
| 1756 | unsigned NSucc = TInst->getNumSuccessors(); |
| 1757 | for (unsigned I = AdjacentBlockIndex; I < NSucc; |
| 1758 | ++I, ++AdjacentBlockIndex) { |
| 1759 | SuccBB = TInst->getSuccessor(I); |
| 1760 | |
| 1761 | // Checks for region exit block and self-loops in BB. |
| 1762 | if (SuccBB == RExit || SuccBB == CurrBB) |
| 1763 | continue; |
| 1764 | |
| 1765 | // WHITE indicates an unvisited BB in DFS walk. |
Johannes Doerfert | 469db6a | 2016-05-19 12:36:43 +0000 | [diff] [blame] | 1766 | if (BBColorMap[SuccBB] == WHITE) { |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1767 | // Push the current BB and the index of the next child to be visited. |
| 1768 | DFSStack.push(std::make_pair(CurrBB, I + 1)); |
| 1769 | // Push the next BB to be processed. |
| 1770 | DFSStack.push(std::make_pair(SuccBB, 0)); |
| 1771 | // First time the BB is being processed. |
Johannes Doerfert | 469db6a | 2016-05-19 12:36:43 +0000 | [diff] [blame] | 1772 | BBColorMap[SuccBB] = GREY; |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1773 | break; |
Johannes Doerfert | 469db6a | 2016-05-19 12:36:43 +0000 | [diff] [blame] | 1774 | } else if (BBColorMap[SuccBB] == GREY) { |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1775 | // GREY indicates a loop in the control flow. |
| 1776 | // If the destination dominates the source, it is a natural loop |
| 1777 | // else, an irreducible control flow in the region is detected. |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1778 | if (!DT.dominates(SuccBB, CurrBB)) { |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1779 | // Get debug info of instruction which causes irregular control flow. |
| 1780 | DbgLoc = TInst->getDebugLoc(); |
| 1781 | return false; |
| 1782 | } |
| 1783 | } |
| 1784 | } |
| 1785 | |
| 1786 | // If all children of current BB have been processed, |
| 1787 | // then mark that BB as fully processed. |
| 1788 | if (AdjacentBlockIndex == NSucc) |
Johannes Doerfert | 469db6a | 2016-05-19 12:36:43 +0000 | [diff] [blame] | 1789 | BBColorMap[CurrBB] = BLACK; |
Tobias Grosser | 1c3a6d7 | 2016-01-22 09:44:37 +0000 | [diff] [blame] | 1790 | } |
| 1791 | |
| 1792 | return true; |
| 1793 | } |
| 1794 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1795 | static void updateLoopCountStatistic(ScopDetection::LoopStats Stats, |
| 1796 | bool OnlyProfitable) { |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1797 | if (!OnlyProfitable) { |
| 1798 | NumLoopsInScop += Stats.NumLoops; |
Tobias Grosser | 9fe37df | 2017-02-12 10:52:57 +0000 | [diff] [blame] | 1799 | MaxNumLoopsInScop = |
| 1800 | std::max(MaxNumLoopsInScop.getValue(), (unsigned)Stats.NumLoops); |
Tobias Grosser | fcc3ad5 | 2018-04-18 20:03:36 +0000 | [diff] [blame] | 1801 | if (Stats.MaxDepth == 0) |
| 1802 | NumScopsDepthZero++; |
| 1803 | else if (Stats.MaxDepth == 1) |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1804 | NumScopsDepthOne++; |
| 1805 | else if (Stats.MaxDepth == 2) |
| 1806 | NumScopsDepthTwo++; |
| 1807 | else if (Stats.MaxDepth == 3) |
| 1808 | NumScopsDepthThree++; |
| 1809 | else if (Stats.MaxDepth == 4) |
| 1810 | NumScopsDepthFour++; |
| 1811 | else if (Stats.MaxDepth == 5) |
| 1812 | NumScopsDepthFive++; |
| 1813 | else |
| 1814 | NumScopsDepthLarger++; |
| 1815 | } else { |
| 1816 | NumLoopsInProfScop += Stats.NumLoops; |
Tobias Grosser | 9fe37df | 2017-02-12 10:52:57 +0000 | [diff] [blame] | 1817 | MaxNumLoopsInProfScop = |
| 1818 | std::max(MaxNumLoopsInProfScop.getValue(), (unsigned)Stats.NumLoops); |
Tobias Grosser | fcc3ad5 | 2018-04-18 20:03:36 +0000 | [diff] [blame] | 1819 | if (Stats.MaxDepth == 0) |
| 1820 | NumProfScopsDepthZero++; |
| 1821 | else if (Stats.MaxDepth == 1) |
Tobias Grosser | b45ae56 | 2016-11-26 07:37:46 +0000 | [diff] [blame] | 1822 | NumProfScopsDepthOne++; |
| 1823 | else if (Stats.MaxDepth == 2) |
| 1824 | NumProfScopsDepthTwo++; |
| 1825 | else if (Stats.MaxDepth == 3) |
| 1826 | NumProfScopsDepthThree++; |
| 1827 | else if (Stats.MaxDepth == 4) |
| 1828 | NumProfScopsDepthFour++; |
| 1829 | else if (Stats.MaxDepth == 5) |
| 1830 | NumProfScopsDepthFive++; |
| 1831 | else |
| 1832 | NumProfScopsDepthLarger++; |
| 1833 | } |
| 1834 | } |
| 1835 | |
Johannes Doerfert | 1dafea4 | 2016-05-23 09:07:08 +0000 | [diff] [blame] | 1836 | ScopDetection::DetectionContext * |
Johannes Doerfert | c06b7d6 | 2015-10-07 20:46:06 +0000 | [diff] [blame] | 1837 | ScopDetection::getDetectionContext(const Region *R) const { |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 1838 | auto DCMIt = DetectionContextMap.find(getBBPairForRegion(R)); |
Johannes Doerfert | c06b7d6 | 2015-10-07 20:46:06 +0000 | [diff] [blame] | 1839 | if (DCMIt == DetectionContextMap.end()) |
| 1840 | return nullptr; |
| 1841 | return &DCMIt->second; |
Johannes Doerfert | ba65c16 | 2015-02-24 11:45:21 +0000 | [diff] [blame] | 1842 | } |
| 1843 | |
Johannes Doerfert | 6c7639b | 2016-05-12 18:50:01 +0000 | [diff] [blame] | 1844 | const RejectLog *ScopDetection::lookupRejectionLog(const Region *R) const { |
| 1845 | const DetectionContext *DC = getDetectionContext(R); |
| 1846 | return DC ? &DC->Log : nullptr; |
| 1847 | } |
| 1848 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1849 | void ScopDetection::verifyRegion(const Region &R) const { |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1850 | assert(isMaxRegionInScop(R) && "Expect R is a valid region."); |
Johannes Doerfert | f3e98f4 | 2015-04-12 22:52:20 +0000 | [diff] [blame] | 1851 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1852 | DetectionContext Context(const_cast<Region &>(R), AA, true /*verifying*/); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1853 | isValidRegion(Context); |
| 1854 | } |
| 1855 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1856 | void ScopDetection::verifyAnalysis() const { |
Tobias Grosser | a168993 | 2014-02-18 18:49:49 +0000 | [diff] [blame] | 1857 | if (!VerifyScops) |
| 1858 | return; |
| 1859 | |
Tobias Grosser | 2610889 | 2014-04-02 20:18:19 +0000 | [diff] [blame] | 1860 | for (const Region *R : ValidRegions) |
Tobias Grosser | 00dc309 | 2014-03-02 12:02:46 +0000 | [diff] [blame] | 1861 | verifyRegion(*R); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1862 | } |
| 1863 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1864 | bool ScopDetectionWrapperPass::runOnFunction(Function &F) { |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1865 | auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
| 1866 | auto &RI = getAnalysis<RegionInfoPass>().getRegionInfo(); |
| 1867 | auto &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); |
| 1868 | auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE(); |
| 1869 | auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Eli Friedman | e737fc1 | 2017-07-17 23:58:33 +0000 | [diff] [blame] | 1870 | auto &ORE = getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE(); |
| 1871 | Result.reset(new ScopDetection(F, DT, SE, LI, RI, AA, ORE)); |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1872 | return false; |
| 1873 | } |
| 1874 | |
| 1875 | void ScopDetectionWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { |
Chandler Carruth | f557987 | 2015-01-17 14:16:56 +0000 | [diff] [blame] | 1876 | AU.addRequired<LoopInfoWrapperPass>(); |
Michael Kruse | 6a19d59 | 2016-10-17 13:29:20 +0000 | [diff] [blame] | 1877 | AU.addRequiredTransitive<ScalarEvolutionWrapperPass>(); |
Johannes Doerfert | 08d90a3 | 2015-10-07 20:32:43 +0000 | [diff] [blame] | 1878 | AU.addRequired<DominatorTreeWrapperPass>(); |
Eli Friedman | e737fc1 | 2017-07-17 23:58:33 +0000 | [diff] [blame] | 1879 | AU.addRequired<OptimizationRemarkEmitterWrapperPass>(); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1880 | // We also need AA and RegionInfo when we are verifying analysis. |
Chandler Carruth | 66ef16b | 2015-09-09 22:13:56 +0000 | [diff] [blame] | 1881 | AU.addRequiredTransitive<AAResultsWrapperPass>(); |
Matt Arsenault | 8ca3681 | 2014-07-19 18:40:17 +0000 | [diff] [blame] | 1882 | AU.addRequiredTransitive<RegionInfoPass>(); |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1883 | AU.setPreservesAll(); |
| 1884 | } |
| 1885 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1886 | void ScopDetectionWrapperPass::print(raw_ostream &OS, const Module *) const { |
| 1887 | for (const Region *R : Result->ValidRegions) |
Tobias Grosser | 00dc309 | 2014-03-02 12:02:46 +0000 | [diff] [blame] | 1888 | OS << "Valid Region for Scop: " << R->getNameStr() << '\n'; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1889 | |
| 1890 | OS << "\n"; |
| 1891 | } |
| 1892 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1893 | ScopDetectionWrapperPass::ScopDetectionWrapperPass() : FunctionPass(ID) { |
| 1894 | // Disable runtime alias checks if we ignore aliasing all together. |
| 1895 | if (IgnoreAliasing) |
| 1896 | PollyUseRuntimeAliasChecks = false; |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1897 | } |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1898 | |
Philip Pfaffe | f5a4394 | 2017-08-02 11:08:01 +0000 | [diff] [blame] | 1899 | ScopAnalysis::ScopAnalysis() { |
| 1900 | // Disable runtime alias checks if we ignore aliasing all together. |
| 1901 | if (IgnoreAliasing) |
| 1902 | PollyUseRuntimeAliasChecks = false; |
| 1903 | } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1904 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1905 | void ScopDetectionWrapperPass::releaseMemory() { Result.reset(); } |
Tobias Grosser | 7580537 | 2011-04-29 06:27:02 +0000 | [diff] [blame] | 1906 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1907 | char ScopDetectionWrapperPass::ID; |
Tobias Grosser | 4d96c8d | 2013-03-23 01:05:07 +0000 | [diff] [blame] | 1908 | |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1909 | AnalysisKey ScopAnalysis::Key; |
| 1910 | |
| 1911 | ScopDetection ScopAnalysis::run(Function &F, FunctionAnalysisManager &FAM) { |
| 1912 | auto &LI = FAM.getResult<LoopAnalysis>(F); |
| 1913 | auto &RI = FAM.getResult<RegionInfoAnalysis>(F); |
| 1914 | auto &AA = FAM.getResult<AAManager>(F); |
| 1915 | auto &SE = FAM.getResult<ScalarEvolutionAnalysis>(F); |
| 1916 | auto &DT = FAM.getResult<DominatorTreeAnalysis>(F); |
Eli Friedman | e737fc1 | 2017-07-17 23:58:33 +0000 | [diff] [blame] | 1917 | auto &ORE = FAM.getResult<OptimizationRemarkEmitterAnalysis>(F); |
| 1918 | return {F, DT, SE, LI, RI, AA, ORE}; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1919 | } |
| 1920 | |
| 1921 | PreservedAnalyses ScopAnalysisPrinterPass::run(Function &F, |
| 1922 | FunctionAnalysisManager &FAM) { |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1923 | OS << "Detected Scops in Function " << F.getName() << "\n"; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1924 | auto &SD = FAM.getResult<ScopAnalysis>(F); |
| 1925 | for (const Region *R : SD.ValidRegions) |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1926 | OS << "Valid Region for Scop: " << R->getNameStr() << '\n'; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1927 | |
Eugene Zelenko | a32707d | 2017-08-25 21:35:27 +0000 | [diff] [blame] | 1928 | OS << "\n"; |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1929 | return PreservedAnalyses::all(); |
| 1930 | } |
| 1931 | |
| 1932 | Pass *polly::createScopDetectionWrapperPassPass() { |
| 1933 | return new ScopDetectionWrapperPass(); |
| 1934 | } |
| 1935 | |
| 1936 | INITIALIZE_PASS_BEGIN(ScopDetectionWrapperPass, "polly-detect", |
Tobias Grosser | 73600b8 | 2011-10-08 00:30:40 +0000 | [diff] [blame] | 1937 | "Polly - Detect static control parts (SCoPs)", false, |
Tobias Grosser | 4d96c8d | 2013-03-23 01:05:07 +0000 | [diff] [blame] | 1938 | false); |
Chandler Carruth | 66ef16b | 2015-09-09 22:13:56 +0000 | [diff] [blame] | 1939 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass); |
Chandler Carruth | f557987 | 2015-01-17 14:16:56 +0000 | [diff] [blame] | 1940 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass); |
Matt Arsenault | 8ca3681 | 2014-07-19 18:40:17 +0000 | [diff] [blame] | 1941 | INITIALIZE_PASS_DEPENDENCY(RegionInfoPass); |
Johannes Doerfert | 08d90a3 | 2015-10-07 20:32:43 +0000 | [diff] [blame] | 1942 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass); |
Tobias Grosser | c5bcf24 | 2015-08-17 10:57:08 +0000 | [diff] [blame] | 1943 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass); |
Eli Friedman | e737fc1 | 2017-07-17 23:58:33 +0000 | [diff] [blame] | 1944 | INITIALIZE_PASS_DEPENDENCY(OptimizationRemarkEmitterWrapperPass); |
Philip Pfaffe | 5cc87e3 | 2017-05-12 14:37:29 +0000 | [diff] [blame] | 1945 | INITIALIZE_PASS_END(ScopDetectionWrapperPass, "polly-detect", |
Tobias Grosser | 73600b8 | 2011-10-08 00:30:40 +0000 | [diff] [blame] | 1946 | "Polly - Detect static control parts (SCoPs)", false, false) |