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

Steven Perron via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 12:14:45 PDT 2025


================
@@ -4005,6 +4017,38 @@ bool SPIRVInstructionSelector::loadVec3BuiltinInputID(
   return Result && MIB.constrainAllUses(TII, TRI, RBI);
 }
 
+// Generate the instructions to load 32-bit integer builtin input IDs/Indices.
+// Like LocalInvocationIndex
+bool SPIRVInstructionSelector::loadBuiltinInputID(
+    SPIRV::BuiltIn::BuiltIn BuiltInValue, Register ResVReg,
+    const SPIRVType *ResType, MachineInstr &I) const {
----------------
s-perron wrote:

Why do you pass in `ResType` if you will not use it?

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


More information about the llvm-commits mailing list