1 //===------ ForwardOpTree.h -------------------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // Move instructions between statements.
12 //===----------------------------------------------------------------------===//
14 #include "polly/ForwardOpTree.h"
16 #include "polly/ScopInfo.h"
17 #include "polly/ScopPass.h"
18 #include "polly/Support/GICHelper.h"
19 #include "polly/Support/VirtualInstruction.h"
20 #include "llvm/Analysis/ValueTracking.h"
22 #define DEBUG_TYPE "polly-delicm"
24 using namespace polly
;
27 STATISTIC(TotalInstructionsCopied
, "Number of copied instructions");
28 STATISTIC(TotalForwardedTrees
, "Number of forwarded operand trees");
29 STATISTIC(TotalModifiedStmts
,
30 "Number of statements with at least one forwarded tree");
32 STATISTIC(ScopsModified
, "Number of SCoPs with at least one forwarded tree");
36 /// The state of whether an operand tree was/can be forwarded.
37 enum ForwardingDecision
{
43 /// Implementation of operand tree forwarding for a specific SCoP.
45 /// For a statement that requires a scalar value (through a value read
46 /// MemoryAccess), see if its operand can be moved into the statement. If so,
47 /// the MemoryAccess is removed and the all the operand tree instructions are
48 /// moved into the statement. All original instructions are left in the source
49 /// statements. The simplification pass can clean these up.
50 class ForwardOpTreeImpl
{
52 /// The SCoP we are currently processing.
55 /// LoopInfo is required for VirtualUse.
58 /// How many instructions have been copied to other statements.
59 int NumInstructionsCopied
= 0;
61 /// How many operand trees have been forwarded.
62 int NumForwardedTrees
= 0;
64 /// Number of statements with at least one forwarded operand tree.
65 int NumModifiedStmts
= 0;
67 /// Whether we carried out at least one change to the SCoP.
68 bool Modified
= false;
70 void printStatistics(raw_ostream
&OS
, int Indent
= 0) {
71 OS
.indent(Indent
) << "Statistics {\n";
72 OS
.indent(Indent
+ 4) << "Instructions copied: " << NumInstructionsCopied
74 OS
.indent(Indent
+ 4) << "Operand trees forwarded: " << NumForwardedTrees
76 OS
.indent(Indent
+ 4) << "Statements with forwarded operand trees: "
77 << NumModifiedStmts
<< '\n';
78 OS
.indent(Indent
) << "}\n";
81 void printStatements(llvm::raw_ostream
&OS
, int Indent
= 0) const {
82 OS
.indent(Indent
) << "After statements {\n";
83 for (auto &Stmt
: *S
) {
84 OS
.indent(Indent
+ 4) << Stmt
.getBaseName() << "\n";
88 OS
.indent(Indent
+ 12);
89 Stmt
.printInstructions(OS
);
91 OS
.indent(Indent
) << "}\n";
94 /// Determines whether an operand tree can be forwarded or carries out a
95 /// forwarding, depending on the @p DoIt flag.
97 /// @param TargetStmt The statement the operand tree will be copied to.
98 /// @param UseVal The value (usually an instruction) which is root of an
100 /// @param UseStmt The statement that uses @p UseVal.
101 /// @param UseLoop The loop @p UseVal is used in.
102 /// @param DoIt If false, only determine whether an operand tree can be
103 /// forwarded. If true, carry out the forwarding. Do not use
104 /// DoIt==true if an operand tree is not known to be
107 /// @return When DoIt==true, return whether the operand tree can be forwarded.
108 /// When DoIt==false, return FD_DidForward.
109 ForwardingDecision
canForwardTree(ScopStmt
*TargetStmt
, Value
*UseVal
,
110 ScopStmt
*UseStmt
, Loop
*UseLoop
,
113 // PHis are not yet supported.
114 if (isa
<PHINode
>(UseVal
)) {
115 DEBUG(dbgs() << " Cannot forward PHI: " << *UseVal
<< "\n");
116 return FD_CannotForward
;
119 VirtualUse VUse
= VirtualUse::create(UseStmt
, UseLoop
, UseVal
, true);
120 switch (VUse
.getKind()) {
121 case VirtualUse::Constant
:
122 case VirtualUse::Block
:
123 case VirtualUse::Hoisted
:
124 // These can be used anywhere without special considerations.
126 return FD_DidForward
;
127 return FD_CanForward
;
129 case VirtualUse::Synthesizable
:
130 // Not supported yet.
131 DEBUG(dbgs() << " Cannot forward synthesizable: " << *UseVal
<< "\n");
132 return FD_CannotForward
;
134 case VirtualUse::ReadOnly
:
135 // Not supported yet.
136 DEBUG(dbgs() << " Cannot forward read-only val: " << *UseVal
<< "\n");
137 return FD_CannotForward
;
139 case VirtualUse::Intra
:
140 case VirtualUse::Inter
:
141 auto Inst
= cast
<Instruction
>(UseVal
);
143 // Compatible instructions must satisfy the following conditions:
144 // 1. Idempotent (instruction will be copied, not moved; although its
145 // original instance might be removed by simplification)
146 // 2. Not access memory (There might be memory writes between)
147 // 3. Not cause undefined behaviour (we might copy to a location when the
148 // original instruction was no executed; this is currently not possible
149 // because we do not forward PHINodes)
150 // 4. Not leak memory if executed multiple times (I am looking at you,
153 // Instruction::mayHaveSideEffects is not sufficient because it considers
154 // malloc to not have side-effects. llvm::isSafeToSpeculativelyExecute is
155 // not sufficient because it allows memory accesses.
156 if (mayBeMemoryDependent(*Inst
)) {
157 DEBUG(dbgs() << " Cannot forward side-effect instruction: " << *Inst
159 return FD_CannotForward
;
162 Loop
*DefLoop
= LI
->getLoopFor(Inst
->getParent());
163 ScopStmt
*DefStmt
= S
->getStmtFor(Inst
);
164 assert(DefStmt
&& "Value must be defined somewhere");
167 // To ensure the right order, prepend this instruction before its
168 // operands. This ensures that its operands are inserted before the
169 // instruction using them.
170 // TODO: The operand tree is not really a tree, but a DAG. We should be
171 // able to handle DAGs without duplication.
172 TargetStmt
->prependInstrunction(Inst
);
173 NumInstructionsCopied
++;
174 TotalInstructionsCopied
++;
177 for (Value
*OpVal
: Inst
->operand_values()) {
178 ForwardingDecision OpDecision
=
179 canForwardTree(TargetStmt
, OpVal
, DefStmt
, DefLoop
, DoIt
);
180 switch (OpDecision
) {
181 case FD_CannotForward
:
183 return FD_CannotForward
;
196 return FD_DidForward
;
197 return FD_CanForward
;
200 llvm_unreachable("Case unhandled");
203 /// Try to forward an operand tree rooted in @p RA.
204 bool tryForwardTree(MemoryAccess
*RA
) {
205 assert(RA
->isLatestScalarKind());
206 DEBUG(dbgs() << "Trying to forward operand tree " << RA
<< "...\n");
208 ScopStmt
*Stmt
= RA
->getStatement();
209 Loop
*InLoop
= Stmt
->getSurroundingLoop();
211 ForwardingDecision Assessment
=
212 canForwardTree(Stmt
, RA
->getAccessValue(), Stmt
, InLoop
, false);
213 assert(Assessment
!= FD_DidForward
);
214 if (Assessment
== FD_CannotForward
)
217 ForwardingDecision Execution
=
218 canForwardTree(Stmt
, RA
->getAccessValue(), Stmt
, InLoop
, true);
219 assert(Execution
== FD_DidForward
);
221 Stmt
->removeSingleMemoryAccess(RA
);
226 ForwardOpTreeImpl(Scop
*S
, LoopInfo
*LI
) : S(S
), LI(LI
) {}
228 /// Return which SCoP this instance is processing.
229 Scop
*getScop() const { return S
; }
231 /// Run the algorithm: Use value read accesses as operand tree roots and try
232 /// to forward them into the statement.
233 bool forwardOperandTrees() {
234 for (ScopStmt
&Stmt
: *S
) {
235 // Currently we cannot modify the instruction list of region statements.
236 if (!Stmt
.isBlockStmt())
239 bool StmtModified
= false;
241 // Because we are modifying the MemoryAccess list, collect them first to
242 // avoid iterator invalidation.
243 SmallVector
<MemoryAccess
*, 16> Accs
;
244 for (MemoryAccess
*RA
: Stmt
) {
247 if (!RA
->isLatestScalarKind())
253 for (MemoryAccess
*RA
: Accs
) {
254 if (tryForwardTree(RA
)) {
258 TotalForwardedTrees
++;
264 TotalModifiedStmts
++;
273 /// Print the pass result, performed transformations and the SCoP after the
275 void print(llvm::raw_ostream
&OS
, int Indent
= 0) {
276 printStatistics(OS
, Indent
);
279 // This line can easily be checked in regression tests.
280 OS
<< "ForwardOpTree executed, but did not modify anything\n";
284 printStatements(OS
, Indent
);
288 /// Pass that redirects scalar reads to array elements that are known to contain
291 /// This reduces the number of scalar accesses and therefore potentially
292 /// increases the freedom of the scheduler. In the ideal case, all reads of a
293 /// scalar definition are redirected (We currently do not care about removing
294 /// the write in this case). This is also useful for the main DeLICM pass as
295 /// there are less scalars to be mapped.
296 class ForwardOpTree
: public ScopPass
{
298 ForwardOpTree(const ForwardOpTree
&) = delete;
299 const ForwardOpTree
&operator=(const ForwardOpTree
&) = delete;
301 /// The pass implementation, also holding per-scop data.
302 std::unique_ptr
<ForwardOpTreeImpl
> Impl
;
307 explicit ForwardOpTree() : ScopPass(ID
) {}
309 virtual void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
310 AU
.addRequiredTransitive
<ScopInfoRegionPass
>();
311 AU
.addRequired
<LoopInfoWrapperPass
>();
312 AU
.setPreservesAll();
315 virtual bool runOnScop(Scop
&S
) override
{
316 // Free resources for previous SCoP's computation, if not yet done.
319 LoopInfo
&LI
= getAnalysis
<LoopInfoWrapperPass
>().getLoopInfo();
320 Impl
= make_unique
<ForwardOpTreeImpl
>(&S
, &LI
);
322 DEBUG(dbgs() << "Forwarding operand trees...\n");
323 Impl
->forwardOperandTrees();
325 DEBUG(dbgs() << "\nFinal Scop:\n");
331 virtual void printScop(raw_ostream
&OS
, Scop
&S
) const override
{
335 assert(Impl
->getScop() == &S
);
339 virtual void releaseMemory() override
{ Impl
.reset(); }
341 }; // class ForwardOpTree
343 char ForwardOpTree::ID
;
344 } // anonymous namespace
346 ScopPass
*polly::createForwardOpTreePass() { return new ForwardOpTree(); }
348 INITIALIZE_PASS_BEGIN(ForwardOpTree
, "polly-optree",
349 "Polly - Forward operand tree", false, false)
350 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass
)
351 INITIALIZE_PASS_END(ForwardOpTree
, "polly-optree",
352 "Polly - Forward operand tree", false, false)