[llvm] [AMDGPU] SelDAG: fix lowering of undefined workitem intrinsics (PR #126058)

Robert Imschweiler via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 6 05:05:57 PST 2025


================
@@ -8790,11 +8790,28 @@ SDValue SITargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
                              AMDGPUFunctionArgInfo::LDS_KERNEL_ID);
   }
   case Intrinsic::amdgcn_workitem_id_x:
-    return lowerWorkitemID(DAG, Op, 0, MFI->getArgInfo().WorkItemIDX);
+    if (!MFI->getArgInfo().WorkItemIDX) {
+      // It's undefined behavior if a function marked with the amdgpu-no-*
+      // attributes uses the corresponding intrinsic.
----------------
ro-i wrote:

Returning undef was my first idea but this would then break `test_reqd_workgroup_size_{x,y,z}_only` in `test/CodeGen/AMDGPU/llvm.amdgcn.workitem.id.ll` because those tests expect the value to be zero. Or should I change them?

https://github.com/llvm/llvm-project/pull/126058


More information about the llvm-commits mailing list