xref: /llvm-project/llvm/lib/Transforms/Vectorize/VPlanValue.h (revision af98b875e89e3b8071f4c617916b5b9590cc30cc)
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/TinyPtrVector.h"
27 #include "llvm/ADT/iterator_range.h"
28 
29 namespace llvm {
30 
31 // Forward declarations.
32 class raw_ostream;
33 class Value;
34 class VPDef;
35 class VPSlotTracker;
36 class VPUser;
37 class VPRecipeBase;
38 class VPWidenMemoryInstructionRecipe;
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   friend class VPWidenMemoryInstructionRecipe;
54 
55   const unsigned char SubclassID; ///< Subclass identifier (for isa/dyn_cast).
56 
57   SmallVector<VPUser *, 1> Users;
58 
59 protected:
60   // Hold the underlying Value, if any, attached to this VPValue.
61   Value *UnderlyingVal;
62 
63   /// Pointer to the VPDef that defines this VPValue. If it is nullptr, the
64   /// VPValue is not defined by any recipe modeled in VPlan.
65   VPDef *Def;
66 
67   VPValue(const unsigned char SC, Value *UV = nullptr, VPDef *Def = nullptr);
68 
69   // DESIGN PRINCIPLE: Access to the underlying IR must be strictly limited to
70   // the front-end and back-end of VPlan so that the middle-end is as
71   // independent as possible of the underlying IR. We grant access to the
72   // underlying IR using friendship. In that way, we should be able to use VPlan
73   // for multiple underlying IRs (Polly?) by providing a new VPlan front-end,
74   // back-end and analysis information for the new IR.
75 
76   // Set \p Val as the underlying Value of this VPValue.
77   void setUnderlyingValue(Value *Val) {
78     assert(!UnderlyingVal && "Underlying Value is already set.");
79     UnderlyingVal = Val;
80   }
81 
82 public:
83   /// Return the underlying Value attached to this VPValue.
84   Value *getUnderlyingValue() { return UnderlyingVal; }
85   const Value *getUnderlyingValue() const { return UnderlyingVal; }
86 
87   /// An enumeration for keeping track of the concrete subclass of VPValue that
88   /// are actually instantiated. Values of this enumeration are kept in the
89   /// SubclassID field of the VPValue objects. They are used for concrete
90   /// type identification.
91   enum {
92     VPValueSC,
93     VPVInstructionSC,
94     VPVMemoryInstructionSC,
95     VPVReductionSC,
96     VPVReplicateSC,
97     VPVWidenSC,
98     VPVWidenCallSC,
99     VPVWidenCanonicalIVSC,
100     VPVWidenGEPSC,
101     VPVWidenSelectSC,
102 
103     // Phi-like VPValues. Need to be kept together.
104     VPVBlendSC,
105     VPVPredInstPHI,
106     // Header-phi recipes. Need to be kept together.
107     VPVCanonicalIVPHISC,
108     VPVActiveLaneMaskPHISC,
109     VPVFirstOrderRecurrencePHISC,
110     VPVWidenPHISC,
111     VPVWidenIntOrFpInductionSC,
112     VPVWidenPointerInductionSC,
113     VPVReductionPHISC,
114     VPVFirstHeaderPHISC = VPVCanonicalIVPHISC,
115     VPVLastPHISC = VPVReductionPHISC,
116   };
117 
118   VPValue(Value *UV = nullptr, VPDef *Def = nullptr)
119       : VPValue(VPValueSC, UV, Def) {}
120   VPValue(const VPValue &) = delete;
121   VPValue &operator=(const VPValue &) = delete;
122 
123   virtual ~VPValue();
124 
125   /// \return an ID for the concrete type of this object.
126   /// This is used to implement the classof checks. This should not be used
127   /// for any other purpose, as the values may change as LLVM evolves.
128   unsigned getVPValueID() const { return SubclassID; }
129 
130 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
131   void printAsOperand(raw_ostream &OS, VPSlotTracker &Tracker) const;
132   void print(raw_ostream &OS, VPSlotTracker &Tracker) const;
133 
134   /// Dump the value to stderr (for debugging).
135   void dump() const;
136 #endif
137 
138   unsigned getNumUsers() const { return Users.size(); }
139   void addUser(VPUser &User) { Users.push_back(&User); }
140 
141   /// Remove a single \p User from the list of users.
142   void removeUser(VPUser &User) {
143     bool Found = false;
144     // The same user can be added multiple times, e.g. because the same VPValue
145     // is used twice by the same VPUser. Remove a single one.
146     erase_if(Users, [&User, &Found](VPUser *Other) {
147       if (Found)
148         return false;
149       if (Other == &User) {
150         Found = true;
151         return true;
152       }
153       return false;
154     });
155   }
156 
157   typedef SmallVectorImpl<VPUser *>::iterator user_iterator;
158   typedef SmallVectorImpl<VPUser *>::const_iterator const_user_iterator;
159   typedef iterator_range<user_iterator> user_range;
160   typedef iterator_range<const_user_iterator> const_user_range;
161 
162   user_iterator user_begin() { return Users.begin(); }
163   const_user_iterator user_begin() const { return Users.begin(); }
164   user_iterator user_end() { return Users.end(); }
165   const_user_iterator user_end() const { return Users.end(); }
166   user_range users() { return user_range(user_begin(), user_end()); }
167   const_user_range users() const {
168     return const_user_range(user_begin(), user_end());
169   }
170 
171   /// Returns true if the value has more than one unique user.
172   bool hasMoreThanOneUniqueUser() {
173     if (getNumUsers() == 0)
174       return false;
175 
176     // Check if all users match the first user.
177     auto Current = std::next(user_begin());
178     while (Current != user_end() && *user_begin() == *Current)
179       Current++;
180     return Current != user_end();
181   }
182 
183   void replaceAllUsesWith(VPValue *New);
184 
185   VPDef *getDef() { return Def; }
186   const VPDef *getDef() const { return Def; }
187 
188   /// Returns the underlying IR value, if this VPValue is defined outside the
189   /// scope of VPlan. Returns nullptr if the VPValue is defined by a VPDef
190   /// inside a VPlan.
191   Value *getLiveInIRValue() {
192     assert(!getDef() &&
193            "VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
194     return getUnderlyingValue();
195   }
196   const Value *getLiveInIRValue() const {
197     assert(!getDef() &&
198            "VPValue is not a live-in; it is defined by a VPDef inside a VPlan");
199     return getUnderlyingValue();
200   }
201 };
202 
203 typedef DenseMap<Value *, VPValue *> Value2VPValueTy;
204 typedef DenseMap<VPValue *, Value *> VPValue2ValueTy;
205 
206 raw_ostream &operator<<(raw_ostream &OS, const VPValue &V);
207 
208 /// This class augments VPValue with operands which provide the inverse def-use
209 /// edges from VPValue's users to their defs.
210 class VPUser {
211 public:
212   /// Subclass identifier (for isa/dyn_cast).
213   enum class VPUserID {
214     Recipe,
215     LiveOut,
216   };
217 
218 private:
219   SmallVector<VPValue *, 2> Operands;
220 
221   VPUserID ID;
222 
223 protected:
224 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
225   /// Print the operands to \p O.
226   void printOperands(raw_ostream &O, VPSlotTracker &SlotTracker) const;
227 #endif
228 
229   VPUser(ArrayRef<VPValue *> Operands, VPUserID ID) : ID(ID) {
230     for (VPValue *Operand : Operands)
231       addOperand(Operand);
232   }
233 
234   VPUser(std::initializer_list<VPValue *> Operands, VPUserID ID)
235       : VPUser(ArrayRef<VPValue *>(Operands), ID) {}
236 
237   template <typename IterT>
238   VPUser(iterator_range<IterT> Operands, VPUserID ID) : ID(ID) {
239     for (VPValue *Operand : Operands)
240       addOperand(Operand);
241   }
242 
243 public:
244   VPUser() = delete;
245   VPUser(const VPUser &) = delete;
246   VPUser &operator=(const VPUser &) = delete;
247   virtual ~VPUser() {
248     for (VPValue *Op : operands())
249       Op->removeUser(*this);
250   }
251 
252   VPUserID getVPUserID() const { return ID; }
253 
254   void addOperand(VPValue *Operand) {
255     Operands.push_back(Operand);
256     Operand->addUser(*this);
257   }
258 
259   unsigned getNumOperands() const { return Operands.size(); }
260   inline VPValue *getOperand(unsigned N) const {
261     assert(N < Operands.size() && "Operand index out of bounds");
262     return Operands[N];
263   }
264 
265   void setOperand(unsigned I, VPValue *New) {
266     Operands[I]->removeUser(*this);
267     Operands[I] = New;
268     New->addUser(*this);
269   }
270 
271   void removeLastOperand() {
272     VPValue *Op = Operands.pop_back_val();
273     Op->removeUser(*this);
274   }
275 
276   typedef SmallVectorImpl<VPValue *>::iterator operand_iterator;
277   typedef SmallVectorImpl<VPValue *>::const_iterator const_operand_iterator;
278   typedef iterator_range<operand_iterator> operand_range;
279   typedef iterator_range<const_operand_iterator> const_operand_range;
280 
281   operand_iterator op_begin() { return Operands.begin(); }
282   const_operand_iterator op_begin() const { return Operands.begin(); }
283   operand_iterator op_end() { return Operands.end(); }
284   const_operand_iterator op_end() const { return Operands.end(); }
285   operand_range operands() { return operand_range(op_begin(), op_end()); }
286   const_operand_range operands() const {
287     return const_operand_range(op_begin(), op_end());
288   }
289 
290   /// Method to support type inquiry through isa, cast, and dyn_cast.
291   static inline bool classof(const VPDef *Recipe);
292 
293   /// Returns true if the VPUser uses scalars of operand \p Op. Conservatively
294   /// returns if only first (scalar) lane is used, as default.
295   virtual bool usesScalars(const VPValue *Op) const {
296     assert(is_contained(operands(), Op) &&
297            "Op must be an operand of the recipe");
298     return onlyFirstLaneUsed(Op);
299   }
300 
301   /// Returns true if the VPUser only uses the first lane of operand \p Op.
302   /// Conservatively returns false.
303   virtual bool onlyFirstLaneUsed(const VPValue *Op) const {
304     assert(is_contained(operands(), Op) &&
305            "Op must be an operand of the recipe");
306     return false;
307   }
308 };
309 
310 /// This class augments a recipe with a set of VPValues defined by the recipe.
311 /// It allows recipes to define zero, one or multiple VPValues. A VPDef owns
312 /// the VPValues it defines and is responsible for deleting its defined values.
313 /// Single-value VPDefs that also inherit from VPValue must make sure to inherit
314 /// from VPDef before VPValue.
315 class VPDef {
316   friend class VPValue;
317 
318   /// Subclass identifier (for isa/dyn_cast).
319   const unsigned char SubclassID;
320 
321   /// The VPValues defined by this VPDef.
322   TinyPtrVector<VPValue *> DefinedValues;
323 
324   /// Add \p V as a defined value by this VPDef.
325   void addDefinedValue(VPValue *V) {
326     assert(V->getDef() == this &&
327            "can only add VPValue already linked with this VPDef");
328     DefinedValues.push_back(V);
329   }
330 
331   /// Remove \p V from the values defined by this VPDef. \p V must be a defined
332   /// value of this VPDef.
333   void removeDefinedValue(VPValue *V) {
334     assert(V->getDef() == this &&
335            "can only remove VPValue linked with this VPDef");
336     assert(is_contained(DefinedValues, V) &&
337            "VPValue to remove must be in DefinedValues");
338     erase_value(DefinedValues, V);
339     V->Def = nullptr;
340   }
341 
342 public:
343   /// An enumeration for keeping track of the concrete subclass of VPRecipeBase
344   /// that is actually instantiated. Values of this enumeration are kept in the
345   /// SubclassID field of the VPRecipeBase objects. They are used for concrete
346   /// type identification.
347   using VPRecipeTy = enum {
348     VPBranchOnMaskSC,
349     VPExpandSCEVSC,
350     VPInstructionSC,
351     VPInterleaveSC,
352     VPReductionSC,
353     VPReplicateSC,
354     VPScalarIVStepsSC,
355     VPWidenCallSC,
356     VPWidenCanonicalIVSC,
357     VPWidenGEPSC,
358     VPWidenMemoryInstructionSC,
359     VPWidenSC,
360     VPWidenSelectSC,
361 
362     // Phi-like recipes. Need to be kept together.
363     VPBlendSC,
364     VPPredInstPHISC,
365     // Header-phi recipes. Need to be kept together.
366     VPCanonicalIVPHISC,
367     VPActiveLaneMaskPHISC,
368     VPFirstOrderRecurrencePHISC,
369     VPWidenPHISC,
370     VPWidenIntOrFpInductionSC,
371     VPWidenPointerInductionSC,
372     VPReductionPHISC,
373     VPFirstPHISC = VPBlendSC,
374     VPFirstHeaderPHISC = VPCanonicalIVPHISC,
375     VPLastPHISC = VPReductionPHISC,
376   };
377 
378   VPDef(const unsigned char SC) : SubclassID(SC) {}
379 
380   virtual ~VPDef() {
381     for (VPValue *D : make_early_inc_range(DefinedValues)) {
382       assert(D->Def == this &&
383              "all defined VPValues should point to the containing VPDef");
384       assert(D->getNumUsers() == 0 &&
385              "all defined VPValues should have no more users");
386       D->Def = nullptr;
387       delete D;
388     }
389   }
390 
391   /// Returns the only VPValue defined by the VPDef. Can only be called for
392   /// VPDefs with a single defined value.
393   VPValue *getVPSingleValue() {
394     assert(DefinedValues.size() == 1 && "must have exactly one defined value");
395     assert(DefinedValues[0] && "defined value must be non-null");
396     return DefinedValues[0];
397   }
398   const VPValue *getVPSingleValue() const {
399     assert(DefinedValues.size() == 1 && "must have exactly one defined value");
400     assert(DefinedValues[0] && "defined value must be non-null");
401     return DefinedValues[0];
402   }
403 
404   /// Returns the VPValue with index \p I defined by the VPDef.
405   VPValue *getVPValue(unsigned I) {
406     assert(DefinedValues[I] && "defined value must be non-null");
407     return DefinedValues[I];
408   }
409   const VPValue *getVPValue(unsigned I) const {
410     assert(DefinedValues[I] && "defined value must be non-null");
411     return DefinedValues[I];
412   }
413 
414   /// Returns an ArrayRef of the values defined by the VPDef.
415   ArrayRef<VPValue *> definedValues() { return DefinedValues; }
416   /// Returns an ArrayRef of the values defined by the VPDef.
417   ArrayRef<VPValue *> definedValues() const { return DefinedValues; }
418 
419   /// Returns the number of values defined by the VPDef.
420   unsigned getNumDefinedValues() const { return DefinedValues.size(); }
421 
422   /// \return an ID for the concrete type of this object.
423   /// This is used to implement the classof checks. This should not be used
424   /// for any other purpose, as the values may change as LLVM evolves.
425   unsigned getVPDefID() const { return SubclassID; }
426 
427 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
428   /// Dump the VPDef to stderr (for debugging).
429   void dump() const;
430 
431   /// Each concrete VPDef prints itself.
432   virtual void print(raw_ostream &O, const Twine &Indent,
433                      VPSlotTracker &SlotTracker) const = 0;
434 #endif
435 };
436 
437 class VPlan;
438 class VPBasicBlock;
439 
440 /// This class can be used to assign consecutive numbers to all VPValues in a
441 /// VPlan and allows querying the numbering for printing, similar to the
442 /// ModuleSlotTracker for IR values.
443 class VPSlotTracker {
444   DenseMap<const VPValue *, unsigned> Slots;
445   unsigned NextSlot = 0;
446 
447   void assignSlot(const VPValue *V);
448   void assignSlots(const VPlan &Plan);
449 
450 public:
451   VPSlotTracker(const VPlan *Plan = nullptr) {
452     if (Plan)
453       assignSlots(*Plan);
454   }
455 
456   unsigned getSlot(const VPValue *V) const {
457     auto I = Slots.find(V);
458     if (I == Slots.end())
459       return -1;
460     return I->second;
461   }
462 };
463 
464 } // namespace llvm
465 
466 #endif // LLVM_TRANSFORMS_VECTORIZE_VPLAN_VALUE_H
467