Lines Matching defs:VFs
3831 /// Holds the VFs applicable to this VPlan.
3832 SmallSetVector<ElementCount, 2> VFs;
4000 void addVF(ElementCount VF) { VFs.insert(VF); }
4004 VFs.clear();
4005 VFs.insert(VF);
4008 bool hasVF(ElementCount VF) { return VFs.count(VF); }
4010 return any_of(VFs, [](ElementCount VF) { return VF.isScalable(); });
4013 /// Returns an iterator range over all VFs of the plan.
4016 return {VFs.begin(), VFs.end()};
4019 bool hasScalarVFOnly() const { return VFs.size() == 1 && VFs[0].isScalar(); }
4034 /// Return a string with the name of the plan and the applicable VFs and UFs.