blob: 87898df5ec15df567aa3636bf860a19230c995e1 [file] [log] [blame]
Eugene Zelenko5adb96c2017-10-26 00:55:39 +00001//===- LoopVersioningLICM.cpp - LICM Loop Versioning ----------------------===//
Ashutosh Nemadf6763a2016-02-06 07:47:48 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Ashutosh Nemadf6763a2016-02-06 07:47:48 +00006//
7//===----------------------------------------------------------------------===//
8//
9// When alias analysis is uncertain about the aliasing between any two accesses,
10// it will return MayAlias. This uncertainty from alias analysis restricts LICM
11// from proceeding further. In cases where alias analysis is uncertain we might
12// use loop versioning as an alternative.
13//
14// Loop Versioning will create a version of the loop with aggressive aliasing
15// assumptions in addition to the original with conservative (default) aliasing
16// assumptions. The version of the loop making aggressive aliasing assumptions
17// will have all the memory accesses marked as no-alias. These two versions of
18// loop will be preceded by a memory runtime check. This runtime check consists
19// of bound checks for all unique memory accessed in loop, and it ensures the
20// lack of memory aliasing. The result of the runtime check determines which of
21// the loop versions is executed: If the runtime check detects any memory
22// aliasing, then the original loop is executed. Otherwise, the version with
23// aggressive aliasing assumptions is used.
24//
25// Following are the top level steps:
26//
27// a) Perform LoopVersioningLICM's feasibility check.
28// b) If loop is a candidate for versioning then create a memory bound check,
29// by considering all the memory accesses in loop body.
30// c) Clone original loop and set all memory accesses as no-alias in new loop.
31// d) Set original loop & versioned loop as a branch target of the runtime check
32// result.
33//
34// It transforms loop as shown below:
35//
36// +----------------+
37// |Runtime Memcheck|
38// +----------------+
39// |
40// +----------+----------------+----------+
41// | |
42// +---------+----------+ +-----------+----------+
43// |Orig Loop Preheader | |Cloned Loop Preheader |
44// +--------------------+ +----------------------+
45// | |
46// +--------------------+ +----------------------+
47// |Orig Loop Body | |Cloned Loop Body |
48// +--------------------+ +----------------------+
49// | |
50// +--------------------+ +----------------------+
Ashutosh Nema2260a3a2016-02-11 09:23:53 +000051// |Orig Loop Exit Block| |Cloned Loop Exit Block|
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000052// +--------------------+ +-----------+----------+
53// | |
54// +----------+--------------+-----------+
55// |
56// +-----+----+
57// |Join Block|
58// +----------+
59//
60//===----------------------------------------------------------------------===//
61
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000062#include "llvm/ADT/SmallVector.h"
63#include "llvm/ADT/StringRef.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000064#include "llvm/Analysis/AliasAnalysis.h"
65#include "llvm/Analysis/AliasSetTracker.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000066#include "llvm/Analysis/GlobalsModRef.h"
67#include "llvm/Analysis/LoopAccessAnalysis.h"
68#include "llvm/Analysis/LoopInfo.h"
69#include "llvm/Analysis/LoopPass.h"
Ashutosh Nema007b4252018-01-23 09:47:28 +000070#include "llvm/Analysis/OptimizationRemarkEmitter.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000071#include "llvm/Analysis/ScalarEvolution.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000072#include "llvm/IR/CallSite.h"
73#include "llvm/IR/Constants.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000074#include "llvm/IR/Dominators.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000075#include "llvm/IR/Instruction.h"
76#include "llvm/IR/Instructions.h"
77#include "llvm/IR/LLVMContext.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000078#include "llvm/IR/MDBuilder.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000079#include "llvm/IR/Metadata.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000080#include "llvm/IR/Type.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000081#include "llvm/IR/Value.h"
82#include "llvm/Pass.h"
83#include "llvm/Support/Casting.h"
84#include "llvm/Support/CommandLine.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000085#include "llvm/Support/Debug.h"
86#include "llvm/Support/raw_ostream.h"
87#include "llvm/Transforms/Scalar.h"
David Blaikiea373d182018-03-28 17:44:36 +000088#include "llvm/Transforms/Utils.h"
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000089#include "llvm/Transforms/Utils/LoopUtils.h"
90#include "llvm/Transforms/Utils/LoopVersioning.h"
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000091#include <cassert>
92#include <memory>
Ashutosh Nemadf6763a2016-02-06 07:47:48 +000093
94using namespace llvm;
95
Eugene Zelenko5adb96c2017-10-26 00:55:39 +000096#define DEBUG_TYPE "loop-versioning-licm"
97
98static const char *LICMVersioningMetaData = "llvm.loop.licm_versioning.disable";
99
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000100/// Threshold minimum allowed percentage for possible
101/// invariant instructions in a loop.
102static cl::opt<float>
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000103 LVInvarThreshold("licm-versioning-invariant-threshold",
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000104 cl::desc("LoopVersioningLICM's minimum allowed percentage"
105 "of possible invariant instructions per loop"),
106 cl::init(25), cl::Hidden);
107
108/// Threshold for maximum allowed loop nest/depth
109static cl::opt<unsigned> LVLoopDepthThreshold(
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000110 "licm-versioning-max-depth-threshold",
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000111 cl::desc(
112 "LoopVersioningLICM's threshold for maximum allowed loop nest/depth"),
113 cl::init(2), cl::Hidden);
114
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000115/// Create MDNode for input string.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000116static MDNode *createStringMetadata(Loop *TheLoop, StringRef Name, unsigned V) {
117 LLVMContext &Context = TheLoop->getHeader()->getContext();
118 Metadata *MDs[] = {
119 MDString::get(Context, Name),
120 ConstantAsMetadata::get(ConstantInt::get(Type::getInt32Ty(Context), V))};
121 return MDNode::get(Context, MDs);
122}
123
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000124/// Set input string into loop metadata by keeping other values intact.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000125void llvm::addStringMetadataToLoop(Loop *TheLoop, const char *MDString,
126 unsigned V) {
127 SmallVector<Metadata *, 4> MDs(1);
128 // If the loop already has metadata, retain it.
129 MDNode *LoopID = TheLoop->getLoopID();
130 if (LoopID) {
131 for (unsigned i = 1, ie = LoopID->getNumOperands(); i < ie; ++i) {
132 MDNode *Node = cast<MDNode>(LoopID->getOperand(i));
133 MDs.push_back(Node);
134 }
135 }
136 // Add new metadata.
137 MDs.push_back(createStringMetadata(TheLoop, MDString, V));
138 // Replace current metadata node with new one.
139 LLVMContext &Context = TheLoop->getHeader()->getContext();
140 MDNode *NewLoopID = MDNode::get(Context, MDs);
141 // Set operand 0 to refer to the loop id itself.
142 NewLoopID->replaceOperandWith(0, NewLoopID);
143 TheLoop->setLoopID(NewLoopID);
144}
145
146namespace {
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000147
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000148struct LoopVersioningLICM : public LoopPass {
149 static char ID;
150
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000151 LoopVersioningLICM()
152 : LoopPass(ID), LoopDepthThreshold(LVLoopDepthThreshold),
153 InvariantThreshold(LVInvarThreshold) {
154 initializeLoopVersioningLICMPass(*PassRegistry::getPassRegistry());
155 }
156
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000157 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
158
159 void getAnalysisUsage(AnalysisUsage &AU) const override {
160 AU.setPreservesCFG();
161 AU.addRequired<AAResultsWrapperPass>();
162 AU.addRequired<DominatorTreeWrapperPass>();
163 AU.addRequiredID(LCSSAID);
Xinliang David Li7853c1d2016-07-08 20:55:26 +0000164 AU.addRequired<LoopAccessLegacyAnalysis>();
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000165 AU.addRequired<LoopInfoWrapperPass>();
166 AU.addRequiredID(LoopSimplifyID);
167 AU.addRequired<ScalarEvolutionWrapperPass>();
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000168 AU.addPreserved<AAResultsWrapperPass>();
169 AU.addPreserved<GlobalsAAWrapperPass>();
Ashutosh Nema007b4252018-01-23 09:47:28 +0000170 AU.addRequired<OptimizationRemarkEmitterWrapperPass>();
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000171 }
172
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000173 StringRef getPassName() const override { return "Loop Versioning for LICM"; }
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000174
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000175 void reset() {
176 AA = nullptr;
177 SE = nullptr;
178 LAA = nullptr;
179 CurLoop = nullptr;
180 LoadAndStoreCounter = 0;
181 InvariantCounter = 0;
182 IsReadOnlyLoop = true;
Ashutosh Nema007b4252018-01-23 09:47:28 +0000183 ORE = nullptr;
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000184 CurAST.reset();
185 }
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000186
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000187 class AutoResetter {
188 public:
189 AutoResetter(LoopVersioningLICM &LVLICM) : LVLICM(LVLICM) {}
190 ~AutoResetter() { LVLICM.reset(); }
191
192 private:
193 LoopVersioningLICM &LVLICM;
194 };
195
196private:
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000197 // Current AliasAnalysis information
198 AliasAnalysis *AA = nullptr;
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000199
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000200 // Current ScalarEvolution
201 ScalarEvolution *SE = nullptr;
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000202
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000203 // Current LoopAccessAnalysis
204 LoopAccessLegacyAnalysis *LAA = nullptr;
205
206 // Current Loop's LoopAccessInfo
207 const LoopAccessInfo *LAI = nullptr;
208
209 // The current loop we are working on.
210 Loop *CurLoop = nullptr;
211
212 // AliasSet information for the current loop.
Ashutosh Nema007b4252018-01-23 09:47:28 +0000213 std::unique_ptr<AliasSetTracker> CurAST;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000214
215 // Maximum loop nest threshold
216 unsigned LoopDepthThreshold;
217
218 // Minimum invariant threshold
219 float InvariantThreshold;
220
221 // Counter to track num of load & store
222 unsigned LoadAndStoreCounter = 0;
223
224 // Counter to track num of invariant
225 unsigned InvariantCounter = 0;
226
227 // Read only loop marker.
228 bool IsReadOnlyLoop = true;
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000229
Ashutosh Nema007b4252018-01-23 09:47:28 +0000230 // OptimizationRemarkEmitter
231 OptimizationRemarkEmitter *ORE;
232
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000233 bool isLegalForVersioning();
234 bool legalLoopStructure();
235 bool legalLoopInstructions();
236 bool legalLoopMemoryAccesses();
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000237 bool isLoopAlreadyVisited();
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000238 void setNoAliasToLoop(Loop *VerLoop);
239 bool instructionSafeForVersioning(Instruction *I);
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000240};
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000241
242} // end anonymous namespace
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000243
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000244/// Check loop structure and confirms it's good for LoopVersioningLICM.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000245bool LoopVersioningLICM::legalLoopStructure() {
Florian Hahn2e032132016-12-19 17:13:37 +0000246 // Loop must be in loop simplify form.
247 if (!CurLoop->isLoopSimplifyForm()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000248 LLVM_DEBUG(dbgs() << " loop is not in loop-simplify form.\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000249 return false;
250 }
251 // Loop should be innermost loop, if not return false.
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000252 if (!CurLoop->getSubLoops().empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000253 LLVM_DEBUG(dbgs() << " loop is not innermost\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000254 return false;
255 }
256 // Loop should have a single backedge, if not return false.
257 if (CurLoop->getNumBackEdges() != 1) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000258 LLVM_DEBUG(dbgs() << " loop has multiple backedges\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000259 return false;
260 }
261 // Loop must have a single exiting block, if not return false.
262 if (!CurLoop->getExitingBlock()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000263 LLVM_DEBUG(dbgs() << " loop has multiple exiting block\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000264 return false;
265 }
266 // We only handle bottom-tested loop, i.e. loop in which the condition is
267 // checked at the end of each iteration. With that we can assume that all
268 // instructions in the loop are executed the same number of times.
269 if (CurLoop->getExitingBlock() != CurLoop->getLoopLatch()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000270 LLVM_DEBUG(dbgs() << " loop is not bottom tested\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000271 return false;
272 }
273 // Parallel loops must not have aliasing loop-invariant memory accesses.
274 // Hence we don't need to version anything in this case.
275 if (CurLoop->isAnnotatedParallel()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000276 LLVM_DEBUG(dbgs() << " Parallel loop is not worth versioning\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000277 return false;
278 }
279 // Loop depth more then LoopDepthThreshold are not allowed
280 if (CurLoop->getLoopDepth() > LoopDepthThreshold) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000281 LLVM_DEBUG(dbgs() << " loop depth is more then threshold\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000282 return false;
283 }
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000284 // We need to be able to compute the loop trip count in order
285 // to generate the bound checks.
286 const SCEV *ExitCount = SE->getBackedgeTakenCount(CurLoop);
287 if (ExitCount == SE->getCouldNotCompute()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000288 LLVM_DEBUG(dbgs() << " loop does not has trip count\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000289 return false;
290 }
291 return true;
292}
293
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000294/// Check memory accesses in loop and confirms it's good for
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000295/// LoopVersioningLICM.
296bool LoopVersioningLICM::legalLoopMemoryAccesses() {
297 bool HasMayAlias = false;
298 bool TypeSafety = false;
299 bool HasMod = false;
300 // Memory check:
301 // Transform phase will generate a versioned loop and also a runtime check to
302 // ensure the pointers are independent and they don’t alias.
303 // In version variant of loop, alias meta data asserts that all access are
304 // mutually independent.
305 //
306 // Pointers aliasing in alias domain are avoided because with multiple
307 // aliasing domains we may not be able to hoist potential loop invariant
308 // access out of the loop.
309 //
310 // Iterate over alias tracker sets, and confirm AliasSets doesn't have any
311 // must alias set.
312 for (const auto &I : *CurAST) {
313 const AliasSet &AS = I;
314 // Skip Forward Alias Sets, as this should be ignored as part of
315 // the AliasSetTracker object.
316 if (AS.isForwardingAliasSet())
317 continue;
318 // With MustAlias its not worth adding runtime bound check.
319 if (AS.isMustAlias())
320 return false;
321 Value *SomePtr = AS.begin()->getValue();
322 bool TypeCheck = true;
323 // Check for Mod & MayAlias
324 HasMayAlias |= AS.isMayAlias();
325 HasMod |= AS.isMod();
326 for (const auto &A : AS) {
327 Value *Ptr = A.getValue();
328 // Alias tracker should have pointers of same data type.
329 TypeCheck = (TypeCheck && (SomePtr->getType() == Ptr->getType()));
330 }
331 // At least one alias tracker should have pointers of same data type.
332 TypeSafety |= TypeCheck;
333 }
334 // Ensure types should be of same type.
335 if (!TypeSafety) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000336 LLVM_DEBUG(dbgs() << " Alias tracker type safety failed!\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000337 return false;
338 }
339 // Ensure loop body shouldn't be read only.
340 if (!HasMod) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000341 LLVM_DEBUG(dbgs() << " No memory modified in loop body\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000342 return false;
343 }
344 // Make sure alias set has may alias case.
345 // If there no alias memory ambiguity, return false.
346 if (!HasMayAlias) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000347 LLVM_DEBUG(dbgs() << " No ambiguity in memory access.\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000348 return false;
349 }
350 return true;
351}
352
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000353/// Check loop instructions safe for Loop versioning.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000354/// It returns true if it's safe else returns false.
355/// Consider following:
356/// 1) Check all load store in loop body are non atomic & non volatile.
357/// 2) Check function call safety, by ensuring its not accessing memory.
358/// 3) Loop body shouldn't have any may throw instruction.
359bool LoopVersioningLICM::instructionSafeForVersioning(Instruction *I) {
360 assert(I != nullptr && "Null instruction found!");
361 // Check function call safety
Chandler Carruth363ac682019-01-07 05:42:51 +0000362 if (auto *Call = dyn_cast<CallBase>(I))
363 if (!AA->doesNotAccessMemory(Call)) {
364 LLVM_DEBUG(dbgs() << " Unsafe call site found.\n");
365 return false;
366 }
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000367 // Avoid loops with possiblity of throw
368 if (I->mayThrow()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000369 LLVM_DEBUG(dbgs() << " May throw instruction found in loop body\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000370 return false;
371 }
372 // If current instruction is load instructions
373 // make sure it's a simple load (non atomic & non volatile)
374 if (I->mayReadFromMemory()) {
375 LoadInst *Ld = dyn_cast<LoadInst>(I);
376 if (!Ld || !Ld->isSimple()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000377 LLVM_DEBUG(dbgs() << " Found a non-simple load.\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000378 return false;
379 }
380 LoadAndStoreCounter++;
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000381 Value *Ptr = Ld->getPointerOperand();
382 // Check loop invariant.
383 if (SE->isLoopInvariant(SE->getSCEV(Ptr), CurLoop))
384 InvariantCounter++;
385 }
386 // If current instruction is store instruction
387 // make sure it's a simple store (non atomic & non volatile)
388 else if (I->mayWriteToMemory()) {
389 StoreInst *St = dyn_cast<StoreInst>(I);
390 if (!St || !St->isSimple()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000391 LLVM_DEBUG(dbgs() << " Found a non-simple store.\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000392 return false;
393 }
394 LoadAndStoreCounter++;
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000395 Value *Ptr = St->getPointerOperand();
396 // Check loop invariant.
397 if (SE->isLoopInvariant(SE->getSCEV(Ptr), CurLoop))
398 InvariantCounter++;
399
400 IsReadOnlyLoop = false;
401 }
402 return true;
403}
404
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000405/// Check loop instructions and confirms it's good for
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000406/// LoopVersioningLICM.
407bool LoopVersioningLICM::legalLoopInstructions() {
408 // Resetting counters.
409 LoadAndStoreCounter = 0;
410 InvariantCounter = 0;
411 IsReadOnlyLoop = true;
Ashutosh Nema007b4252018-01-23 09:47:28 +0000412 using namespace ore;
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000413 // Iterate over loop blocks and instructions of each block and check
414 // instruction safety.
415 for (auto *Block : CurLoop->getBlocks())
416 for (auto &Inst : *Block) {
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000417 // If instruction is unsafe just return false.
Ashutosh Nema007b4252018-01-23 09:47:28 +0000418 if (!instructionSafeForVersioning(&Inst)) {
419 ORE->emit([&]() {
420 return OptimizationRemarkMissed(DEBUG_TYPE, "IllegalLoopInst", &Inst)
421 << " Unsafe Loop Instruction";
422 });
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000423 return false;
Ashutosh Nema007b4252018-01-23 09:47:28 +0000424 }
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000425 }
426 // Get LoopAccessInfo from current loop.
Adam Nemeta9f09c62016-06-17 22:35:41 +0000427 LAI = &LAA->getInfo(CurLoop);
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000428 // Check LoopAccessInfo for need of runtime check.
429 if (LAI->getRuntimePointerChecking()->getChecks().empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000430 LLVM_DEBUG(dbgs() << " LAA: Runtime check not found !!\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000431 return false;
432 }
433 // Number of runtime-checks should be less then RuntimeMemoryCheckThreshold
434 if (LAI->getNumRuntimePointerChecks() >
435 VectorizerParams::RuntimeMemoryCheckThreshold) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000436 LLVM_DEBUG(
437 dbgs() << " LAA: Runtime checks are more than threshold !!\n");
Ashutosh Nema007b4252018-01-23 09:47:28 +0000438 ORE->emit([&]() {
439 return OptimizationRemarkMissed(DEBUG_TYPE, "RuntimeCheck",
440 CurLoop->getStartLoc(),
441 CurLoop->getHeader())
442 << "Number of runtime checks "
443 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks())
444 << " exceeds threshold "
445 << NV("Threshold", VectorizerParams::RuntimeMemoryCheckThreshold);
446 });
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000447 return false;
448 }
449 // Loop should have at least one invariant load or store instruction.
450 if (!InvariantCounter) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000451 LLVM_DEBUG(dbgs() << " Invariant not found !!\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000452 return false;
453 }
454 // Read only loop not allowed.
455 if (IsReadOnlyLoop) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000456 LLVM_DEBUG(dbgs() << " Found a read-only loop!\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000457 return false;
458 }
459 // Profitablity check:
460 // Check invariant threshold, should be in limit.
461 if (InvariantCounter * 100 < InvariantThreshold * LoadAndStoreCounter) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000462 LLVM_DEBUG(
463 dbgs()
464 << " Invariant load & store are less then defined threshold\n");
465 LLVM_DEBUG(dbgs() << " Invariant loads & stores: "
466 << ((InvariantCounter * 100) / LoadAndStoreCounter)
467 << "%\n");
468 LLVM_DEBUG(dbgs() << " Invariant loads & store threshold: "
469 << InvariantThreshold << "%\n");
Ashutosh Nema007b4252018-01-23 09:47:28 +0000470 ORE->emit([&]() {
471 return OptimizationRemarkMissed(DEBUG_TYPE, "InvariantThreshold",
472 CurLoop->getStartLoc(),
473 CurLoop->getHeader())
474 << "Invariant load & store "
475 << NV("LoadAndStoreCounter",
476 ((InvariantCounter * 100) / LoadAndStoreCounter))
477 << " are less then defined threshold "
478 << NV("Threshold", InvariantThreshold);
479 });
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000480 return false;
481 }
482 return true;
483}
484
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000485/// It checks loop is already visited or not.
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000486/// check loop meta data, if loop revisited return true
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000487/// else false.
488bool LoopVersioningLICM::isLoopAlreadyVisited() {
489 // Check LoopVersioningLICM metadata into loop
Adam Nemetf7878262016-04-21 17:33:12 +0000490 if (findStringMetadataForLoop(CurLoop, LICMVersioningMetaData)) {
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000491 return true;
492 }
493 return false;
494}
495
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000496/// Checks legality for LoopVersioningLICM by considering following:
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000497/// a) loop structure legality b) loop instruction legality
498/// c) loop memory access legality.
499/// Return true if legal else returns false.
500bool LoopVersioningLICM::isLegalForVersioning() {
Ashutosh Nema007b4252018-01-23 09:47:28 +0000501 using namespace ore;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000502 LLVM_DEBUG(dbgs() << "Loop: " << *CurLoop);
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000503 // Make sure not re-visiting same loop again.
504 if (isLoopAlreadyVisited()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000505 LLVM_DEBUG(
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000506 dbgs() << " Revisiting loop in LoopVersioningLICM not allowed.\n\n");
507 return false;
508 }
509 // Check loop structure leagality.
510 if (!legalLoopStructure()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000511 LLVM_DEBUG(
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000512 dbgs() << " Loop structure not suitable for LoopVersioningLICM\n\n");
Ashutosh Nema007b4252018-01-23 09:47:28 +0000513 ORE->emit([&]() {
514 return OptimizationRemarkMissed(DEBUG_TYPE, "IllegalLoopStruct",
515 CurLoop->getStartLoc(),
516 CurLoop->getHeader())
517 << " Unsafe Loop structure";
518 });
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000519 return false;
520 }
521 // Check loop instruction leagality.
522 if (!legalLoopInstructions()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000523 LLVM_DEBUG(
524 dbgs()
525 << " Loop instructions not suitable for LoopVersioningLICM\n\n");
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000526 return false;
527 }
528 // Check loop memory access leagality.
529 if (!legalLoopMemoryAccesses()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000530 LLVM_DEBUG(
531 dbgs()
532 << " Loop memory access not suitable for LoopVersioningLICM\n\n");
Ashutosh Nema007b4252018-01-23 09:47:28 +0000533 ORE->emit([&]() {
534 return OptimizationRemarkMissed(DEBUG_TYPE, "IllegalLoopMemoryAccess",
535 CurLoop->getStartLoc(),
536 CurLoop->getHeader())
537 << " Unsafe Loop memory access";
538 });
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000539 return false;
540 }
541 // Loop versioning is feasible, return true.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000542 LLVM_DEBUG(dbgs() << " Loop Versioning found to be beneficial\n\n");
Ashutosh Nema007b4252018-01-23 09:47:28 +0000543 ORE->emit([&]() {
544 return OptimizationRemark(DEBUG_TYPE, "IsLegalForVersioning",
545 CurLoop->getStartLoc(), CurLoop->getHeader())
546 << " Versioned loop for LICM."
547 << " Number of runtime checks we had to insert "
548 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks());
549 });
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000550 return true;
551}
552
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000553/// Update loop with aggressive aliasing assumptions.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000554/// It marks no-alias to any pairs of memory operations by assuming
555/// loop should not have any must-alias memory accesses pairs.
556/// During LoopVersioningLICM legality we ignore loops having must
557/// aliasing memory accesses.
558void LoopVersioningLICM::setNoAliasToLoop(Loop *VerLoop) {
559 // Get latch terminator instruction.
560 Instruction *I = VerLoop->getLoopLatch()->getTerminator();
561 // Create alias scope domain.
562 MDBuilder MDB(I->getContext());
563 MDNode *NewDomain = MDB.createAnonymousAliasScopeDomain("LVDomain");
564 StringRef Name = "LVAliasScope";
565 SmallVector<Metadata *, 4> Scopes, NoAliases;
566 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name);
567 // Iterate over each instruction of loop.
568 // set no-alias for all load & store instructions.
569 for (auto *Block : CurLoop->getBlocks()) {
570 for (auto &Inst : *Block) {
571 // Only interested in instruction that may modify or read memory.
572 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory())
573 continue;
574 Scopes.push_back(NewScope);
575 NoAliases.push_back(NewScope);
576 // Set no-alias for current instruction.
577 Inst.setMetadata(
578 LLVMContext::MD_noalias,
579 MDNode::concatenate(Inst.getMetadata(LLVMContext::MD_noalias),
580 MDNode::get(Inst.getContext(), NoAliases)));
581 // set alias-scope for current instruction.
582 Inst.setMetadata(
583 LLVMContext::MD_alias_scope,
584 MDNode::concatenate(Inst.getMetadata(LLVMContext::MD_alias_scope),
585 MDNode::get(Inst.getContext(), Scopes)));
586 }
587 }
588}
589
590bool LoopVersioningLICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000591 // This will automatically release all resources hold by the current
592 // LoopVersioningLICM object.
593 AutoResetter Resetter(*this);
594
Andrew Kayloraa641a52016-04-22 22:06:11 +0000595 if (skipLoop(L))
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000596 return false;
Michael Kruse72448522018-12-12 17:32:52 +0000597
598 // Do not do the transformation if disabled by metadata.
599 if (hasLICMVersioningTransformation(L) & TM_Disable)
600 return false;
601
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000602 // Get Analysis information.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000603 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
604 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Xinliang David Li7853c1d2016-07-08 20:55:26 +0000605 LAA = &getAnalysis<LoopAccessLegacyAnalysis>();
Ashutosh Nema007b4252018-01-23 09:47:28 +0000606 ORE = &getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE();
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000607 LAI = nullptr;
608 // Set Current Loop
609 CurLoop = L;
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000610 CurAST.reset(new AliasSetTracker(*AA));
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000611
612 // Loop over the body of this loop, construct AST.
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000613 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000614 for (auto *Block : L->getBlocks()) {
615 if (LI->getLoopFor(Block) == L) // Ignore blocks in subloop.
616 CurAST->add(*Block); // Incorporate the specified basic block
617 }
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000618
619 bool Changed = false;
620
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000621 // Check feasiblity of LoopVersioningLICM.
622 // If versioning found to be feasible and beneficial then proceed
623 // else simply return, by cleaning up memory.
624 if (isLegalForVersioning()) {
625 // Do loop versioning.
626 // Create memcheck for memory accessed inside loop.
627 // Clone original loop, and set blocks properly.
Evgeny Astigeevich48fd87e2016-10-14 23:00:36 +0000628 DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000629 LoopVersioning LVer(*LAI, CurLoop, LI, DT, SE, true);
630 LVer.versionLoop();
631 // Set Loop Versioning metaData for original loop.
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000632 addStringMetadataToLoop(LVer.getNonVersionedLoop(), LICMVersioningMetaData);
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000633 // Set Loop Versioning metaData for version loop.
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000634 addStringMetadataToLoop(LVer.getVersionedLoop(), LICMVersioningMetaData);
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000635 // Set "llvm.mem.parallel_loop_access" metaData to versioned loop.
Michael Kruse978ba612018-12-20 04:58:07 +0000636 // FIXME: "llvm.mem.parallel_loop_access" annotates memory access
637 // instructions, not loops.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000638 addStringMetadataToLoop(LVer.getVersionedLoop(),
639 "llvm.mem.parallel_loop_access");
640 // Update version loop with aggressive aliasing assumption.
641 setNoAliasToLoop(LVer.getVersionedLoop());
642 Changed = true;
643 }
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000644 return Changed;
645}
646
647char LoopVersioningLICM::ID = 0;
Eugene Zelenko5adb96c2017-10-26 00:55:39 +0000648
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000649INITIALIZE_PASS_BEGIN(LoopVersioningLICM, "loop-versioning-licm",
650 "Loop Versioning For LICM", false, false)
651INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
652INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
653INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass)
Easwaran Ramane12c4872016-06-09 19:44:46 +0000654INITIALIZE_PASS_DEPENDENCY(LCSSAWrapperPass)
Xinliang David Li7853c1d2016-07-08 20:55:26 +0000655INITIALIZE_PASS_DEPENDENCY(LoopAccessLegacyAnalysis)
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000656INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
657INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
658INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Ashutosh Nema007b4252018-01-23 09:47:28 +0000659INITIALIZE_PASS_DEPENDENCY(OptimizationRemarkEmitterWrapperPass)
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000660INITIALIZE_PASS_END(LoopVersioningLICM, "loop-versioning-licm",
661 "Loop Versioning For LICM", false, false)
662
663Pass *llvm::createLoopVersioningLICMPass() { return new LoopVersioningLICM(); }