blob: f88e3b0dac86096668bf3ecaad3bc47bf07f2c2d [file] [log] [blame]
Tom Stellarda6f24c62015-12-15 20:55:55 +00001//===-- AMDGPUAnnotateUniformValues.cpp - ---------------------------------===//
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/// \file
11/// This pass adds amdgpu.uniform metadata to IR values so this information
12/// can be used during instruction selection.
13//
14//===----------------------------------------------------------------------===//
15
16#include "AMDGPU.h"
17#include "AMDGPUIntrinsicInfo.h"
Alexander Timofeev18009562016-12-08 17:28:47 +000018#include "llvm/ADT/SetVector.h"
Nicolai Haehnle35617ed2018-08-30 14:21:36 +000019#include "llvm/Analysis/LegacyDivergenceAnalysis.h"
Alexander Timofeev18009562016-12-08 17:28:47 +000020#include "llvm/Analysis/LoopInfo.h"
21#include "llvm/Analysis/MemoryDependenceAnalysis.h"
Tom Stellarda6f24c62015-12-15 20:55:55 +000022#include "llvm/IR/IRBuilder.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000023#include "llvm/IR/InstVisitor.h"
Tom Stellarda6f24c62015-12-15 20:55:55 +000024#include "llvm/Support/Debug.h"
25#include "llvm/Support/raw_ostream.h"
26
27#define DEBUG_TYPE "amdgpu-annotate-uniform"
28
29using namespace llvm;
30
31namespace {
32
33class AMDGPUAnnotateUniformValues : public FunctionPass,
34 public InstVisitor<AMDGPUAnnotateUniformValues> {
Nicolai Haehnle35617ed2018-08-30 14:21:36 +000035 LegacyDivergenceAnalysis *DA;
Alexander Timofeev18009562016-12-08 17:28:47 +000036 MemoryDependenceResults *MDR;
37 LoopInfo *LI;
38 DenseMap<Value*, GetElementPtrInst*> noClobberClones;
39 bool isKernelFunc;
Tom Stellarda6f24c62015-12-15 20:55:55 +000040
41public:
42 static char ID;
43 AMDGPUAnnotateUniformValues() :
44 FunctionPass(ID) { }
45 bool doInitialization(Module &M) override;
46 bool runOnFunction(Function &F) override;
Mehdi Amini117296c2016-10-01 02:56:57 +000047 StringRef getPassName() const override {
48 return "AMDGPU Annotate Uniform Values";
49 }
Tom Stellarda6f24c62015-12-15 20:55:55 +000050 void getAnalysisUsage(AnalysisUsage &AU) const override {
Nicolai Haehnle35617ed2018-08-30 14:21:36 +000051 AU.addRequired<LegacyDivergenceAnalysis>();
Alexander Timofeev18009562016-12-08 17:28:47 +000052 AU.addRequired<MemoryDependenceWrapperPass>();
53 AU.addRequired<LoopInfoWrapperPass>();
Tom Stellarda6f24c62015-12-15 20:55:55 +000054 AU.setPreservesAll();
55 }
56
Tom Stellardbc4497b2016-02-12 23:45:29 +000057 void visitBranchInst(BranchInst &I);
Tom Stellarda6f24c62015-12-15 20:55:55 +000058 void visitLoadInst(LoadInst &I);
Alexander Timofeev18009562016-12-08 17:28:47 +000059 bool isClobberedInFunction(LoadInst * Load);
Tom Stellarda6f24c62015-12-15 20:55:55 +000060};
61
62} // End anonymous namespace
63
64INITIALIZE_PASS_BEGIN(AMDGPUAnnotateUniformValues, DEBUG_TYPE,
65 "Add AMDGPU uniform metadata", false, false)
Nicolai Haehnle35617ed2018-08-30 14:21:36 +000066INITIALIZE_PASS_DEPENDENCY(LegacyDivergenceAnalysis)
Alexander Timofeev18009562016-12-08 17:28:47 +000067INITIALIZE_PASS_DEPENDENCY(MemoryDependenceWrapperPass)
68INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Tom Stellarda6f24c62015-12-15 20:55:55 +000069INITIALIZE_PASS_END(AMDGPUAnnotateUniformValues, DEBUG_TYPE,
70 "Add AMDGPU uniform metadata", false, false)
71
72char AMDGPUAnnotateUniformValues::ID = 0;
73
Tom Stellardbc4497b2016-02-12 23:45:29 +000074static void setUniformMetadata(Instruction *I) {
75 I->setMetadata("amdgpu.uniform", MDNode::get(I->getContext(), {}));
76}
Alexander Timofeev18009562016-12-08 17:28:47 +000077static void setNoClobberMetadata(Instruction *I) {
78 I->setMetadata("amdgpu.noclobber", MDNode::get(I->getContext(), {}));
79}
80
81static void DFS(BasicBlock *Root, SetVector<BasicBlock*> & Set) {
82 for (auto I : predecessors(Root))
83 if (Set.insert(I))
84 DFS(I, Set);
85}
86
87bool AMDGPUAnnotateUniformValues::isClobberedInFunction(LoadInst * Load) {
88 // 1. get Loop for the Load->getparent();
89 // 2. if it exists, collect all the BBs from the most outer
90 // loop and check for the writes. If NOT - start DFS over all preds.
91 // 3. Start DFS over all preds from the most outer loop header.
92 SetVector<BasicBlock *> Checklist;
93 BasicBlock *Start = Load->getParent();
94 Checklist.insert(Start);
95 const Value *Ptr = Load->getPointerOperand();
96 const Loop *L = LI->getLoopFor(Start);
97 if (L) {
98 const Loop *P = L;
99 do {
100 L = P;
101 P = P->getParentLoop();
102 } while (P);
103 Checklist.insert(L->block_begin(), L->block_end());
104 Start = L->getHeader();
105 }
106
107 DFS(Start, Checklist);
108 for (auto &BB : Checklist) {
Alexander Timofeev0f9c84c2017-06-15 19:33:10 +0000109 BasicBlock::iterator StartIt = (!L && (BB == Load->getParent())) ?
Matt Arsenaultce34ac52017-07-12 23:06:18 +0000110 BasicBlock::iterator(Load) : BB->end();
111 auto Q = MDR->getPointerDependencyFrom(MemoryLocation(Ptr), true,
112 StartIt, BB, Load);
113 if (Q.isClobber() || Q.isUnknown())
114 return true;
Alexander Timofeev18009562016-12-08 17:28:47 +0000115 }
116 return false;
117}
Tom Stellardbc4497b2016-02-12 23:45:29 +0000118
119void AMDGPUAnnotateUniformValues::visitBranchInst(BranchInst &I) {
Rhys Perryf77e2e82019-01-07 15:52:28 +0000120 if (DA->isUniform(&I))
121 setUniformMetadata(I.getParent()->getTerminator());
Tom Stellardbc4497b2016-02-12 23:45:29 +0000122}
123
Tom Stellarda6f24c62015-12-15 20:55:55 +0000124void AMDGPUAnnotateUniformValues::visitLoadInst(LoadInst &I) {
125 Value *Ptr = I.getPointerOperand();
126 if (!DA->isUniform(Ptr))
127 return;
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000128 auto isGlobalLoad = [&](LoadInst &Load)->bool {
Matt Arsenault0da63502018-08-31 05:49:54 +0000129 return Load.getPointerAddressSpace() == AMDGPUAS::GLOBAL_ADDRESS;
Alexander Timofeev18009562016-12-08 17:28:47 +0000130 };
131 // We're tracking up to the Function boundaries
132 // We cannot go beyond because of FunctionPass restrictions
133 // Thus we can ensure that memory not clobbered for memory
134 // operations that live in kernel only.
135 bool NotClobbered = isKernelFunc && !isClobberedInFunction(&I);
136 Instruction *PtrI = dyn_cast<Instruction>(Ptr);
137 if (!PtrI && NotClobbered && isGlobalLoad(I)) {
138 if (isa<Argument>(Ptr) || isa<GlobalValue>(Ptr)) {
139 // Lookup for the existing GEP
140 if (noClobberClones.count(Ptr)) {
141 PtrI = noClobberClones[Ptr];
142 } else {
143 // Create GEP of the Value
144 Function *F = I.getParent()->getParent();
145 Value *Idx = Constant::getIntegerValue(
146 Type::getInt32Ty(Ptr->getContext()), APInt(64, 0));
147 // Insert GEP at the entry to make it dominate all uses
148 PtrI = GetElementPtrInst::Create(
149 Ptr->getType()->getPointerElementType(), Ptr,
150 ArrayRef<Value*>(Idx), Twine(""), F->getEntryBlock().getFirstNonPHI());
151 }
152 I.replaceUsesOfWith(Ptr, PtrI);
153 }
154 }
Tom Stellarda6f24c62015-12-15 20:55:55 +0000155
Alexander Timofeev18009562016-12-08 17:28:47 +0000156 if (PtrI) {
Tom Stellardbc4497b2016-02-12 23:45:29 +0000157 setUniformMetadata(PtrI);
Alexander Timofeev18009562016-12-08 17:28:47 +0000158 if (NotClobbered)
159 setNoClobberMetadata(PtrI);
160 }
Tom Stellarda6f24c62015-12-15 20:55:55 +0000161}
162
163bool AMDGPUAnnotateUniformValues::doInitialization(Module &M) {
164 return false;
165}
166
167bool AMDGPUAnnotateUniformValues::runOnFunction(Function &F) {
Andrew Kaylor7de74af2016-04-25 22:23:44 +0000168 if (skipFunction(F))
169 return false;
170
Nicolai Haehnle35617ed2018-08-30 14:21:36 +0000171 DA = &getAnalysis<LegacyDivergenceAnalysis>();
Alexander Timofeev18009562016-12-08 17:28:47 +0000172 MDR = &getAnalysis<MemoryDependenceWrapperPass>().getMemDep();
173 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
174 isKernelFunc = F.getCallingConv() == CallingConv::AMDGPU_KERNEL;
Tom Stellarda6f24c62015-12-15 20:55:55 +0000175
Alexander Timofeev18009562016-12-08 17:28:47 +0000176 visit(F);
177 noClobberClones.clear();
Tom Stellarda6f24c62015-12-15 20:55:55 +0000178 return true;
179}
180
181FunctionPass *
182llvm::createAMDGPUAnnotateUniformValues() {
183 return new AMDGPUAnnotateUniformValues();
184}