[llvm] [VPlan] Introduce VPInstructionWithType, use instead of VPScalarCast(NFC) (PR #129706)

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 10:09:35 PDT 2025


================
@@ -1024,6 +1023,53 @@ class VPInstruction : public VPRecipeWithIRFlags,
   StringRef getName() const { return Name; }
 };
 
+/// A specialization of VPInstruction augmenting it with a dedicated result
+/// type, to be used when the opcode and operands of the VPInstruction don't
+/// directly determine the result type.
+class VPInstructionWithType : public VPInstruction {
----------------
lukel97 wrote:

I think `VPWidenIntrinsic` also could use it, although it calls `::getScalarType` `::getResultType`. But agreed, I think it can be done as a follow up. It would be nice to get this in to eventually unblock #129508 and #118638

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


More information about the llvm-commits mailing list