[llvm] [AMDGPU] Replace dynamic VGPR feature with attribute (PR #133444)
Diana Picus via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 07:03:32 PDT 2025
================
@@ -199,8 +199,13 @@ unsigned getMaxVGPRs(const TargetMachine &TM, const Function &F) {
if (!TM.getTargetTriple().isAMDGCN())
return 128;
+ bool IsDynamicVGPR = false;
+ if (F.hasFnAttribute("amdgpu-dynamic-vgpr"))
+ IsDynamicVGPR = F.getFnAttribute("amdgpu-dynamic-vgpr").getValueAsBool();
----------------
rovka wrote:
I'm thinking of adding a helper for this somewhere, but I'm not sure what would be a good place. Any suggestions?
https://github.com/llvm/llvm-project/pull/133444
More information about the llvm-commits
mailing list