LLVM  8.0.1
AMDGPUAnnotateUniformValues.cpp
Go to the documentation of this file.
1 //===-- 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"
18 #include "llvm/ADT/SetVector.h"
20 #include "llvm/Analysis/LoopInfo.h"
22 #include "llvm/IR/IRBuilder.h"
23 #include "llvm/IR/InstVisitor.h"
24 #include "llvm/Support/Debug.h"
26 
27 #define DEBUG_TYPE "amdgpu-annotate-uniform"
28 
29 using namespace llvm;
30 
31 namespace {
32 
33 class AMDGPUAnnotateUniformValues : public FunctionPass,
34  public InstVisitor<AMDGPUAnnotateUniformValues> {
37  LoopInfo *LI;
39  bool isKernelFunc;
40 
41 public:
42  static char ID;
43  AMDGPUAnnotateUniformValues() :
44  FunctionPass(ID) { }
45  bool doInitialization(Module &M) override;
46  bool runOnFunction(Function &F) override;
47  StringRef getPassName() const override {
48  return "AMDGPU Annotate Uniform Values";
49  }
50  void getAnalysisUsage(AnalysisUsage &AU) const override {
54  AU.setPreservesAll();
55  }
56 
57  void visitBranchInst(BranchInst &I);
58  void visitLoadInst(LoadInst &I);
59  bool isClobberedInFunction(LoadInst * Load);
60 };
61 
62 } // End anonymous namespace
63 
64 INITIALIZE_PASS_BEGIN(AMDGPUAnnotateUniformValues, DEBUG_TYPE,
65  "Add AMDGPU uniform metadata", false, false)
69 INITIALIZE_PASS_END(AMDGPUAnnotateUniformValues, DEBUG_TYPE,
71 
72 char AMDGPUAnnotateUniformValues::ID = 0;
73 
75  I->setMetadata("amdgpu.uniform", MDNode::get(I->getContext(), {}));
76 }
78  I->setMetadata("amdgpu.noclobber", MDNode::get(I->getContext(), {}));
79 }
80 
81 static void DFS(BasicBlock *Root, SetVector<BasicBlock*> & Set) {
82  for (auto I : predecessors(Root))
83  if (Set.insert(I))
84  DFS(I, Set);
85 }
86 
87 bool 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) {
109  BasicBlock::iterator StartIt = (!L && (BB == Load->getParent())) ?
110  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;
115  }
116  return false;
117 }
118 
119 void AMDGPUAnnotateUniformValues::visitBranchInst(BranchInst &I) {
120  if (DA->isUniform(&I))
122 }
123 
124 void AMDGPUAnnotateUniformValues::visitLoadInst(LoadInst &I) {
125  Value *Ptr = I.getPointerOperand();
126  if (!DA->isUniform(Ptr))
127  return;
128  auto isGlobalLoad = [&](LoadInst &Load)->bool {
130  };
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();
146  Type::getInt32Ty(Ptr->getContext()), APInt(64, 0));
147  // Insert GEP at the entry to make it dominate all uses
149  Ptr->getType()->getPointerElementType(), Ptr,
151  }
152  I.replaceUsesOfWith(Ptr, PtrI);
153  }
154  }
155 
156  if (PtrI) {
157  setUniformMetadata(PtrI);
158  if (NotClobbered)
159  setNoClobberMetadata(PtrI);
160  }
161 }
162 
163 bool AMDGPUAnnotateUniformValues::doInitialization(Module &M) {
164  return false;
165 }
166 
168  if (skipFunction(F))
169  return false;
170 
171  DA = &getAnalysis<LegacyDivergenceAnalysis>();
172  MDR = &getAnalysis<MemoryDependenceWrapperPass>().getMemDep();
173  LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
174  isKernelFunc = F.getCallingConv() == CallingConv::AMDGPU_KERNEL;
175 
176  visit(F);
177  noClobberClones.clear();
178  return true;
179 }
180 
181 FunctionPass *
183  return new AMDGPUAnnotateUniformValues();
184 }
Provides a lazy, caching interface for making common memory aliasing information queries, backed by LLVM&#39;s alias analysis passes.
Base class for instruction visitors.
Definition: InstVisitor.h:81
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
static GetElementPtrInst * Create(Type *PointeeType, Value *Ptr, ArrayRef< Value *> IdxList, const Twine &NameStr="", Instruction *InsertBefore=nullptr)
Definition: Instructions.h:880
LLVMContext & getContext() const
All values hold a context through their type.
Definition: Value.cpp:705
F(f)
An instruction for reading from memory.
Definition: Instructions.h:168
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Definition: BasicBlock.cpp:138
AnalysisUsage & addRequired()
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition: PassSupport.h:51
Type * getPointerElementType() const
Definition: Type.h:376
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
T uniform(GenT &Gen, T Min, T Max)
Return a uniformly distributed random value between Min and Max.
Definition: Random.h:22
BlockT * getHeader() const
Definition: LoopInfo.h:100
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:245
bool insert(const value_type &X)
Insert a new element into the SetVector.
Definition: SetVector.h:142
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
void replaceUsesOfWith(Value *From, Value *To)
Replace uses of one Value with another.
Definition: User.cpp:21
const BasicBlock & getEntryBlock() const
Definition: Function.h:640
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata *> MDs)
Definition: Metadata.h:1166
static bool runOnFunction(Function &F, bool PostInlining)
#define P(N)
const Instruction * getFirstNonPHI() const
Returns a pointer to the first instruction in this block that is not a PHINode instruction.
Definition: BasicBlock.cpp:190
LLVM Basic Block Representation.
Definition: BasicBlock.h:58
Conditional or Unconditional Branch instruction.
Represent the analysis usage information of a pass.
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:285
Value * getPointerOperand()
Definition: Instructions.h:285
static void setNoClobberMetadata(Instruction *I)
#define DEBUG_TYPE
Address space for global memory (RAT0, VTX0).
Definition: AMDGPU.h:256
A wrapper analysis pass for the legacy pass manager that exposes a MemoryDepnedenceResults instance...
INITIALIZE_PASS_END(RegBankSelect, DEBUG_TYPE, "Assign register bank of generic virtual registers", false, false) RegBankSelect
Add AMDGPU uniform metadata
void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
Definition: Metadata.cpp:1226
FunctionPass * createAMDGPUAnnotateUniformValues()
static Constant * getIntegerValue(Type *Ty, const APInt &V)
Return the value for an integer or pointer constant, or a vector thereof, with the given scalar value...
Definition: Constants.cpp:302
Representation for a specific memory location.
Iterator for intrusive lists based on ilist_node.
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
Definition: Function.h:213
pred_range predecessors(BasicBlock *BB)
Definition: CFG.h:125
INITIALIZE_PASS_BEGIN(AMDGPUAnnotateUniformValues, DEBUG_TYPE, "Add AMDGPU uniform metadata", false, false) INITIALIZE_PASS_END(AMDGPUAnnotateUniformValues
Class for arbitrary precision integers.
Definition: APInt.h:70
Interface for the AMDGPU Implementation of the Intrinsic Info class.
void setPreservesAll()
Set by analyses that do not transform their input at all.
InstListType::iterator iterator
Instruction iterators...
Definition: BasicBlock.h:90
static void DFS(BasicBlock *Root, SetVector< BasicBlock *> &Set)
LoopT * getParentLoop() const
Definition: LoopInfo.h:101
static IntegerType * getInt32Ty(LLVMContext &C)
Definition: Type.cpp:176
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:465
const Function * getParent() const
Return the enclosing method, or null if none.
Definition: BasicBlock.h:107
#define I(x, y, z)
Definition: MD5.cpp:58
LLVM_NODISCARD std::enable_if<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type >::type dyn_cast(const Y &Val)
Definition: Casting.h:323
block_iterator block_end() const
Definition: LoopInfo.h:155
unsigned getPointerAddressSpace() const
Returns the address space of the pointer operand.
Definition: Instructions.h:291
LLVM Value Representation.
Definition: Value.h:73
A vector that has set insertion semantics.
Definition: SetVector.h:41
The legacy pass manager&#39;s analysis pass to compute loop information.
Definition: LoopInfo.h:970
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
block_iterator block_begin() const
Definition: LoopInfo.h:154
Calling convention for AMDGPU code object kernels.
Definition: CallingConv.h:201
static void setUniformMetadata(Instruction *I)
const BasicBlock * getParent() const
Definition: Instruction.h:67