LLVM 24.0.0git
VPlanLowering.cpp
Go to the documentation of this file.
1//===- VPlanLowering.cpp - VPlan-to-VPlan lowering transforms -------------===//
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 VPlan-to-VPlan lowering transformations, which
11/// prepare an optimized VPlan for execution.
12///
13//===----------------------------------------------------------------------===//
14
16#include "VPlan.h"
17#include "VPlanAnalysis.h"
18#include "VPlanCFG.h"
19#include "VPlanDominatorTree.h"
20#include "VPlanHelpers.h"
21#include "VPlanPatternMatch.h"
22#include "VPlanTransforms.h"
23#include "VPlanUtils.h"
24#include "llvm/ADT/APInt.h"
25#include "llvm/ADT/STLExtras.h"
30#include "llvm/IR/Intrinsics.h"
31#include "llvm/IR/MDBuilder.h"
32#include "llvm/IR/Metadata.h"
36
37using namespace llvm;
38using namespace VPlanPatternMatch;
39using namespace SCEVPatternMatch;
40
44 const SmallPtrSetImpl<const Value *> &ValuesToIgnore) {
45 VPRegionBlock *LoopRegion = Plan.getVectorLoopRegion();
46 if (!LoopRegion)
47 return;
48
49 auto *WideCanIV =
51 if (!WideCanIV)
52 return;
53
54 Type *CanIVTy = LoopRegion->getCanonicalIVType();
55
56 // Replace the wide canonical IV with a scalar-iv-steps over the canonical
57 // IV.
58 if (Plan.hasScalarVFOnly() || vputils::onlyFirstLaneUsed(WideCanIV)) {
59 VPBuilder Builder(WideCanIV);
60 WideCanIV->replaceAllUsesWith(vputils::createScalarIVSteps(
61 Plan, InductionDescriptor::IK_IntInduction, Instruction::Add, nullptr,
62 nullptr, Plan.getZero(CanIVTy), Plan.getConstantInt(CanIVTy, 1),
63 WideCanIV->getDebugLoc(), Builder));
64 WideCanIV->eraseFromParent();
65 return;
66 }
67
68 if (vputils::onlyScalarValuesUsed(WideCanIV))
69 return;
70
71 // If a canonical VPWidenIntOrFpInductionRecipe already produces vector lanes
72 // in the header, reuse it instead of introducing another wide induction phi.
73 VPBasicBlock *Header = LoopRegion->getEntryBasicBlock();
74 for (VPRecipeBase &Phi : Header->phis()) {
76 if (!match(&Phi, m_CanonicalWidenIV(WidenIV)))
77 continue;
78 // The reused wide IV feeds the header mask, whose lanes may extend past
79 // the trip count; drop flags that only hold inside the scalar loop.
81 WideCanIV->replaceAllUsesWith(WidenIV);
82 WideCanIV->eraseFromParent();
83 return;
84 }
85
86 // Introduce a new VPWidenIntOrFpInductionRecipe if profitable.
87 auto *VecTy = VectorType::get(CanIVTy, VF);
88 InstructionCost BroadcastCost = TTI.getShuffleCost(
90 InstructionCost PHICost = TTI.getCFInstrCost(Instruction::PHI, CostKind);
91 if (PHICost > BroadcastCost)
92 return;
93
94 // Bail out if the additional wide induction phi increase the expected spill
95 // cost.
96 VPRegisterUsage UnrolledBase =
97 calculateRegisterUsageForPlan(Plan, VF, TTI, ValuesToIgnore)[0];
98 for (unsigned &NumUsers : make_second_range(UnrolledBase.MaxLocalUsers))
99 NumUsers *= UF;
100 unsigned RegClass = TTI.getRegisterClassForType(/*Vector=*/true, VecTy);
101 VPRegisterUsage Projected = UnrolledBase;
102 Projected.MaxLocalUsers[RegClass] += TTI.getRegUsageForType(VecTy);
103 if (Projected.spillCost(TTI, CostKind) >
104 UnrolledBase.spillCost(TTI, CostKind))
105 return;
106
109 VPValue *StepV = Plan.getConstantInt(CanIVTy, 1);
110 auto *NewWideIV = new VPWidenIntOrFpInductionRecipe(
111 /*IV=*/nullptr, Plan.getZero(CanIVTy), StepV, &Plan.getVF(), ID,
112 WideCanIV->getNoWrapFlags(), WideCanIV->getDebugLoc());
113 NewWideIV->insertBefore(&*Header->getFirstNonPhi());
114 WideCanIV->replaceAllUsesWith(NewWideIV);
115 WideCanIV->eraseFromParent();
116}
117
118// Add a VPActiveLaneMaskPHIRecipe and related recipes to \p Plan and replace
119// the loop terminator with a branch-on-cond recipe with the negated
120// active-lane-mask as operand. Note that this turns the loop into an
121// uncountable one. Only the existing terminator is replaced, all other existing
122// recipes/users remain unchanged, except for poison-generating flags being
123// dropped from the canonical IV increment. Return the created
124// VPActiveLaneMaskPHIRecipe.
125//
126// The function adds the following recipes:
127//
128// vector.ph:
129// %EntryInc = canonical-iv-increment-for-part CanonicalIVStart
130// %EntryALM = active-lane-mask %EntryInc, TC
131//
132// vector.body:
133// ...
134// %P = active-lane-mask-phi [ %EntryALM, %vector.ph ], [ %ALM, %vector.body ]
135// ...
136// %InLoopInc = canonical-iv-increment-for-part CanonicalIVIncrement
137// %ALM = active-lane-mask %InLoopInc, TC
138// %Negated = Not %ALM
139// branch-on-cond %Negated
140//
143 VPRegionBlock *TopRegion = Plan.getVectorLoopRegion();
144 VPBasicBlock *EB = TopRegion->getExitingBasicBlock();
145 VPValue *StartV = Plan.getZero(TopRegion->getCanonicalIVType());
146 auto *CanonicalIVIncrement = TopRegion->getOrCreateCanonicalIVIncrement();
147 // TODO: Check if dropping the flags is needed.
148 TopRegion->clearCanonicalIVNUW(CanonicalIVIncrement);
149 DebugLoc DL = CanonicalIVIncrement->getDebugLoc();
150 // We can't use StartV directly in the ActiveLaneMask VPInstruction, since
151 // we have to take unrolling into account. Each part needs to start at
152 // Part * VF
153 auto *VecPreheader = Plan.getVectorPreheader();
154 VPBuilder Builder(VecPreheader);
155
156 // Create the ActiveLaneMask instruction using the correct start values.
157 VPValue *TC = Plan.getTripCount();
158 VPValue *VF = &Plan.getVF();
159
160 auto *EntryIncrement =
161 Builder.createOverflowingOp(VPInstruction::CanonicalIVIncrementForPart,
162 {StartV, VF}, {}, DL, "index.part.next");
163
164 // Create the active lane mask instruction in the VPlan preheader.
165 VPValue *ALMMultiplier =
166 Plan.getConstantInt(TopRegion->getCanonicalIVType(), 1);
167 auto *EntryALM = Builder.createNaryOp(VPInstruction::ActiveLaneMask,
168 {EntryIncrement, TC, ALMMultiplier}, DL,
169 "active.lane.mask.entry");
170
171 // Now create the ActiveLaneMaskPhi recipe in the main loop using the
172 // preheader ActiveLaneMask instruction.
173 auto *LaneMaskPhi =
175 auto *HeaderVPBB = TopRegion->getEntryBasicBlock();
176 LaneMaskPhi->insertBefore(*HeaderVPBB, HeaderVPBB->begin());
177
178 // Create the active lane mask for the next iteration of the loop before the
179 // original terminator.
180 VPRecipeBase *OriginalTerminator = EB->getTerminator();
181 Builder.setInsertPoint(OriginalTerminator);
182 auto *InLoopIncrement = Builder.createOverflowingOp(
184 {CanonicalIVIncrement, &Plan.getVF()}, {}, DL);
185 auto *ALM = Builder.createNaryOp(VPInstruction::ActiveLaneMask,
186 {InLoopIncrement, TC, ALMMultiplier}, DL,
187 "active.lane.mask.next");
188 LaneMaskPhi->addBackedgeValue(ALM);
189
190 // Replace the original terminator with BranchOnCond. We have to invert the
191 // mask here because a true condition means jumping to the exit block.
192 auto *NotMask = Builder.createNot(ALM, DL);
193 Builder.createNaryOp(VPInstruction::BranchOnCond, {NotMask}, DL);
194 OriginalTerminator->eraseFromParent();
195 return LaneMaskPhi;
196}
197
199 VPlan &Plan, bool UseActiveLaneMask, bool UseActiveLaneMaskForControlFlow) {
200 VPRegionBlock *LoopRegion = Plan.getVectorLoopRegion();
201 VPValue *HeaderMask = LoopRegion->getUsedHeaderMask();
202 if (!HeaderMask)
203 return;
204
205 if (UseActiveLaneMaskForControlFlow) {
207 return;
208 }
209
210 VPBasicBlock *Header = LoopRegion->getEntryBasicBlock();
211 VPBuilder Builder(Header, Header->getFirstNonPhi());
212 auto *WideCanonicalIV = Builder.insert(new VPWidenCanonicalIVRecipe(
213 LoopRegion->getCanonicalIV(),
214 VPIRFlags::WrapFlagsTy(/*HasNUW=*/true, /*HasNSW=*/false)));
215 VPValue *Mask;
216 if (UseActiveLaneMask) {
217 VPValue *ALMMultiplier =
218 Plan.getConstantInt(LoopRegion->getCanonicalIVType(), 1);
219 Mask = Builder.createNaryOp(
221 {WideCanonicalIV, Plan.getTripCount(), ALMMultiplier}, nullptr,
222 "active.lane.mask");
223 } else {
224 Mask = Builder.createICmp(CmpInst::ICMP_ULE, WideCanonicalIV,
226 }
227 HeaderMask->replaceAllUsesWith(Mask);
228}
229
230/// Expand a VPWidenIntOrFpInduction into executable recipes, for the initial
231/// value, phi and backedge value. In the following example:
232///
233/// vector.ph:
234/// Successor(s): vector loop
235///
236/// <x1> vector loop: {
237/// vector.body:
238/// WIDEN-INDUCTION %i = phi %start, %step, %vf
239/// ...
240/// EMIT branch-on-count ...
241/// No successors
242/// }
243///
244/// WIDEN-INDUCTION will get expanded to:
245///
246/// vector.ph:
247/// ...
248/// vp<%induction.start> = ...
249/// vp<%induction.increment> = ...
250///
251/// Successor(s): vector loop
252///
253/// <x1> vector loop: {
254/// vector.body:
255/// ir<%i> = WIDEN-PHI vp<%induction.start>, vp<%vec.ind.next>
256/// ...
257/// vp<%vec.ind.next> = add ir<%i>, vp<%induction.increment>
258/// EMIT branch-on-count ...
259/// No successors
260/// }
261static void
263 VPlan *Plan = WidenIVR->getParent()->getPlan();
264 VPValue *Start = WidenIVR->getStartValue();
265 VPValue *Step = WidenIVR->getStepValue();
266 VPValue *VF = WidenIVR->getVFValue();
267 DebugLoc DL = WidenIVR->getDebugLoc();
268
269 // The value from the original loop to which we are mapping the new induction
270 // variable.
271 Type *Ty = WidenIVR->getScalarType();
272
273 const InductionDescriptor &ID = WidenIVR->getInductionDescriptor();
276 VPIRFlags Flags = *WidenIVR;
277 if (ID.getKind() == InductionDescriptor::IK_IntInduction) {
278 AddOp = Instruction::Add;
279 MulOp = Instruction::Mul;
280 } else {
281 AddOp = ID.getInductionOpcode();
282 MulOp = Instruction::FMul;
283 }
284
285 // If the phi is truncated, truncate the start and step values.
286 VPBuilder Builder(Plan->getVectorPreheader());
287 Type *StepTy = Step->getScalarType();
288 if (Ty->getScalarSizeInBits() < StepTy->getScalarSizeInBits()) {
289 assert(StepTy->isIntegerTy() && "Truncation requires an integer type");
290 Step = Builder.createScalarCast(Instruction::Trunc, Step, Ty, DL);
291 Start = Builder.createScalarCast(Instruction::Trunc, Start, Ty, DL);
292 StepTy = Ty;
293 }
294
295 // Construct the initial value of the vector IV in the vector loop preheader.
296 Type *IVIntTy =
298 VPValue *Init = Builder.createNaryOp(VPInstruction::StepVector, {}, IVIntTy);
299 if (StepTy->isFloatingPointTy())
300 Init = Builder.createWidenCast(Instruction::UIToFP, Init, StepTy);
301
302 VPValue *SplatStart = Builder.createNaryOp(VPInstruction::Broadcast, Start);
303 VPValue *SplatStep = Builder.createNaryOp(VPInstruction::Broadcast, Step);
304
305 Init = Builder.createNaryOp(MulOp, {Init, SplatStep}, Flags);
306 Init = Builder.createNaryOp(AddOp, {SplatStart, Init}, Flags,
307 DebugLoc::getUnknown(), "induction");
308
309 // Create the widened phi of the vector IV.
310 auto *WidePHI = VPBuilder(WidenIVR).createWidenPhi(
311 Init, WidenIVR->getDebugLoc(), "vec.ind");
312
313 // Create the backedge value for the vector IV.
314 VPValue *Inc;
315 VPValue *Prev;
316 // If unrolled, use the increment and prev value from the operands.
317 if (auto *SplatVF = WidenIVR->getSplatVFValue()) {
318 Inc = SplatVF;
319 Prev = WidenIVR->getLastUnrolledPartOperand();
320 } else {
321 // Move the insertion point after the VF definition when the VF is defined
322 // inside a loop, such as for EVL tail-folding.
323 if (VPRecipeBase *R = VF->getDefiningRecipe())
324 if (R->getParent()->getEnclosingLoopRegion())
325 Builder.setInsertPoint(R->getParent(), std::next(R->getIterator()));
326
327 // Multiply the vectorization factor by the step using integer or
328 // floating-point arithmetic as appropriate.
329 if (StepTy->isFloatingPointTy())
330 VF = Builder.createScalarCast(Instruction::CastOps::UIToFP, VF, StepTy,
331 DL);
332 else
333 VF = Builder.createScalarZExtOrTrunc(VF, StepTy, DL);
334
335 Inc = Builder.createNaryOp(MulOp, {Step, VF}, Flags);
336 Inc = Builder.createNaryOp(VPInstruction::Broadcast, Inc);
337 Prev = WidePHI;
338 }
339
341 Builder.setInsertPoint(ExitingBB, ExitingBB->getTerminator()->getIterator());
342 auto *Next = Builder.createNaryOp(AddOp, {Prev, Inc}, Flags,
343 WidenIVR->getDebugLoc(), "vec.ind.next");
344
345 WidePHI->addIncoming(Next);
346
347 WidenIVR->replaceAllUsesWith(WidePHI);
348}
349
350/// Expand a VPWidenPointerInductionRecipe into executable recipes, for the
351/// initial value, phi and backedge value. In the following example:
352///
353/// <x1> vector loop: {
354/// vector.body:
355/// EMIT ir<%ptr.iv> = WIDEN-POINTER-INDUCTION %start, %step, %vf
356/// ...
357/// EMIT branch-on-count ...
358/// }
359///
360/// WIDEN-POINTER-INDUCTION will get expanded to:
361///
362/// <x1> vector loop: {
363/// vector.body:
364/// EMIT-SCALAR %pointer.phi = phi %start, %ptr.ind
365/// EMIT %mul = mul %stepvector, %step
366/// EMIT %vector.gep = wide-ptradd %pointer.phi, %mul
367/// ...
368/// EMIT %ptr.ind = ptradd %pointer.phi, %vf
369/// EMIT branch-on-count ...
370/// }
372 VPlan *Plan = R->getParent()->getPlan();
373 VPValue *Start = R->getStartValue();
374 VPValue *Step = R->getStepValue();
375 VPValue *VF = R->getVFValue();
376
377 assert(R->getInductionDescriptor().getKind() ==
379 "Not a pointer induction according to InductionDescriptor!");
380 assert(R->getScalarType()->isPointerTy() && "Unexpected type.");
381 assert(!R->onlyScalarsGenerated(Plan->hasScalableVF()) &&
382 "Recipe should have been replaced");
383
384 VPBuilder Builder(R);
385 DebugLoc DL = R->getDebugLoc();
386
387 // Build a scalar pointer phi.
388 VPPhi *ScalarPtrPhi = Builder.createScalarPhi(Start, DL, "pointer.phi");
389
390 // Create actual address geps that use the pointer phi as base and a
391 // vectorized version of the step value (<step*0, ..., step*N>) as offset.
392 Builder.setInsertPoint(R->getParent(), R->getParent()->getFirstNonPhi());
393 Type *StepTy = Step->getScalarType();
394 VPValue *Offset = Builder.createNaryOp(VPInstruction::StepVector, {}, StepTy);
395 Offset = Builder.createOverflowingOp(Instruction::Mul, {Offset, Step});
396 VPValue *PtrAdd =
397 Builder.createWidePtrAdd(ScalarPtrPhi, Offset, DL, "vector.gep");
398 R->replaceAllUsesWith(PtrAdd);
399
400 // Create the backedge value for the scalar pointer phi.
402 Builder.setInsertPoint(ExitingBB, ExitingBB->getTerminator()->getIterator());
403 VF = Builder.createScalarZExtOrTrunc(VF, StepTy, DL);
404 VPValue *Inc = Builder.createOverflowingOp(Instruction::Mul, {Step, VF});
405
406 VPValue *InductionGEP =
407 Builder.createPtrAdd(ScalarPtrPhi, Inc, DL, "ptr.ind");
408 ScalarPtrPhi->addIncoming(InductionGEP);
409}
410
411/// Expand a VPDerivedIVRecipe into executable recipes.
413 VPBuilder Builder(R);
414 VPValue *Start = R->getStartValue();
415 VPValue *Step = R->getStepValue();
416 VPValue *Index = R->getIndex();
417 Type *StepTy = Step->getScalarType();
418 Index = StepTy->isIntegerTy()
419 ? Builder.createScalarSExtOrTrunc(
420 Index, StepTy, DebugLoc::getCompilerGenerated())
421 : Builder.createScalarCast(Instruction::SIToFP, Index, StepTy,
423 switch (R->getInductionKind()) {
425 assert(Index->getScalarType() == Start->getScalarType() &&
426 "Index type does not match StartValue type");
427 return R->replaceAllUsesWith(Builder.createAdd(
428 Start, Builder.createOverflowingOp(Instruction::Mul, {Index, Step})));
429 }
431 return R->replaceAllUsesWith(Builder.createPtrAdd(
432 Start, Builder.createOverflowingOp(Instruction::Mul, {Index, Step})));
434 assert(StepTy->isFloatingPointTy() && "Expected FP Step value");
435 const FPMathOperator *FPBinOp = R->getFPBinOp();
436 assert(FPBinOp &&
437 (FPBinOp->getOpcode() == Instruction::FAdd ||
438 FPBinOp->getOpcode() == Instruction::FSub) &&
439 "Original BinOp should be defined for FP induction");
440 FastMathFlags FMF = FPBinOp->getFastMathFlags();
441 VPValue *FMul = Builder.createNaryOp(Instruction::FMul, {Step, Index}, FMF);
442 return R->replaceAllUsesWith(
443 Builder.createNaryOp(FPBinOp->getOpcode(), {Start, FMul}, FMF));
444 }
446 return;
447 }
448 llvm_unreachable("Unhandled induction kind");
449}
450
452 // Replace loop regions with explicity CFG.
455 vp_depth_first_deep(Plan.getEntry()))) {
456 if (!R->isReplicator())
457 LoopRegions.push_back(R);
458 }
459 for (VPRegionBlock *R : LoopRegions)
460 R->dissolveToCFGLoop();
461}
462
465 // The transform runs after dissolving loop regions, so all VPBasicBlocks
466 // terminated with BranchOnTwoConds are reached via a shallow traversal.
469 if (!VPBB->empty() && match(&VPBB->back(), m_BranchOnTwoConds()))
470 WorkList.push_back(cast<VPInstruction>(&VPBB->back()));
471 }
472
473 // Expand BranchOnTwoConds instructions into explicit CFG with two new
474 // single-condition branches:
475 // 1. A branch that replaces BranchOnTwoConds, jumps to the first successor if
476 // the first condition is true, and otherwise jumps to a new interim block.
477 // 2. A branch that ends the interim block, jumps to the second successor if
478 // the second condition is true, and otherwise jumps to the third
479 // successor.
480 for (VPInstruction *Br : WorkList) {
481 assert(Br->getNumOperands() == 2 &&
482 "BranchOnTwoConds must have exactly 2 conditions");
483 DebugLoc DL = Br->getDebugLoc();
484 VPBasicBlock *BrOnTwoCondsBB = Br->getParent();
485 const auto Successors = to_vector(BrOnTwoCondsBB->getSuccessors());
486 assert(Successors.size() == 3 &&
487 "BranchOnTwoConds must have exactly 3 successors");
488
489 for (VPBlockBase *Succ : Successors)
490 VPBlockUtils::disconnectBlocks(BrOnTwoCondsBB, Succ);
491
492 VPValue *Cond0 = Br->getOperand(0);
493 VPValue *Cond1 = Br->getOperand(1);
494 VPBlockBase *Succ0 = Successors[0];
495 VPBlockBase *Succ1 = Successors[1];
496 VPBlockBase *Succ2 = Successors[2];
497
498 // If the successor block for both conditions is the same, then combine the
499 // two conditions and plant a single conditional branch.
500 if (Succ0 == Succ1) {
501 VPBuilder Builder(Br);
502 VPValue *Combined = Builder.createOr(Cond0, Cond1, DL);
503 Builder.createNaryOp(VPInstruction::BranchOnCond, {Combined}, DL);
504 VPBlockUtils::connectBlocks(BrOnTwoCondsBB, Succ0);
505 VPBlockUtils::connectBlocks(BrOnTwoCondsBB, Succ2);
506 Br->eraseFromParent();
507 continue;
508 }
509
510 assert(!Succ0->getParent() && !Succ1->getParent() && !Succ2->getParent() &&
511 !BrOnTwoCondsBB->getParent() && "regions must already be dissolved");
512
513 VPBasicBlock *InterimBB =
514 Plan.createVPBasicBlock(BrOnTwoCondsBB->getName() + ".interim");
515
516 VPBuilder(BrOnTwoCondsBB)
518 VPBlockUtils::connectBlocks(BrOnTwoCondsBB, Succ0);
519 VPBlockUtils::connectBlocks(BrOnTwoCondsBB, InterimBB);
520
522 VPBlockUtils::connectBlocks(InterimBB, Succ1);
523 VPBlockUtils::connectBlocks(InterimBB, Succ2);
524 Br->eraseFromParent();
525 }
526}
527
530 vp_depth_first_deep(Plan.getEntry()))) {
531 for (VPRecipeBase &R : make_early_inc_range(*VPBB)) {
532 VPBuilder Builder(&R);
533 if (auto *WidenIVR = dyn_cast<VPWidenIntOrFpInductionRecipe>(&R)) {
535 WidenIVR->eraseFromParent();
536 continue;
537 }
538
539 if (auto *WidenIVR = dyn_cast<VPWidenPointerInductionRecipe>(&R)) {
540 // If the recipe only generates scalars, scalarize it instead of
541 // expanding it.
542 if (WidenIVR->onlyScalarsGenerated(Plan.hasScalableVF())) {
544 WidenIVR, Plan, Builder);
545 WidenIVR->replaceAllUsesWith(PtrAdd);
546 WidenIVR->eraseFromParent();
547 continue;
548 }
550 WidenIVR->eraseFromParent();
551 continue;
552 }
553
554 if (auto *DerivedIVR = dyn_cast<VPDerivedIVRecipe>(&R)) {
555 expandVPDerivedIV(DerivedIVR);
556 DerivedIVR->eraseFromParent();
557 continue;
558 }
559
560 if (auto *WideCanIV = dyn_cast<VPWidenCanonicalIVRecipe>(&R)) {
561 VPValue *CanIV = WideCanIV->getCanonicalIV();
562 Type *CanIVTy = CanIV->getScalarType();
563 VPValue *Step = WideCanIV->getStepValue();
564 if (!Step) {
565 assert(Plan.getConcreteUF() == 1 &&
566 "Expected unroller to have materialized step for UF != 1");
567 Step = Plan.getZero(CanIVTy);
568 }
569 CanIV = Builder.createNaryOp(VPInstruction::Broadcast, CanIV);
570 Step = Builder.createNaryOp(VPInstruction::Broadcast, Step);
571 Step = Builder.createAdd(
572 Step, Builder.createNaryOp(VPInstruction::StepVector, {}, CanIVTy));
573 VPValue *CanVecIV =
574 Builder.createAdd(CanIV, Step, WideCanIV->getDebugLoc(), "vec.iv",
575 WideCanIV->getNoWrapFlags());
576 WideCanIV->replaceAllUsesWith(CanVecIV);
577 WideCanIV->eraseFromParent();
578 continue;
579 }
580
581 // Expand VPBlendRecipe into VPInstruction::Select.
582 if (auto *Blend = dyn_cast<VPBlendRecipe>(&R)) {
583 VPValue *Select = Blend->getIncomingValue(0);
584 for (unsigned I = 1; I != Blend->getNumIncomingValues(); ++I)
585 Select = Builder.createSelect(Blend->getMask(I),
586 Blend->getIncomingValue(I), Select,
587 R.getDebugLoc(), "predphi", *Blend);
588 Blend->replaceAllUsesWith(Select);
589 Blend->eraseFromParent();
590 continue;
591 }
592
593 if (auto *VEPR = dyn_cast<VPVectorEndPointerRecipe>(&R)) {
594 if (!VEPR->getOffset()) {
595 assert(Plan.getConcreteUF() == 1 &&
596 "Expected unroller to have materialized offset for UF != 1");
597 VEPR->materializeOffset();
598 }
599 continue;
600 }
601
602 if (auto *Expr = dyn_cast<VPExpressionRecipe>(&R)) {
603 Expr->decompose();
604 Expr->eraseFromParent();
605 continue;
606 }
607
608 // Expand LastActiveLane into Not + FirstActiveLane + Sub.
609 auto *LastActiveL = dyn_cast<VPInstruction>(&R);
610 if (LastActiveL &&
611 LastActiveL->getOpcode() == VPInstruction::LastActiveLane) {
612 // Create Not(Mask) for all operands.
614 for (VPValue *Op : LastActiveL->operands()) {
615 VPValue *NotMask = Builder.createNot(Op, LastActiveL->getDebugLoc());
616 NotMasks.push_back(NotMask);
617 }
618
619 // Create FirstActiveLane on the inverted masks.
620 VPValue *FirstInactiveLane = Builder.createFirstActiveLane(
621 NotMasks, LastActiveL->getDebugLoc(), "first.inactive.lane");
622
623 // Subtract 1 to get the last active lane.
624 VPValue *One =
625 Plan.getConstantInt(FirstInactiveLane->getScalarType(), 1);
626 VPValue *LastLane =
627 Builder.createSub(FirstInactiveLane, One,
628 LastActiveL->getDebugLoc(), "last.active.lane");
629
630 LastActiveL->replaceAllUsesWith(LastLane);
631 LastActiveL->eraseFromParent();
632 continue;
633 }
634
635 // Lower MaskedCond with block mask to LogicalAnd.
637 auto *VPI = cast<VPInstruction>(&R);
638 assert(VPI->isMasked() &&
639 "Unmasked MaskedCond should be simplified earlier");
640 VPI->replaceAllUsesWith(Builder.createNaryOp(
641 VPInstruction::LogicalAnd, {VPI->getMask(), VPI->getOperand(0)}));
642 VPI->eraseFromParent();
643 continue;
644 }
645
646 // Lower CanonicalIVIncrementForPart to plain Add.
647 if (match(
648 &R,
650 auto *VPI = cast<VPInstruction>(&R);
651 VPValue *Add = Builder.createOverflowingOp(
652 Instruction::Add, VPI->operands(), VPI->getNoWrapFlags(),
653 VPI->getDebugLoc());
654 VPI->replaceAllUsesWith(Add);
655 VPI->eraseFromParent();
656 continue;
657 }
658
659 // Lower BranchOnCount to ICmp + BranchOnCond.
660 VPValue *IV, *TC;
661 if (match(&R, m_BranchOnCount(m_VPValue(IV), m_VPValue(TC)))) {
662 auto *BranchOnCountInst = cast<VPInstruction>(&R);
663 DebugLoc DL = BranchOnCountInst->getDebugLoc();
664 VPValue *Cond = Builder.createICmp(CmpInst::ICMP_EQ, IV, TC, DL);
665 Builder.createNaryOp(VPInstruction::BranchOnCond, Cond, DL);
666 BranchOnCountInst->eraseFromParent();
667 continue;
668 }
669
670 VPValue *VectorStep;
671 VPValue *ScalarStep;
673 m_VPValue(VectorStep), m_VPValue(ScalarStep))))
674 continue;
675
676 // Expand WideIVStep.
677 auto *VPI = cast<VPInstruction>(&R);
678 Type *IVTy = VPI->getScalarType();
679 if (VectorStep->getScalarType() != IVTy) {
681 ? Instruction::UIToFP
682 : Instruction::Trunc;
683 VectorStep = Builder.createWidenCast(CastOp, VectorStep, IVTy);
684 }
685
686 assert(!match(ScalarStep, m_One()) && "Expected non-unit scalar-step");
687 if (ScalarStep->getScalarType() != IVTy) {
688 ScalarStep =
689 Builder.createWidenCast(Instruction::Trunc, ScalarStep, IVTy);
690 }
691
692 VPIRFlags Flags;
693 unsigned MulOpc;
694 if (IVTy->isFloatingPointTy()) {
695 MulOpc = Instruction::FMul;
696 Flags = VPI->getFastMathFlagsOrNone();
697 } else {
698 MulOpc = Instruction::Mul;
699 Flags = VPIRFlags::getDefaultFlags(MulOpc);
700 }
701
702 VPInstruction *Mul = Builder.createNaryOp(
703 MulOpc, {VectorStep, ScalarStep}, Flags, R.getDebugLoc());
704 VectorStep = Mul;
705 VPI->replaceAllUsesWith(VectorStep);
706 VPI->eraseFromParent();
707 }
708 }
709}
710
712 if (Plan.hasScalarVFOnly())
713 return;
714
715#ifndef NDEBUG
716 VPDominatorTree VPDT(Plan);
717#endif
718
719 SmallVector<VPValue *> VPValues;
720 if (VPValue *BTC = Plan.getBackedgeTakenCount())
721 VPValues.push_back(BTC);
722 append_range(VPValues, Plan.getLiveIns());
723 for (VPRecipeBase &R : *Plan.getEntry())
724 append_range(VPValues, R.definedValues());
725
726 auto *VectorPreheader = Plan.getVectorPreheader();
727 for (VPValue *VPV : VPValues) {
729 continue;
730
731 // Add explicit broadcast at the insert point that dominates all users.
732 VPBasicBlock *HoistBlock = VectorPreheader;
733 VPBasicBlock::iterator HoistPoint = VectorPreheader->end();
734 for (VPUser *User : VPV->users()) {
735 if (User->usesScalars(VPV))
736 continue;
737 if (cast<VPRecipeBase>(User)->getParent() == VectorPreheader)
738 HoistPoint = HoistBlock->begin();
739 else
740 assert(VPDT.dominates(VectorPreheader,
741 cast<VPRecipeBase>(User)->getParent()) &&
742 "All users must be in the vector preheader or dominated by it");
743 }
744
745 VPBuilder Builder(cast<VPBasicBlock>(HoistBlock), HoistPoint);
746 auto *Broadcast = Builder.createNaryOp(VPInstruction::Broadcast, {VPV});
747 VPV->replaceUsesWithIf(Broadcast,
748 [VPV, Broadcast](VPUser &U, unsigned Idx) {
749 return Broadcast != &U && !U.usesScalars(VPV);
750 });
751 }
752}
753
755 VPlan &Plan, ElementCount BestVF, unsigned BestUF,
757 assert(Plan.hasVF(BestVF) && "BestVF is not available in Plan");
758 assert(Plan.hasUF(BestUF) && "BestUF is not available in Plan");
759
760 VPValue *TC = Plan.getTripCount();
761 if (TC->user_empty())
762 return;
763
764 // Skip cases for which the trip count may be non-trivial to materialize.
765 // I.e., when a scalar tail is absent - due to tail folding, or when a scalar
766 // tail is required.
767 if (Plan.hasTailFolded() || !Plan.hasScalarTail() ||
769 Plan.getScalarPreheader() ||
770 !isa<VPIRValue>(TC))
771 return;
772
773 // Materialize vector trip counts for constants early if it can simply
774 // be computed as (Original TC / VF * UF) * VF * UF.
775 // TODO: Compute vector trip counts for loops requiring a scalar epilogue and
776 // tail-folded loops.
777 ScalarEvolution &SE = *PSE.getSE();
778 auto *TCScev = SE.getSCEV(TC->getLiveInIRValue());
779 if (!isa<SCEVConstant>(TCScev))
780 return;
781 const SCEV *VFxUF = SE.getElementCount(TCScev->getType(), BestVF * BestUF);
782 auto VecTCScev = SE.getMulExpr(SE.getUDivExpr(TCScev, VFxUF), VFxUF);
783 if (auto *ConstVecTC = dyn_cast<SCEVConstant>(VecTCScev))
784 Plan.getVectorTripCount().setUnderlyingValue(ConstVecTC->getValue());
785}
786
788 VPBasicBlock *VectorPH) {
790 if (BTC->user_empty())
791 return;
792
793 VPBuilder Builder(VectorPH, VectorPH->begin());
794 auto *TCTy = Plan.getTripCount()->getScalarType();
795 auto *TCMO =
796 Builder.createSub(Plan.getTripCount(), Plan.getConstantInt(TCTy, 1),
797 DebugLoc::getCompilerGenerated(), "trip.count.minus.1");
798 BTC->replaceAllUsesWith(TCMO);
799}
800
802 if (Plan.hasScalarVFOnly())
803 return;
804
805 VPRegionBlock *LoopRegion = Plan.getVectorLoopRegion();
806 auto VPBBsOutsideLoopRegion = VPBlockUtils::blocksOnly<VPBasicBlock>(
808 auto VPBBsInsideLoopRegion = VPBlockUtils::blocksOnly<VPBasicBlock>(
809 vp_depth_first_shallow(LoopRegion->getEntry()));
810 // Materialize Build(Struct)Vector for all replicating VPReplicateRecipes,
811 // VPScalarIVStepsRecipe and VPInstructions, excluding ones in replicate
812 // regions. Those are not materialized explicitly yet.
813 // TODO: materialize build vectors for replicating recipes in replicating
814 // regions.
815 for (VPBasicBlock *VPBB :
816 concat<VPBasicBlock *>(VPBBsOutsideLoopRegion, VPBBsInsideLoopRegion)) {
817 for (VPRecipeBase &R : make_early_inc_range(*VPBB)) {
819 continue;
820 auto *DefR = cast<VPSingleDefRecipe>(&R);
821 auto UsesVectorOrInsideReplicateRegion = [DefR, LoopRegion](VPUser *U) {
822 VPRegionBlock *ParentRegion = cast<VPRecipeBase>(U)->getRegion();
823 return !U->usesScalars(DefR) || ParentRegion != LoopRegion;
824 };
825 if (none_of(DefR->users(), UsesVectorOrInsideReplicateRegion))
826 continue;
827
828 Type *ScalarTy = DefR->getScalarType();
829 unsigned Opcode = ScalarTy->isStructTy()
832 auto *BuildVector = new VPInstruction(Opcode, {DefR});
833 BuildVector->insertAfter(DefR);
834
835 DefR->replaceUsesWithIf(
836 BuildVector, [BuildVector, &UsesVectorOrInsideReplicateRegion](
837 VPUser &U, unsigned) {
838 return &U != BuildVector && UsesVectorOrInsideReplicateRegion(&U);
839 });
840 }
841 }
842
843 // Create explicit VPInstructions to convert vectors to scalars. The current
844 // implementation is conservative - it may miss some cases that may or may not
845 // be vector values. TODO: introduce Unpacks speculatively - remove them later
846 // if they are known to operate on scalar values.
847 for (VPBasicBlock *VPBB : VPBBsInsideLoopRegion) {
848 for (VPRecipeBase &R : make_early_inc_range(*VPBB)) {
851 continue;
852 for (VPValue *Def : R.definedValues()) {
853 // Skip recipes that are single-scalar.
854 // TODO: The Defs skipped here may or may not be vector values.
855 // Introduce Unpacks, and remove them later, if they are guaranteed to
856 // produce scalar values.
858 continue;
859
860 // Only introduce an Unpack if some, but not all, users use the first
861 // lane only.
862 unsigned NumFirstLaneUsers = count_if(Def->users(), [&Def](VPUser *U) {
863 return U->usesFirstLaneOnly(Def);
864 });
865 if (!NumFirstLaneUsers || NumFirstLaneUsers == Def->getNumUsers())
866 continue;
867
868 auto *Unpack = new VPInstruction(VPInstruction::Unpack, {Def});
869 if (R.isPhi())
870 Unpack->insertBefore(*VPBB, VPBB->getFirstNonPhi());
871 else
872 Unpack->insertAfter(&R);
873 Def->replaceUsesWithIf(Unpack, [&Def](VPUser &U, unsigned) {
874 return U.usesFirstLaneOnly(Def);
875 });
876 }
877 }
878 }
879}
880
882 VPlan &Plan, VPBasicBlock *VectorPHVPBB, bool TailByMasking,
883 bool RequiresScalarEpilogue, VPValue *Step,
884 std::optional<uint64_t> MaxRuntimeStep) {
885 VPSymbolicValue &VectorTC = Plan.getVectorTripCount();
886 // There's nothing to do if there are no users of the vector trip count or its
887 // IR value has already been set.
888 if (VectorTC.user_empty() || VectorTC.getUnderlyingValue())
889 return;
890
891 VPValue *TC = Plan.getTripCount();
892 Type *TCTy = TC->getScalarType();
893 VPBasicBlock::iterator InsertPt = VectorPHVPBB->begin();
894 if (auto *StepR = Step->getDefiningRecipe()) {
895 assert(VPDominatorTree(Plan).dominates(StepR->getParent(), VectorPHVPBB) &&
896 "Step VPBB must dominate VectorPHVPBB");
897 // Insert after Step's definition to maintain valid def-use ordering.
898 InsertPt = std::next(StepR->getIterator());
899 }
900 VPBuilder Builder(VectorPHVPBB, InsertPt);
901
902 // For scalable steps, if TC is a constant and is divisible by the maximum
903 // possible runtime step, then TC % Step == 0 for all valid vscale values
904 // and the vector trip count equals TC directly.
905 const APInt *TCVal;
906 if (!RequiresScalarEpilogue && match(TC, m_APInt(TCVal)) && MaxRuntimeStep &&
907 TCVal->urem(*MaxRuntimeStep) == 0) {
908 VectorTC.replaceAllUsesWith(TC);
909 return;
910 }
911
912 // If the tail is to be folded by masking, round the number of iterations N
913 // up to a multiple of Step instead of rounding down. This is done by first
914 // adding Step-1 and then rounding down. Note that it's ok if this addition
915 // overflows: the vector induction variable will eventually wrap to zero given
916 // that it starts at zero and its Step is a power of two; the loop will then
917 // exit, with the last early-exit vector comparison also producing all-true.
918 if (TailByMasking) {
919 TC = Builder.createAdd(
920 TC, Builder.createSub(Step, Plan.getConstantInt(TCTy, 1)),
921 DebugLoc::getCompilerGenerated(), "n.rnd.up");
922 }
923
924 // Now we need to generate the expression for the part of the loop that the
925 // vectorized body will execute. This is equal to N - (N % Step) if scalar
926 // iterations are not required for correctness, or N - Step, otherwise. Step
927 // is equal to the vectorization factor (number of SIMD elements) times the
928 // unroll factor (number of SIMD instructions).
929 VPValue *R =
930 Builder.createNaryOp(Instruction::URem, {TC, Step},
931 DebugLoc::getCompilerGenerated(), "n.mod.vf");
932
933 // There are cases where we *must* run at least one iteration in the remainder
934 // loop. See the cost model for when this can happen. If the step evenly
935 // divides the trip count, we set the remainder to be equal to the step. If
936 // the step does not evenly divide the trip count, no adjustment is necessary
937 // since there will already be scalar iterations. Note that the minimum
938 // iterations check ensures that N >= Step.
939 if (RequiresScalarEpilogue) {
940 assert(!TailByMasking &&
941 "requiring scalar epilogue is not supported with fail folding");
942 VPValue *IsZero =
943 Builder.createICmp(CmpInst::ICMP_EQ, R, Plan.getZero(TCTy));
944 R = Builder.createSelect(IsZero, Step, R);
945 }
946
947 VPValue *Res =
948 Builder.createSub(TC, R, DebugLoc::getCompilerGenerated(), "n.vec");
949 VectorTC.replaceAllUsesWith(Res);
950}
951
953 ElementCount VFEC) {
954 // If VF and VFxUF have already been materialized (no remaining users),
955 // there's nothing more to do.
956 if (Plan.getVF().isMaterialized()) {
957 assert(Plan.getVFxUF().isMaterialized() &&
958 "VF and VFxUF must be materialized together");
959 return;
960 }
961
962 VPBuilder Builder(VectorPH, VectorPH->begin());
963 Type *TCTy = Plan.getTripCount()->getScalarType();
964 VPValue &VF = Plan.getVF();
965 VPValue &VFxUF = Plan.getVFxUF();
966 // If there are no users of the runtime VF, compute VFxUF by constant folding
967 // the multiplication of VF and UF.
968 if (VF.user_empty()) {
969 VPValue *RuntimeVFxUF =
970 Builder.createElementCount(TCTy, VFEC * Plan.getConcreteUF());
971 VFxUF.replaceAllUsesWith(RuntimeVFxUF);
972 return;
973 }
974
975 // For users of the runtime VF, compute it as VF * vscale, and VFxUF as (VF *
976 // vscale) * UF.
977 VPValue *RuntimeVF = Builder.createElementCount(TCTy, VFEC);
979 VPValue *BC = Builder.createNaryOp(VPInstruction::Broadcast, RuntimeVF);
981 BC, [&VF](VPUser &U, unsigned) { return !U.usesScalars(&VF); });
982 }
983 VF.replaceAllUsesWith(RuntimeVF);
984
985 VPValue *MulByUF = Builder.createOverflowingOp(
986 Instruction::Mul,
987 {RuntimeVF, Plan.getConstantInt(TCTy, Plan.getConcreteUF())},
988 {true, false});
989 VFxUF.replaceAllUsesWith(MulByUF);
990}
991
992VPValue *
994 ArrayRef<PointerDiffInfo> DiffChecks) {
995 VPBuilder Builder(AliasCheckVPBB);
996 Type *I1Ty = IntegerType::getInt1Ty(Plan.getContext());
997
998 VPValue *IncomingAliasMask = vputils::findIncomingAliasMask(Plan);
999 assert(IncomingAliasMask && "Expected an alias mask!");
1000
1001 VPValue *AliasMask = nullptr;
1002 for (const PointerDiffInfo &Check : DiffChecks) {
1004 VPValue *Sink =
1006 Type *AddrType = Src->getScalarType();
1007
1008 // TODO: Only freeze the required pointer (not both src and sink).
1009 if (Check.NeedsFreeze) {
1010 Src = Builder.createScalarFreeze(Src, AddrType, DebugLoc::getUnknown());
1011 Sink = Builder.createScalarFreeze(Sink, AddrType, DebugLoc::getUnknown());
1012 }
1013
1014 // TODO: Generate loop_dependence_raw_mask when there's a read-after-write
1015 // dependency between the source and the sink. This is not necessary for
1016 // correctness of the mask, but using the "raw" variant prevents loads
1017 // depending on the completion of stores.
1018 VPWidenIntrinsicRecipe *WARMask = Builder.insert(new VPWidenIntrinsicRecipe(
1019 Intrinsic::loop_dependence_war_mask,
1020 {Src, Sink, Plan.getConstantInt(AddrType, Check.AccessSize)}, I1Ty));
1021
1022 if (AliasMask)
1023 AliasMask = Builder.createAnd(AliasMask, WARMask);
1024 else
1025 AliasMask = WARMask;
1026 }
1027
1029 Type *IndexTy = Plan.getDataLayout().getIndexType(Plan.getContext(), 0);
1030 VPValue *NumActive = Builder.createNaryOp(
1031 VPInstruction::NumActiveLanes, {AliasMask}, nullptr, {}, {},
1032 DebugLoc::getUnknown(), "num.active.lanes", IndexTy);
1033 VPValue *ClampedVF = Builder.createScalarZExtOrTrunc(
1034 NumActive, IVTy, DebugLoc::getCompilerGenerated());
1035
1036 IncomingAliasMask->replaceAllUsesWith(AliasMask);
1037
1038 return ClampedVF;
1039}
1040
1042 VPlan &Plan, ArrayRef<PointerDiffInfo> DiffChecks, bool HasBranchWeights) {
1043 VPBasicBlock *ClampedVFCheck =
1044 Plan.createVPBasicBlock("vector.clamped.vf.check");
1045
1046 VPValue *ClampedVF = materializeAliasMask(Plan, ClampedVFCheck, DiffChecks);
1047 VPBuilder Builder(ClampedVFCheck);
1049 Type *TCTy = Plan.getTripCount()->getScalarType();
1050
1051 // Check the "ClampedVF" from the alias mask is larger than one.
1052 VPValue *IsScalar =
1053 Builder.createICmp(CmpInst::ICMP_ULE, ClampedVF,
1054 Plan.getConstantInt(TCTy, 1), DL, "vf.is.scalar");
1055
1056 VPValue *TripCount = Plan.getTripCount();
1057 VPValue *MaxUIntTripCount =
1059 VPValue *DistanceToMax = Builder.createSub(MaxUIntTripCount, TripCount);
1060
1061 // For tail-folding: Don't execute the vector loop if (UMax - n) < ClampedVF.
1062 // Note: The ClampedVF may not be a power-of-two. This means the loop exit
1063 // condition (index.next == n.vec) may not be correct in the case of an
1064 // overflow. The issue is `n.vec` could be zero due to an overflow, but
1065 // index.next is not guaranteed to overflow to zero as the ClampedVF is not a
1066 // power-of-two).
1067 VPValue *TripCountCheck = Builder.createICmp(
1068 ICmpInst::ICMP_ULT, DistanceToMax, ClampedVF, DL, "vf.step.overflow");
1069
1070 VPValue *Cond = Builder.createOr(IsScalar, TripCountCheck, DL);
1071 attachVPCheckBlock(Plan, Cond, ClampedVFCheck, HasBranchWeights);
1072
1073 // Materialize the trip count early as this will add a use of (VFxUF) that
1074 // needs to be replaced with the ClampedVF.
1076 /*TailByMasking=*/true,
1077 /*RequiresScalarEpilogue=*/false,
1078 &Plan.getVFxUF());
1079
1080 assert(Plan.getConcreteUF() == 1 &&
1081 "Clamped VF not supported with interleaving");
1082 Plan.getVF().replaceAllUsesWith(ClampedVF);
1083 Plan.getVFxUF().replaceAllUsesWith(ClampedVF);
1084}
1085
1087 ScalarEvolution &SE) {
1088 auto *Entry = Plan.getEntry();
1089 VPBuilder Builder(Entry, Entry->begin());
1091 ->getIRBasicBlock()
1092 ->getTerminator()
1093 ->getDebugLoc();
1094 VPSCEVExpander Expander(Builder, SE, DL);
1095
1096 // Expand VPExpandSCEVRecipes to VPInstructions using VPSCEVExpander. During
1097 // the transition, unsupported VPExpandSCEVRecipes are skipped and left for
1098 // late expansion.
1099 for (VPRecipeBase &R : make_early_inc_range(*Entry)) {
1100 auto *ExpSCEV = dyn_cast<VPExpandSCEVRecipe>(&R);
1101 if (!ExpSCEV || ExpSCEV->user_empty())
1102 continue;
1103 Builder.setInsertPoint(ExpSCEV);
1104 VPValue *Expanded = Expander.tryToExpand(ExpSCEV->getSCEV());
1105 if (!Expanded)
1106 continue;
1107 ExpSCEV->replaceAllUsesWith(Expanded);
1108 // TripCount should not be used after expansion to VPInstructions. Reset to
1109 // poison to avoid dangling references.
1110 if (Plan.getTripCount() == ExpSCEV)
1111 Plan.resetTripCount(Plan.getPoison(ExpSCEV->getScalarType()));
1112 ExpSCEV->eraseFromParent();
1113 }
1114}
1115
1118 SCEVExpander Expander(SE, "induction", /*PreserveLCSSA=*/false);
1119
1120 auto *Entry = cast<VPIRBasicBlock>(Plan.getEntry());
1121 BasicBlock *EntryBB = Entry->getIRBasicBlock();
1122 DenseMap<const SCEV *, Value *> ExpandedSCEVs;
1123 // Expand remaining VPExpandSCEVRecipes to IR instructions using SCEVExpander.
1124 for (VPRecipeBase &R : make_early_inc_range(*Entry)) {
1125 auto *ExpSCEV = dyn_cast<VPExpandSCEVRecipe>(&R);
1126 if (!ExpSCEV)
1127 continue;
1128 const SCEV *Expr = ExpSCEV->getSCEV();
1129 Value *Res =
1130 Expander.expandCodeFor(Expr, Expr->getType(), EntryBB->getTerminator());
1131 ExpandedSCEVs[Expr] = Res;
1132 VPValue *Exp = Plan.getOrAddLiveIn(Res);
1133 ExpSCEV->replaceAllUsesWith(Exp);
1134 if (Plan.getTripCount() == ExpSCEV)
1135 Plan.resetTripCount(Exp);
1136 ExpSCEV->eraseFromParent();
1137 }
1139 "all VPExpandSCEVRecipes must have been expanded");
1140 // Add IR instructions in the entry basic block but not in the VPIRBasicBlock
1141 // to the VPIRBasicBlock.
1142 auto EI = Entry->begin();
1143 for (Instruction &I : drop_end(*EntryBB)) {
1144 if (EI != Entry->end() && isa<VPIRInstruction>(*EI) &&
1145 &cast<VPIRInstruction>(&*EI)->getInstruction() == &I) {
1146 EI++;
1147 continue;
1148 }
1150 }
1151
1152 return ExpandedSCEVs;
1153}
1154
1155/// Add branch weight metadata, if the \p Plan's middle block is terminated by a
1156/// BranchOnCond recipe.
1158 VPlan &Plan, ElementCount VF, std::optional<unsigned> VScaleForTuning) {
1159 VPBasicBlock *MiddleVPBB = Plan.getMiddleBlock();
1160 auto *MiddleTerm =
1162 // Only add branch metadata if there is a (conditional) terminator.
1163 if (!MiddleTerm)
1164 return;
1165
1166 assert(MiddleTerm->getOpcode() == VPInstruction::BranchOnCond &&
1167 "must have a BranchOnCond");
1168 // Assume that `TripCount % VectorStep ` is equally distributed.
1169 unsigned VectorStep = Plan.getConcreteUF() * VF.getKnownMinValue();
1170 if (VF.isScalable() && VScaleForTuning.has_value())
1171 VectorStep *= *VScaleForTuning;
1172 assert(VectorStep > 0 && "trip count should not be zero");
1173 MDBuilder MDB(Plan.getContext());
1174 MDNode *BranchWeights =
1175 MDB.createBranchWeights({1, VectorStep - 1}, /*IsExpected=*/false);
1176 MiddleTerm->setMetadata(LLVMContext::MD_prof, BranchWeights);
1177}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Register Bank Select
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static const Function * getParent(const Value *V)
static cl::opt< OutputCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(OutputCostKind::RecipThroughput), cl::values(clEnumValN(OutputCostKind::RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(OutputCostKind::Latency, "latency", "Instruction latency"), clEnumValN(OutputCostKind::CodeSize, "code-size", "Code size"), clEnumValN(OutputCostKind::SizeAndLatency, "size-latency", "Code size and latency"), clEnumValN(OutputCostKind::All, "all", "Print all cost kinds")))
static std::pair< Value *, APInt > getMask(Value *WideMask, unsigned Factor, ElementCount LeafValueEC)
This file provides a LoopVectorizationPlanner class.
#define I(x, y, z)
Definition MD5.cpp:57
This file contains the declarations for metadata subclasses.
const SmallVectorImpl< MachineOperand > & Cond
static bool dominates(InstrPosIndexes &PosIndexes, const MachineInstr &A, const MachineInstr &B)
This file contains some templates that are useful if you are working with the STL at all.
This file defines the SmallPtrSet class.
This file implements dominator tree analysis for a single level of a VPlan's H-CFG.
This file contains the declarations of different VPlan-related auxiliary helpers.
static VPActiveLaneMaskPHIRecipe * addVPLaneMaskPhiAndUpdateExitBranch(VPlan &Plan)
static void expandVPDerivedIV(VPDerivedIVRecipe *R)
Expand a VPDerivedIVRecipe into executable recipes.
static void expandVPWidenIntOrFpInduction(VPWidenIntOrFpInductionRecipe *WidenIVR)
Expand a VPWidenIntOrFpInduction into executable recipes, for the initial value, phi and backedge val...
static void expandVPWidenPointerInduction(VPWidenPointerInductionRecipe *R)
Expand a VPWidenPointerInductionRecipe into executable recipes, for the initial value,...
This file provides utility VPlan to VPlan transformations.
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 APInt urem(const APInt &RHS) const
Unsigned remainder operation.
Definition APInt.cpp:1692
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
LLVM Basic Block Representation.
Definition BasicBlock.h:62
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Definition BasicBlock.h:237
@ ICMP_ULT
unsigned less than
Definition InstrTypes.h:765
@ ICMP_ULE
unsigned less or equal
Definition InstrTypes.h:766
LLVM_ABI IntegerType * getIndexType(LLVMContext &C, unsigned AddressSpace) const
Returns the type of a GEP index in AddressSpace.
A debug info location.
Definition DebugLoc.h:126
static DebugLoc getCompilerGenerated()
Definition DebugLoc.h:154
static DebugLoc getUnknown()
Definition DebugLoc.h:153
bool dominates(const DomTreeNodeBase< NodeT > *A, const DomTreeNodeBase< NodeT > *B) const
dominates - Returns true iff A dominates B.
Utility class for floating point operations which can have information about relaxed accuracy require...
Definition Operator.h:202
FastMathFlags getFastMathFlags() const
Convenience function for getting all the fast-math flags.
Definition Operator.h:291
Convenience struct for specifying and reasoning about fast-math flags.
Definition FMF.h:23
A struct for saving information about induction variables.
static LLVM_ABI InductionDescriptor getCanonicalIntInduction(Type *Ty, ScalarEvolution &SE)
Returns the canonical integer induction for type Ty with start = 0 and step = 1.
@ IK_NoInduction
Not an induction variable.
@ IK_FpInduction
Floating point induction variable.
@ IK_PtrInduction
Pointer induction var. Step = C.
@ IK_IntInduction
Integer induction variable. Step = C.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition Type.cpp:348
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
unsigned getOpcode() const
Return the opcode for this Instruction or ConstantExpr.
Definition Operator.h:43
An interface layer with SCEV used to manage how we see SCEV expressions for values in the context of ...
ScalarEvolution * getSE() const
Returns the ScalarEvolution analysis used.
This class uses information about analyze scalars to rewrite expressions in canonical form.
LLVM_ABI Value * expandCodeFor(SCEVUse SH, Type *Ty, BasicBlock::iterator I)
Insert code to directly compute the specified SCEV expression into the program.
This class represents an analyzed expression in the program.
LLVM_ABI Type * getType() const
Return the LLVM type of this SCEV expression.
The main scalar evolution driver.
LLVM_ABI const SCEV * getUDivExpr(SCEVUse LHS, SCEVUse RHS)
Get a canonical unsigned division expression, or something simpler if possible.
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
LLVM_ABI const SCEV * getElementCount(Type *Ty, ElementCount EC, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap)
LLVM_ABI const SCEV * getMulExpr(SmallVectorImpl< SCEVUse > &Ops, SCEV::NoWrapFlags Flags=SCEV::FlagAnyWrap, unsigned Depth=0)
Get a canonical multiply expression, or something simpler if possible.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
TargetCostKind
The kind of cost model.
@ SK_Broadcast
Broadcast element 0 to all other elements.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition Type.h:368
bool isStructTy() const
True if this is an instance of StructType.
Definition Type.h:276
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
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
Definition Type.cpp:306
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
Definition Type.h:186
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition Type.h:257
A recipe for generating the active lane mask for the vector loop that is used to predicate the vector...
Definition VPlan.h:4027
VPBasicBlock serves as the leaf of the Hierarchical Control-Flow Graph.
Definition VPlan.h:4365
RecipeListTy::iterator iterator
Instruction iterators...
Definition VPlan.h:4392
iterator begin()
Recipe iterator methods.
Definition VPlan.h:4400
VPRecipeBase * getTerminator()
If the block has multiple successors, return the branch recipe terminating the block.
Definition VPlan.cpp:643
VPBlockBase is the building block of the Hierarchical Control-Flow Graph.
Definition VPlan.h:94
VPRegionBlock * getParent()
Definition VPlan.h:189
const VPBasicBlock * getExitingBasicBlock() const
Definition VPlan.cpp:236
VPlan * getPlan()
Definition VPlan.cpp:211
const std::string & getName() const
Definition VPlan.h:180
const VPBasicBlock * getEntryBasicBlock() const
Definition VPlan.cpp:216
VPBlockBase * getSingleSuccessor() const
Definition VPlan.h:230
const VPBlocksTy & getSuccessors() const
Definition VPlan.h:214
static auto blocksAs(T &&Range)
Return an iterator range over Range with each block cast to BlockTy.
Definition VPlanUtils.h:397
static void connectBlocks(VPBlockBase *From, VPBlockBase *To, unsigned PredIdx=-1u, unsigned SuccIdx=-1u)
Connect VPBlockBases From and To bi-directionally.
Definition VPlanUtils.h:324
static void disconnectBlocks(VPBlockBase *From, VPBlockBase *To)
Disconnect VPBlockBases From and To bi-directionally.
Definition VPlanUtils.h:342
static auto blocksOnly(T &&Range)
Return an iterator range over Range which only includes BlockTy blocks.
Definition VPlanUtils.h:378
VPlan-based builder utility analogous to IRBuilder.
VPWidenPHIRecipe * createWidenPhi(ArrayRef< VPValue * > IncomingValues, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="")
VPInstruction * createNaryOp(unsigned Opcode, ArrayRef< VPValue * > Operands, Instruction *Inst=nullptr, const VPIRFlags &Flags={}, const VPIRMetadata &MD={}, DebugLoc DL=DebugLoc::getUnknown(), const Twine &Name="", Type *ResultTy=nullptr)
Create an N-ary operation with Opcode, Operands and set Inst as its underlying Instruction.
A recipe for converting the input value IV value to the corresponding value of an IV with different s...
Definition VPlan.h:4160
Template specialization of the standard LLVM dominator tree utility for VPBlockBases.
Class to record and manage LLVM IR flags.
Definition VPlan.h:695
static VPIRFlags getDefaultFlags(unsigned Opcode)
Returns default flags for Opcode for opcodes that support it, asserts otherwise.
void dropPoisonGeneratingFlags()
Drop all poison-generating flags.
Definition VPlan.h:893
static LLVM_ABI_FOR_TEST VPIRInstruction * create(Instruction &I)
Create a new VPIRPhi for \I , if it is a PHINode, otherwise create a VPIRInstruction.
This is a concrete Recipe that models a single VPlan-level instruction.
Definition VPlan.h:1224
@ Unpack
Extracts all lanes from its (non-scalable) vector operand.
Definition VPlan.h:1267
@ BuildVector
Creates a fixed-width vector containing all operands.
Definition VPlan.h:1262
@ BuildStructVector
Given operands of (the same) struct type, creates a struct of fixed- width vectors each containing a ...
Definition VPlan.h:1259
@ CanonicalIVIncrementForPart
Definition VPlan.h:1243
void addIncoming(VPValue *IncomingV)
Append IncomingV as an incoming value to the phi-like recipe.
Definition VPlan.h:1657
VPRecipeBase is a base class modeling a sequence of one or more output IR instructions.
Definition VPlan.h:402
VPBasicBlock * getParent()
Definition VPlan.h:474
DebugLoc getDebugLoc() const
Returns the debug location of the recipe.
Definition VPlan.h:552
void insertBefore(VPRecipeBase *InsertPos)
Insert an unlinked recipe into a basic block immediately before the specified recipe.
void insertAfter(VPRecipeBase *InsertPos)
Insert an unlinked Recipe into a basic block immediately after the specified Recipe.
iplist< VPRecipeBase >::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
Type * getScalarType() const
Returns the scalar type of this VPRecipeValue.
Definition VPlanValue.h:354
VPRegionBlock represents a collection of VPBasicBlocks and VPRegionBlocks which form a Single-Entry-S...
Definition VPlan.h:4590
const VPBlockBase * getEntry() const
Definition VPlan.h:4634
VPRegionValue * getUsedHeaderMask() const
Return the header mask if it exists and is used, or null otherwise.
Definition VPlan.h:4722
VPInstruction * getOrCreateCanonicalIVIncrement()
Get the canonical IV increment instruction if it exists.
Definition VPlan.cpp:868
Type * getCanonicalIVType() const
Return the type of the canonical IV for loop regions.
Definition VPlan.h:4710
void clearCanonicalIVNUW(VPInstruction *Increment)
Unsets NUW for the canonical IV increment Increment, for loop regions.
Definition VPlan.h:4749
VPRegionValue * getCanonicalIV()
Return the canonical induction variable of the region, null for replicating regions.
Definition VPlan.h:4702
VPReplicateRecipe replicates a given instruction producing multiple scalar copies of the original sca...
Definition VPlan.h:3374
Lightweight SCEV-to-VPlan expander.
Definition VPlanUtils.h:244
VPValue * tryToExpand(const SCEV *S)
Try to expand S into recipes and live-ins using the builder.
A recipe for handling phi nodes of integer and floating-point inductions, producing their scalar valu...
Definition VPlan.h:4220
A symbolic live-in VPValue, used for values like vector trip count, VF, and VFxUF.
Definition VPlanValue.h:217
bool isMaterialized() const
Returns true if this value has been materialized.
Definition VPlanValue.h:235
This class augments VPValue with operands which provide the inverse def-use edges from VPValue's user...
Definition VPlanValue.h:401
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
Value * getLiveInIRValue() const
Return the underlying IR value for a VPIRValue.
Definition VPlan.cpp:143
VPRecipeBase * getDefiningRecipe()
Returns the recipe defining this VPValue or nullptr if it is not defined by a recipe,...
Definition VPlan.cpp:130
Value * getUnderlyingValue() const
Return the underlying Value attached to this VPValue.
Definition VPlanValue.h:75
bool user_empty() const
Definition VPlanValue.h:161
void setUnderlyingValue(Value *Val)
Definition VPlanValue.h:209
void replaceAllUsesWith(VPValue *New)
Definition VPlan.cpp:1473
void replaceUsesWithIf(VPValue *New, llvm::function_ref< bool(VPUser &U, unsigned Idx)> ShouldReplace)
Go through the uses list for this VPValue and make each use point to New if the callback ShouldReplac...
Definition VPlan.cpp:1479
A Recipe for widening the canonical induction variable of the vector loop.
Definition VPlan.h:4103
VPIRValue * getStartValue() const
Returns the start value of the induction.
Definition VPlan.h:2549
VPValue * getStepValue()
Returns the step value of the induction.
Definition VPlan.h:2552
const InductionDescriptor & getInductionDescriptor() const
Returns the induction descriptor for the recipe.
Definition VPlan.h:2572
A recipe for handling phi nodes of integer and floating-point inductions, producing their vector valu...
Definition VPlan.h:2601
VPValue * getSplatVFValue() const
If the recipe has been unrolled, return the VPValue for the induction increment, otherwise return nul...
Definition VPlan.h:2649
VPValue * getLastUnrolledPartOperand()
Returns the VPValue representing the value of this induction at the last unrolled part,...
Definition VPlan.h:2671
A recipe for widening vector intrinsics.
Definition VPlan.h:1917
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
Definition VPlan.h:4769
bool hasVF(ElementCount VF) const
Definition VPlan.h:4994
const DataLayout & getDataLayout() const
Definition VPlan.h:4976
LLVMContext & getContext() const
Definition VPlan.h:4972
VPBasicBlock * getEntry()
Definition VPlan.h:4865
bool hasScalableVF() const
Definition VPlan.h:4995
VPValue * getTripCount() const
The trip count of the original loop.
Definition VPlan.h:4930
VPValue * getOrCreateBackedgeTakenCount()
The backedge taken count of the original loop.
Definition VPlan.h:4951
VPSymbolicValue & getVFxUF()
Returns VF * UF of the vector loop region.
Definition VPlan.h:4970
auto getLiveIns() const
Return the list of live-in VPValues available in the VPlan.
Definition VPlan.h:5104
bool hasUF(unsigned UF) const
Definition VPlan.h:5019
VPIRValue * getPoison(Type *Ty)
Return a VPIRValue wrapping a poison value of type Ty.
Definition VPlan.h:5095
VPSymbolicValue & getVectorTripCount()
The vector trip count.
Definition VPlan.h:4960
VPValue * getBackedgeTakenCount() const
Definition VPlan.h:4957
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:5044
VPIRValue * getZero(Type *Ty)
Return a VPIRValue wrapping the null value of type Ty.
Definition VPlan.h:5070
LLVM_ABI_FOR_TEST VPRegionBlock * getVectorLoopRegion()
Returns the VPRegionBlock of the vector loop.
Definition VPlan.cpp:1065
unsigned getConcreteUF() const
Returns the concrete UF of the plan, after unrolling.
Definition VPlan.h:5022
void resetTripCount(VPValue *NewTripCount)
Resets the trip count for the VPlan.
Definition VPlan.h:4944
VPBasicBlock * getMiddleBlock()
Returns the 'middle' block of the plan, that is the block that selects whether to execute the scalar ...
Definition VPlan.h:4900
VPBasicBlock * createVPBasicBlock(const Twine &Name, VPRecipeBase *Recipe=nullptr)
Create a new VPBasicBlock with Name and containing Recipe if present.
Definition VPlan.h:5127
VPBasicBlock * getVectorPreheader() const
Returns the preheader of the vector loop region, if one exists, or null otherwise.
Definition VPlan.h:4870
bool hasScalarVFOnly() const
Definition VPlan.h:5012
VPBasicBlock * getScalarPreheader() const
Return the VPBasicBlock for the preheader of the scalar loop.
Definition VPlan.h:4914
bool hasTailFolded() const
Returns true if the vector loop region is tail-folded.
Definition VPlan.h:4886
VPSymbolicValue & getVF()
Returns the VF of the vector loop region.
Definition VPlan.h:4963
bool hasScalarTail() const
Returns true if the scalar tail may execute after the vector loop, i.e.
Definition VPlan.h:5192
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:5078
LLVM Value Representation.
Definition Value.h:75
iterator_range< user_iterator > users()
Definition Value.h:426
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
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
self_iterator getIterator()
Definition ilist_node.h:123
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
ap_match< APInt > m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
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.
VPInstruction_match< VPInstruction::BranchOnTwoConds > m_BranchOnTwoConds()
canonical_widen_iv_match m_CanonicalWidenIV()
VPInstruction_match< VPInstruction::BranchOnCount > m_BranchOnCount()
auto m_VPValue()
Match an arbitrary VPValue and ignore it.
VPRecipeBase * findUserOf(VPValue *V, const MatchT &P)
If V is used by a recipe matching pattern P, return it.
match_bind< VPInstruction > m_VPInstruction(VPInstruction *&V)
Match a VPInstruction, capturing if we match.
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...
VPValue * getOrCreateVPValueForSCEVExpr(VPlan &Plan, const SCEV *Expr)
Get or create a VPValue that corresponds to the expansion of Expr.
bool onlyFirstLaneUsed(const VPValue *Def)
Returns true if only the first lane of Def is used.
VPValue * findIncomingAliasMask(const VPlan &Plan)
Finds the incoming alias-mask within the vector preheader.
VPScalarIVStepsRecipe * createScalarIVSteps(VPlan &Plan, InductionDescriptor::InductionKind Kind, Instruction::BinaryOps InductionOpcode, FPMathOperator *FPBinOp, Instruction *TruncI, VPIRValue *StartV, VPValue *Step, DebugLoc DL, VPBuilder &Builder)
Create a scalar-iv-steps recipe over Plan's canonical IV for an induction of Kind with InductionOpcod...
bool doesGeneratePerAllLanes(const VPRecipeBase *R)
Returns true if R produces scalar values for all VF lanes.
bool onlyScalarValuesUsed(const VPValue *Def)
Returns true if only scalar values of Def are used by all users.
VPValue * scalarizeVPWidenPointerInduction(VPWidenPointerInductionRecipe *PtrIV, VPlan &Plan, VPBuilder &Builder)
Scalarize a VPWidenPointerInductionRecipe by replacing it with a PtrAdd (IndStart,...
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:578
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition STLExtras.h:2208
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
SmallVector< VPRegisterUsage, 8 > calculateRegisterUsageForPlan(VPlan &Plan, ArrayRef< ElementCount > VFs, const TargetTransformInfo &TTI, const SmallPtrSetImpl< const Value * > &ValuesToIgnore)
Estimate the register usage for Plan and vectorization factors in VFs by calculating the highest numb...
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
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1753
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
auto drop_end(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the last N elements excluded.
Definition STLExtras.h:322
TargetTransformInfo TTI
@ Mul
Product of integers.
@ FMul
Product of floats.
@ Add
Sum of integers.
DWARFExpression::Operation Op
auto make_second_range(ContainerTy &&c)
Given a container of pairs, return a range over the second elements.
Definition STLExtras.h:1409
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
Definition STLExtras.h:2019
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Next
Definition InstrProf.h:147
constexpr detail::IsaCheckPredicate< Types... > IsaPred
Function object wrapper for the llvm::isa type check.
Definition Casting.h:866
A struct that represents some properties of the register usage of a loop.
SmallMapVector< unsigned, unsigned, 4 > MaxLocalUsers
Holds the maximum number of concurrent live intervals in the loop.
InstructionCost spillCost(const TargetTransformInfo &TTI, TargetTransformInfo::TargetCostKind CostKind, unsigned OverrideMaxNumRegs=0) const
Calculate the estimated cost of any spills due to using more registers than the number available for ...
static VPValue * materializeAliasMask(VPlan &Plan, VPBasicBlock *AliasCheckVPBB, ArrayRef< PointerDiffInfo > DiffChecks)
Materializes within the AliasCheckVPBB block.
static void expandSCEVsToVPInstructions(VPlan &Plan, ScalarEvolution &SE)
Try to expand VPExpandSCEVRecipes in Plan's entry block to VPInstructions.
static void materializeBroadcasts(VPlan &Plan)
Add explicit broadcasts for live-ins and VPValues defined in Plan's entry block if they are used as v...
static void materializePacksAndUnpacks(VPlan &Plan)
Add explicit Build[Struct]Vector recipes to Pack multiple scalar values into vectors and Unpack recip...
static void materializeFactors(VPlan &Plan, VPBasicBlock *VectorPH, ElementCount VF)
Materialize UF, VF and VFxUF to be computed explicitly using VPInstructions.
static void materializeBackedgeTakenCount(VPlan &Plan, VPBasicBlock *VectorPH)
Materialize the backedge-taken count to be computed explicitly using VPInstructions.
static void replaceWideCanonicalIVWithWideIV(VPlan &Plan, ScalarEvolution &SE, const TargetTransformInfo &TTI, TargetTransformInfo::TargetCostKind CostKind, ElementCount VF, unsigned UF, const SmallPtrSetImpl< const Value * > &ValuesToIgnore)
Replace a VPWidenCanonicalIVRecipe if it is present in Plan, with a VPWidenIntOrFpInductionRecipe,...
static void materializeHeaderMask(VPlan &Plan, bool UseActiveLaneMask, bool UseActiveLaneMaskForControlFlow)
Materialize the abstract header mask of the loop region into concrete recipes: an active-lane-mask if...
static void addBranchWeightToMiddleTerminator(VPlan &Plan, ElementCount VF, std::optional< unsigned > VScaleForTuning)
Add branch weight metadata, if the Plan's middle block is terminated by a BranchOnCond recipe.
static void materializeAliasMaskCheckBlock(VPlan &Plan, ArrayRef< PointerDiffInfo > DiffChecks, bool HasBranchWeights)
Materializes the alias mask within a check block before the loop.
static DenseMap< const SCEV *, Value * > expandSCEVs(VPlan &Plan, ScalarEvolution &SE)
Expand remaining VPExpandSCEVRecipes in Plan's entry block using SCEVExpander.
static void convertToConcreteRecipes(VPlan &Plan)
Lower abstract recipes to concrete ones, that can be codegen'd.
static void expandBranchOnTwoConds(VPlan &Plan)
Expand BranchOnTwoConds instructions into explicit CFG with BranchOnCond instructions.
static void materializeVectorTripCount(VPlan &Plan, VPBasicBlock *VectorPHVPBB, bool TailByMasking, bool RequiresScalarEpilogue, VPValue *Step, std::optional< uint64_t > MaxRuntimeStep=std::nullopt)
Materialize vector trip count computations to a set of VPInstructions.
static void materializeConstantVectorTripCount(VPlan &Plan, ElementCount BestVF, unsigned BestUF, PredicatedScalarEvolution &PSE)
static void attachVPCheckBlock(VPlan &Plan, VPValue *Cond, VPBasicBlock *CheckBlock, bool AddBranchWeights)
Wrap runtime check block CheckBlock in a VPIRBB and Cond in a VPValue and connect the block to Plan,...
static void dissolveLoopRegions(VPlan &Plan)
Replace loop regions with explicit CFG.