[llvm] [VPlan] Introduce VPInstructionWithType, use instead of VPScalarCast(NFC) (PR #129706)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 08:11:18 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 {
----------------
fhahn wrote:
I think we should split off the flags from VPRecipeWithFlags and generally move in this direction.
For the type, this would just add a type field and a `::getScalarType`? I'll check that, although for now, the only user would be `VPInstructionWithType`, so it might be simpler to do this as follow-up, once more users arise?
https://github.com/llvm/llvm-project/pull/129706
More information about the llvm-commits
mailing list