LLVM 20.0.0git
VPRecipeBuilder.h
Go to the documentation of this file.
1//===- VPRecipeBuilder.h - Helper class to build recipes --------*- C++ -*-===//
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#ifndef LLVM_TRANSFORMS_VECTORIZE_VPRECIPEBUILDER_H
10#define LLVM_TRANSFORMS_VECTORIZE_VPRECIPEBUILDER_H
11
13#include "VPlan.h"
14#include "llvm/ADT/DenseMap.h"
17#include "llvm/IR/IRBuilder.h"
18
19namespace llvm {
20
21class LoopVectorizationLegality;
22class LoopVectorizationCostModel;
23class TargetLibraryInfo;
24struct HistogramInfo;
25
26/// Helper class to create VPRecipies from IR instructions.
28 /// The VPlan new recipes are added to.
29 VPlan &Plan;
30
31 /// The loop that we evaluate.
32 Loop *OrigLoop;
33
34 /// Target Library Info.
35 const TargetLibraryInfo *TLI;
36
37 /// The legality analysis.
39
40 /// The profitablity analysis.
42
44
45 VPBuilder &Builder;
46
47 /// When we if-convert we need to create edge masks. We have to cache values
48 /// so that we don't end up with exponential recursion/IR. Note that
49 /// if-conversion currently takes place during VPlan-construction, so these
50 /// caches are only used at that stage.
51 using EdgeMaskCacheTy =
54 EdgeMaskCacheTy EdgeMaskCache;
55 BlockMaskCacheTy BlockMaskCache;
56
57 // VPlan construction support: Hold a mapping from ingredients to
58 // their recipe.
60
61 /// Cross-iteration reduction & first-order recurrence phis for which we need
62 /// to add the incoming value from the backedge after all recipes have been
63 /// created.
65
66 /// Check if \p I can be widened at the start of \p Range and possibly
67 /// decrease the range such that the returned value holds for the entire \p
68 /// Range. The function should not be called for memory instructions or calls.
69 bool shouldWiden(Instruction *I, VFRange &Range) const;
70
71 /// Check if the load or store instruction \p I should widened for \p
72 /// Range.Start and potentially masked. Such instructions are handled by a
73 /// recipe that takes an additional VPInstruction for the mask.
74 VPWidenMemoryRecipe *tryToWidenMemory(Instruction *I,
76 VFRange &Range);
77
78 /// Check if an induction recipe should be constructed for \p Phi. If so build
79 /// and return it. If not, return null.
80 VPHeaderPHIRecipe *tryToOptimizeInductionPHI(PHINode *Phi,
82 VFRange &Range);
83
84 /// Optimize the special case where the operand of \p I is a constant integer
85 /// induction variable.
87 tryToOptimizeInductionTruncate(TruncInst *I, ArrayRef<VPValue *> Operands,
88 VFRange &Range);
89
90 /// Handle non-loop phi nodes. Return a new VPBlendRecipe otherwise. Currently
91 /// all such phi nodes are turned into a sequence of select instructions as
92 /// the vectorizer currently performs full if-conversion.
94
95 /// Handle call instructions. If \p CI can be widened for \p Range.Start,
96 /// return a new VPWidenCallRecipe or VPWidenIntrinsicRecipe. Range.End may be
97 /// decreased to ensure same decision from \p Range.Start to \p Range.End.
99 VFRange &Range);
100
101 /// Check if \p I has an opcode that can be widened and return a VPWidenRecipe
102 /// if it can. The function should only be called if the cost-model indicates
103 /// that widening should be performed.
105 VPBasicBlock *VPBB);
106
107 /// Makes Histogram count operations safe for vectorization, by emitting a
108 /// llvm.experimental.vector.histogram.add intrinsic in place of the
109 /// Load + Add|Sub + Store operations that perform the histogram in the
110 /// original scalar loop.
111 VPHistogramRecipe *tryToWidenHistogram(const HistogramInfo *HI,
113
114public:
115 VPRecipeBuilder(VPlan &Plan, Loop *OrigLoop, const TargetLibraryInfo *TLI,
119 : Plan(Plan), OrigLoop(OrigLoop), TLI(TLI), Legal(Legal), CM(CM),
120 PSE(PSE), Builder(Builder) {}
121
122 /// Create and return a widened recipe for \p I if one can be created within
123 /// the given VF \p Range.
126 VFRange &Range, VPBasicBlock *VPBB);
127
128 /// Set the recipe created for given ingredient.
130 assert(!Ingredient2Recipe.contains(I) &&
131 "Cannot reset recipe for instruction.");
132 Ingredient2Recipe[I] = R;
133 }
134
135 /// Create the mask for the vector loop header block.
136 void createHeaderMask();
137
138 /// A helper function that computes the predicate of the block BB, assuming
139 /// that the header block of the loop is set to True or the loop mask when
140 /// tail folding.
142
143 /// Returns the *entry* mask for the block \p BB.
145
146 /// Create an edge mask for every destination of cases and/or default.
148
149 /// A helper function that computes the predicate of the edge between SRC
150 /// and DST.
152
153 /// A helper that returns the previously computed predicate of the edge
154 /// between SRC and DST.
155 VPValue *getEdgeMask(BasicBlock *Src, BasicBlock *Dst) const;
156
157 /// Return the recipe created for given ingredient.
159 assert(Ingredient2Recipe.count(I) &&
160 "Recording this ingredients recipe was not requested");
161 assert(Ingredient2Recipe[I] != nullptr &&
162 "Ingredient doesn't have a recipe");
163 return Ingredient2Recipe[I];
164 }
165
166 /// Build a VPReplicationRecipe for \p I. If it is predicated, add the mask as
167 /// last operand. Range.End may be decreased to ensure same recipe behavior
168 /// from \p Range.Start to \p Range.End.
170
171 /// Add the incoming values from the backedge to reduction & first-order
172 /// recurrence cross-iteration phis.
173 void fixHeaderPhis();
174
175 /// Returns a range mapping the values of the range \p Operands to their
176 /// corresponding VPValues.
177 iterator_range<mapped_iterator<Use *, std::function<VPValue *(Value *)>>>
179
181 if (auto *I = dyn_cast<Instruction>(V)) {
182 if (auto *R = Ingredient2Recipe.lookup(I))
183 return R->getVPSingleValue();
184 }
185 return Plan.getOrAddLiveIn(V);
186 }
187};
188} // end namespace llvm
189
190#endif // LLVM_TRANSFORMS_VECTORIZE_VPRECIPEBUILDER_H
This file defines the DenseMap class.
This file provides a LoopVectorizationPlanner class.
#define I(x, y, z)
Definition: MD5.cpp:58
mir Rename Register Operands
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
This file defines the PointerUnion class, which is a discriminated union of pointer types.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file contains the declarations of the Vectorization Plan base classes:
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
LLVM Basic Block Representation.
Definition: BasicBlock.h:61
This class represents a function call, abstracting a target machine's calling convention.
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
Definition: DenseMap.h:194
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition: DenseMap.h:152
bool contains(const_arg_type_t< KeyT > Val) const
Return true if the specified key is in the map, false otherwise.
Definition: DenseMap.h:147
LoopVectorizationCostModel - estimates the expected speedups due to vectorization.
LoopVectorizationLegality checks if it is legal to vectorize a loop, and to what vectorization factor...
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:39
An interface layer with SCEV used to manage how we see SCEV expressions for values in the context of ...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1196
Multiway switch.
Provides information about what library functions are available for the current target.
This class represents a truncation of integer types.
A Use represents the edge between a Value definition and its users.
Definition: Use.h:43
VPBasicBlock serves as the leaf of the Hierarchical Control-Flow Graph.
Definition: VPlan.h:3470
A recipe for vectorizing a phi-node as a sequence of mask-based select instructions.
Definition: VPlan.h:2425
VPlan-based builder utility analogous to IRBuilder.
A pure virtual base class for all recipes modeling header phis, including phis for first order recurr...
Definition: VPlan.h:2023
A recipe representing a sequence of load -> update -> store as part of a histogram operation.
Definition: VPlan.h:1772
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
Definition: VPlan.h:720
Helper class to create VPRecipies from IR instructions.
VPValue * createEdgeMask(BasicBlock *Src, BasicBlock *Dst)
A helper function that computes the predicate of the edge between SRC and DST.
VPReplicateRecipe * handleReplication(Instruction *I, VFRange &Range)
Build a VPReplicationRecipe for I.
void createSwitchEdgeMasks(SwitchInst *SI)
Create an edge mask for every destination of cases and/or default.
VPValue * getBlockInMask(BasicBlock *BB) const
Returns the entry mask for the block BB.
VPValue * getEdgeMask(BasicBlock *Src, BasicBlock *Dst) const
A helper that returns the previously computed predicate of the edge between SRC and DST.
iterator_range< mapped_iterator< Use *, std::function< VPValue *(Value *)> > > mapToVPValues(User::op_range Operands)
Returns a range mapping the values of the range Operands to their corresponding VPValues.
void fixHeaderPhis()
Add the incoming values from the backedge to reduction & first-order recurrence cross-iteration phis.
VPRecipeBase * tryToCreateWidenRecipe(Instruction *Instr, ArrayRef< VPValue * > Operands, VFRange &Range, VPBasicBlock *VPBB)
Create and return a widened recipe for I if one can be created within the given VF Range.
VPValue * getVPValueOrAddLiveIn(Value *V)
void createHeaderMask()
Create the mask for the vector loop header block.
VPRecipeBuilder(VPlan &Plan, Loop *OrigLoop, const TargetLibraryInfo *TLI, LoopVectorizationLegality *Legal, LoopVectorizationCostModel &CM, PredicatedScalarEvolution &PSE, VPBuilder &Builder)
void createBlockInMask(BasicBlock *BB)
A helper function that computes the predicate of the block BB, assuming that the header block of the ...
void setRecipe(Instruction *I, VPRecipeBase *R)
Set the recipe created for given ingredient.
VPRecipeBase * getRecipe(Instruction *I)
Return the recipe created for given ingredient.
VPReplicateRecipe replicates a given instruction producing multiple scalar copies of the original sca...
Definition: VPlan.h:2706
VPSingleDef is a base class for recipes for modeling a sequence of one or more output IR that define ...
Definition: VPlan.h:847
A recipe for handling phi nodes of integer and floating-point inductions, producing their vector valu...
Definition: VPlan.h:2129
A common base class for widening memory operations.
Definition: VPlan.h:2879
VPWidenRecipe is a recipe for producing a widened instruction using the opcode and operands of the re...
Definition: VPlan.h:1431
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
Definition: VPlan.h:3761
VPValue * getOrAddLiveIn(Value *V)
Gets the live-in VPValue for V or adds a new live-in (if none exists yet) for V.
Definition: VPlan.h:3976
LLVM Value Representation.
Definition: Value.h:74
A range adaptor for a pair of iterators.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
This holds details about a histogram operation – a load -> update -> store sequence where each lane i...
A range of powers-of-2 vectorization factors with fixed start and adjustable end.
Definition: VPlan.h:97