LLVM 18.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"
21
22namespace llvm {
23
24class AssumptionCache;
25class BasicBlock;
26class BlockFrequencyInfo;
27class DependenceInfo;
28class DominatorTree;
29class Loop;
30class LoopInfo;
31class MDNode;
32class ProfileSummaryInfo;
33class OptimizationRemarkEmitter;
34class ScalarEvolution;
35class StringRef;
36class Value;
37
39
40/// @{
41/// Metadata attribute names
42const char *const LLVMLoopUnrollFollowupAll = "llvm.loop.unroll.followup_all";
44 "llvm.loop.unroll.followup_unrolled";
46 "llvm.loop.unroll.followup_remainder";
47/// @}
48
50 BasicBlock *ClonedBB, LoopInfo *LI,
51 NewLoopsMap &NewLoops);
52
53/// Represents the result of a \c UnrollLoop invocation.
54enum class LoopUnrollResult {
55 /// The loop was not modified.
57
58 /// The loop was partially unrolled -- we still have a loop, but with a
59 /// smaller trip count. We may also have emitted epilogue loop if the loop
60 /// had a non-constant trip count.
62
63 /// The loop was fully unrolled into straight-line code. We no longer have
64 /// any back-edges.
66};
67
69 unsigned Count;
70 bool Force;
71 bool Runtime;
75};
76
81 OptimizationRemarkEmitter *ORE, bool PreserveLCSSA,
82 Loop **RemainderLoop = nullptr);
83
85 Loop *L, unsigned Count, bool AllowExpensiveTripCount,
86 bool UseEpilogRemainder, bool UnrollRemainder, bool ForgetAllSCEV,
88 const TargetTransformInfo *TTI, bool PreserveLCSSA,
89 Loop **ResultLoop = nullptr);
90
91LoopUnrollResult UnrollAndJamLoop(Loop *L, unsigned Count, unsigned TripCount,
92 unsigned TripMultiple, bool UnrollRemainder,
97 Loop **EpilogueLoop = nullptr);
98
100 DependenceInfo &DI, LoopInfo &LI);
101
104 ScalarEvolution &SE,
105 const SmallPtrSetImpl<const Value *> &EphValues,
106 OptimizationRemarkEmitter *ORE, unsigned TripCount,
107 unsigned MaxTripCount, bool MaxOrZero,
108 unsigned TripMultiple, unsigned LoopSize,
111 bool &UseUpperBound);
112
113void simplifyLoopAfterUnroll(Loop *L, bool SimplifyIVs, LoopInfo *LI,
115 AssumptionCache *AC,
116 const TargetTransformInfo *TTI);
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
129InstructionCost ApproximateLoopSize(const Loop *L, unsigned &NumCalls,
130 bool &NotDuplicatable, bool &Convergent, const TargetTransformInfo &TTI,
131 const SmallPtrSetImpl<const Value *> &EphValues, unsigned BEInsns);
132
133} // end namespace llvm
134
135#endif // LLVM_TRANSFORMS_UTILS_UNROLLLOOP_H
This file defines the DenseMap class.
std::string Name
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:56
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:166
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:47
Metadata node.
Definition: Metadata.h:950
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...
Definition: SmallPtrSet.h:345
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
@ BasicBlock
Various leaf nodes.
Definition: ISDOpcodes.h:71
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
bool isSafeToUnrollAndJam(Loop *L, ScalarEvolution &SE, DominatorTree &DT, DependenceInfo &DI, LoopInfo &LI)
LoopUnrollResult
Represents the result of a UnrollLoop invocation.
Definition: UnrollLoop.h:54
@ PartiallyUnrolled
The loop was partially unrolled – we still have a loop, but with a smaller trip count.
@ Unmodified
The loop was not modified.
@ FullyUnrolled
The loop was fully unrolled into straight-line code.
const char *const LLVMLoopUnrollFollowupAll
Definition: UnrollLoop.h:42
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, unsigned LoopSize, TargetTransformInfo::UnrollingPreferences &UP, TargetTransformInfo::PeelingPreferences &PP, bool &UseUpperBound)
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:45
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...
Definition: LoopUnroll.cpp:148
const char *const LLVMLoopUnrollFollowupUnrolled
Definition: UnrollLoop.h:43
InstructionCost ApproximateLoopSize(const Loop *L, unsigned &NumCalls, bool &NotDuplicatable, bool &Convergent, const TargetTransformInfo &TTI, const SmallPtrSetImpl< const Value * > &EphValues, unsigned BEInsns)
ApproximateLoopSize - Approximate the size of the loop.
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)
Unroll the given loop by Count.
Definition: LoopUnroll.cpp:296
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)
void simplifyLoopAfterUnroll(Loop *L, bool SimplifyIVs, LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, const TargetTransformInfo *TTI)
Perform some cleanup and simplifications on loops after unrolling.
Definition: LoopUnroll.cpp:216
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...
Definition: LoopUnroll.cpp:928
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, Loop **ResultLoop=nullptr)
Insert code in the prolog/epilog code when unrolling a loop with a run-time trip-count.
Parameters that control the generic loop unrolling transformation.