[llvm] [SPIR-V] Add support for HLSL SV_GroupIndex (PR #130670)

Cassandra Beckley via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 14:49:07 PDT 2025


================
@@ -0,0 +1,32 @@
+; RUN: llc -O0 -verify-machineinstrs -mtriple=spirv-vulkan-unknown %s -o - | FileCheck %s
+; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-vulkan-unknown %s -o - -filetype=obj | spirv-val %}
+
+; CHECK-DAG:        %[[#int:]] = OpTypeInt 32 0
+; CHECK-DAG:        %[[#ptr_Input_int:]] = OpTypePointer Input %[[#int]]
+; CHECK-DAG:        %[[#LocalInvocationIndex:]] = OpVariable %[[#ptr_Input_int]] Input
+
+; CHECK-DAG:        OpEntryPoint GLCompute {{.*}} %[[#LocalInvocationIndex]]
+; CHECK-DAG:        OpName %[[#LocalInvocationIndex]] "__spirv_BuiltInLocalInvocationIndex"
+; CHECK-DAG:        OpDecorate %[[#LocalInvocationIndex]] LinkageAttributes "__spirv_BuiltInLocalInvocationIndex" Import
----------------
cassiebeckley wrote:

This decoration is currently being added for `SV_GroupThreadID` and `SV_DispatchThreadID` as well. Should I change what is being generated for those as well, or simply remove the test for now?

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


More information about the llvm-commits mailing list