[llvm] AMDGPU: Remove nocapture attribute from is.shared and is.private intrinsics (PR #129238)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 05:05:27 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-amdgpu
Author: Matt Arsenault (arsenm)
<details>
<summary>Changes</summary>
This should be replaced with captures(address), but tablegen currently has
no way to indicate that on an intrinsic. I opened issue #<!-- -->129184 to fix this.
---
Full diff: https://github.com/llvm/llvm-project/pull/129238.diff
1 Files Affected:
- (modified) llvm/include/llvm/IR/IntrinsicsAMDGPU.td (+2-2)
``````````diff
diff --git a/llvm/include/llvm/IR/IntrinsicsAMDGPU.td b/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
index 876a6f816ad3f..abd0afd413316 100644
--- a/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
+++ b/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
@@ -2529,13 +2529,13 @@ def int_amdgcn_set_inactive_chain_arg :
// Return if the given flat pointer points to a local memory address.
def int_amdgcn_is_shared : ClangBuiltin<"__builtin_amdgcn_is_shared">,
DefaultAttrsIntrinsic<[llvm_i1_ty], [llvm_ptr_ty],
- [IntrNoMem, IntrSpeculatable, NoCapture<ArgIndex<0>>]
+ [IntrNoMem, IntrSpeculatable] // FIXME: This should be capture(caddress)
>;
// Return if the given flat pointer points to a prvate memory address.
def int_amdgcn_is_private : ClangBuiltin<"__builtin_amdgcn_is_private">,
DefaultAttrsIntrinsic<[llvm_i1_ty], [llvm_ptr_ty],
- [IntrNoMem, IntrSpeculatable, NoCapture<ArgIndex<0>>]
+ [IntrNoMem, IntrSpeculatable] // FIXME: This should be capture(caddress)
>;
// A uniform tail call to a function with the `amdgpu_cs_chain` or
``````````
</details>
https://github.com/llvm/llvm-project/pull/129238
More information about the llvm-commits
mailing list