[llvm] [SPIR-V] Add `OpConstantCompositeContinuedINTEL` instruction (PR #129086)

Dmitry Sidorov via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 08:47:42 PDT 2025


================
@@ -2940,24 +2940,30 @@ bool SPIRVInstructionSelector::selectIntrinsic(Register ResVReg,
   case Intrinsic::spv_const_composite: {
     // If no values are attached, the composite is null constant.
     bool IsNull = I.getNumExplicitDefs() + 1 == I.getNumExplicitOperands();
-    // Select a proper instruction.
-    unsigned Opcode = SPIRV::OpConstantNull;
     SmallVector<Register> CompositeArgs;
-    if (!IsNull) {
-      Opcode = SPIRV::OpConstantComposite;
-      if (!wrapIntoSpecConstantOp(I, CompositeArgs))
-        return false;
-    }
     MRI->setRegClass(ResVReg, GR.getRegClass(ResType));
-    auto MIB = BuildMI(BB, I, I.getDebugLoc(), TII.get(Opcode))
-                   .addDef(ResVReg)
-                   .addUse(GR.getSPIRVTypeID(ResType));
+
     // skip type MD node we already used when generated assign.type for this
     if (!IsNull) {
----------------
MrSidims wrote:

Ah, indeed, haven't seen it through github UI on a small screen. 

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


More information about the llvm-commits mailing list