xref: /llvm-project/llvm/lib/Transforms/Vectorize/VPlanValue.h (revision 266ff98cba44b9e969e6894eaa30d4fe37647210)
1 //===- VPlanValue.h - Represent Values in Vectorizer Plan -----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 ///
9 /// \file
10 /// This file contains the declarations of the entities induced by Vectorization
11 /// Plans, e.g. the instructions the VPlan intends to generate if executed.
12 /// VPlan models the following entities:
13 /// VPValue   VPUser   VPDef
14 ///    |        |
15 ///   VPInstruction
16 /// These are documented in docs/VectorizationPlan.rst.
17 ///
18 //===----------------------------------------------------------------------===//
19 
20 #ifndef LLVM_TRANSFORMS_VECTORIZE_VPLAN_VALUE_H
21 #define LLVM_TRANSFORMS_VECTORIZE_VPLAN_VALUE_H
22 
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/STLExtras.h"
25 #include "llvm/ADT/SmallVector.h"
26 #include "llvm/ADT/StringMap.h"
27 #include "llvm/ADT/TinyPtrVector.h"
28 #include "llvm/ADT/iterator_range.h"
29 
30 namespace llvm {
31 
32 // Forward declarations.
33 class raw_ostream;
34 class Value;
35 class VPDef;
36 class VPSlotTracker;
37 class VPUser;
38 class VPRecipeBase;
39 
40 // This is the base class of the VPlan Def/Use graph, used for modeling the data
41 // flow into, within and out of the VPlan. VPValues can stand for live-ins
42 // coming from the input IR, instructions which VPlan will generate if executed
43 // and live-outs which the VPlan will need to fix accordingly.
44 class VPValue {
45   friend class VPBuilder;
46   friend class VPDef;
47   friend class VPInstruction;
48   friend struct VPlanTransforms;
49   friend class VPBasicBlock;
50   friend class VPInterleavedAccessInfo;
51   friend class VPSlotTracker;
52   friend class VPRecipeBase;
53 
54   const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast).
55 
56   SmallVector<VPUser *, 1> Users;
57 
58 protected:
59   // Hold the underlying Value, if any, attached to this VPValue.
60   Value *UnderlyingVal;
61 
62   /// Pointer to the VPDef that defines this VPValue. If it is nullptr, the
63   /// VPValue is not defined by any recipe modeled in VPlan.
64   VPDef *Def;
65 
66   VPValue(const unsigned char SC, Value *UV = nullptr, VPDef *Def = nullptr);
67 
68   // DESIGN PRINCIPLE: Access to the underlying IR must be strictly limited to
69   // the front-end and back-end of VPlan so that the middle-end is as
70   // independent as possible of the underlying IR. We grant access to the
71   // underlying IR using friendship. In that way, we should be able to use VPlan
72   // for multiple underlying IRs (Polly?) by providing a new VPlan front-end,
73   // back-end and analysis information for the new IR.
74 
75 public:
76   /// Return the underlying Value attached to this VPValue.
77   Value *getUnderlyingValue() const { return UnderlyingVal; }
78 
79   /// An enumeration for keeping track of the concrete subclass of VPValue that
80   /// are actually instantiated.
81   enum {
82     VPValueSC, /// A generic VPValue, like live-in values or defined by a recipe
83                /// that defines multiple values.
84     VPVRecipeSC /// A VPValue sub-class that is a VPRecipeBase.
85   };
86 
87   /// Create a live-in VPValue.
88   VPValue(Value *UV = nullptr) : VPValue(VPValueSC, UV, nullptr) {}
89   /// Create a VPValue for a \p Def which is a subclass of VPValue.
90   VPValue(VPDef *Def, Value *UV = nullptr) : VPValue(VPVRecipeSC, UV, Def) {}
91   /// Create a VPValue for a \p Def which defines multiple values.
92   VPValue(Value *UV, VPDef *Def) : VPValue(VPValueSC, UV, Def) {}
93   VPValue(const VPValue &) = delete;
94   VPValue &operator=(const VPValue &) = delete;
95 
96   virtual ~VPValue();
97 
98   /// \return an ID for the concrete type of this object.
99   /// This is used to implement the classof checks. This should not be used
100   /// for any other purpose, as the values may change as LLVM evolves.
101   unsigned getVPValueID() const { return SubclassID; }
102 
103 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
104   void printAsOperand(raw_ostream &OS, VPSlotTracker &Tracker) const;
105   void print(raw_ostream &OS, VPSlotTracker &Tracker) const;
106 
107   /// Dump the value to stderr (for debugging).
108   void dump() const;
109 #endif
110 
111   unsigned getNumUsers() const { return Users.size(); }
112   void addUser(VPUser &User) { Users.push_back(&User); }
113 
114   /// Remove a single \p User from the list of users.
115   void removeUser(VPUser &User) {
116     // The same user can be added multiple times, e.g. because the same VPValue
117     // is used twice by the same VPUser. Remove a single one.
118     auto *I = find(Users, &User);
119     if (I != Users.end())
120       Users.erase(I);
121   }
122 
123   typedef SmallVectorImpl<VPUser *>::iterator user_iterator;
124   typedef SmallVectorImpl<VPUser *>::const_iterator const_user_iterator;
125   typedef iterator_range<user_iterator> user_range;
126   typedef iterator_range<const_user_iterator> const_user_range;
127 
128   user_iterator user_begin() { return Users.begin(); }
129   const_user_iterator user_begin() const { return Users.begin(); }
130   user_iterator user_end() { return Users.end(); }
131   const_user_iterator user_end() const { return Users.end(); }
132   user_range users() { return user_range(user_begin(), user_end()); }
133   const_user_range users() const {
134     return const_user_range(user_begin(), user_end());
135   }
136 
137   /// Returns true if the value has more than one unique user.
138   bool hasMoreThanOneUniqueUser() const {
139     if (getNumUsers() == 0)
140       return false;
141 
142     // Check if all users match the first user.
143     auto Current = std::next(user_begin());
144     while (Current != user_end() && *user_begin() == *Current)
145       Current++;
146     return Current != user_end();
147   }
148 
149   void replaceAllUsesWith(VPValue *New);
150 
151   /// Go through the uses list for this VPValue and make each use point to \p
152   /// New if the callback ShouldReplace returns true for the given use specified
153   /// by a pair of (VPUser, the use index).
154   void replaceUsesWithIf(
155       VPValue *New,
156       llvm::function_ref<bool(VPUser &U, unsigned Idx)> ShouldReplace);
157 
158   /// Returns the recipe defining this VPValue or nullptr if it is not defined
159   /// by a recipe, i.e. is a live-in.
160   VPRecipeBase *getDefiningRecipe();
161   const VPRecipeBase *getDefiningRecipe() const;
162 
163   /// Returns true if this VPValue is defined by a recipe.
164   bool hasDefiningRecipe() const { return getDefiningRecipe(); }
165 
166   /// Returns true if this VPValue is a live-in, i.e. defined outside the VPlan.
167   bool isLiveIn() const { return !hasDefiningRecipe(); }
168 
169   /// Returns the underlying IR value, if this VPValue is defined outside the
170   /// scope of VPlan. Returns nullptr if the VPValue is defined by a VPDef
171   /// inside a VPlan.
172   Value *getLiveInIRValue() {
173     assert(isLiveIn() &&
174            "VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
175     return getUnderlyingValue();
176   }
177   const Value *getLiveInIRValue() const {
178     assert(isLiveIn() &&
179            "VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
180     return getUnderlyingValue();
181   }
182 
183   /// Returns true if the VPValue is defined outside any loop region.
184   bool isDefinedOutsideLoopRegions() const;
185 
186   // Set \p Val as the underlying Value of this VPValue.
187   void setUnderlyingValue(Value *Val) {
188     assert(!UnderlyingVal && "Underlying Value is already set.");
189     UnderlyingVal = Val;
190   }
191 };
192 
193 typedef DenseMap<Value *, VPValue *> Value2VPValueTy;
194 typedef DenseMap<VPValue *, Value *> VPValue2ValueTy;
195 
196 raw_ostream &operator<<(raw_ostream &OS, const VPValue &V);
197 
198 /// This class augments VPValue with operands which provide the inverse def-use
199 /// edges from VPValue's users to their defs.
200 class VPUser {
201 public:
202   /// Subclass identifier (for isa/dyn_cast).
203   enum class VPUserID {
204     Recipe,
205     LiveOut,
206   };
207 
208 private:
209   SmallVector<VPValue *, 2> Operands;
210 
211   VPUserID ID;
212 
213 protected:
214 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
215   /// Print the operands to \p O.
216   void printOperands(raw_ostream &O, VPSlotTracker &SlotTracker) const;
217 #endif
218 
219   VPUser(ArrayRef<VPValue *> Operands, VPUserID ID) : ID(ID) {
220     for (VPValue *Operand : Operands)
221       addOperand(Operand);
222   }
223 
224   VPUser(std::initializer_list<VPValue *> Operands, VPUserID ID)
225       : VPUser(ArrayRef<VPValue *>(Operands), ID) {}
226 
227   template <typename IterT>
228   VPUser(iterator_range<IterT> Operands, VPUserID ID) : ID(ID) {
229     for (VPValue *Operand : Operands)
230       addOperand(Operand);
231   }
232 
233 public:
234   VPUser() = delete;
235   VPUser(const VPUser &) = delete;
236   VPUser &operator=(const VPUser &) = delete;
237   virtual ~VPUser() {
238     for (VPValue *Op : operands())
239       Op->removeUser(*this);
240   }
241 
242   VPUserID getVPUserID() const { return ID; }
243 
244   void addOperand(VPValue *Operand) {
245     Operands.push_back(Operand);
246     Operand->addUser(*this);
247   }
248 
249   unsigned getNumOperands() const { return Operands.size(); }
250   inline VPValue *getOperand(unsigned N) const {
251     assert(N < Operands.size() && "Operand index out of bounds");
252     return Operands[N];
253   }
254 
255   void setOperand(unsigned I, VPValue *New) {
256     Operands[I]->removeUser(*this);
257     Operands[I] = New;
258     New->addUser(*this);
259   }
260 
261   typedef SmallVectorImpl<VPValue *>::iterator operand_iterator;
262   typedef SmallVectorImpl<VPValue *>::const_iterator const_operand_iterator;
263   typedef iterator_range<operand_iterator> operand_range;
264   typedef iterator_range<const_operand_iterator> const_operand_range;
265 
266   operand_iterator op_begin() { return Operands.begin(); }
267   const_operand_iterator op_begin() const { return Operands.begin(); }
268   operand_iterator op_end() { return Operands.end(); }
269   const_operand_iterator op_end() const { return Operands.end(); }
270   operand_range operands() { return operand_range(op_begin(), op_end()); }
271   const_operand_range operands() const {
272     return const_operand_range(op_begin(), op_end());
273   }
274 
275   /// Returns true if the VPUser uses scalars of operand \p Op. Conservatively
276   /// returns if only first (scalar) lane is used, as default.
277   virtual bool usesScalars(const VPValue *Op) const {
278     assert(is_contained(operands(), Op) &&
279            "Op must be an operand of the recipe");
280     return onlyFirstLaneUsed(Op);
281   }
282 
283   /// Returns true if the VPUser only uses the first lane of operand \p Op.
284   /// Conservatively returns false.
285   virtual bool onlyFirstLaneUsed(const VPValue *Op) const {
286     assert(is_contained(operands(), Op) &&
287            "Op must be an operand of the recipe");
288     return false;
289   }
290 
291   /// Returns true if the VPUser only uses the first part of operand \p Op.
292   /// Conservatively returns false.
293   virtual bool onlyFirstPartUsed(const VPValue *Op) const {
294     assert(is_contained(operands(), Op) &&
295            "Op must be an operand of the recipe");
296     return false;
297   }
298 };
299 
300 /// This class augments a recipe with a set of VPValues defined by the recipe.
301 /// It allows recipes to define zero, one or multiple VPValues. A VPDef owns
302 /// the VPValues it defines and is responsible for deleting its defined values.
303 /// Single-value VPDefs that also inherit from VPValue must make sure to inherit
304 /// from VPDef before VPValue.
305 class VPDef {
306   friend class VPValue;
307 
308   /// Subclass identifier (for isa/dyn_cast).
309   const unsigned char SubclassID;
310 
311   /// The VPValues defined by this VPDef.
312   TinyPtrVector<VPValue *> DefinedValues;
313 
314   /// Add \p V as a defined value by this VPDef.
315   void addDefinedValue(VPValue *V) {
316     assert(V->Def == this &&
317            "can only add VPValue already linked with this VPDef");
318     DefinedValues.push_back(V);
319   }
320 
321   /// Remove \p V from the values defined by this VPDef. \p V must be a defined
322   /// value of this VPDef.
323   void removeDefinedValue(VPValue *V) {
324     assert(V->Def == this && "can only remove VPValue linked with this VPDef");
325     assert(is_contained(DefinedValues, V) &&
326            "VPValue to remove must be in DefinedValues");
327     llvm::erase(DefinedValues, V);
328     V->Def = nullptr;
329   }
330 
331 public:
332   /// An enumeration for keeping track of the concrete subclass of VPRecipeBase
333   /// that is actually instantiated. Values of this enumeration are kept in the
334   /// SubclassID field of the VPRecipeBase objects. They are used for concrete
335   /// type identification.
336   using VPRecipeTy = enum {
337     VPBranchOnMaskSC,
338     VPDerivedIVSC,
339     VPExpandSCEVSC,
340     VPIRInstructionSC,
341     VPInstructionSC,
342     VPInterleaveSC,
343     VPReductionEVLSC,
344     VPReductionSC,
345     VPReplicateSC,
346     VPScalarCastSC,
347     VPScalarIVStepsSC,
348     VPVectorPointerSC,
349     VPReverseVectorPointerSC,
350     VPWidenCallSC,
351     VPWidenCanonicalIVSC,
352     VPWidenCastSC,
353     VPWidenGEPSC,
354     VPWidenIntrinsicSC,
355     VPWidenLoadEVLSC,
356     VPWidenLoadSC,
357     VPWidenStoreEVLSC,
358     VPWidenStoreSC,
359     VPWidenSC,
360     VPWidenEVLSC,
361     VPWidenSelectSC,
362     VPBlendSC,
363     VPHistogramSC,
364     // START: Phi-like recipes. Need to be kept together.
365     VPWidenPHISC,
366     VPPredInstPHISC,
367     // START: SubclassID for recipes that inherit VPHeaderPHIRecipe.
368     // VPHeaderPHIRecipe need to be kept together.
369     VPCanonicalIVPHISC,
370     VPActiveLaneMaskPHISC,
371     VPEVLBasedIVPHISC,
372     VPFirstOrderRecurrencePHISC,
373     VPWidenIntOrFpInductionSC,
374     VPWidenPointerInductionSC,
375     VPReductionPHISC,
376     // END: SubclassID for recipes that inherit VPHeaderPHIRecipe
377     // END: Phi-like recipes
378     VPFirstPHISC = VPWidenPHISC,
379     VPFirstHeaderPHISC = VPCanonicalIVPHISC,
380     VPLastHeaderPHISC = VPReductionPHISC,
381     VPLastPHISC = VPReductionPHISC,
382   };
383 
384   VPDef(const unsigned char SC) : SubclassID(SC) {}
385 
386   virtual ~VPDef() {
387     for (VPValue *D : make_early_inc_range(DefinedValues)) {
388       assert(D->Def == this &&
389              "all defined VPValues should point to the containing VPDef");
390       assert(D->getNumUsers() == 0 &&
391              "all defined VPValues should have no more users");
392       D->Def = nullptr;
393       delete D;
394     }
395   }
396 
397   /// Returns the only VPValue defined by the VPDef. Can only be called for
398   /// VPDefs with a single defined value.
399   VPValue *getVPSingleValue() {
400     assert(DefinedValues.size() == 1 && "must have exactly one defined value");
401     assert(DefinedValues[0] && "defined value must be non-null");
402     return DefinedValues[0];
403   }
404   const VPValue *getVPSingleValue() const {
405     assert(DefinedValues.size() == 1 && "must have exactly one defined value");
406     assert(DefinedValues[0] && "defined value must be non-null");
407     return DefinedValues[0];
408   }
409 
410   /// Returns the VPValue with index \p I defined by the VPDef.
411   VPValue *getVPValue(unsigned I) {
412     assert(DefinedValues[I] && "defined value must be non-null");
413     return DefinedValues[I];
414   }
415   const VPValue *getVPValue(unsigned I) const {
416     assert(DefinedValues[I] && "defined value must be non-null");
417     return DefinedValues[I];
418   }
419 
420   /// Returns an ArrayRef of the values defined by the VPDef.
421   ArrayRef<VPValue *> definedValues() { return DefinedValues; }
422   /// Returns an ArrayRef of the values defined by the VPDef.
423   ArrayRef<VPValue *> definedValues() const { return DefinedValues; }
424 
425   /// Returns the number of values defined by the VPDef.
426   unsigned getNumDefinedValues() const { return DefinedValues.size(); }
427 
428   /// \return an ID for the concrete type of this object.
429   /// This is used to implement the classof checks. This should not be used
430   /// for any other purpose, as the values may change as LLVM evolves.
431   unsigned getVPDefID() const { return SubclassID; }
432 
433 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
434   /// Dump the VPDef to stderr (for debugging).
435   void dump() const;
436 
437   /// Each concrete VPDef prints itself.
438   virtual void print(raw_ostream &O, const Twine &Indent,
439                      VPSlotTracker &SlotTracker) const = 0;
440 #endif
441 };
442 
443 class VPlan;
444 class VPBasicBlock;
445 
446 /// This class can be used to assign names to VPValues. For VPValues without
447 /// underlying value, assign consecutive numbers and use those as names (wrapped
448 /// in vp<>). Otherwise, use the name from the underlying value (wrapped in
449 /// ir<>), appending a .V version number if there are multiple uses of the same
450 /// name. Allows querying names for VPValues for printing, similar to the
451 /// ModuleSlotTracker for IR values.
452 class VPSlotTracker {
453   /// Keep track of versioned names assigned to VPValues with underlying IR
454   /// values.
455   DenseMap<const VPValue *, std::string> VPValue2Name;
456   /// Keep track of the next number to use to version the base name.
457   StringMap<unsigned> BaseName2Version;
458 
459   /// Number to assign to the next VPValue without underlying value.
460   unsigned NextSlot = 0;
461 
462   void assignName(const VPValue *V);
463   void assignNames(const VPlan &Plan);
464   void assignNames(const VPBasicBlock *VPBB);
465 
466 public:
467   VPSlotTracker(const VPlan *Plan = nullptr) {
468     if (Plan)
469       assignNames(*Plan);
470   }
471 
472   /// Returns the name assigned to \p V, if there is one, otherwise try to
473   /// construct one from the underlying value, if there's one; else return
474   /// <badref>.
475   std::string getOrCreateName(const VPValue *V) const;
476 };
477 
478 } // namespace llvm
479 
480 #endif // LLVM_TRANSFORMS_VECTORIZE_VPLAN_VALUE_H
481