1 //===- AMDGPUAnnotateKernelFeaturesPass.cpp -------------------------------===//
3 // 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
7 //===----------------------------------------------------------------------===//
9 /// \file This pass adds target attributes to functions which use intrinsics
10 /// which will impact calling convention lowering.
12 //===----------------------------------------------------------------------===//
15 #include "AMDGPUSubtarget.h"
16 #include "Utils/AMDGPUBaseInfo.h"
17 #include "llvm/ADT/SmallPtrSet.h"
18 #include "llvm/ADT/SmallVector.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/ADT/Triple.h"
21 #include "llvm/Analysis/CallGraph.h"
22 #include "llvm/Analysis/CallGraphSCCPass.h"
23 #include "llvm/CodeGen/TargetPassConfig.h"
24 #include "llvm/IR/CallSite.h"
25 #include "llvm/IR/Constant.h"
26 #include "llvm/IR/Constants.h"
27 #include "llvm/IR/Function.h"
28 #include "llvm/IR/Instruction.h"
29 #include "llvm/IR/Instructions.h"
30 #include "llvm/IR/Intrinsics.h"
31 #include "llvm/IR/Module.h"
32 #include "llvm/IR/Type.h"
33 #include "llvm/IR/Use.h"
34 #include "llvm/Pass.h"
35 #include "llvm/Support/Casting.h"
36 #include "llvm/Support/ErrorHandling.h"
37 #include "llvm/Target/TargetMachine.h"
39 #define DEBUG_TYPE "amdgpu-annotate-kernel-features"
45 class AMDGPUAnnotateKernelFeatures
: public CallGraphSCCPass
{
47 const TargetMachine
*TM
= nullptr;
48 SmallVector
<CallGraphNode
*, 8> NodeList
;
50 bool addFeatureAttributes(Function
&F
);
51 bool processUniformWorkGroupAttribute();
52 bool propagateUniformWorkGroupAttribute(Function
&Caller
, Function
&Callee
);
57 AMDGPUAnnotateKernelFeatures() : CallGraphSCCPass(ID
) {}
59 bool doInitialization(CallGraph
&CG
) override
;
60 bool runOnSCC(CallGraphSCC
&SCC
) override
;
62 StringRef
getPassName() const override
{
63 return "AMDGPU Annotate Kernel Features";
66 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
68 CallGraphSCCPass::getAnalysisUsage(AU
);
71 static bool visitConstantExpr(const ConstantExpr
*CE
);
72 static bool visitConstantExprsRecursively(
73 const Constant
*EntryC
,
74 SmallPtrSet
<const Constant
*, 8> &ConstantExprVisited
);
77 } // end anonymous namespace
79 char AMDGPUAnnotateKernelFeatures::ID
= 0;
81 char &llvm::AMDGPUAnnotateKernelFeaturesID
= AMDGPUAnnotateKernelFeatures::ID
;
83 INITIALIZE_PASS(AMDGPUAnnotateKernelFeatures
, DEBUG_TYPE
,
84 "Add AMDGPU function attributes", false, false)
87 // The queue ptr is only needed when casting to flat, not from it.
88 static bool castRequiresQueuePtr(unsigned SrcAS
) {
89 return SrcAS
== AMDGPUAS::LOCAL_ADDRESS
|| SrcAS
== AMDGPUAS::PRIVATE_ADDRESS
;
92 static bool castRequiresQueuePtr(const AddrSpaceCastInst
*ASC
) {
93 return castRequiresQueuePtr(ASC
->getSrcAddressSpace());
96 bool AMDGPUAnnotateKernelFeatures::visitConstantExpr(const ConstantExpr
*CE
) {
97 if (CE
->getOpcode() == Instruction::AddrSpaceCast
) {
98 unsigned SrcAS
= CE
->getOperand(0)->getType()->getPointerAddressSpace();
99 return castRequiresQueuePtr(SrcAS
);
105 bool AMDGPUAnnotateKernelFeatures::visitConstantExprsRecursively(
106 const Constant
*EntryC
,
107 SmallPtrSet
<const Constant
*, 8> &ConstantExprVisited
) {
109 if (!ConstantExprVisited
.insert(EntryC
).second
)
112 SmallVector
<const Constant
*, 16> Stack
;
113 Stack
.push_back(EntryC
);
115 while (!Stack
.empty()) {
116 const Constant
*C
= Stack
.pop_back_val();
118 // Check this constant expression.
119 if (const auto *CE
= dyn_cast
<ConstantExpr
>(C
)) {
120 if (visitConstantExpr(CE
))
124 // Visit all sub-expressions.
125 for (const Use
&U
: C
->operands()) {
126 const auto *OpC
= dyn_cast
<Constant
>(U
);
130 if (!ConstantExprVisited
.insert(OpC
).second
)
133 Stack
.push_back(OpC
);
140 // We do not need to note the x workitem or workgroup id because they are always
143 // TODO: We should not add the attributes if the known compile time workgroup
144 // size is 1 for y/z.
145 static StringRef
intrinsicToAttrName(Intrinsic::ID ID
,
149 case Intrinsic::amdgcn_workitem_id_x
:
150 NonKernelOnly
= true;
151 return "amdgpu-work-item-id-x";
152 case Intrinsic::amdgcn_workgroup_id_x
:
153 NonKernelOnly
= true;
154 return "amdgpu-work-group-id-x";
155 case Intrinsic::amdgcn_workitem_id_y
:
156 case Intrinsic::r600_read_tidig_y
:
157 return "amdgpu-work-item-id-y";
158 case Intrinsic::amdgcn_workitem_id_z
:
159 case Intrinsic::r600_read_tidig_z
:
160 return "amdgpu-work-item-id-z";
161 case Intrinsic::amdgcn_workgroup_id_y
:
162 case Intrinsic::r600_read_tgid_y
:
163 return "amdgpu-work-group-id-y";
164 case Intrinsic::amdgcn_workgroup_id_z
:
165 case Intrinsic::r600_read_tgid_z
:
166 return "amdgpu-work-group-id-z";
167 case Intrinsic::amdgcn_dispatch_ptr
:
168 return "amdgpu-dispatch-ptr";
169 case Intrinsic::amdgcn_dispatch_id
:
170 return "amdgpu-dispatch-id";
171 case Intrinsic::amdgcn_kernarg_segment_ptr
:
172 return "amdgpu-kernarg-segment-ptr";
173 case Intrinsic::amdgcn_implicitarg_ptr
:
174 return "amdgpu-implicitarg-ptr";
175 case Intrinsic::amdgcn_queue_ptr
:
176 case Intrinsic::amdgcn_is_shared
:
177 case Intrinsic::amdgcn_is_private
:
178 // TODO: Does not require queue ptr on gfx9+
179 case Intrinsic::trap
:
180 case Intrinsic::debugtrap
:
182 return "amdgpu-queue-ptr";
188 static bool handleAttr(Function
&Parent
, const Function
&Callee
,
190 if (Callee
.hasFnAttribute(Name
)) {
191 Parent
.addFnAttr(Name
);
197 static void copyFeaturesToFunction(Function
&Parent
, const Function
&Callee
,
198 bool &NeedQueuePtr
) {
199 // X ids unnecessarily propagated to kernels.
200 static constexpr StringLiteral AttrNames
[] = {
201 "amdgpu-work-item-id-x", "amdgpu-work-item-id-y",
202 "amdgpu-work-item-id-z", "amdgpu-work-group-id-x",
203 "amdgpu-work-group-id-y", "amdgpu-work-group-id-z",
204 "amdgpu-dispatch-ptr", "amdgpu-dispatch-id",
205 "amdgpu-kernarg-segment-ptr", "amdgpu-implicitarg-ptr"};
207 if (handleAttr(Parent
, Callee
, "amdgpu-queue-ptr"))
210 for (StringRef AttrName
: AttrNames
)
211 handleAttr(Parent
, Callee
, AttrName
);
214 bool AMDGPUAnnotateKernelFeatures::processUniformWorkGroupAttribute() {
215 bool Changed
= false;
217 for (auto *Node
: reverse(NodeList
)) {
218 Function
*Caller
= Node
->getFunction();
220 for (auto I
: *Node
) {
221 Function
*Callee
= std::get
<1>(I
)->getFunction();
223 Changed
= propagateUniformWorkGroupAttribute(*Caller
, *Callee
);
230 bool AMDGPUAnnotateKernelFeatures::propagateUniformWorkGroupAttribute(
231 Function
&Caller
, Function
&Callee
) {
233 // Check for externally defined function
234 if (!Callee
.hasExactDefinition()) {
235 Callee
.addFnAttr("uniform-work-group-size", "false");
236 if (!Caller
.hasFnAttribute("uniform-work-group-size"))
237 Caller
.addFnAttr("uniform-work-group-size", "false");
241 // Check if the Caller has the attribute
242 if (Caller
.hasFnAttribute("uniform-work-group-size")) {
243 // Check if the value of the attribute is true
244 if (Caller
.getFnAttribute("uniform-work-group-size")
245 .getValueAsString().equals("true")) {
246 // Propagate the attribute to the Callee, if it does not have it
247 if (!Callee
.hasFnAttribute("uniform-work-group-size")) {
248 Callee
.addFnAttr("uniform-work-group-size", "true");
252 Callee
.addFnAttr("uniform-work-group-size", "false");
256 // If the attribute is absent, set it as false
257 Caller
.addFnAttr("uniform-work-group-size", "false");
258 Callee
.addFnAttr("uniform-work-group-size", "false");
264 bool AMDGPUAnnotateKernelFeatures::addFeatureAttributes(Function
&F
) {
265 const GCNSubtarget
&ST
= TM
->getSubtarget
<GCNSubtarget
>(F
);
266 bool HasFlat
= ST
.hasFlatAddressSpace();
267 bool HasApertureRegs
= ST
.hasApertureRegs();
268 SmallPtrSet
<const Constant
*, 8> ConstantExprVisited
;
270 bool Changed
= false;
271 bool NeedQueuePtr
= false;
272 bool HaveCall
= false;
273 bool IsFunc
= !AMDGPU::isEntryFunctionCC(F
.getCallingConv());
275 for (BasicBlock
&BB
: F
) {
276 for (Instruction
&I
: BB
) {
279 Function
*Callee
= CS
.getCalledFunction();
281 // TODO: Do something with indirect calls.
283 if (!CS
.isInlineAsm())
288 Intrinsic::ID IID
= Callee
->getIntrinsicID();
289 if (IID
== Intrinsic::not_intrinsic
) {
291 copyFeaturesToFunction(F
, *Callee
, NeedQueuePtr
);
294 bool NonKernelOnly
= false;
295 StringRef AttrName
= intrinsicToAttrName(IID
,
296 NonKernelOnly
, NeedQueuePtr
);
297 if (!AttrName
.empty() && (IsFunc
|| !NonKernelOnly
)) {
298 F
.addFnAttr(AttrName
);
304 if (NeedQueuePtr
|| HasApertureRegs
)
307 if (const AddrSpaceCastInst
*ASC
= dyn_cast
<AddrSpaceCastInst
>(&I
)) {
308 if (castRequiresQueuePtr(ASC
)) {
314 for (const Use
&U
: I
.operands()) {
315 const auto *OpC
= dyn_cast
<Constant
>(U
);
319 if (visitConstantExprsRecursively(OpC
, ConstantExprVisited
)) {
328 F
.addFnAttr("amdgpu-queue-ptr");
332 // TODO: We could refine this to captured pointers that could possibly be
333 // accessed by flat instructions. For now this is mostly a poor way of
334 // estimating whether there are calls before argument lowering.
335 if (HasFlat
&& !IsFunc
&& HaveCall
) {
336 F
.addFnAttr("amdgpu-flat-scratch");
343 bool AMDGPUAnnotateKernelFeatures::runOnSCC(CallGraphSCC
&SCC
) {
344 bool Changed
= false;
346 for (CallGraphNode
*I
: SCC
) {
347 // Build a list of CallGraphNodes from most number of uses to least
348 if (I
->getNumReferences())
349 NodeList
.push_back(I
);
351 processUniformWorkGroupAttribute();
355 Function
*F
= I
->getFunction();
356 // Add feature attributes
357 if (!F
|| F
->isDeclaration())
359 Changed
|= addFeatureAttributes(*F
);
365 bool AMDGPUAnnotateKernelFeatures::doInitialization(CallGraph
&CG
) {
366 auto *TPC
= getAnalysisIfAvailable
<TargetPassConfig
>();
368 report_fatal_error("TargetMachine is required");
370 TM
= &TPC
->getTM
<TargetMachine
>();
374 Pass
*llvm::createAMDGPUAnnotateKernelFeaturesPass() {
375 return new AMDGPUAnnotateKernelFeatures();