LLVM 19.0.0git
VPlanTransforms.h
Go to the documentation of this file.
1//===- VPlanTransforms.h - Utility VPlan to VPlan 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 provides utility VPlan to VPlan transformations.
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_TRANSFORMS_VECTORIZE_VPLANTRANSFORMS_H
14#define LLVM_TRANSFORMS_VECTORIZE_VPLANTRANSFORMS_H
15
16#include "VPlan.h"
18
19namespace llvm {
20
21class InductionDescriptor;
22class Instruction;
23class PHINode;
24class ScalarEvolution;
25class PredicatedScalarEvolution;
26class TargetLibraryInfo;
27class VPBuilder;
28
30 /// Replaces the VPInstructions in \p Plan with corresponding
31 /// widen recipes.
32 static void
35 GetIntOrFpInductionDescriptor,
36 ScalarEvolution &SE, const TargetLibraryInfo &TLI);
37
38 /// Sink users of fixed-order recurrences after the recipe defining their
39 /// previous value. Then introduce FirstOrderRecurrenceSplice VPInstructions
40 /// to combine the value from the recurrence phis and previous values. The
41 /// current implementation assumes all users can be sunk after the previous
42 /// value, which is enforced by earlier legality checks.
43 /// \returns true if all users of fixed-order recurrences could be re-arranged
44 /// as needed or false if it is not possible. In the latter case, \p Plan is
45 /// not valid.
46 static bool adjustFixedOrderRecurrences(VPlan &Plan, VPBuilder &Builder);
47
48 /// Clear NSW/NUW flags from reduction instructions if necessary.
49 static void clearReductionWrapFlags(VPlan &Plan);
50
51 /// Optimize \p Plan based on \p BestVF and \p BestUF. This may restrict the
52 /// resulting plan to \p BestVF and \p BestUF.
53 static void optimizeForVFAndUF(VPlan &Plan, ElementCount BestVF,
54 unsigned BestUF,
56
57 /// Apply VPlan-to-VPlan optimizations to \p Plan, including induction recipe
58 /// optimizations, dead recipe removal, replicate region optimizations and
59 /// block merging.
60 static void optimize(VPlan &Plan, ScalarEvolution &SE);
61
62 /// Wrap predicated VPReplicateRecipes with a mask operand in an if-then
63 /// region block and remove the mask operand. Optimize the created regions by
64 /// iteratively sinking scalar operands into the region, followed by merging
65 /// regions until no improvements are remaining.
67
68 /// Replace (ICMP_ULE, wide canonical IV, backedge-taken-count) checks with an
69 /// (active-lane-mask recipe, wide canonical IV, trip-count). If \p
70 /// UseActiveLaneMaskForControlFlow is true, introduce an
71 /// VPActiveLaneMaskPHIRecipe. If \p DataAndControlFlowWithoutRuntimeCheck is
72 /// true, no minimum-iteration runtime check will be created (during skeleton
73 /// creation) and instead it is handled using active-lane-mask. \p
74 /// DataAndControlFlowWithoutRuntimeCheck implies \p
75 /// UseActiveLaneMaskForControlFlow.
76 static void addActiveLaneMask(VPlan &Plan,
77 bool UseActiveLaneMaskForControlFlow,
79
80 /// Insert truncates and extends for any truncated recipe. Redundant casts
81 /// will be folded later.
82 static void
85 LLVMContext &Ctx);
86
87 /// Drop poison flags from recipes that may generate a poison value that is
88 /// used after vectorization, even when their operands are not poison. Those
89 /// recipes meet the following conditions:
90 /// * Contribute to the address computation of a recipe generating a widen
91 /// memory load/store (VPWidenMemoryInstructionRecipe or
92 /// VPInterleaveRecipe).
93 /// * Such a widen memory load/store has at least one underlying Instruction
94 /// that is in a basic block that needs predication and after vectorization
95 /// the generated instruction won't be predicated.
96 /// Uses \p BlockNeedsPredication to check if a block needs predicating.
97 /// TODO: Replace BlockNeedsPredication callback with retrieving info from
98 /// VPlan directly.
100 VPlan &Plan, function_ref<bool(BasicBlock *)> BlockNeedsPredication);
101
102 /// Add a VPEVLBasedIVPHIRecipe and related recipes to \p Plan and
103 /// replaces all uses except the canonical IV increment of
104 /// VPCanonicalIVPHIRecipe with a VPEVLBasedIVPHIRecipe.
105 /// VPCanonicalIVPHIRecipe is only used to control the loop after
106 /// this transformation.
107 static void addExplicitVectorLength(VPlan &Plan);
108};
109
110} // namespace llvm
111
112#endif // LLVM_TRANSFORMS_VECTORIZE_VPLANTRANSFORMS_H
This file contains the declarations of the Vectorization Plan base classes:
LLVM Basic Block Representation.
Definition: BasicBlock.h:60
A struct for saving information about induction variables.
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
This class implements a map that also provides access to all stored values in a deterministic order.
Definition: MapVector.h:36
An interface layer with SCEV used to manage how we see SCEV expressions for values in the context of ...
The main scalar evolution driver.
Provides information about what library functions are available for the current target.
VPlan-based builder utility analogous to IRBuilder.
VPlan models a candidate for vectorization, encoding various decisions take to produce efficient outp...
Definition: VPlan.h:3049
An efficient, type-erasing, non-owning reference to a callable.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
std::unique_ptr< VPlan > VPlanPtr
Definition: VPlan.h:134
@ DataAndControlFlowWithoutRuntimeCheck
Use predicate to control both data and control flow, but modify the trip count so that a runtime over...
static void addExplicitVectorLength(VPlan &Plan)
Add a VPEVLBasedIVPHIRecipe and related recipes to Plan and replaces all uses except the canonical IV...
static void createAndOptimizeReplicateRegions(VPlan &Plan)
Wrap predicated VPReplicateRecipes with a mask operand in an if-then region block and remove the mask...
static void dropPoisonGeneratingRecipes(VPlan &Plan, function_ref< bool(BasicBlock *)> BlockNeedsPredication)
Drop poison flags from recipes that may generate a poison value that is used after vectorization,...
static void optimize(VPlan &Plan, ScalarEvolution &SE)
Apply VPlan-to-VPlan optimizations to Plan, including induction recipe optimizations,...
static void clearReductionWrapFlags(VPlan &Plan)
Clear NSW/NUW flags from reduction instructions if necessary.
static void VPInstructionsToVPRecipes(VPlanPtr &Plan, function_ref< const InductionDescriptor *(PHINode *)> GetIntOrFpInductionDescriptor, ScalarEvolution &SE, const TargetLibraryInfo &TLI)
Replaces the VPInstructions in Plan with corresponding widen recipes.
static void truncateToMinimalBitwidths(VPlan &Plan, const MapVector< Instruction *, uint64_t > &MinBWs, LLVMContext &Ctx)
Insert truncates and extends for any truncated recipe.
static void addActiveLaneMask(VPlan &Plan, bool UseActiveLaneMaskForControlFlow, bool DataAndControlFlowWithoutRuntimeCheck)
Replace (ICMP_ULE, wide canonical IV, backedge-taken-count) checks with an (active-lane-mask recipe,...
static bool adjustFixedOrderRecurrences(VPlan &Plan, VPBuilder &Builder)
Sink users of fixed-order recurrences after the recipe defining their previous value.
static void optimizeForVFAndUF(VPlan &Plan, ElementCount BestVF, unsigned BestUF, PredicatedScalarEvolution &PSE)
Optimize Plan based on BestVF and BestUF.