LLVM 24.0.0git
VPlanUnroll.cpp
Go to the documentation of this file.
1//===-- VPlanUnroll.cpp - VPlan unroller ----------------------------------===//
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 implements explicit unrolling for VPlans.
11///
12//===----------------------------------------------------------------------===//
13
14#include "VPRecipeBuilder.h"
15#include "VPlan.h"
16#include "VPlanAnalysis.h"
17#include "VPlanCFG.h"
18#include "VPlanHelpers.h"
19#include "VPlanPatternMatch.h"
20#include "VPlanTransforms.h"
21#include "VPlanUtils.h"
23#include "llvm/ADT/STLExtras.h"
24#include "llvm/ADT/ScopeExit.h"
26#include "llvm/IR/Constants.h"
27#include "llvm/IR/Intrinsics.h"
28#include "llvm/IR/MDBuilder.h"
29#include <numeric>
30
31using namespace llvm;
32using namespace llvm::VPlanPatternMatch;
33
34namespace {
35
36/// Helper to hold state needed for unrolling. It holds the Plan to unroll by
37/// UF. It also holds copies of VPValues across UF-1 unroll parts to facilitate
38/// the unrolling transformation, where the original VPValues are retained for
39/// part zero.
40class UnrollState {
41 /// Plan to unroll.
42 VPlan &Plan;
43 /// Unroll factor to unroll by.
44 const unsigned UF;
45
46 /// Unrolling may create recipes that should not be unrolled themselves.
47 /// Those are tracked in ToSkip.
48 SmallPtrSet<VPRecipeBase *, 8> ToSkip;
49
50 // Associate with each VPValue of part 0 its unrolled instances of parts 1,
51 // ..., UF-1.
52 DenseMap<VPValue *, SmallVector<VPValue *>> VPV2Parts;
53
54 /// Unroll replicate region \p VPR by cloning the region UF - 1 times.
55 void unrollReplicateRegionByUF(VPRegionBlock *VPR);
56
57 /// Unroll recipe \p R by cloning it UF - 1 times, unless it is uniform across
58 /// all parts.
59 void unrollRecipeByUF(VPRecipeBase &R);
60
61 /// Unroll header phi recipe \p R. How exactly the recipe gets unrolled
62 /// depends on the concrete header phi. Inserts newly created recipes at \p
63 /// InsertPtForPhi.
64 void unrollHeaderPHIByUF(VPHeaderPHIRecipe *R,
65 VPBasicBlock::iterator InsertPtForPhi);
66
67 /// Unroll a widen induction recipe \p IV. This introduces recipes to compute
68 /// the induction steps for each part.
69 void unrollWidenInductionByUF(VPWidenInductionRecipe *IV,
70 VPBasicBlock::iterator InsertPtForPhi);
71
72 VPValue *getConstantInt(unsigned Part) {
73 Type *CanIVIntTy = Plan.getVectorLoopRegion()->getCanonicalIVType();
74 return Plan.getConstantInt(CanIVIntTy, Part);
75 }
76
77public:
78 UnrollState(VPlan &Plan, unsigned UF) : Plan(Plan), UF(UF) {}
79
80 void unrollBlock(VPBlockBase *VPB);
81
82 VPValue *getValueForPart(VPValue *V, unsigned Part) {
83 if (Part == 0 || isa<VPIRValue, VPSymbolicValue>(V))
84 return V;
85 assert((VPV2Parts.contains(V) && VPV2Parts[V].size() >= Part) &&
86 "accessed value does not exist");
87 return VPV2Parts[V][Part - 1];
88 }
89
90 /// Given a single original recipe \p OrigR (of part zero), and its copy \p
91 /// CopyR for part \p Part, map every VPValue defined by \p OrigR to its
92 /// corresponding VPValue defined by \p CopyR.
93 void addRecipeForPart(VPRecipeBase *OrigR, VPRecipeBase *CopyR,
94 unsigned Part) {
95 for (const auto &[Idx, VPV] : enumerate(OrigR->definedValues())) {
96 const auto &[V, _] = VPV2Parts.try_emplace(VPV);
97 assert(V->second.size() == Part - 1 && "earlier parts not set");
98 V->second.push_back(CopyR->getVPValue(Idx));
99 }
100 }
101
102 /// Given a uniform recipe \p R, add it for all parts.
103 void addUniformForAllParts(VPSingleDefRecipe *R) {
104 const auto &[V, Inserted] = VPV2Parts.try_emplace(R);
105 assert(Inserted && "uniform value already added");
106 for (unsigned Part = 0; Part != UF; ++Part)
107 V->second.push_back(R);
108 }
109
110 bool contains(VPValue *VPV) const { return VPV2Parts.contains(VPV); }
111
112 /// Update \p R's operand at \p OpIdx with its corresponding VPValue for part
113 /// \p P.
114 void remapOperand(VPRecipeBase *R, unsigned OpIdx, unsigned Part) {
115 auto *Op = R->getOperand(OpIdx);
116 R->setOperand(OpIdx, getValueForPart(Op, Part));
117 }
118
119 /// Update \p R's operands with their corresponding VPValues for part \p P.
120 void remapOperands(VPRecipeBase *R, unsigned Part) {
121 for (const auto &[OpIdx, Op] : enumerate(R->operands()))
122 R->setOperand(OpIdx, getValueForPart(Op, Part));
123 }
124};
125} // namespace
126
128 unsigned Part, VPlan &Plan) {
129 if (Part == 0)
130 return;
131
132 VPBuilder Builder(Steps);
133 Type *BaseIVTy = Steps->getOperand(0)->getScalarType();
134 Type *IntStepTy =
135 IntegerType::get(BaseIVTy->getContext(), BaseIVTy->getScalarSizeInBits());
136 VPValue *StartIndex = Steps->getVFValue();
137 if (Part > 1) {
138 StartIndex = Builder.createOverflowingOp(
139 Instruction::Mul,
140 {StartIndex, Plan.getConstantInt(StartIndex->getScalarType(), Part)});
141 }
142 StartIndex = Builder.createScalarSExtOrTrunc(StartIndex, IntStepTy,
143 Steps->getDebugLoc());
144
145 if (BaseIVTy->isFloatingPointTy())
146 StartIndex = Builder.createScalarCast(Instruction::SIToFP, StartIndex,
147 BaseIVTy, Steps->getDebugLoc());
148
149 Steps->setStartIndex(StartIndex);
150}
151
152void UnrollState::unrollReplicateRegionByUF(VPRegionBlock *VPR) {
153 VPBlockBase *InsertPt = VPR->getSingleSuccessor();
154 for (unsigned Part = 1; Part != UF; ++Part) {
155 auto *Copy = VPR->clone();
156 VPBlockUtils::insertBlockBefore(Copy, InsertPt);
157
158 auto PartI = vp_depth_first_shallow(Copy->getEntry());
159 auto Part0 = vp_depth_first_shallow(VPR->getEntry());
160 for (const auto &[PartIVPBB, Part0VPBB] :
163 for (const auto &[PartIR, Part0R] : zip(*PartIVPBB, *Part0VPBB)) {
164 remapOperands(&PartIR, Part);
165 if (auto *Steps = dyn_cast<VPScalarIVStepsRecipe>(&PartIR))
166 addStartIndexForScalarSteps(Steps, Part, Plan);
167
168 addRecipeForPart(&Part0R, &PartIR, Part);
169 }
170 }
171 }
172}
173
174void UnrollState::unrollWidenInductionByUF(
175 VPWidenInductionRecipe *IV, VPBasicBlock::iterator InsertPtForPhi) {
176 VPBasicBlock *PH = cast<VPBasicBlock>(
177 IV->getParent()->getEnclosingLoopRegion()->getSinglePredecessor());
178 Type *IVTy = IV->getScalarType();
179 auto &ID = IV->getInductionDescriptor();
180 FastMathFlags FMF;
181 VPIRFlags::WrapFlagsTy WrapFlags(false, false);
182 if (auto *IntOrFPInd = dyn_cast<VPWidenIntOrFpInductionRecipe>(IV)) {
183 FMF = IntOrFPInd->getFastMathFlagsOrNone();
184 WrapFlags = IntOrFPInd->getNoWrapFlagsOrNone();
185 }
186
187 VPValue *ScalarStep = IV->getStepValue();
188 VPBuilder Builder(PH);
189 Type *VectorStepTy = IVTy->isPointerTy() ? ScalarStep->getScalarType() : IVTy;
190 VPInstruction *VectorStep = Builder.createNaryOp(
191 VPInstruction::WideIVStep, {&Plan.getVF(), ScalarStep}, VectorStepTy, FMF,
192 IV->getDebugLoc());
193
194 ToSkip.insert(VectorStep);
195
196 // Now create recipes to compute the induction steps for part 1 .. UF. Part 0
197 // remains the header phi. Parts > 0 are computed by adding Step to the
198 // previous part. The header phi recipe will get 2 new operands: the step
199 // value for a single part and the last part, used to compute the backedge
200 // value during VPWidenInductionRecipe::execute.
201 // %Part.0 = VPWidenInductionRecipe %Start, %ScalarStep, %VectorStep, %Part.3
202 // %Part.1 = %Part.0 + %VectorStep
203 // %Part.2 = %Part.1 + %VectorStep
204 // %Part.3 = %Part.2 + %VectorStep
205 //
206 // The newly added recipes are added to ToSkip to avoid interleaving them
207 // again.
208 VPValue *Prev = IV;
209 Builder.setInsertPoint(IV->getParent(), InsertPtForPhi);
210 unsigned AddOpc;
211 VPIRFlags AddFlags;
212 if (IVTy->isPointerTy()) {
214 AddFlags = GEPNoWrapFlags::none();
215 } else if (IVTy->isFloatingPointTy()) {
216 AddOpc = ID.getInductionOpcode();
217 AddFlags = FMF;
218 } else {
219 AddOpc = Instruction::Add;
220 AddFlags = WrapFlags;
222 AddFlags = VPIRFlags::WrapFlagsTy(/*NUW=*/true, /*NSW=*/false);
223 }
224 for (unsigned Part = 1; Part != UF; ++Part) {
225 std::string Name =
226 Part > 1 ? "step.add." + std::to_string(Part) : "step.add";
227
228 VPInstruction *Add =
229 Builder.createNaryOp(AddOpc,
230 {
231 Prev,
232 VectorStep,
233 },
234 AddFlags, IV->getDebugLoc(), Name);
235 ToSkip.insert(Add);
236 addRecipeForPart(IV, Add, Part);
237 Prev = Add;
238 }
239 IV->addUnrolledPartOperands(VectorStep, Prev);
240}
241
242void UnrollState::unrollHeaderPHIByUF(VPHeaderPHIRecipe *R,
243 VPBasicBlock::iterator InsertPtForPhi) {
244 // First-order recurrences pass a single vector or scalar through their header
245 // phis, irrespective of interleaving.
247 return;
248
249 // Generate step vectors for each unrolled part.
250 if (auto *IV = dyn_cast<VPWidenInductionRecipe>(R)) {
251 unrollWidenInductionByUF(IV, InsertPtForPhi);
252 return;
253 }
254
255 auto *RdxPhi = dyn_cast<VPReductionPHIRecipe>(R);
256 if (RdxPhi && RdxPhi->isOrdered())
257 return;
258
259 auto InsertPt = std::next(R->getIterator());
260 for (unsigned Part = 1; Part != UF; ++Part) {
261 VPRecipeBase *Copy = R->clone();
262 Copy->insertBefore(*R->getParent(), InsertPt);
263 addRecipeForPart(R, Copy, Part);
264 if (RdxPhi) {
265 // If the start value is a ReductionStartVector, use the identity value
266 // (second operand) for unrolled parts. If the scaling factor is > 1,
267 // create a new ReductionStartVector with the scale factor and both
268 // operands set to the identity value.
269 if (auto *VPI = dyn_cast<VPInstruction>(RdxPhi->getStartValue())) {
270 assert(VPI->getOpcode() == VPInstruction::ReductionStartVector &&
271 "unexpected start VPInstruction");
272 if (Part != 1)
273 continue;
274 VPValue *StartV;
275 if (match(VPI->getOperand(2), m_One())) {
276 StartV = VPI->getOperand(1);
277 } else {
278 auto *C = VPI->clone();
279 C->setOperand(0, C->getOperand(1));
280 C->insertAfter(VPI);
281 StartV = C;
282 }
283 for (unsigned Part = 1; Part != UF; ++Part)
284 VPV2Parts[VPI][Part - 1] = StartV;
285 }
286 } else {
288 "unexpected header phi recipe not needing unrolled part");
289 }
290 }
291}
292
293/// Handle non-header-phi recipes.
294void UnrollState::unrollRecipeByUF(VPRecipeBase &R) {
296 return;
297
298 if (auto *VPI = dyn_cast<VPInstruction>(&R)) {
300 addUniformForAllParts(VPI);
301 return;
302 }
303 }
304 if (auto *RepR = dyn_cast<VPReplicateRecipe>(&R)) {
305 if (isa<StoreInst>(RepR->getUnderlyingValue()) &&
306 RepR->getOperand(1)->isDefinedOutsideLoopRegions()) {
307 // Stores to an invariant address only need to store the last part.
308 remapOperands(&R, UF - 1);
309 return;
310 }
311 if (match(RepR,
313 addUniformForAllParts(RepR);
314 return;
315 }
316 }
317
318 // Unroll non-uniform recipes.
319 auto InsertPt = std::next(R.getIterator());
320 VPBasicBlock &VPBB = *R.getParent();
321 for (unsigned Part = 1; Part != UF; ++Part) {
322 VPRecipeBase *Copy = R.clone();
323 Copy->insertBefore(VPBB, InsertPt);
324 addRecipeForPart(&R, Copy, Part);
325
326 // Phi operands are updated once all other recipes have been unrolled.
327 if (isa<VPWidenPHIRecipe>(Copy))
328 continue;
329
330 VPValue *Op;
332 m_VPValue(), m_VPValue(Op)))) {
333 Copy->setOperand(0, getValueForPart(Op, Part - 1));
334 Copy->setOperand(1, getValueForPart(Op, Part));
335 continue;
336 }
338 m_VPValue(Op), m_VPValue()))) {
339 Copy->setOperand(0, Op);
340 Copy->setOperand(1, Plan.getConstantInt(64, Part));
341 continue;
342 }
344 VPBuilder Builder(&R);
345 const DataLayout &DL = Plan.getDataLayout();
346 Type *IndexTy =
349 : DL.getIndexType(R.getVPSingleValue()->getScalarType());
350 VPValue *VF = Builder.createScalarZExtOrTrunc(&Plan.getVF(), IndexTy,
352 // VFxUF does not wrap, so VF * Part also cannot wrap.
353 VPValue *VFxPart = Builder.createOverflowingOp(
354 Instruction::Mul, {VF, Plan.getConstantInt(IndexTy, Part)},
355 {true, true});
356 if (auto *VecPtr = dyn_cast<VPVectorPointerRecipe>(Copy))
357 VecPtr->addPerPartOffset(VFxPart);
358 else
359 cast<VPWidenCanonicalIVRecipe>(Copy)->addPerPartStep(VFxPart);
360 continue;
361 }
362 if (auto *Red = dyn_cast<VPReductionRecipe>(&R)) {
363 auto *Phi = dyn_cast<VPReductionPHIRecipe>(R.getOperand(0));
364 if (Phi && Phi->isOrdered()) {
365 auto &Parts = VPV2Parts[Phi];
366 if (Part == 1) {
367 Parts.clear();
368 Parts.push_back(Red);
369 }
370 Parts.push_back(Copy->getVPSingleValue());
371 Phi->setOperand(1, Copy->getVPSingleValue());
372 }
373 }
374 if (auto *VEPR = dyn_cast<VPVectorEndPointerRecipe>(Copy)) {
375 // Materialize PartN offset for VectorEndPointer.
376 VEPR->setOperand(0, R.getOperand(0));
377 VEPR->setOperand(1, R.getOperand(1));
378 VEPR->materializeOffset(Part);
379 continue;
380 }
381
382 remapOperands(Copy, Part);
383
384 if (auto *ScalarIVSteps = dyn_cast<VPScalarIVStepsRecipe>(Copy))
385 addStartIndexForScalarSteps(ScalarIVSteps, Part, Plan);
386
387 if (match(Copy,
389 VPBuilder Builder(Copy);
390 VPValue *ScaledByPart = Builder.createOverflowingOp(
391 Instruction::Mul, {Copy->getOperand(1), getConstantInt(Part)});
392 Copy->setOperand(1, ScaledByPart);
393 }
394 }
395 if (auto *VEPR = dyn_cast<VPVectorEndPointerRecipe>(&R)) {
396 // Materialize Part0 offset for VectorEndPointer.
397 VEPR->materializeOffset();
398 }
399 if (auto *WideCanIV = dyn_cast<VPWidenCanonicalIVRecipe>(&R)) {
400 // Set Part0 step for WidenCanonicalIV.
401 WideCanIV->addPerPartStep(getConstantInt(0));
402 }
403}
404
405void UnrollState::unrollBlock(VPBlockBase *VPB) {
406 auto *VPR = dyn_cast<VPRegionBlock>(VPB);
407 if (VPR) {
408 if (VPR->isReplicator())
409 return unrollReplicateRegionByUF(VPR);
410
411 // Traverse blocks in region in RPO to ensure defs are visited before uses
412 // across blocks.
413 ReversePostOrderTraversal<VPBlockShallowTraversalWrapper<VPBlockBase *>>
414 RPOT(VPR->getEntry());
415 for (VPBlockBase *VPB : RPOT)
416 unrollBlock(VPB);
417 return;
418 }
419
420 // VPB is a VPBasicBlock; unroll it, i.e., unroll its recipes.
421 auto *VPBB = cast<VPBasicBlock>(VPB);
422 auto InsertPtForPhi = VPBB->getFirstNonPhi();
423 for (VPRecipeBase &R : make_early_inc_range(*VPBB)) {
424 if (ToSkip.contains(&R) || isa<VPIRInstruction>(&R))
425 continue;
426
427 // Add all VPValues for all parts to AnyOf, FirstActiveLaneMask and
428 // ComputeReductionResult which combine all parts to compute the final
429 // value.
430 VPValue *Op1;
432 match(&R, m_FirstActiveLane(m_VPValue(Op1))) ||
433 match(&R, m_LastActiveLane(m_VPValue(Op1))) ||
435 auto *VPI = cast<VPInstruction>(&R);
436 addUniformForAllParts(VPI);
437 for (unsigned Part = 1; Part != UF; ++Part)
438 VPI->addOperand(getValueForPart(Op1, Part));
439 continue;
440 }
441 VPValue *Op0;
442 if (match(&R, m_ExtractLane(m_VPValue(Op0), m_VPValue(Op1)))) {
443 auto *VPI = cast<VPInstruction>(&R);
444 addUniformForAllParts(VPI);
445 for (unsigned Part = 1; Part != UF; ++Part)
446 VPI->addOperand(getValueForPart(Op1, Part));
447 continue;
448 }
449
450 VPValue *Op2;
452 m_VPValue(Op2)))) {
453 auto *VPI = cast<VPInstruction>(&R);
454 addUniformForAllParts(VPI);
455 for (unsigned Part = 1; Part != UF; ++Part) {
456 VPI->addOperand(getValueForPart(Op1, Part));
457 VPI->addOperand(getValueForPart(Op2, Part));
458 }
459 continue;
460 }
461
462 if (Plan.hasScalarVFOnly()) {
463 if (match(&R, m_ExtractLastPart(m_VPValue(Op0))) ||
465 auto *I = cast<VPInstruction>(&R);
466 bool IsPenultimatePart =
468 unsigned PartIdx = IsPenultimatePart ? UF - 2 : UF - 1;
469 // For scalar VF, directly use the scalar part value.
470 I->replaceAllUsesWith(getValueForPart(Op0, PartIdx));
471 continue;
472 }
473 }
474 // For vector VF, the penultimate element is always extracted from the last part.
477 addUniformForAllParts(cast<VPSingleDefRecipe>(&R));
478 R.setOperand(0, getValueForPart(Op0, UF - 1));
479 continue;
480 }
481
482 if (match(&R,
484 auto *ALM = cast<VPInstruction>(&R);
485 ALM->setOperand(2, getConstantInt(UF));
486 continue;
487 }
488
489 auto *SingleDef = dyn_cast<VPSingleDefRecipe>(&R);
490 if (SingleDef && vputils::isUniformAcrossVFsAndUFs(SingleDef)) {
491 addUniformForAllParts(SingleDef);
492 continue;
493 }
494
495 if (auto *H = dyn_cast<VPHeaderPHIRecipe>(&R)) {
496 unrollHeaderPHIByUF(H, InsertPtForPhi);
497 continue;
498 }
499
500 unrollRecipeByUF(R);
501 }
502}
503
504void VPlanTransforms::unrollByUF(VPlan &Plan, unsigned UF) {
505 assert(UF > 0 && "Unroll factor must be positive");
506 Plan.setUF(UF);
507 llvm::scope_exit Cleanup([&Plan, UF]() {
508 auto Iter = vp_depth_first_deep(Plan.getEntry());
509 // Remove recipes that are redundant after unrolling.
511 for (VPRecipeBase &R : make_early_inc_range(*VPBB)) {
512 auto *VPI = dyn_cast<VPInstruction>(&R);
513 if (VPI &&
514 VPI->getOpcode() == VPInstruction::CanonicalIVIncrementForPart &&
515 VPI->getOperand(1) == &Plan.getVF()) {
516 VPI->replaceAllUsesWith(VPI->getOperand(0));
517 VPI->eraseFromParent();
518 }
519 }
520 }
521
522 Type *TCTy = Plan.getTripCount()->getScalarType();
523 Plan.getUF().replaceAllUsesWith(Plan.getConstantInt(TCTy, UF));
524 });
525 if (UF == 1) {
526 return;
527 }
528
529 UnrollState Unroller(Plan, UF);
530
531 // Iterate over all blocks in the plan starting from Entry, and unroll
532 // recipes inside them. This includes the vector preheader and middle blocks,
533 // which may set up or post-process per-part values.
535 Plan.getEntry());
536 for (VPBlockBase *VPB : RPOT)
537 Unroller.unrollBlock(VPB);
538
539 unsigned Part = 1;
540 // Remap operands of cloned header phis to update backedge values. The header
541 // phis cloned during unrolling are just after the header phi for part 0.
542 // Reset Part to 1 when reaching the first (part 0) recipe of a block.
543 for (VPRecipeBase &H :
545 // The second operand of Fixed Order Recurrence phi's, feeding the spliced
546 // value across the backedge, needs to remap to the last part of the spliced
547 // value.
549 Unroller.remapOperand(&H, 1, UF - 1);
550 continue;
551 }
552 if (Unroller.contains(H.getVPSingleValue())) {
553 Part = 1;
554 continue;
555 }
556 Unroller.remapOperands(&H, Part);
557 Part++;
558 }
559
561}
562
563/// Add a lane offset to the start index of \p Steps.
564static void addLaneToStartIndex(VPScalarIVStepsRecipe *Steps, unsigned Lane,
565 VPlan &Plan, VPRecipeBase *InsertPt) {
566 assert(Lane > 0 && "Zero lane adds no offset to start index");
567 Type *BaseIVTy = Steps->getOperand(0)->getScalarType();
568
569 VPValue *OldStartIndex = Steps->getStartIndex();
570 VPValue *LaneOffset;
571 unsigned AddOpcode;
572 // TODO: Retrieve the flags from Steps unconditionally.
573 VPIRFlags Flags;
574 if (BaseIVTy->isFloatingPointTy()) {
575 // The start index counts upwards, so accumulate with FAdd regardless of the
576 // induction opcode; see VPScalarIVStepsRecipe.
577 LaneOffset = Plan.getOrAddLiveIn(ConstantFP::get(BaseIVTy, Lane));
578 AddOpcode = Instruction::FAdd;
579 Flags = VPIRFlags(FastMathFlags());
580 } else {
581 unsigned BaseIVBits = BaseIVTy->getScalarSizeInBits();
582 LaneOffset = Plan.getConstantInt(
583 APInt(BaseIVBits, Lane, /*isSigned*/ false, /*implicitTrunc*/ true));
584 AddOpcode = Instruction::Add;
585 Flags = VPIRFlags(VPIRFlags::WrapFlagsTy(false, false));
586 }
587
588 VPValue *NewStartIndex = LaneOffset;
589 if (OldStartIndex) {
590 VPBuilder Builder(InsertPt);
591 NewStartIndex =
592 Builder.createNaryOp(AddOpcode, {OldStartIndex, LaneOffset}, Flags);
593 }
594 Steps->setStartIndex(NewStartIndex);
595}
596
597/// Create a single-scalar clone of \p DefR (must be a VPReplicateRecipe,
598/// VPInstruction or VPScalarIVStepsRecipe) for lane \p Lane. Use \p
599/// Def2LaneDefs to look up scalar definitions for operands of \DefR.
600static VPValue *
601cloneForLane(VPlan &Plan, VPBuilder &Builder, Type *IdxTy,
602 VPSingleDefRecipe *DefR, VPLane Lane,
603 const DenseMap<VPValue *, SmallVector<VPValue *>> &Def2LaneDefs) {
605 "DefR must be a VPReplicateRecipe, VPInstruction or "
606 "VPScalarIVStepsRecipe");
607 VPValue *Op;
609 auto LaneDefs = Def2LaneDefs.find(Op);
610 if (LaneDefs != Def2LaneDefs.end())
611 return LaneDefs->second[Lane.getKnownLane()];
612
613 VPValue *Idx = Plan.getConstantInt(IdxTy, Lane.getKnownLane());
614 return Builder.createNaryOp(Instruction::ExtractElement, {Op, Idx});
615 }
616
617 // Collect the operands at Lane, creating extracts as needed.
619 for (VPValue *Op : DefR->operands()) {
620 // If Op is a definition that has been unrolled, directly use the clone for
621 // the corresponding lane.
622 auto LaneDefs = Def2LaneDefs.find(Op);
623 if (LaneDefs != Def2LaneDefs.end()) {
624 NewOps.push_back(LaneDefs->second[Lane.getKnownLane()]);
625 continue;
626 }
627 if (Lane.getKind() == VPLane::Kind::ScalableLast) {
628 // Look through mandatory Unpack.
629 [[maybe_unused]] bool Matched =
631 assert(Matched && "original op must have been Unpack");
632 auto *ExtractPart =
633 Builder.createNaryOp(VPInstruction::ExtractLastPart, {Op});
634 NewOps.push_back(
635 Builder.createNaryOp(VPInstruction::ExtractLastLane, {ExtractPart}));
636 continue;
637 }
639 NewOps.push_back(Op);
640 continue;
641 }
642
643 // Look through buildvector to avoid unnecessary extracts.
644 if (match(Op, m_BuildVector())) {
645 NewOps.push_back(
646 cast<VPInstruction>(Op)->getOperand(Lane.getKnownLane()));
647 continue;
648 }
649 VPValue *Idx = Plan.getConstantInt(IdxTy, Lane.getKnownLane());
650 VPValue *Ext = Builder.createNaryOp(Instruction::ExtractElement, {Op, Idx});
651 NewOps.push_back(Ext);
652 }
653
655 if (auto *RepR = dyn_cast<VPReplicateRecipe>(DefR)) {
656 // TODO: have cloning of replicate recipes also provide the desired result
657 // coupled with setting its operands to NewOps (deriving IsSingleScalar and
658 // Mask from the operands?)
660 RepR->getOpcode(), NewOps, /*Mask=*/nullptr, *RepR, *RepR,
661 RepR->getDebugLoc(), RepR->getUnderlyingInstr());
662 } else {
663 New = DefR->clone();
664 for (const auto &[Idx, Op] : enumerate(NewOps)) {
665 New->setOperand(Idx, Op);
666 }
667 if (auto *Steps = dyn_cast<VPScalarIVStepsRecipe>(New)) {
668 // Skip lane 0: an absent start index is implicitly zero.
669 unsigned KnownLane = Lane.getKnownLane();
670 if (KnownLane != 0)
671 addLaneToStartIndex(Steps, KnownLane, Plan, DefR);
672 }
673 }
674 New->insertBefore(DefR);
675 return New;
676}
677
678/// Converts the frequency \p Freq with which a block is entered to branch
679/// weights for the branch guarding it, or nullptr if \p Freq is unknown.
680static MDNode *
681convertFrequencyToBranchWeights(std::optional<BlockFrequency> Freq,
682 LLVMContext &Ctx) {
683 if (!Freq)
684 return nullptr;
686
687 // Use the numerators of P and its complement as weights and reduce them via
688 // gcd to keep them small. Neither is zero, as P is neither zero nor one.
689 uint32_t Taken = P.getNumerator();
690 uint32_t NotTaken = P.getCompl().getNumerator();
691 uint32_t GCD = std::gcd(Taken, NotTaken);
692 return MDBuilder(Ctx).createBranchWeights(Taken / GCD, NotTaken / GCD);
693}
694
695/// Convert recipes in region blocks to operate on a single lane 0.
696/// VPReplicateRecipes are converted to single-scalar ones, branch-on-mask is
697/// converted into BranchOnCond, PredInstPhi recipes are replaced by scalar phi
698/// recipes with an additional poison operand, and extracts are created as
699/// needed.
701 VPBlockBase *Entry,
702 ElementCount VF) {
703 VPValue *Idx0 = Plan.getZero(IdxTy);
704 for (VPBlockBase *VPB : vp_depth_first_shallow(Entry)) {
706 assert(
707 !isa<VPWidenPHIRecipe>(&OldR) &&
708 !match(&OldR,
712 "must not contain wide phis, inserts or extracts before conversion");
713
714 VPBuilder Builder(&OldR);
715 DebugLoc OldDL = OldR.getDebugLoc();
716 // For scalar VF, operands are already scalar; no extraction needed.
717 if (!VF.isScalar()) {
718 for (const auto &[I, Op] : enumerate(OldR.operands())) {
719 // Skip operands that don't need extraction: values defined in the
720 // same block (already scalar), or values that are already single
721 // scalars.
722 // TODO: Support isSingleScalar for VPScalarIVStepsRecipe.
723 auto *DefR = Op->getDefiningRecipe();
725 DefR->getParent() == VPB) ||
727 continue;
728
729 // Extract lane zero from values defined outside the region.
730 VPValue *Extract = Builder.createNaryOp(Instruction::ExtractElement,
731 {Op, Idx0}, OldDL);
732 OldR.setOperand(I, Extract);
733 }
734 }
735
736 if (auto *RepR = dyn_cast<VPReplicateRecipe>(&OldR)) {
738 RepR->getOpcode(), to_vector(RepR->operands()), /*Mask=*/nullptr,
739 *RepR, *RepR, OldDL, RepR->getUnderlyingInstr());
740 NewR->insertBefore(RepR);
741 RepR->replaceAllUsesWith(NewR);
742 RepR->eraseFromParent();
743 } else if (auto *BranchOnMask = dyn_cast<VPBranchOnMaskRecipe>(&OldR)) {
744 // Turn the frequency of the predicated block into branch weights.
745 auto *BOC = Builder.createNaryOp(VPInstruction::BranchOnCond,
746 {BranchOnMask->getOperand(0)}, OldDL);
748 BranchOnMask->getExecutionFrequency(), Plan.getContext()))
749 BOC->setMetadata(LLVMContext::MD_prof, Weights);
750 BranchOnMask->eraseFromParent();
751 } else if (auto *PredPhi = dyn_cast<VPPredInstPHIRecipe>(&OldR)) {
752 VPValue *PredOp = PredPhi->getOperand(0);
753 Type *PredTy = PredOp->getScalarType();
754 VPValue *Poison = Plan.getPoison(PredTy);
755 VPPhi *NewPhi = Builder.createScalarPhi({Poison, PredOp}, OldDL);
756 PredPhi->replaceAllUsesWith(NewPhi);
757 PredPhi->eraseFromParent();
758 } else {
759 // TODO: Support isSingleScalar for VPScalarIVStepsRecipe.
761 (isa<VPInstruction>(OldR) &&
762 vputils::isSingleScalar(OldR.getVPSingleValue()))) &&
763 "unexpected unhandled recipe");
764 }
765 }
766 }
767}
768
769/// Update recipes in the cloned blocks rooted at \p NewEntry to match \p Lane,
770/// using the original blocks rooted at \p OldEntry as reference.
771static void processLaneForReplicateRegion(VPlan &Plan, Type *IdxTy,
772 unsigned Lane, VPBasicBlock *OldEntry,
773 VPBasicBlock *NewEntry) {
774 DenseMap<VPValue *, VPValue *> Old2NewVPValues;
775 VPValue *IdxLane = Plan.getConstantInt(IdxTy, Lane);
776 for (const auto &[OldBB, NewBB] :
778 vp_depth_first_shallow(NewEntry))) {
779 for (auto &&[OldR, NewR] :
781 for (const auto &[OldV, NewV] :
782 zip_equal(OldR.definedValues(), NewR.definedValues()))
783 Old2NewVPValues[OldV] = NewV;
784
785 // Remap operands to use lane-specific values.
786 for (const auto &[I, OldOp] : enumerate(NewR.operands())) {
787 // Use cloned value if operand was defined in the region.
788 if (auto *NewOp = Old2NewVPValues.lookup(OldOp))
789 NewR.setOperand(I, NewOp);
790 }
791
792 if (auto *Steps = dyn_cast<VPScalarIVStepsRecipe>(&NewR)) {
793 addLaneToStartIndex(Steps, Lane, Plan, Steps);
794 } else if (match(&NewR, m_ExtractElement(m_VPValue(), m_VPValue()))) {
795 assert(match(NewR.getOperand(1), m_ZeroInt()) &&
796 "extract indices must be zero");
797 NewR.setOperand(1, IdxLane);
798 } else if (auto *NewPhi = dyn_cast<VPPhi>(&NewR)) {
799 auto *OldPhi = cast<VPPhi>(&OldR);
801 "VPPhis expected to have only first lane used");
802 auto *BVUser = dyn_cast_or_null<VPInstruction>(OldPhi->getSingleUser());
803 if (BVUser && match(BVUser, m_CombineOr(m_BuildVector(),
805 assert(BVUser->getOperand(0) == OldPhi &&
806 "Unexpected first operand of build vector user");
807 BVUser->setOperand(Lane, NewPhi);
808 }
809 }
810 }
811 }
812}
813
814/// Dissolve a single replicate region by replicating its blocks for each lane
815/// of \p VF. The region is disconnected, its blocks are reparented, cloned for
816/// each lane, and reconnected in sequence.
818 VPlan &Plan, Type *IdxTy) {
819 auto *FirstLaneEntry = cast<VPBasicBlock>(Region->getEntry());
820 auto *FirstLaneExiting = cast<VPBasicBlock>(Region->getExiting());
821
822 // Disconnect and dissolve the region.
823 VPBlockBase *Predecessor = Region->getSinglePredecessor();
824 assert(Predecessor && "Replicate region must have a single predecessor");
825 auto *Successor = cast<VPBasicBlock>(Region->getSingleSuccessor());
828
829 VPRegionBlock *ParentRegion = Region->getParent();
830 for (VPBlockBase *VPB : vp_depth_first_shallow(FirstLaneEntry))
831 VPB->setParent(ParentRegion);
832
833 // Process the original blocks for lane 0: converting their recipes to
834 // single-scalar.
835 convertRecipesInRegionBlocksToSingleScalar(Plan, IdxTy, FirstLaneEntry, VF);
836
837 // For scalar VF, just wire the blocks and return; no cloning or packing
838 // needed.
839 if (VF.isScalar()) {
840 VPBlockUtils::connectBlocks(Predecessor, FirstLaneEntry);
841 VPBlockUtils::connectBlocks(FirstLaneExiting, Successor);
842 return;
843 }
844
845 // Create a BuildVector or BuildStructVector in successor block for every
846 // VPPhi in (first lane's) exiting block having vector uses. All their
847 // operands are initialized to poison and will be replaced when processing
848 // each clone, except for the operand of the first lane which set here.
849 // BuildVectors are recorded to be replaced later by chains of insert-element
850 // and widen phi's.
851 unsigned NumLanes = VF.getFixedValue();
852 SmallVector<VPInstruction *> BuildVectors;
853 for (auto &R : FirstLaneExiting->phis()) {
854 auto *Phi = cast<VPPhi>(&R);
856 continue;
857
858 Type *ScalarTy = Phi->getScalarType();
859 bool IsStruct = isa<StructType>(ScalarTy);
860 VPValue *Poison = Plan.getPoison(ScalarTy);
861 SmallVector<VPValue *> BVOps(NumLanes, Poison);
862 auto *BV = new VPInstruction(IsStruct ? VPInstruction::BuildStructVector
864 BVOps);
865 if (!IsStruct)
866 BuildVectors.push_back(BV);
867 Phi->replaceAllUsesWith(BV);
868 BV->setOperand(0, Phi);
869 BV->insertBefore(*Successor, Successor->getFirstNonPhi());
870 }
871
872 // Clone converted blocks for remaining lanes and process each in reverse
873 // order, connecting each lane's Exiting block to the subsequent lane's entry.
874 VPBlockBase *NextLaneEntry = Successor;
875 for (int Lane = NumLanes - 1; Lane > 0; --Lane) {
876 const auto &[CurrentLaneEntry, CurrentLaneExiting] =
877 VPBlockUtils::cloneFrom(FirstLaneEntry);
878 for (VPBlockBase *VPB : vp_depth_first_shallow(CurrentLaneEntry))
879 VPB->setParent(ParentRegion);
880 processLaneForReplicateRegion(Plan, IdxTy, Lane,
881 cast<VPBasicBlock>(FirstLaneEntry),
882 cast<VPBasicBlock>(CurrentLaneEntry));
883 VPBlockUtils::connectBlocks(CurrentLaneExiting, NextLaneEntry);
884 NextLaneEntry = CurrentLaneEntry;
885 }
886
887 // Connect Predecessor to FirstLaneEntry, and FirstLaneRegionExit to
888 // NextLaneEntry which is the second lane region entry. The latter is
889 // done last so that earlier clonings from FirstLaneEntry stop at
890 // FirstLaneExiting.
891 VPBlockUtils::connectBlocks(Predecessor, FirstLaneEntry);
892 VPBlockUtils::connectBlocks(FirstLaneExiting, NextLaneEntry);
893
894 // Fold BuildVector fed by scalar phis into VPWidenPHIRecipes with
895 // InsertElement per lane.
896 // TODO: check if this folding should be dropped.
897 for (VPInstruction *BV : BuildVectors) {
898 assert(BV->getNumOperands() == NumLanes &&
899 "BuildVector must have one operand per lane");
900 for (const auto &[Idx, Op] : enumerate(BV->operands())) {
901 auto *ScalarPhi = cast<VPPhi>(Op);
902 auto DL = ScalarPhi->getDebugLoc();
903 auto *PredOp = cast<VPSingleDefRecipe>(ScalarPhi->getOperand(1));
904 VPValue *Poison = ScalarPhi->getOperand(0);
905 VPValue *PrevVal = Idx == 0 ? Poison : BV->getOperand(Idx - 1);
906 auto Builder = VPBuilder::getToInsertAfter(PredOp->getDefiningRecipe());
907 auto *Insert = Builder.createNaryOp(
908 Instruction::InsertElement,
909 {PrevVal, PredOp, Plan.getConstantInt(64, Idx)}, DL);
910 Builder.setInsertPoint(ScalarPhi);
911 auto *NewPhi = Builder.createWidenPhi({PrevVal, Insert}, DL);
912 ScalarPhi->replaceAllUsesWith(NewPhi);
913 ScalarPhi->eraseFromParent();
914 }
915 BV->replaceAllUsesWith(BV->getOperand(NumLanes - 1));
916 BV->eraseFromParent();
917 }
918}
919
920/// Collect and dissolve all replicate regions in the vector loop, replicating
921/// their blocks and recipes for each lane of \p VF.
923 Type *IdxTy) {
924 // Collect all replicate regions before modifying the CFG.
925 SmallVector<VPRegionBlock *> ReplicateRegions;
928 if (Region->isReplicator())
929 ReplicateRegions.push_back(Region);
930 }
931
932 assert((ReplicateRegions.empty() || !VF.isScalable()) &&
933 "cannot replicate across scalable VFs");
934
935 // Dissolve replicate regions by replicating their blocks for each lane.
936 // Traversing regions in reverse ensures that the successor of every region
937 // being processed is a basic-block, rather than another region.
938 for (VPRegionBlock *Region : reverse(ReplicateRegions))
939 dissolveReplicateRegion(Region, VF, Plan, IdxTy);
940
942}
943
945 Type *IdxTy = IntegerType::get(
947
948 if (Plan.hasScalarVFOnly()) {
949 // When Plan is only unrolled by UF, replicating by VF amounts to dissolving
950 // replicate regions.
951 replicateReplicateRegionsByVF(Plan, VF, IdxTy);
952 return;
953 }
954
955 // Visit all VPBBs outside the loop region and directly inside the top-level
956 // loop region.
957 auto VPBBsOutsideLoopRegion = VPBlockUtils::blocksOnly<VPBasicBlock>(
959 auto VPBBsInsideLoopRegion = VPBlockUtils::blocksOnly<VPBasicBlock>(
961 auto VPBBsToUnroll =
962 concat<VPBasicBlock *>(VPBBsOutsideLoopRegion, VPBBsInsideLoopRegion);
963 // A mapping of current VPValue definitions to collections of new VPValues
964 // defined per lane. Serves to hook-up potential users of current VPValue
965 // definition that are replicated-per-VF later.
967 // The removal of current recipes being replaced by new ones needs to be
968 // delayed after Def2LaneDefs is no longer in use.
970 for (VPBasicBlock *VPBB : VPBBsToUnroll) {
971 for (VPRecipeBase &R : make_early_inc_range(*VPBB)) {
973 continue;
974
975 auto *DefR = cast<VPSingleDefRecipe>(&R);
976 VPBuilder Builder(DefR);
977 if (DefR->user_empty()) {
978 // Create single-scalar version of DefR for all lanes.
979 for (unsigned I = 0; I != VF.getKnownMinValue(); ++I)
980 cloneForLane(Plan, Builder, IdxTy, DefR, VPLane(I), Def2LaneDefs);
981 DefR->eraseFromParent();
982 continue;
983 }
984 /// Create single-scalar version of DefR for all lanes.
985 SmallVector<VPValue *> LaneDefs;
986 for (unsigned I = 0; I != VF.getKnownMinValue(); ++I)
987 LaneDefs.push_back(
988 cloneForLane(Plan, Builder, IdxTy, DefR, VPLane(I), Def2LaneDefs));
989
990 Def2LaneDefs[DefR] = LaneDefs;
991 /// Users that only demand the first lane can use the definition for lane
992 /// 0.
993 DefR->replaceUsesWithIf(LaneDefs[0], [DefR](VPUser &U, unsigned) {
994 if (U.usesFirstLaneOnly(DefR))
995 return true;
996 auto *VPI = dyn_cast<VPInstructionWithType>(&U);
997 return VPI && Instruction::isCast(VPI->getOpcode());
998 });
999
1000 // Update each build vector user that currently has DefR as its only
1001 // operand, to have all LaneDefs as its operands.
1002 for (VPUser *U : to_vector(DefR->users())) {
1003 auto *VPI = dyn_cast<VPInstruction>(U);
1004 if (!VPI || (VPI->getOpcode() != VPInstruction::BuildVector &&
1005 VPI->getOpcode() != VPInstruction::BuildStructVector))
1006 continue;
1007 assert(VPI->getNumOperands() == 1 &&
1008 "Build(Struct)Vector must have a single operand before "
1009 "replicating by VF");
1010 VPI->setOperand(0, LaneDefs[0]);
1011 for (VPValue *LaneDef : drop_begin(LaneDefs))
1012 VPI->addOperand(LaneDef);
1013 }
1014 ToRemove.push_back(DefR);
1015 }
1016 }
1017 for (auto *R : reverse(ToRemove))
1018 R->eraseFromParent();
1019
1020 replicateReplicateRegionsByVF(Plan, VF, IdxTy);
1021}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
ReachingDefInfo InstSet & ToRemove
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static bool isCanonical(const MDString *S)
ManagedStatic< HTTPClientCleanup > Cleanup
#define _
#define I(x, y, z)
Definition MD5.cpp:57
#define H(x, y, z)
Definition MD5.cpp:56
#define P(N)
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
This file contains some templates that are useful if you are working with the STL at all.
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
Definition Value.cpp:484
This file defines the scope_exit class, which executes user-defined cleanup logic at scope exit.
static ConstantInt * getConstantInt(Value *V, const DataLayout &DL)
Extract ConstantInt from value, looking through IntToPtr and PointerNullValue.
This file contains the declarations of different VPlan-related auxiliary helpers.
This file provides utility VPlan to VPlan transformations.
static void addLaneToStartIndex(VPScalarIVStepsRecipe *Steps, unsigned Lane, VPlan &Plan, VPRecipeBase *InsertPt)
Add a lane offset to the start index of Steps.
static void replicateReplicateRegionsByVF(VPlan &Plan, ElementCount VF, Type *IdxTy)
Collect and dissolve all replicate regions in the vector loop, replicating their blocks and recipes f...
static VPValue * cloneForLane(VPlan &Plan, VPBuilder &Builder, Type *IdxTy, VPSingleDefRecipe *DefR, VPLane Lane, const DenseMap< VPValue *, SmallVector< VPValue * > > &Def2LaneDefs)
Create a single-scalar clone of DefR (must be a VPReplicateRecipe, VPInstruction or VPScalarIVStepsRe...
static void addStartIndexForScalarSteps(VPScalarIVStepsRecipe *Steps, unsigned Part, VPlan &Plan)
static void convertRecipesInRegionBlocksToSingleScalar(VPlan &Plan, Type *IdxTy, VPBlockBase *Entry, ElementCount VF)
Convert recipes in region blocks to operate on a single lane 0.
static void dissolveReplicateRegion(VPRegionBlock *Region, ElementCount VF, VPlan &Plan, Type *IdxTy)
Dissolve a single replicate region by replicating its blocks for each lane of VF.
static MDNode * convertFrequencyToBranchWeights(std::optional< BlockFrequency > Freq, LLVMContext &Ctx)
Converts the frequency Freq with which a block is entered to branch weights for the branch guarding i...
static void processLaneForReplicateRegion(VPlan &Plan, Type *IdxTy, unsigned Lane, VPBasicBlock *OldEntry, VPBasicBlock *NewEntry)
Update recipes in the cloned blocks rooted at NewEntry to match Lane, using the original blocks roote...
static void remapOperands(VPBlockBase *Entry, VPBlockBase *NewEntry, DenseMap< VPValue *, VPValue * > &Old2NewVPValues)
Definition VPlan.cpp:1208
This file contains the declarations of the Vectorization Plan base classes:
static const uint32_t IV[8]
Definition blake3_impl.h:83
Class for arbitrary precision integers.
Definition APInt.h:78
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
A debug info location.
Definition DebugLoc.h:126
static DebugLoc getUnknown()
Definition DebugLoc.h:153
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
Definition DenseMap.h:250
constexpr bool isScalar() const
Exactly one element.
Definition TypeSize.h:316
Convenience struct for specifying and reasoning about fast-math flags.
Definition FMF.h:23
static GEPNoWrapFlags none()
bool isCast() const
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition Type.cpp:348
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
LLVM_ABI MDNode * createBranchWeights(uint32_t TrueWeight, uint32_t FalseWeight, bool IsExpected=false)
Return metadata containing two branch weights.
Definition MDBuilder.cpp:38
Metadata node.
Definition Metadata.h:1069
RegionT * getParent() const
Get the parent of the Region.
Definition RegionInfo.h:362
BlockT * getEntry() const
Get the entry BasicBlock of the Region.
Definition RegionInfo.h:320
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
bool isPointerTy() const
True if this is an instance of PointerType.
Definition Type.h:282
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition Type.h:130
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
Definition Type.cpp:232
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
Definition Type.h:186
VPBasicBlock serves as the leaf of the Hierarchical Control-Flow Graph.
Definition VPlan.h:4453
RecipeListTy::iterator iterator
Instruction iterators...
Definition VPlan.h:4480
iterator_range< iterator > phis()
Returns an iterator range over the PHI-like recipes in the block.
Definition VPlan.h:4541
iterator getFirstNonPhi()
Return the position of the first non-phi node recipe in the block.
Definition VPlan.cpp:266
VPBlockBase is the building block of the Hierarchical Control-Flow Graph.
Definition VPlan.h:95
const VPBasicBlock * getEntryBasicBlock() const
Definition VPlan.cpp:216
void setParent(VPRegionBlock *P)
Definition VPlan.h:204
VPBlockBase * getSingleSuccessor() const
Definition VPlan.h:234
static auto blocksAs(T &&Range)
Return an iterator range over Range with each block cast to BlockTy.
Definition VPlanUtils.h:422
static void connectBlocks(VPBlockBase *From, VPBlockBase *To, unsigned PredIdx=-1u, unsigned SuccIdx=-1u)
Connect VPBlockBases From and To bi-directionally.
Definition VPlanUtils.h:350
static void disconnectBlocks(VPBlockBase *From, VPBlockBase *To)
Disconnect VPBlockBases From and To bi-directionally.
Definition VPlanUtils.h:368
static void insertBlockBefore(VPBlockBase *NewBlock, VPBlockBase *BlockPtr)
Insert disconnected block NewBlock before Blockptr.
Definition VPlanUtils.h:314
static auto blocksOnly(T &&Range)
Return an iterator range over Range which only includes BlockTy blocks.
Definition VPlanUtils.h:404
static std::pair< VPBlockBase *, VPBlockBase * > cloneFrom(VPBlockBase *Entry)
Clone the CFG for all nodes reachable from Entry, including cloning the blocks and their recipes.
Definition VPlan.cpp:712
VPlan-based builder utility analogous to IRBuilder.
static VPBuilder getToInsertAfter(VPRecipeBase *R)
Create a VPBuilder to insert after R.
static VPSingleDefRecipe * createSingleScalarOp(unsigned Opcode, ArrayRef< VPValue * > Operands, VPValue *Mask, const VPIRFlags &Flags, const VPIRMetadata &Metadata, DebugLoc DL, Instruction *UV)
Create a single-scalar recipe with Opcode and Operands without inserting it.
VPValue * getVPValue(unsigned I)
Returns the VPValue with index I defined by the VPDef.
Definition VPlanValue.h:563
ArrayRef< VPRecipeValue * > definedValues()
Returns an ArrayRef of the values defined by the VPDef.
Definition VPlanValue.h:573
BasicBlock * getIRBasicBlock() const
Definition VPlan.h:4630
Class to record and manage LLVM IR flags.
Definition VPlan.h:705
This is a concrete Recipe that models a single VPlan-level instruction.
Definition VPlan.h:1266
@ WideIVStep
Scale the first operand (vector step) by the second operand (scalar-step).
Definition VPlan.h:1392
@ ReductionStartVector
Start vector for reductions with 3 operands: the original start value, the identity value for the red...
Definition VPlan.h:1363
@ BuildVector
Creates a fixed-width vector containing all operands.
Definition VPlan.h:1312
@ BuildStructVector
Given operands of (the same) struct type, creates a struct of fixed- width vectors each containing a ...
Definition VPlan.h:1309
@ CanonicalIVIncrementForPart
Definition VPlan.h:1293
In what follows, the term "input IR" refers to code that is fed into the vectorizer whereas the term ...
Kind getKind() const
Returns the Kind of lane offset.
unsigned getKnownLane() const
Returns a compile-time known value for the lane index and asserts if the lane can only be calculated ...
@ ScalableLast
For ScalableLast, Lane is the offset from the start of the last N-element subvector in a scalable vec...
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
Definition VPlan.h:412
DebugLoc getDebugLoc() const
Returns the debug location of the recipe.
Definition VPlan.h:562
VPRegionBlock represents a collection of VPBasicBlocks and VPRegionBlocks which form a Single-Entry-S...
Definition VPlan.h:4678
VPRegionBlock * clone() override
Clone all blocks in the single-entry single-exit region of the block and their recipes without updati...
Definition VPlan.cpp:769
const VPBlockBase * getEntry() const
Definition VPlan.h:4722
bool isReplicator() const
An indicator whether this region is to generate multiple replicated instances of output IR correspond...
Definition VPlan.h:4754
Type * getCanonicalIVType() const
Return the type of the canonical IV for loop regions.
Definition VPlan.h:4806
A recipe for handling phi nodes of integer and floating-point inductions, producing their scalar valu...
Definition VPlan.h:4295
void setStartIndex(VPValue *StartIndex)
Set or add the StartIndex operand.
Definition VPlan.h:4339
VPValue * getStartIndex() const
Return the StartIndex, or null if known to be zero, valid only after unrolling.
Definition VPlan.h:4334
VPValue * getVFValue() const
Return the number of scalars to produce per unroll part, used to compute StartIndex during unrolling.
Definition VPlan.h:4330
VPSingleDefRecipe is a base class for recipes that model a sequence of one or more output IR that def...
Definition VPlan.h:620
VPSingleDefRecipe * clone() override=0
Clone the current recipe.
This class augments VPValue with operands which provide the inverse def-use edges from VPValue's user...
Definition VPlanValue.h:401
operand_range operands()
Definition VPlanValue.h:474
VPValue * getOperand(unsigned N) const
Definition VPlanValue.h:442
This is the base class of the VPlan Def/Use graph, used for modeling the data flow into,...
Definition VPlanValue.h:50
Type * getScalarType() const
Returns the scalar type of this VPValue, dispatching based on the concrete subclass.
Definition VPlan.cpp:149
void replaceAllUsesWith(VPValue *New)
Definition VPlan.cpp:1501
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
Definition VPlan.h:4865
const DataLayout & getDataLayout() const
Definition VPlan.h:5079
LLVMContext & getContext() const
Definition VPlan.h:5075
VPBasicBlock * getEntry()
Definition VPlan.h:4961
VPValue * getTripCount() const
The trip count of the original loop.
Definition VPlan.h:5033
VPIRValue * getPoison(Type *Ty)
Return a VPIRValue wrapping a poison value of type Ty.
Definition VPlan.h:5198
VPIRValue * getOrAddLiveIn(Value *V)
Gets the live-in VPIRValue for V or adds a new live-in (if none exists yet) for V.
Definition VPlan.h:5147
VPIRValue * getZero(Type *Ty)
Return a VPIRValue wrapping the null value of type Ty.
Definition VPlan.h:5173
LLVM_ABI_FOR_TEST VPRegionBlock * getVectorLoopRegion()
Returns the VPRegionBlock of the vector loop.
Definition VPlan.cpp:1086
VPSymbolicValue & getUF()
Returns the UF of the vector loop region.
Definition VPlan.h:5070
bool hasScalarVFOnly() const
Definition VPlan.h:5115
VPIRBasicBlock * getScalarHeader() const
Return the VPIRBasicBlock wrapping the header of the scalar loop.
Definition VPlan.h:5023
VPSymbolicValue & getVF()
Returns the VF of the vector loop region.
Definition VPlan.h:5066
void setUF(unsigned UF)
Definition VPlan.h:5130
VPIRValue * getConstantInt(Type *Ty, uint64_t Val, bool IsSigned=false)
Return a VPIRValue wrapping a ConstantInt with the given type and value.
Definition VPlan.h:5181
constexpr ScalarTy getFixedValue() const
Definition TypeSize.h:200
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
Definition TypeSize.h:168
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
Definition TypeSize.h:165
SpecificConstantMatch m_ZeroInt()
Convenience matchers for specific integer values.
match_combine_or< Ty... > m_CombineOr(const Ty &...Ps)
Combine pattern matchers matching any of Ps patterns.
bool match(Val *V, const Pattern &P)
cst_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
auto m_Intrinsic(const Ts &...Ops)
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
VPInstruction_match< VPInstruction::ExtractLastLane, VPInstruction_match< VPInstruction::ExtractLastPart, Op0_t > > m_ExtractLastLaneOfLastPart(const Op0_t &Op0)
VPInstruction_match< VPInstruction::ComputeReductionResult, Op0_t > m_ComputeReductionResult(const Op0_t &Op0)
VPInstruction_match< VPInstruction::WideActiveLaneMask, Op0_t, Op1_t, Op2_t > m_WideActiveLaneMask(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
VPInstruction_match< Instruction::InsertElement, Op0_t, Op1_t, Op2_t > m_InsertElement(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
VPInstruction_match< VPInstruction::LastActiveLane, Op0_t > m_LastActiveLane(const Op0_t &Op0)
VPInstruction_match< VPInstruction::ExtractLastActive, Op0_t, Op1_t, Op2_t > m_ExtractLastActive(const Op0_t &Op0, const Op1_t &Op1, const Op2_t &Op2)
VPInstruction_match< Instruction::ExtractElement, Op0_t, Op1_t > m_ExtractElement(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::BranchOnCount > m_BranchOnCount()
auto m_VPValue()
Match an arbitrary VPValue and ignore it.
VPInstruction_match< VPInstruction::ExtractLastPart, Op0_t > m_ExtractLastPart(const Op0_t &Op0)
VPInstruction_match< VPInstruction::BuildVector > m_BuildVector()
BuildVector is matches only its opcode, w/o matching its operands as the number of operands is not fi...
VPInstruction_match< VPInstruction::ExtractPenultimateElement, Op0_t > m_ExtractPenultimateElement(const Op0_t &Op0)
match_bind< VPInstruction > m_VPInstruction(VPInstruction *&V)
Match a VPInstruction, capturing if we match.
VPInstruction_match< VPInstruction::FirstActiveLane, Op0_t > m_FirstActiveLane(const Op0_t &Op0)
VPInstruction_match< VPInstruction::BranchOnCond > m_BranchOnCond()
VPInstruction_match< VPInstruction::ExtractLane, Op0_t, Op1_t > m_ExtractLane(const Op0_t &Op0, const Op1_t &Op1)
VPInstruction_match< VPInstruction::BuildStructVector > m_BuildStructVector()
BuildStructVector matches only its opcode, w/o matching its operands as the number of operands is not...
NodeAddr< PhiNode * > Phi
Definition RDFGraph.h:390
BranchProbability getExecutionProbability(BlockFrequency Freq)
Returns Freq as a BranchProbability, relative to AlwaysExecutesFreq.
bool isSingleScalar(const VPValue *VPV)
Returns true if VPV is a single scalar, either because it produces the same value for all lanes or on...
bool onlyFirstPartUsed(const VPValue *Def)
Returns true if only the first part of Def is used.
bool onlyFirstLaneUsed(const VPValue *Def)
Returns true if only the first lane of Def is used.
bool doesGeneratePerAllLanes(const VPRecipeBase *R)
Returns true if R produces scalar values for all VF lanes.
bool isUniformAcrossVFsAndUFs(const VPValue *V)
Checks if V is uniform across all VF lanes and UF parts.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition STLExtras.h:315
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
Definition STLExtras.h:830
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
Definition STLExtras.h:840
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2554
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition STLExtras.h:633
iterator_range< df_iterator< VPBlockShallowTraversalWrapper< VPBlockBase * > > > vp_depth_first_shallow(VPBlockBase *G)
Returns an iterator range to traverse the graph starting at G in depth-first order.
Definition VPlanCFG.h:250
iterator_range< df_iterator< VPBlockDeepTraversalWrapper< VPBlockBase * > > > vp_depth_first_deep(VPBlockBase *G)
Returns an iterator range to traverse the graph starting at G in depth-first order while traversing t...
Definition VPlanCFG.h:285
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
Definition STLExtras.h:1151
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
auto reverse(ContainerTy &&C)
Definition STLExtras.h:407
bool isa_and_present(const Y &Val)
isa_and_present<X> - Functionally identical to isa, except that a null value is accepted.
Definition Casting.h:669
SmallVector< ValueTypeFromRangeType< R >, Size > to_vector(R &&Range)
Given a range of type R, iterate the entire range and return a SmallVector with elements of the vecto...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
@ Add
Sum of integers.
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
static void unrollByUF(VPlan &Plan, unsigned UF)
Explicitly unroll Plan by UF.
static bool mergeBlocksIntoPredecessors(VPlan &Plan)
Remove redundant VPBasicBlocks by merging them into their single predecessor if the latter has a sing...
static void removeDeadRecipes(VPlan &Plan)
Remove dead recipes from Plan.
static void replicateByVF(VPlan &Plan, ElementCount VF)
Replace replicating VPReplicateRecipe, VPScalarIVStepsRecipe and VPInstruction in Plan with VF single...