LLVM 22.0.0git
UnrollLoop.h
Go to the documentation of this file.
1//===- llvm/Transforms/Utils/UnrollLoop.h - Unrolling utilities -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines some loop unrolling utilities. It does not define any
10// actual pass or policy, but provides a single function to perform loop
11// unrolling.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_TRANSFORMS_UTILS_UNROLLLOOP_H
16#define LLVM_TRANSFORMS_UTILS_UNROLLLOOP_H
17
18#include "llvm/ADT/DenseMap.h"
23
24namespace llvm {
25
26class AssumptionCache;
27class AAResults;
28class BasicBlock;
30class DependenceInfo;
31class DominatorTree;
32class Loop;
33class LoopInfo;
34class MDNode;
37class ScalarEvolution;
38class StringRef;
39class Value;
40
42
43/// @{
44/// Metadata attribute names
45const char *const LLVMLoopUnrollFollowupAll = "llvm.loop.unroll.followup_all";
47 "llvm.loop.unroll.followup_unrolled";
49 "llvm.loop.unroll.followup_remainder";
50/// @}
51
53 BasicBlock *ClonedBB,
54 LoopInfo *LI,
55 NewLoopsMap &NewLoops);
56
57/// Represents the result of a \c UnrollLoop invocation.
58enum class LoopUnrollResult {
59 /// The loop was not modified.
61
62 /// The loop was partially unrolled -- we still have a loop, but with a
63 /// smaller trip count. We may also have emitted epilogue loop if the loop
64 /// had a non-constant trip count.
66
67 /// The loop was fully unrolled into straight-line code. We no longer have
68 /// any back-edges.
70};
71
84
90 bool PreserveLCSSA,
91 Loop **RemainderLoop = nullptr,
92 AAResults *AA = nullptr);
93
95 Loop *L, unsigned Count, bool AllowExpensiveTripCount,
96 bool UseEpilogRemainder, bool UnrollRemainder, bool ForgetAllSCEV,
98 const TargetTransformInfo *TTI, bool PreserveLCSSA,
99 unsigned SCEVExpansionBudget, bool RuntimeUnrollMultiExit,
100 Loop **ResultLoop = nullptr);
101
103 Loop *L, unsigned Count, unsigned TripCount, unsigned TripMultiple,
104 bool UnrollRemainder, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT,
106 OptimizationRemarkEmitter *ORE, Loop **EpilogueLoop = nullptr);
107
110 LoopInfo &LI);
111
112LLVM_ABI void simplifyLoopAfterUnroll(Loop *L, bool SimplifyIVs, LoopInfo *LI,
114 AssumptionCache *AC,
116 AAResults *AA = nullptr);
117
119
123 llvm::OptimizationRemarkEmitter &ORE, int OptLevel,
124 std::optional<unsigned> UserThreshold, std::optional<unsigned> UserCount,
125 std::optional<bool> UserAllowPartial, std::optional<bool> UserRuntime,
126 std::optional<bool> UserUpperBound,
127 std::optional<unsigned> UserFullUnrollMaxCount);
128
129/// Produce an estimate of the unrolled cost of the specified loop. This
130/// is used to a) produce a cost estimate for partial unrolling and b) to
131/// cheaply estimate cost for full unrolling when we don't want to symbolically
132/// evaluate all iterations.
134 InstructionCost LoopSize;
135 bool NotDuplicatable;
136
137public:
141
143 const SmallPtrSetImpl<const Value *> &EphValues,
144 unsigned BEInsns);
145
146 /// Whether it is legal to unroll this loop.
147 LLVM_ABI bool canUnroll() const;
148
149 uint64_t getRolledLoopSize() const { return LoopSize.getValue(); }
150
151 /// Returns loop size estimation for unrolled loop, given the unrolling
152 /// configuration specified by UP.
155 unsigned CountOverwrite = 0) const;
156};
157
159 Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI,
160 AssumptionCache *AC, ScalarEvolution &SE,
161 const SmallPtrSetImpl<const Value *> &EphValues,
162 OptimizationRemarkEmitter *ORE, unsigned TripCount, unsigned MaxTripCount,
163 bool MaxOrZero, unsigned TripMultiple, const UnrollCostEstimator &UCE,
164 TargetTransformInfo::UnrollingPreferences &UP,
165 TargetTransformInfo::PeelingPreferences &PP, bool &UseUpperBound);
166
167LLVM_ABI std::optional<RecurrenceDescriptor>
168canParallelizeReductionWhenUnrolling(PHINode &Phi, Loop *L,
169 ScalarEvolution *SE);
170} // end namespace llvm
171
172#endif // LLVM_TRANSFORMS_UTILS_UNROLLLOOP_H
#define LLVM_ABI
Definition Compiler.h:213
This file defines the DenseMap class.
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
This pass exposes codegen information to IR-level passes.
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
Definition BasicBlock.h:62
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
DependenceInfo - This class is the main dependence-analysis driver.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:165
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
Metadata node.
Definition Metadata.h:1077
The optimization diagnostic interface.
Analysis providing profile information.
The main scalar evolution driver.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
ConvergenceKind Convergence
Definition UnrollLoop.h:139
LLVM_ABI uint64_t getUnrolledLoopSize(const TargetTransformInfo::UnrollingPreferences &UP, unsigned CountOverwrite=0) const
Returns loop size estimation for unrolled loop, given the unrolling configuration specified by UP.
LLVM_ABI bool canUnroll() const
Whether it is legal to unroll this loop.
LLVM_ABI UnrollCostEstimator(const Loop *L, const TargetTransformInfo &TTI, const SmallPtrSetImpl< const Value * > &EphValues, unsigned BEInsns)
uint64_t getRolledLoopSize() const
Definition UnrollLoop.h:149
LLVM Value Representation.
Definition Value.h:75
Abstract Attribute helper functions.
Definition Attributor.h:165
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI bool isSafeToUnrollAndJam(Loop *L, ScalarEvolution &SE, DominatorTree &DT, DependenceInfo &DI, LoopInfo &LI)
LLVM_ABI void simplifyLoopAfterUnroll(Loop *L, bool SimplifyIVs, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const TargetTransformInfo *TTI, AAResults *AA=nullptr)
Perform some cleanup and simplifications on loops after unrolling.
ConvergenceKind
Definition CodeMetrics.h:30
LLVM_ABI std::optional< RecurrenceDescriptor > canParallelizeReductionWhenUnrolling(PHINode &Phi, Loop *L, ScalarEvolution *SE)
SmallDenseMap< const Loop *, Loop *, 4 > NewLoopsMap
Definition UnrollLoop.h:41
FunctionAddr VTableAddr Count
Definition InstrProf.h:139
LoopUnrollResult
Represents the result of a UnrollLoop invocation.
Definition UnrollLoop.h:58
@ PartiallyUnrolled
The loop was partially unrolled – we still have a loop, but with a smaller trip count.
Definition UnrollLoop.h:65
@ Unmodified
The loop was not modified.
Definition UnrollLoop.h:60
@ FullyUnrolled
The loop was fully unrolled into straight-line code.
Definition UnrollLoop.h:69
LLVM_ABI bool computeUnrollCount(Loop *L, const TargetTransformInfo &TTI, DominatorTree &DT, LoopInfo *LI, AssumptionCache *AC, ScalarEvolution &SE, const SmallPtrSetImpl< const Value * > &EphValues, OptimizationRemarkEmitter *ORE, unsigned TripCount, unsigned MaxTripCount, bool MaxOrZero, unsigned TripMultiple, const UnrollCostEstimator &UCE, TargetTransformInfo::UnrollingPreferences &UP, TargetTransformInfo::PeelingPreferences &PP, bool &UseUpperBound)
const char *const LLVMLoopUnrollFollowupAll
Definition UnrollLoop.h:45
TargetTransformInfo TTI
LLVM_ABI TargetTransformInfo::UnrollingPreferences gatherUnrollingPreferences(Loop *L, ScalarEvolution &SE, const TargetTransformInfo &TTI, BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI, llvm::OptimizationRemarkEmitter &ORE, int OptLevel, std::optional< unsigned > UserThreshold, std::optional< unsigned > UserCount, std::optional< bool > UserAllowPartial, std::optional< bool > UserRuntime, std::optional< bool > UserUpperBound, std::optional< unsigned > UserFullUnrollMaxCount)
Gather the various unrolling parameters based on the defaults, compiler flags, TTI overrides and user...
const char *const LLVMLoopUnrollFollowupRemainder
Definition UnrollLoop.h:48
LLVM_ABI const Loop * addClonedBlockToLoopInfo(BasicBlock *OriginalBB, BasicBlock *ClonedBB, LoopInfo *LI, NewLoopsMap &NewLoops)
Adds ClonedBB to LoopInfo, creates a new loop for ClonedBB if necessary and adds a mapping from the o...
const char *const LLVMLoopUnrollFollowupUnrolled
Definition UnrollLoop.h:46
LLVM_ABI bool UnrollRuntimeLoopRemainder(Loop *L, unsigned Count, bool AllowExpensiveTripCount, bool UseEpilogRemainder, bool UnrollRemainder, bool ForgetAllSCEV, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const TargetTransformInfo *TTI, bool PreserveLCSSA, unsigned SCEVExpansionBudget, bool RuntimeUnrollMultiExit, Loop **ResultLoop=nullptr)
Insert code in the prolog/epilog code when unrolling a loop with a run-time trip-count.
LLVM_ABI LoopUnrollResult UnrollAndJamLoop(Loop *L, unsigned Count, unsigned TripCount, unsigned TripMultiple, bool UnrollRemainder, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const TargetTransformInfo *TTI, OptimizationRemarkEmitter *ORE, Loop **EpilogueLoop=nullptr)
LLVM_ABI MDNode * GetUnrollMetadata(MDNode *LoopID, StringRef Name)
Given an llvm.loop loop id metadata node, returns the loop hint metadata node with the given name (fo...
LLVM_ABI LoopUnrollResult UnrollLoop(Loop *L, UnrollLoopOptions ULO, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const llvm::TargetTransformInfo *TTI, OptimizationRemarkEmitter *ORE, bool PreserveLCSSA, Loop **RemainderLoop=nullptr, AAResults *AA=nullptr)
Unroll the given loop by Count.
Parameters that control the generic loop unrolling transformation.
const Instruction * Heart
Definition UnrollLoop.h:79