[VPlan] Add VPReductionSC to VPUser::classof, unify VPValue IDs.

This is a follow-up to 00a6601136 to make
isa<VPReductionRecipe> work and unifies the VPValue ID names, by making
sure they all consistently start with VPV*.
This commit is contained in:
Florian Hahn 2020-11-25 10:04:22 +00:00
parent 0cb38699a0
commit ad5b83ddcf
No known key found for this signature in database
GPG Key ID: 61D7554B5CECDC0D
3 changed files with 26 additions and 12 deletions

View File

@ -726,6 +726,7 @@ inline bool VPUser::classof(const VPRecipeBase *Recipe) {
Recipe->getVPRecipeID() == VPRecipeBase::VPBlendSC || Recipe->getVPRecipeID() == VPRecipeBase::VPBlendSC ||
Recipe->getVPRecipeID() == VPRecipeBase::VPInterleaveSC || Recipe->getVPRecipeID() == VPRecipeBase::VPInterleaveSC ||
Recipe->getVPRecipeID() == VPRecipeBase::VPReplicateSC || Recipe->getVPRecipeID() == VPRecipeBase::VPReplicateSC ||
Recipe->getVPRecipeID() == VPRecipeBase::VPReductionSC ||
Recipe->getVPRecipeID() == VPRecipeBase::VPBranchOnMaskSC || Recipe->getVPRecipeID() == VPRecipeBase::VPBranchOnMaskSC ||
Recipe->getVPRecipeID() == VPRecipeBase::VPWidenMemoryInstructionSC; Recipe->getVPRecipeID() == VPRecipeBase::VPWidenMemoryInstructionSC;
} }
@ -760,7 +761,7 @@ protected:
public: public:
VPInstruction(unsigned Opcode, ArrayRef<VPValue *> Operands) VPInstruction(unsigned Opcode, ArrayRef<VPValue *> Operands)
: VPUser(Operands), VPValue(VPValue::VPInstructionSC), : VPUser(Operands), VPValue(VPValue::VPVInstructionSC),
VPRecipeBase(VPRecipeBase::VPInstructionSC), Opcode(Opcode) {} VPRecipeBase(VPRecipeBase::VPInstructionSC), Opcode(Opcode) {}
VPInstruction(unsigned Opcode, std::initializer_list<VPValue *> Operands) VPInstruction(unsigned Opcode, std::initializer_list<VPValue *> Operands)
@ -768,7 +769,7 @@ public:
/// Method to support type inquiry through isa, cast, and dyn_cast. /// Method to support type inquiry through isa, cast, and dyn_cast.
static inline bool classof(const VPValue *V) { static inline bool classof(const VPValue *V) {
return V->getVPValueID() == VPValue::VPInstructionSC; return V->getVPValueID() == VPValue::VPVInstructionSC;
} }
VPInstruction *clone() const { VPInstruction *clone() const {
@ -832,7 +833,7 @@ class VPWidenRecipe : public VPRecipeBase, public VPValue, public VPUser {
public: public:
template <typename IterT> template <typename IterT>
VPWidenRecipe(Instruction &I, iterator_range<IterT> Operands) VPWidenRecipe(Instruction &I, iterator_range<IterT> Operands)
: VPRecipeBase(VPRecipeBase::VPWidenSC), VPValue(VPValue::VPWidenSC, &I), : VPRecipeBase(VPRecipeBase::VPWidenSC), VPValue(VPValue::VPVWidenSC, &I),
VPUser(Operands) {} VPUser(Operands) {}
~VPWidenRecipe() override = default; ~VPWidenRecipe() override = default;
@ -842,7 +843,7 @@ public:
return V->getVPRecipeID() == VPRecipeBase::VPWidenSC; return V->getVPRecipeID() == VPRecipeBase::VPWidenSC;
} }
static inline bool classof(const VPValue *V) { static inline bool classof(const VPValue *V) {
return V->getVPValueID() == VPValue::VPWidenSC; return V->getVPValueID() == VPValue::VPVWidenSC;
} }
/// Produce widened copies of all Ingredients. /// Produce widened copies of all Ingredients.
@ -1086,7 +1087,7 @@ public:
VPValue *VecOp, VPValue *CondOp, bool NoNaN, VPValue *VecOp, VPValue *CondOp, bool NoNaN,
const TargetTransformInfo *TTI) const TargetTransformInfo *TTI)
: VPRecipeBase(VPRecipeBase::VPReductionSC), : VPRecipeBase(VPRecipeBase::VPReductionSC),
VPValue(VPValue::VPReductionSC, I), VPUser({ChainOp, VecOp}), VPValue(VPValue::VPVReductionSC, I), VPUser({ChainOp, VecOp}),
RdxDesc(R), NoNaN(NoNaN), TTI(TTI) { RdxDesc(R), NoNaN(NoNaN), TTI(TTI) {
if (CondOp) if (CondOp)
addOperand(CondOp); addOperand(CondOp);
@ -1096,7 +1097,7 @@ public:
/// Method to support type inquiry through isa, cast, and dyn_cast. /// Method to support type inquiry through isa, cast, and dyn_cast.
static inline bool classof(const VPValue *V) { static inline bool classof(const VPValue *V) {
return V->getVPValueID() == VPValue::VPReductionSC; return V->getVPValueID() == VPValue::VPVReductionSC;
} }
static inline bool classof(const VPRecipeBase *V) { static inline bool classof(const VPRecipeBase *V) {
return V->getVPRecipeID() == VPRecipeBase::VPReductionSC; return V->getVPRecipeID() == VPRecipeBase::VPReductionSC;
@ -1257,14 +1258,14 @@ class VPWidenMemoryInstructionRecipe : public VPRecipeBase,
public: public:
VPWidenMemoryInstructionRecipe(LoadInst &Load, VPValue *Addr, VPValue *Mask) VPWidenMemoryInstructionRecipe(LoadInst &Load, VPValue *Addr, VPValue *Mask)
: VPRecipeBase(VPWidenMemoryInstructionSC), : VPRecipeBase(VPWidenMemoryInstructionSC),
VPValue(VPValue::VPMemoryInstructionSC, &Load), VPUser({Addr}) { VPValue(VPValue::VPVMemoryInstructionSC, &Load), VPUser({Addr}) {
setMask(Mask); setMask(Mask);
} }
VPWidenMemoryInstructionRecipe(StoreInst &Store, VPValue *Addr, VPWidenMemoryInstructionRecipe(StoreInst &Store, VPValue *Addr,
VPValue *StoredValue, VPValue *Mask) VPValue *StoredValue, VPValue *Mask)
: VPRecipeBase(VPWidenMemoryInstructionSC), : VPRecipeBase(VPWidenMemoryInstructionSC),
VPValue(VPValue::VPMemoryInstructionSC, &Store), VPValue(VPValue::VPVMemoryInstructionSC, &Store),
VPUser({Addr, StoredValue}) { VPUser({Addr, StoredValue}) {
setMask(Mask); setMask(Mask);
} }

View File

@ -87,10 +87,10 @@ public:
/// type identification. /// type identification.
enum { enum {
VPValueSC, VPValueSC,
VPInstructionSC, VPVInstructionSC,
VPMemoryInstructionSC, VPVMemoryInstructionSC,
VPReductionSC, VPVReductionSC,
VPWidenSC, VPVWidenSC,
VPVWidenCallSC, VPVWidenCallSC,
VPVWidenGEPSC, VPVWidenGEPSC,
VPVWidenSelectSC, VPVWidenSelectSC,

View File

@ -521,6 +521,19 @@ TEST(VPRecipeTest, CastVPWidenMemoryInstructionRecipeToVPUser) {
delete Load; delete Load;
} }
TEST(VPRecipeTest, CastVPReductionRecipeToVPUser) {
LLVMContext C;
VPValue ChainOp;
VPValue VecOp;
VPValue CondOp;
VPReductionRecipe Recipe(nullptr, nullptr, &ChainOp, &CondOp, &VecOp, false,
nullptr);
EXPECT_TRUE(isa<VPUser>(&Recipe));
VPRecipeBase *BaseR = &Recipe;
EXPECT_TRUE(isa<VPUser>(BaseR));
}
struct VPDoubleValueDef : public VPUser, public VPDef { struct VPDoubleValueDef : public VPUser, public VPDef {
VPDoubleValueDef(ArrayRef<VPValue *> Operands) : VPUser(Operands), VPDef() { VPDoubleValueDef(ArrayRef<VPValue *> Operands) : VPUser(Operands), VPDef() {
new VPValue(nullptr, this); new VPValue(nullptr, this);