[llvm] [SPIR-V] Add support for inline SPIR-V types (PR #125316)
Vyacheslav Levytskyy via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 14 06:16:21 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 =
----------------
VyacheslavLevytskyy wrote:
I think we should wrap this into `createOpType(...)` call as in other occasions of defining `SPIRVGlobalRegistry::getOpType...()` functions.
https://github.com/llvm/llvm-project/pull/125316
More information about the llvm-commits
mailing list