blob: f8ec1f358c4f4d67e5643ec190fb946d4b54fe7e [file] [log] [blame]
Quentin Colombet61b305e2015-05-05 17:38:16 +00001//===-- ShrinkWrap.cpp - Compute safe point for prolog/epilog insertion ---===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass looks for safe point where the prologue and epilogue can be
11// inserted.
12// The safe point for the prologue (resp. epilogue) is called Save
13// (resp. Restore).
14// A point is safe for prologue (resp. epilogue) if and only if
15// it 1) dominates (resp. post-dominates) all the frame related operations and
16// between 2) two executions of the Save (resp. Restore) point there is an
17// execution of the Restore (resp. Save) point.
18//
19// For instance, the following points are safe:
20// for (int i = 0; i < 10; ++i) {
21// Save
22// ...
23// Restore
24// }
25// Indeed, the execution looks like Save -> Restore -> Save -> Restore ...
26// And the following points are not:
27// for (int i = 0; i < 10; ++i) {
28// Save
29// ...
30// }
31// for (int i = 0; i < 10; ++i) {
32// ...
33// Restore
34// }
35// Indeed, the execution looks like Save -> Save -> ... -> Restore -> Restore.
36//
37// This pass also ensures that the safe points are 3) cheaper than the regular
38// entry and exits blocks.
39//
40// Property #1 is ensured via the use of MachineDominatorTree and
41// MachinePostDominatorTree.
42// Property #2 is ensured via property #1 and MachineLoopInfo, i.e., both
43// points must be in the same loop.
44// Property #3 is ensured via the MachineBlockFrequencyInfo.
45//
46// If this pass found points matching all this properties, then
47// MachineFrameInfo is updated this that information.
48//===----------------------------------------------------------------------===//
49#include "llvm/ADT/Statistic.h"
50// To check for profitability.
51#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
52// For property #1 for Save.
53#include "llvm/CodeGen/MachineDominators.h"
54#include "llvm/CodeGen/MachineFunctionPass.h"
55// To record the result of the analysis.
56#include "llvm/CodeGen/MachineFrameInfo.h"
57// For property #2.
58#include "llvm/CodeGen/MachineLoopInfo.h"
59// For property #1 for Restore.
60#include "llvm/CodeGen/MachinePostDominators.h"
61#include "llvm/CodeGen/Passes.h"
62// To know about callee-saved.
63#include "llvm/CodeGen/RegisterClassInfo.h"
64#include "llvm/Support/Debug.h"
Quentin Colombet80835882015-05-27 06:25:48 +000065// To query the target about frame lowering.
66#include "llvm/Target/TargetFrameLowering.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000067// To know about frame setup operation.
68#include "llvm/Target/TargetInstrInfo.h"
69// To access TargetInstrInfo.
70#include "llvm/Target/TargetSubtargetInfo.h"
Kit Barton45c20b42015-08-06 18:02:53 +000071#include "llvm/Support/CommandLine.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000072
73#define DEBUG_TYPE "shrink-wrap"
74
75using namespace llvm;
76
Kit Barton45c20b42015-08-06 18:02:53 +000077static cl::opt<cl::boolOrDefault>
78 EnableShrinkWrapOpt("enable-shrink-wrap", cl::Hidden,
79 cl::desc("enable the shrink-wrapping pass"));
80
Quentin Colombet61b305e2015-05-05 17:38:16 +000081STATISTIC(NumFunc, "Number of functions");
82STATISTIC(NumCandidates, "Number of shrink-wrapping candidates");
83STATISTIC(NumCandidatesDropped,
84 "Number of shrink-wrapping candidates dropped because of frequency");
85
86namespace {
87/// \brief Class to determine where the safe point to insert the
88/// prologue and epilogue are.
89/// Unlike the paper from Fred C. Chow, PLDI'88, that introduces the
90/// shrink-wrapping term for prologue/epilogue placement, this pass
91/// does not rely on expensive data-flow analysis. Instead we use the
92/// dominance properties and loop information to decide which point
93/// are safe for such insertion.
94class ShrinkWrap : public MachineFunctionPass {
95 /// Hold callee-saved information.
96 RegisterClassInfo RCI;
97 MachineDominatorTree *MDT;
98 MachinePostDominatorTree *MPDT;
99 /// Current safe point found for the prologue.
100 /// The prologue will be inserted before the first instruction
101 /// in this basic block.
102 MachineBasicBlock *Save;
103 /// Current safe point found for the epilogue.
104 /// The epilogue will be inserted before the first terminator instruction
105 /// in this basic block.
106 MachineBasicBlock *Restore;
107 /// Hold the information of the basic block frequency.
108 /// Use to check the profitability of the new points.
109 MachineBlockFrequencyInfo *MBFI;
110 /// Hold the loop information. Used to determine if Save and Restore
111 /// are in the same loop.
112 MachineLoopInfo *MLI;
113 /// Frequency of the Entry block.
114 uint64_t EntryFreq;
115 /// Current opcode for frame setup.
Matthias Braunfa3872e2015-05-18 20:27:55 +0000116 unsigned FrameSetupOpcode;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000117 /// Current opcode for frame destroy.
Matthias Braunfa3872e2015-05-18 20:27:55 +0000118 unsigned FrameDestroyOpcode;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000119 /// Entry block.
120 const MachineBasicBlock *Entry;
121
122 /// \brief Check if \p MI uses or defines a callee-saved register or
123 /// a frame index. If this is the case, this means \p MI must happen
124 /// after Save and before Restore.
125 bool useOrDefCSROrFI(const MachineInstr &MI) const;
126
127 /// \brief Update the Save and Restore points such that \p MBB is in
128 /// the region that is dominated by Save and post-dominated by Restore
129 /// and Save and Restore still match the safe point definition.
130 /// Such point may not exist and Save and/or Restore may be null after
131 /// this call.
132 void updateSaveRestorePoints(MachineBasicBlock &MBB);
133
134 /// \brief Initialize the pass for \p MF.
135 void init(MachineFunction &MF) {
136 RCI.runOnMachineFunction(MF);
137 MDT = &getAnalysis<MachineDominatorTree>();
138 MPDT = &getAnalysis<MachinePostDominatorTree>();
139 Save = nullptr;
140 Restore = nullptr;
141 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
142 MLI = &getAnalysis<MachineLoopInfo>();
143 EntryFreq = MBFI->getEntryFreq();
144 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
145 FrameSetupOpcode = TII.getCallFrameSetupOpcode();
146 FrameDestroyOpcode = TII.getCallFrameDestroyOpcode();
147 Entry = &MF.front();
148
149 ++NumFunc;
150 }
151
152 /// Check whether or not Save and Restore points are still interesting for
153 /// shrink-wrapping.
154 bool ArePointsInteresting() const { return Save != Entry && Save && Restore; }
155
156public:
157 static char ID;
158
159 ShrinkWrap() : MachineFunctionPass(ID) {
160 initializeShrinkWrapPass(*PassRegistry::getPassRegistry());
161 }
Kit Barton45c20b42015-08-06 18:02:53 +0000162
163 ShrinkWrap(std::function<bool(const MachineFunction &)> Ftor) :
164 MachineFunctionPass(ID), PredicateFtor(Ftor) {
165 initializeShrinkWrapPass(*PassRegistry::getPassRegistry());
166 }
Quentin Colombet61b305e2015-05-05 17:38:16 +0000167
168 void getAnalysisUsage(AnalysisUsage &AU) const override {
169 AU.setPreservesAll();
170 AU.addRequired<MachineBlockFrequencyInfo>();
171 AU.addRequired<MachineDominatorTree>();
172 AU.addRequired<MachinePostDominatorTree>();
173 AU.addRequired<MachineLoopInfo>();
174 MachineFunctionPass::getAnalysisUsage(AU);
175 }
176
177 const char *getPassName() const override {
178 return "Shrink Wrapping analysis";
179 }
180
181 /// \brief Perform the shrink-wrapping analysis and update
182 /// the MachineFrameInfo attached to \p MF with the results.
183 bool runOnMachineFunction(MachineFunction &MF) override;
Kit Barton45c20b42015-08-06 18:02:53 +0000184
185private:
186 /// \brief Predicate function to determine if shrink wrapping should run.
187 ///
188 /// This function will be run at the beginning of shrink wrapping and
189 /// determine whether shrink wrapping should run on the given MachineFunction.
190 /// \param[in] MF The MachineFunction to run shrink wrapping on.
191 /// \return true if shrink wrapping should be run, false otherwise.
192 std::function<bool(const MachineFunction &MF)> PredicateFtor;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000193};
194} // End anonymous namespace.
195
196char ShrinkWrap::ID = 0;
197char &llvm::ShrinkWrapID = ShrinkWrap::ID;
198
199INITIALIZE_PASS_BEGIN(ShrinkWrap, "shrink-wrap", "Shrink Wrap Pass", false,
200 false)
201INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
202INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
203INITIALIZE_PASS_DEPENDENCY(MachinePostDominatorTree)
204INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
205INITIALIZE_PASS_END(ShrinkWrap, "shrink-wrap", "Shrink Wrap Pass", false, false)
206
207bool ShrinkWrap::useOrDefCSROrFI(const MachineInstr &MI) const {
208 if (MI.getOpcode() == FrameSetupOpcode ||
209 MI.getOpcode() == FrameDestroyOpcode) {
210 DEBUG(dbgs() << "Frame instruction: " << MI << '\n');
211 return true;
212 }
213 for (const MachineOperand &MO : MI.operands()) {
214 bool UseCSR = false;
215 if (MO.isReg()) {
216 unsigned PhysReg = MO.getReg();
217 if (!PhysReg)
218 continue;
219 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) &&
220 "Unallocated register?!");
221 UseCSR = RCI.getLastCalleeSavedAlias(PhysReg);
222 }
223 // TODO: Handle regmask more accurately.
224 // For now, be conservative about them.
225 if (UseCSR || MO.isFI() || MO.isRegMask()) {
226 DEBUG(dbgs() << "Use or define CSR(" << UseCSR << ") or FI(" << MO.isFI()
227 << "): " << MI << '\n');
228 return true;
229 }
230 }
231 return false;
232}
233
234/// \brief Helper function to find the immediate (post) dominator.
235template <typename ListOfBBs, typename DominanceAnalysis>
236MachineBasicBlock *FindIDom(MachineBasicBlock &Block, ListOfBBs BBs,
237 DominanceAnalysis &Dom) {
238 MachineBasicBlock *IDom = &Block;
239 for (MachineBasicBlock *BB : BBs) {
240 IDom = Dom.findNearestCommonDominator(IDom, BB);
241 if (!IDom)
242 break;
243 }
244 return IDom;
245}
246
247void ShrinkWrap::updateSaveRestorePoints(MachineBasicBlock &MBB) {
248 // Get rid of the easy cases first.
249 if (!Save)
250 Save = &MBB;
251 else
252 Save = MDT->findNearestCommonDominator(Save, &MBB);
253
254 if (!Save) {
255 DEBUG(dbgs() << "Found a block that is not reachable from Entry\n");
256 return;
257 }
258
259 if (!Restore)
260 Restore = &MBB;
261 else
262 Restore = MPDT->findNearestCommonDominator(Restore, &MBB);
263
264 // Make sure we would be able to insert the restore code before the
265 // terminator.
266 if (Restore == &MBB) {
267 for (const MachineInstr &Terminator : MBB.terminators()) {
268 if (!useOrDefCSROrFI(Terminator))
269 continue;
270 // One of the terminator needs to happen before the restore point.
271 if (MBB.succ_empty()) {
272 Restore = nullptr;
273 break;
274 }
275 // Look for a restore point that post-dominates all the successors.
276 // The immediate post-dominator is what we are looking for.
277 Restore = FindIDom<>(*Restore, Restore->successors(), *MPDT);
278 break;
279 }
280 }
281
282 if (!Restore) {
283 DEBUG(dbgs() << "Restore point needs to be spanned on several blocks\n");
284 return;
285 }
286
287 // Make sure Save and Restore are suitable for shrink-wrapping:
288 // 1. all path from Save needs to lead to Restore before exiting.
289 // 2. all path to Restore needs to go through Save from Entry.
290 // We achieve that by making sure that:
291 // A. Save dominates Restore.
292 // B. Restore post-dominates Save.
293 // C. Save and Restore are in the same loop.
294 bool SaveDominatesRestore = false;
295 bool RestorePostDominatesSave = false;
296 while (Save && Restore &&
297 (!(SaveDominatesRestore = MDT->dominates(Save, Restore)) ||
298 !(RestorePostDominatesSave = MPDT->dominates(Restore, Save)) ||
299 MLI->getLoopFor(Save) != MLI->getLoopFor(Restore))) {
300 // Fix (A).
301 if (!SaveDominatesRestore) {
302 Save = MDT->findNearestCommonDominator(Save, Restore);
303 continue;
304 }
305 // Fix (B).
306 if (!RestorePostDominatesSave)
307 Restore = MPDT->findNearestCommonDominator(Restore, Save);
308
309 // Fix (C).
310 if (Save && Restore && Save != Restore &&
311 MLI->getLoopFor(Save) != MLI->getLoopFor(Restore)) {
312 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore))
313 // Push Save outside of this loop.
314 Save = FindIDom<>(*Save, Save->predecessors(), *MDT);
315 else
316 // Push Restore outside of this loop.
317 Restore = FindIDom<>(*Restore, Restore->successors(), *MPDT);
318 }
319 }
320}
321
322bool ShrinkWrap::runOnMachineFunction(MachineFunction &MF) {
Kit Barton45c20b42015-08-06 18:02:53 +0000323 if (PredicateFtor && !PredicateFtor(MF))
Quentin Colombet61b305e2015-05-05 17:38:16 +0000324 return false;
Kit Barton45c20b42015-08-06 18:02:53 +0000325
326 if (MF.empty() || skipOptnoneFunction(*MF.getFunction()))
327 return false;
328
Quentin Colombet61b305e2015-05-05 17:38:16 +0000329 DEBUG(dbgs() << "**** Analysing " << MF.getName() << '\n');
330
331 init(MF);
332
333 for (MachineBasicBlock &MBB : MF) {
334 DEBUG(dbgs() << "Look into: " << MBB.getNumber() << ' ' << MBB.getName()
335 << '\n');
336
337 for (const MachineInstr &MI : MBB) {
338 if (!useOrDefCSROrFI(MI))
339 continue;
340 // Save (resp. restore) point must dominate (resp. post dominate)
341 // MI. Look for the proper basic block for those.
342 updateSaveRestorePoints(MBB);
343 // If we are at a point where we cannot improve the placement of
344 // save/restore instructions, just give up.
345 if (!ArePointsInteresting()) {
346 DEBUG(dbgs() << "No Shrink wrap candidate found\n");
347 return false;
348 }
349 // No need to look for other instructions, this basic block
350 // will already be part of the handled region.
351 break;
352 }
353 }
354 if (!ArePointsInteresting()) {
355 // If the points are not interesting at this point, then they must be null
356 // because it means we did not encounter any frame/CSR related code.
357 // Otherwise, we would have returned from the previous loop.
358 assert(!Save && !Restore && "We miss a shrink-wrap opportunity?!");
359 DEBUG(dbgs() << "Nothing to shrink-wrap\n");
360 return false;
361 }
362
363 DEBUG(dbgs() << "\n ** Results **\nFrequency of the Entry: " << EntryFreq
364 << '\n');
365
Quentin Colombet80835882015-05-27 06:25:48 +0000366 const TargetFrameLowering *TFI = MF.getSubtarget().getFrameLowering();
Quentin Colombet61b305e2015-05-05 17:38:16 +0000367 do {
368 DEBUG(dbgs() << "Shrink wrap candidates (#, Name, Freq):\nSave: "
369 << Save->getNumber() << ' ' << Save->getName() << ' '
370 << MBFI->getBlockFreq(Save).getFrequency() << "\nRestore: "
371 << Restore->getNumber() << ' ' << Restore->getName() << ' '
372 << MBFI->getBlockFreq(Restore).getFrequency() << '\n');
373
Quentin Colombet80835882015-05-27 06:25:48 +0000374 bool IsSaveCheap, TargetCanUseSaveAsPrologue = false;
375 if (((IsSaveCheap = EntryFreq >= MBFI->getBlockFreq(Save).getFrequency()) &&
376 EntryFreq >= MBFI->getBlockFreq(Restore).getFrequency()) &&
377 ((TargetCanUseSaveAsPrologue = TFI->canUseAsPrologue(*Save)) &&
378 TFI->canUseAsEpilogue(*Restore)))
Quentin Colombet61b305e2015-05-05 17:38:16 +0000379 break;
Quentin Colombet80835882015-05-27 06:25:48 +0000380 DEBUG(dbgs() << "New points are too expensive or invalid for the target\n");
Quentin Colombet61b305e2015-05-05 17:38:16 +0000381 MachineBasicBlock *NewBB;
Quentin Colombet80835882015-05-27 06:25:48 +0000382 if (!IsSaveCheap || !TargetCanUseSaveAsPrologue) {
Quentin Colombet61b305e2015-05-05 17:38:16 +0000383 Save = FindIDom<>(*Save, Save->predecessors(), *MDT);
384 if (!Save)
385 break;
386 NewBB = Save;
387 } else {
388 // Restore is expensive.
389 Restore = FindIDom<>(*Restore, Restore->successors(), *MPDT);
390 if (!Restore)
391 break;
392 NewBB = Restore;
393 }
394 updateSaveRestorePoints(*NewBB);
395 } while (Save && Restore);
396
397 if (!ArePointsInteresting()) {
398 ++NumCandidatesDropped;
399 return false;
400 }
401
402 DEBUG(dbgs() << "Final shrink wrap candidates:\nSave: " << Save->getNumber()
403 << ' ' << Save->getName() << "\nRestore: "
404 << Restore->getNumber() << ' ' << Restore->getName() << '\n');
405
406 MachineFrameInfo *MFI = MF.getFrameInfo();
407 MFI->setSavePoint(Save);
408 MFI->setRestorePoint(Restore);
409 ++NumCandidates;
410 return false;
411}
Kit Barton45c20b42015-08-06 18:02:53 +0000412
413/// If EnableShrinkWrap is set run shrink wrapping on the given Machine
414/// Function. Otherwise, shrink wrapping is disabled.
415/// This function can be overridden in each target-specific TargetPassConfig
416/// class to allow different predicate logic for each target.
417bool TargetPassConfig::runShrinkWrap(const MachineFunction &Fn) const {
418 switch (EnableShrinkWrapOpt) {
419 case cl::BOU_TRUE:
420 return true;
421 case cl::BOU_UNSET:
422 case cl::BOU_FALSE:
423 return false;
424 }
425 llvm_unreachable("Invalid shrink-wrapping state");
426}
427
428/// Create a ShrinkWrap FunctionPass using the runShrinkWrap predicate
429/// function.
430FunctionPass *TargetPassConfig::createShrinkWrapPass() {
431 std::function<bool(const MachineFunction &Fn)> Ftor =
432 std::bind(&TargetPassConfig::runShrinkWrap, this, std::placeholders::_1);
433 return new ShrinkWrap(Ftor);
434}