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

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 02:32:19 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:

Would the Type base class store the Type or just provide an interface for e.g. `getScalarType()`? Is this something that should be explored in a separate PR? 

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


More information about the llvm-commits mailing list