[llvm] [AMDGPU] Add llvm.amdgcn.dead intrinsic (PR #123190)
Nicolai Hähnle via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 13:09:52 PST 2025
================
@@ -3450,4 +3450,11 @@ def int_amdgcn_addrspacecast_nonnull : DefaultAttrsIntrinsic<
[llvm_anyptr_ty], [llvm_anyptr_ty],
[IntrNoMem, IntrSpeculatable]
>;
+
+/// Make it clear to the backend that this value is really dead. For instance,
+/// when used as an input to a phi node, it will make it possible for the
+/// backend to allocate the dead lanes for operations within the corresponding
+/// incoming block.
+def int_amdgcn_dead: DefaultAttrsIntrinsic<[llvm_i32_ty], [],
----------------
nhaehnle wrote:
We may want to overload this as `llvm_any_ty` at some point, but I suppose for now this is okay.
https://github.com/llvm/llvm-project/pull/123190
More information about the llvm-commits
mailing list