[llvm] [AMDGPU] Remove the AnnotateKernelFeatures pass (PR #130198)
Jun Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 22:27:14 PDT 2025
================
@@ -629,12 +623,16 @@ GCNUserSGPRUsageInfo::GCNUserSGPRUsageInfo(const Function &F,
DispatchID = true;
}
- // TODO: This could be refined a lot. The attribute is a poor way of
- // detecting calls or stack objects that may require it before argument
- // lowering.
+ const bool IsNoFlatScratchInitSet =
+ F.hasFnAttribute("amdgpu-no-flat-scratch-init");
+
if (ST.hasFlatAddressSpace() && AMDGPU::isEntryFunctionCC(CC) &&
(IsAmdHsaOrMesa || ST.enableFlatScratch()) &&
- (HasCalls || HasStackObjects || ST.enableFlatScratch()) &&
+ // FlatScratchInit cannot be true for graphics CC if enableFlatScratch()
+ // is false.
----------------
jwanggit86 wrote:
Comment is updated.
https://github.com/llvm/llvm-project/pull/130198
More information about the llvm-commits
mailing list