1 //===- LoopUnrollPass.h -----------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_TRANSFORMS_SCALAR_LOOPUNROLLPASS_H
10 #define LLVM_TRANSFORMS_SCALAR_LOOPUNROLLPASS_H
12 #include "llvm/ADT/Optional.h"
13 #include "llvm/Analysis/LoopAnalysisManager.h"
14 #include "llvm/IR/PassManager.h"
18 extern cl::opt
<bool> ForgetSCEVInLoopUnroll
;
24 /// Loop unroll pass that only does full loop unrolling.
25 class LoopFullUnrollPass
: public PassInfoMixin
<LoopFullUnrollPass
> {
28 /// If false, use a cost model to determine whether unrolling of a loop is
29 /// profitable. If true, only loops that explicitly request unrolling via
30 /// metadata are considered. All other loops are skipped.
31 const bool OnlyWhenForced
;
33 /// If true, forget all loops when unrolling. If false, forget top-most loop
34 /// of the currently processed loops, which removes one entry at a time from
35 /// the internal SCEV records. For large loops, the former is faster.
36 const bool ForgetSCEV
;
39 explicit LoopFullUnrollPass(int OptLevel
= 2, bool OnlyWhenForced
= false,
40 bool ForgetSCEV
= false)
41 : OptLevel(OptLevel
), OnlyWhenForced(OnlyWhenForced
),
42 ForgetSCEV(ForgetSCEV
) {}
44 PreservedAnalyses
run(Loop
&L
, LoopAnalysisManager
&AM
,
45 LoopStandardAnalysisResults
&AR
, LPMUpdater
&U
);
48 /// A set of parameters used to control various transforms performed by the
49 /// LoopUnroll pass. Each of the boolean parameters can be set to:
50 /// true - enabling the transformation.
51 /// false - disabling the transformation.
52 /// None - relying on a global default.
54 /// There is also OptLevel parameter, which is used for additional loop unroll
57 /// Intended use is to create a default object, modify parameters with
58 /// additional setters and then pass it to LoopUnrollPass.
60 struct LoopUnrollOptions
{
61 Optional
<bool> AllowPartial
;
62 Optional
<bool> AllowPeeling
;
63 Optional
<bool> AllowRuntime
;
64 Optional
<bool> AllowUpperBound
;
65 Optional
<bool> AllowProfileBasedPeeling
;
66 Optional
<unsigned> FullUnrollMaxCount
;
69 /// If false, use a cost model to determine whether unrolling of a loop is
70 /// profitable. If true, only loops that explicitly request unrolling via
71 /// metadata are considered. All other loops are skipped.
74 /// If true, forget all loops when unrolling. If false, forget top-most loop
75 /// of the currently processed loops, which removes one entry at a time from
76 /// the internal SCEV records. For large loops, the former is faster.
77 const bool ForgetSCEV
;
79 LoopUnrollOptions(int OptLevel
= 2, bool OnlyWhenForced
= false,
80 bool ForgetSCEV
= false)
81 : OptLevel(OptLevel
), OnlyWhenForced(OnlyWhenForced
),
82 ForgetSCEV(ForgetSCEV
) {}
84 /// Enables or disables partial unrolling. When disabled only full unrolling
86 LoopUnrollOptions
&setPartial(bool Partial
) {
87 AllowPartial
= Partial
;
91 /// Enables or disables unrolling of loops with runtime trip count.
92 LoopUnrollOptions
&setRuntime(bool Runtime
) {
93 AllowRuntime
= Runtime
;
97 /// Enables or disables loop peeling.
98 LoopUnrollOptions
&setPeeling(bool Peeling
) {
99 AllowPeeling
= Peeling
;
103 /// Enables or disables the use of trip count upper bound
104 /// in loop unrolling.
105 LoopUnrollOptions
&setUpperBound(bool UpperBound
) {
106 AllowUpperBound
= UpperBound
;
110 // Sets "optimization level" tuning parameter for loop unrolling.
111 LoopUnrollOptions
&setOptLevel(int O
) {
116 // Enables or disables loop peeling basing on profile.
117 LoopUnrollOptions
&setProfileBasedPeeling(int O
) {
118 AllowProfileBasedPeeling
= O
;
122 // Sets the max full unroll count.
123 LoopUnrollOptions
&setFullUnrollMaxCount(unsigned O
) {
124 FullUnrollMaxCount
= O
;
129 /// Loop unroll pass that will support both full and partial unrolling.
130 /// It is a function pass to have access to function and module analyses.
131 /// It will also put loops into canonical form (simplified and LCSSA).
132 class LoopUnrollPass
: public PassInfoMixin
<LoopUnrollPass
> {
133 LoopUnrollOptions UnrollOpts
;
136 /// This uses the target information (or flags) to control the thresholds for
137 /// different unrolling stategies but supports all of them.
138 explicit LoopUnrollPass(LoopUnrollOptions UnrollOpts
= {})
139 : UnrollOpts(UnrollOpts
) {}
141 PreservedAnalyses
run(Function
&F
, FunctionAnalysisManager
&AM
);
144 } // end namespace llvm
146 #endif // LLVM_TRANSFORMS_SCALAR_LOOPUNROLLPASS_H