[llvm] [SPIR-V] Add support for inline SPIR-V types (PR #125316)

Nathan Gauër via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 05:07:32 PST 2025


================
@@ -1406,6 +1406,28 @@ SPIRVType *SPIRVGlobalRegistry::getOrCreateOpTypeByOpcode(
   return SpirvTy;
 }
 
+SPIRVType *SPIRVGlobalRegistry::getOrCreateUnknownType(
+    const Type *Ty, MachineIRBuilder &MIRBuilder, unsigned Opcode,
+    const ArrayRef<MCOperand> Operands) {
+  Register ResVReg = DT.find(Ty, &MIRBuilder.getMF());
+  if (ResVReg.isValid())
+    return MIRBuilder.getMF().getRegInfo().getUniqueVRegDef(ResVReg);
+  ResVReg = createTypeVReg(MIRBuilder);
+
+  MachineInstrBuilder MIB =
----------------
Keenuts wrote:

The logic to correctly order OpType instructions is in `createOpType`, so this should be wrapper into it.

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


More information about the llvm-commits mailing list