blob: 8e87c0634654c49e3878863b0fc308d65e75d7eb [file] [log] [blame]
Eugene Zelenko149178d2017-10-10 22:33:29 +00001//===- ShrinkWrap.cpp - Compute safe point for prolog/epilog insertion ----===//
Quentin Colombet61b305e2015-05-05 17:38:16 +00002//
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//
Quentin Colombet9a8efc02015-11-06 21:00:13 +000046// If this pass found points matching all these properties, then
Chad Rosiera1080102015-12-22 15:06:47 +000047// MachineFrameInfo is updated with this information.
Eugene Zelenko149178d2017-10-10 22:33:29 +000048//
Quentin Colombet61b305e2015-05-05 17:38:16 +000049//===----------------------------------------------------------------------===//
Eugene Zelenko149178d2017-10-10 22:33:29 +000050
Quentin Colombet9a8efc02015-11-06 21:00:13 +000051#include "llvm/ADT/BitVector.h"
Quentin Colombet9ed52e92016-01-07 01:23:49 +000052#include "llvm/ADT/PostOrderIterator.h"
Quentin Colombet9a8efc02015-11-06 21:00:13 +000053#include "llvm/ADT/SetVector.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000054#include "llvm/ADT/SmallVector.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000055#include "llvm/ADT/Statistic.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000056#include "llvm/CodeGen/MachineBasicBlock.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000057#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000058#include "llvm/CodeGen/MachineDominators.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000059#include "llvm/CodeGen/MachineFrameInfo.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000060#include "llvm/CodeGen/MachineFunction.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000061#include "llvm/CodeGen/MachineFunctionPass.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000062#include "llvm/CodeGen/MachineInstr.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000063#include "llvm/CodeGen/MachineLoopInfo.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000064#include "llvm/CodeGen/MachineOperand.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000065#include "llvm/CodeGen/MachinePostDominators.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000066#include "llvm/CodeGen/RegisterClassInfo.h"
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +000067#include "llvm/CodeGen/RegisterScavenging.h"
David Blaikie3f833ed2017-11-08 01:01:31 +000068#include "llvm/CodeGen/TargetFrameLowering.h"
69#include "llvm/CodeGen/TargetInstrInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000070#include "llvm/CodeGen/TargetRegisterInfo.h"
71#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000072#include "llvm/IR/Attributes.h"
73#include "llvm/IR/Function.h"
Quentin Colombet94dc1e02015-11-12 18:13:42 +000074#include "llvm/MC/MCAsmInfo.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000075#include "llvm/Pass.h"
76#include "llvm/Support/CommandLine.h"
Quentin Colombet61b305e2015-05-05 17:38:16 +000077#include "llvm/Support/Debug.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000078#include "llvm/Support/ErrorHandling.h"
79#include "llvm/Support/raw_ostream.h"
Quentin Colombet94dc1e02015-11-12 18:13:42 +000080#include "llvm/Target/TargetMachine.h"
Eugene Zelenko149178d2017-10-10 22:33:29 +000081#include <cassert>
82#include <cstdint>
83#include <memory>
Quentin Colombet61b305e2015-05-05 17:38:16 +000084
85using namespace llvm;
86
Eugene Zelenko149178d2017-10-10 22:33:29 +000087#define DEBUG_TYPE "shrink-wrap"
88
Quentin Colombet61b305e2015-05-05 17:38:16 +000089STATISTIC(NumFunc, "Number of functions");
90STATISTIC(NumCandidates, "Number of shrink-wrapping candidates");
91STATISTIC(NumCandidatesDropped,
92 "Number of shrink-wrapping candidates dropped because of frequency");
93
Kit Bartond3cc1672015-08-31 18:26:45 +000094static cl::opt<cl::boolOrDefault>
Eugene Zelenko149178d2017-10-10 22:33:29 +000095EnableShrinkWrapOpt("enable-shrink-wrap", cl::Hidden,
96 cl::desc("enable the shrink-wrapping pass"));
Kit Bartond3cc1672015-08-31 18:26:45 +000097
Quentin Colombet61b305e2015-05-05 17:38:16 +000098namespace {
Eugene Zelenko149178d2017-10-10 22:33:29 +000099
Quentin Colombet61b305e2015-05-05 17:38:16 +0000100/// \brief Class to determine where the safe point to insert the
101/// prologue and epilogue are.
102/// Unlike the paper from Fred C. Chow, PLDI'88, that introduces the
103/// shrink-wrapping term for prologue/epilogue placement, this pass
104/// does not rely on expensive data-flow analysis. Instead we use the
105/// dominance properties and loop information to decide which point
106/// are safe for such insertion.
107class ShrinkWrap : public MachineFunctionPass {
108 /// Hold callee-saved information.
109 RegisterClassInfo RCI;
110 MachineDominatorTree *MDT;
111 MachinePostDominatorTree *MPDT;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000112
Quentin Colombet61b305e2015-05-05 17:38:16 +0000113 /// Current safe point found for the prologue.
114 /// The prologue will be inserted before the first instruction
115 /// in this basic block.
116 MachineBasicBlock *Save;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000117
Quentin Colombet61b305e2015-05-05 17:38:16 +0000118 /// Current safe point found for the epilogue.
119 /// The epilogue will be inserted before the first terminator instruction
120 /// in this basic block.
121 MachineBasicBlock *Restore;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000122
Quentin Colombet61b305e2015-05-05 17:38:16 +0000123 /// Hold the information of the basic block frequency.
124 /// Use to check the profitability of the new points.
125 MachineBlockFrequencyInfo *MBFI;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000126
Quentin Colombet61b305e2015-05-05 17:38:16 +0000127 /// Hold the loop information. Used to determine if Save and Restore
128 /// are in the same loop.
129 MachineLoopInfo *MLI;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000130
Quentin Colombet61b305e2015-05-05 17:38:16 +0000131 /// Frequency of the Entry block.
132 uint64_t EntryFreq;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000133
Quentin Colombet61b305e2015-05-05 17:38:16 +0000134 /// Current opcode for frame setup.
Matthias Braunfa3872e2015-05-18 20:27:55 +0000135 unsigned FrameSetupOpcode;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000136
Quentin Colombet61b305e2015-05-05 17:38:16 +0000137 /// Current opcode for frame destroy.
Matthias Braunfa3872e2015-05-18 20:27:55 +0000138 unsigned FrameDestroyOpcode;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000139
Quentin Colombet61b305e2015-05-05 17:38:16 +0000140 /// Entry block.
141 const MachineBasicBlock *Entry;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000142
143 using SetOfRegs = SmallSetVector<unsigned, 16>;
144
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000145 /// Registers that need to be saved for the current function.
146 mutable SetOfRegs CurrentCSRs;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000147
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000148 /// Current MachineFunction.
149 MachineFunction *MachineFunc;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000150
151 /// \brief Check if \p MI uses or defines a callee-saved register or
152 /// a frame index. If this is the case, this means \p MI must happen
153 /// after Save and before Restore.
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000154 bool useOrDefCSROrFI(const MachineInstr &MI, RegScavenger *RS) const;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000155
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000156 const SetOfRegs &getCurrentCSRs(RegScavenger *RS) const {
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000157 if (CurrentCSRs.empty()) {
158 BitVector SavedRegs;
159 const TargetFrameLowering *TFI =
160 MachineFunc->getSubtarget().getFrameLowering();
161
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000162 TFI->determineCalleeSaves(*MachineFunc, SavedRegs, RS);
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000163
164 for (int Reg = SavedRegs.find_first(); Reg != -1;
165 Reg = SavedRegs.find_next(Reg))
166 CurrentCSRs.insert((unsigned)Reg);
167 }
168 return CurrentCSRs;
169 }
170
Quentin Colombet61b305e2015-05-05 17:38:16 +0000171 /// \brief Update the Save and Restore points such that \p MBB is in
172 /// the region that is dominated by Save and post-dominated by Restore
173 /// and Save and Restore still match the safe point definition.
174 /// Such point may not exist and Save and/or Restore may be null after
175 /// this call.
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000176 void updateSaveRestorePoints(MachineBasicBlock &MBB, RegScavenger *RS);
Quentin Colombet61b305e2015-05-05 17:38:16 +0000177
178 /// \brief Initialize the pass for \p MF.
179 void init(MachineFunction &MF) {
180 RCI.runOnMachineFunction(MF);
181 MDT = &getAnalysis<MachineDominatorTree>();
182 MPDT = &getAnalysis<MachinePostDominatorTree>();
183 Save = nullptr;
184 Restore = nullptr;
185 MBFI = &getAnalysis<MachineBlockFrequencyInfo>();
186 MLI = &getAnalysis<MachineLoopInfo>();
187 EntryFreq = MBFI->getEntryFreq();
188 const TargetInstrInfo &TII = *MF.getSubtarget().getInstrInfo();
189 FrameSetupOpcode = TII.getCallFrameSetupOpcode();
190 FrameDestroyOpcode = TII.getCallFrameDestroyOpcode();
191 Entry = &MF.front();
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000192 CurrentCSRs.clear();
193 MachineFunc = &MF;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000194
195 ++NumFunc;
196 }
197
198 /// Check whether or not Save and Restore points are still interesting for
199 /// shrink-wrapping.
200 bool ArePointsInteresting() const { return Save != Entry && Save && Restore; }
201
Kit Bartond3cc1672015-08-31 18:26:45 +0000202 /// \brief Check if shrink wrapping is enabled for this target and function.
203 static bool isShrinkWrapEnabled(const MachineFunction &MF);
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000204
Quentin Colombet61b305e2015-05-05 17:38:16 +0000205public:
206 static char ID;
207
208 ShrinkWrap() : MachineFunctionPass(ID) {
209 initializeShrinkWrapPass(*PassRegistry::getPassRegistry());
210 }
211
212 void getAnalysisUsage(AnalysisUsage &AU) const override {
213 AU.setPreservesAll();
214 AU.addRequired<MachineBlockFrequencyInfo>();
215 AU.addRequired<MachineDominatorTree>();
216 AU.addRequired<MachinePostDominatorTree>();
217 AU.addRequired<MachineLoopInfo>();
218 MachineFunctionPass::getAnalysisUsage(AU);
219 }
220
Mehdi Amini117296c2016-10-01 02:56:57 +0000221 StringRef getPassName() const override { return "Shrink Wrapping analysis"; }
Quentin Colombet61b305e2015-05-05 17:38:16 +0000222
223 /// \brief Perform the shrink-wrapping analysis and update
224 /// the MachineFrameInfo attached to \p MF with the results.
225 bool runOnMachineFunction(MachineFunction &MF) override;
226};
Eugene Zelenko149178d2017-10-10 22:33:29 +0000227
228} // end anonymous namespace
Quentin Colombet61b305e2015-05-05 17:38:16 +0000229
230char ShrinkWrap::ID = 0;
Eugene Zelenko149178d2017-10-10 22:33:29 +0000231
Quentin Colombet61b305e2015-05-05 17:38:16 +0000232char &llvm::ShrinkWrapID = ShrinkWrap::ID;
233
Matthias Braun1527baa2017-05-25 21:26:32 +0000234INITIALIZE_PASS_BEGIN(ShrinkWrap, DEBUG_TYPE, "Shrink Wrap Pass", false, false)
Quentin Colombet61b305e2015-05-05 17:38:16 +0000235INITIALIZE_PASS_DEPENDENCY(MachineBlockFrequencyInfo)
236INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
237INITIALIZE_PASS_DEPENDENCY(MachinePostDominatorTree)
238INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
Matthias Braun1527baa2017-05-25 21:26:32 +0000239INITIALIZE_PASS_END(ShrinkWrap, DEBUG_TYPE, "Shrink Wrap Pass", false, false)
Quentin Colombet61b305e2015-05-05 17:38:16 +0000240
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000241bool ShrinkWrap::useOrDefCSROrFI(const MachineInstr &MI,
242 RegScavenger *RS) const {
Quentin Colombet61b305e2015-05-05 17:38:16 +0000243 if (MI.getOpcode() == FrameSetupOpcode ||
244 MI.getOpcode() == FrameDestroyOpcode) {
245 DEBUG(dbgs() << "Frame instruction: " << MI << '\n');
246 return true;
247 }
248 for (const MachineOperand &MO : MI.operands()) {
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000249 bool UseOrDefCSR = false;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000250 if (MO.isReg()) {
Francis Visoiu Mistrih54a9e7a2018-01-16 18:55:26 +0000251 // Ignore instructions like DBG_VALUE which don't read/def the register.
252 if (!MO.isDef() && !MO.readsReg())
253 continue;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000254 unsigned PhysReg = MO.getReg();
255 if (!PhysReg)
256 continue;
257 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) &&
258 "Unallocated register?!");
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000259 UseOrDefCSR = RCI.getLastCalleeSavedAlias(PhysReg);
260 } else if (MO.isRegMask()) {
261 // Check if this regmask clobbers any of the CSRs.
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000262 for (unsigned Reg : getCurrentCSRs(RS)) {
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000263 if (MO.clobbersPhysReg(Reg)) {
264 UseOrDefCSR = true;
265 break;
266 }
267 }
Quentin Colombet61b305e2015-05-05 17:38:16 +0000268 }
Francis Visoiu Mistrih54a9e7a2018-01-16 18:55:26 +0000269 // Skip FrameIndex operands in DBG_VALUE instructions.
270 if (UseOrDefCSR || (MO.isFI() && !MI.isDebugValue())) {
Quentin Colombet9a8efc02015-11-06 21:00:13 +0000271 DEBUG(dbgs() << "Use or define CSR(" << UseOrDefCSR << ") or FI("
272 << MO.isFI() << "): " << MI << '\n');
Quentin Colombet61b305e2015-05-05 17:38:16 +0000273 return true;
274 }
275 }
276 return false;
277}
278
279/// \brief Helper function to find the immediate (post) dominator.
280template <typename ListOfBBs, typename DominanceAnalysis>
Benjamin Kramerb7d33112016-08-06 11:13:10 +0000281static MachineBasicBlock *FindIDom(MachineBasicBlock &Block, ListOfBBs BBs,
282 DominanceAnalysis &Dom) {
Quentin Colombet61b305e2015-05-05 17:38:16 +0000283 MachineBasicBlock *IDom = &Block;
284 for (MachineBasicBlock *BB : BBs) {
285 IDom = Dom.findNearestCommonDominator(IDom, BB);
286 if (!IDom)
287 break;
288 }
Michael Kuperstein037c9982016-01-06 18:40:11 +0000289 if (IDom == &Block)
290 return nullptr;
Quentin Colombet61b305e2015-05-05 17:38:16 +0000291 return IDom;
292}
293
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000294void ShrinkWrap::updateSaveRestorePoints(MachineBasicBlock &MBB,
295 RegScavenger *RS) {
Quentin Colombet61b305e2015-05-05 17:38:16 +0000296 // Get rid of the easy cases first.
297 if (!Save)
298 Save = &MBB;
299 else
300 Save = MDT->findNearestCommonDominator(Save, &MBB);
301
302 if (!Save) {
303 DEBUG(dbgs() << "Found a block that is not reachable from Entry\n");
304 return;
305 }
306
307 if (!Restore)
308 Restore = &MBB;
Francis Visoiu Mistrihebbc7152017-05-15 23:13:35 +0000309 else if (MPDT->getNode(&MBB)) // If the block is not in the post dom tree, it
310 // means the block never returns. If that's the
311 // case, we don't want to call
312 // `findNearestCommonDominator`, which will
313 // return `Restore`.
Quentin Colombet61b305e2015-05-05 17:38:16 +0000314 Restore = MPDT->findNearestCommonDominator(Restore, &MBB);
Francis Visoiu Mistrihebbc7152017-05-15 23:13:35 +0000315 else
316 Restore = nullptr; // Abort, we can't find a restore point in this case.
Quentin Colombet61b305e2015-05-05 17:38:16 +0000317
318 // Make sure we would be able to insert the restore code before the
319 // terminator.
320 if (Restore == &MBB) {
321 for (const MachineInstr &Terminator : MBB.terminators()) {
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000322 if (!useOrDefCSROrFI(Terminator, RS))
Quentin Colombet61b305e2015-05-05 17:38:16 +0000323 continue;
324 // One of the terminator needs to happen before the restore point.
325 if (MBB.succ_empty()) {
Francis Visoiu Mistrihebbc7152017-05-15 23:13:35 +0000326 Restore = nullptr; // Abort, we can't find a restore point in this case.
Quentin Colombet61b305e2015-05-05 17:38:16 +0000327 break;
328 }
329 // Look for a restore point that post-dominates all the successors.
330 // The immediate post-dominator is what we are looking for.
331 Restore = FindIDom<>(*Restore, Restore->successors(), *MPDT);
332 break;
333 }
334 }
335
336 if (!Restore) {
337 DEBUG(dbgs() << "Restore point needs to be spanned on several blocks\n");
338 return;
339 }
340
341 // Make sure Save and Restore are suitable for shrink-wrapping:
342 // 1. all path from Save needs to lead to Restore before exiting.
343 // 2. all path to Restore needs to go through Save from Entry.
344 // We achieve that by making sure that:
345 // A. Save dominates Restore.
346 // B. Restore post-dominates Save.
347 // C. Save and Restore are in the same loop.
348 bool SaveDominatesRestore = false;
349 bool RestorePostDominatesSave = false;
350 while (Save && Restore &&
351 (!(SaveDominatesRestore = MDT->dominates(Save, Restore)) ||
352 !(RestorePostDominatesSave = MPDT->dominates(Restore, Save)) ||
Quentin Colombetb82786e2015-12-15 03:28:11 +0000353 // Post-dominance is not enough in loops to ensure that all uses/defs
354 // are after the prologue and before the epilogue at runtime.
355 // E.g.,
356 // while(1) {
357 // Save
358 // Restore
359 // if (...)
360 // break;
361 // use/def CSRs
362 // }
363 // All the uses/defs of CSRs are dominated by Save and post-dominated
364 // by Restore. However, the CSRs uses are still reachable after
365 // Restore and before Save are executed.
366 //
367 // For now, just push the restore/save points outside of loops.
368 // FIXME: Refine the criteria to still find interesting cases
369 // for loops.
370 MLI->getLoopFor(Save) || MLI->getLoopFor(Restore))) {
Quentin Colombet61b305e2015-05-05 17:38:16 +0000371 // Fix (A).
372 if (!SaveDominatesRestore) {
373 Save = MDT->findNearestCommonDominator(Save, Restore);
374 continue;
375 }
376 // Fix (B).
377 if (!RestorePostDominatesSave)
378 Restore = MPDT->findNearestCommonDominator(Restore, Save);
379
380 // Fix (C).
Quentin Colombetb82786e2015-12-15 03:28:11 +0000381 if (Save && Restore &&
382 (MLI->getLoopFor(Save) || MLI->getLoopFor(Restore))) {
Kit Bartona7bf96a2015-08-06 19:01:57 +0000383 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) {
384 // Push Save outside of this loop if immediate dominator is different
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000385 // from save block. If immediate dominator is not different, bail out.
Michael Kuperstein037c9982016-01-06 18:40:11 +0000386 Save = FindIDom<>(*Save, Save->predecessors(), *MDT);
387 if (!Save)
Kit Bartona7bf96a2015-08-06 19:01:57 +0000388 break;
Quentin Colombetb82786e2015-12-15 03:28:11 +0000389 } else {
Quentin Colombetdc29c972015-09-15 18:19:39 +0000390 // If the loop does not exit, there is no point in looking
391 // for a post-dominator outside the loop.
392 SmallVector<MachineBasicBlock*, 4> ExitBlocks;
393 MLI->getLoopFor(Restore)->getExitingBlocks(ExitBlocks);
Quentin Colombetb4c68862015-09-17 23:21:34 +0000394 // Push Restore outside of this loop.
395 // Look for the immediate post-dominator of the loop exits.
396 MachineBasicBlock *IPdom = Restore;
397 for (MachineBasicBlock *LoopExitBB: ExitBlocks) {
398 IPdom = FindIDom<>(*IPdom, LoopExitBB->successors(), *MPDT);
399 if (!IPdom)
400 break;
Quentin Colombetdc29c972015-09-15 18:19:39 +0000401 }
Quentin Colombetb4c68862015-09-17 23:21:34 +0000402 // If the immediate post-dominator is not in a less nested loop,
403 // then we are stuck in a program with an infinite loop.
404 // In that case, we will not find a safe point, hence, bail out.
405 if (IPdom && MLI->getLoopDepth(IPdom) < MLI->getLoopDepth(Restore))
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000406 Restore = IPdom;
Kit Bartona7bf96a2015-08-06 19:01:57 +0000407 else {
408 Restore = nullptr;
409 break;
410 }
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000411 }
Quentin Colombet61b305e2015-05-05 17:38:16 +0000412 }
413 }
414}
415
Quentin Colombet9ed52e92016-01-07 01:23:49 +0000416/// Check whether the edge (\p SrcBB, \p DestBB) is a backedge according to MLI.
417/// I.e., check if it exists a loop that contains SrcBB and where DestBB is the
418/// loop header.
419static bool isProperBackedge(const MachineLoopInfo &MLI,
420 const MachineBasicBlock *SrcBB,
421 const MachineBasicBlock *DestBB) {
422 for (const MachineLoop *Loop = MLI.getLoopFor(SrcBB); Loop;
423 Loop = Loop->getParentLoop()) {
424 if (Loop->getHeader() == DestBB)
425 return true;
426 }
427 return false;
428}
429
430/// Check if the CFG of \p MF is irreducible.
431static bool isIrreducibleCFG(const MachineFunction &MF,
432 const MachineLoopInfo &MLI) {
433 const MachineBasicBlock *Entry = &*MF.begin();
434 ReversePostOrderTraversal<const MachineBasicBlock *> RPOT(Entry);
435 BitVector VisitedBB(MF.getNumBlockIDs());
436 for (const MachineBasicBlock *MBB : RPOT) {
437 VisitedBB.set(MBB->getNumber());
438 for (const MachineBasicBlock *SuccBB : MBB->successors()) {
439 if (!VisitedBB.test(SuccBB->getNumber()))
440 continue;
441 // We already visited SuccBB, thus MBB->SuccBB must be a backedge.
442 // Check that the head matches what we have in the loop information.
443 // Otherwise, we have an irreducible graph.
444 if (!isProperBackedge(MLI, MBB, SuccBB))
445 return true;
446 }
447 }
448 return false;
449}
450
Quentin Colombet61b305e2015-05-05 17:38:16 +0000451bool ShrinkWrap::runOnMachineFunction(MachineFunction &MF) {
Matthias Braunf1caa282017-12-15 22:22:58 +0000452 if (skipFunction(MF.getFunction()) || MF.empty() || !isShrinkWrapEnabled(MF))
Quentin Colombet61b305e2015-05-05 17:38:16 +0000453 return false;
Kit Bartond3cc1672015-08-31 18:26:45 +0000454
Quentin Colombet61b305e2015-05-05 17:38:16 +0000455 DEBUG(dbgs() << "**** Analysing " << MF.getName() << '\n');
456
457 init(MF);
458
Quentin Colombet9ed52e92016-01-07 01:23:49 +0000459 if (isIrreducibleCFG(MF, *MLI)) {
460 // If MF is irreducible, a block may be in a loop without
461 // MachineLoopInfo reporting it. I.e., we may use the
462 // post-dominance property in loops, which lead to incorrect
463 // results. Moreover, we may miss that the prologue and
464 // epilogue are not in the same loop, leading to unbalanced
465 // construction/deconstruction of the stack frame.
466 DEBUG(dbgs() << "Irreducible CFGs are not supported yet\n");
467 return false;
468 }
469
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000470 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
471 std::unique_ptr<RegScavenger> RS(
472 TRI->requiresRegisterScavenging(MF) ? new RegScavenger() : nullptr);
473
Quentin Colombet61b305e2015-05-05 17:38:16 +0000474 for (MachineBasicBlock &MBB : MF) {
475 DEBUG(dbgs() << "Look into: " << MBB.getNumber() << ' ' << MBB.getName()
476 << '\n');
477
Quentin Colombet94dc1e02015-11-12 18:13:42 +0000478 if (MBB.isEHFuncletEntry()) {
479 DEBUG(dbgs() << "EH Funclets are not supported yet.\n");
480 return false;
481 }
482
Quentin Colombet61b305e2015-05-05 17:38:16 +0000483 for (const MachineInstr &MI : MBB) {
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000484 if (!useOrDefCSROrFI(MI, RS.get()))
Quentin Colombet61b305e2015-05-05 17:38:16 +0000485 continue;
486 // Save (resp. restore) point must dominate (resp. post dominate)
487 // MI. Look for the proper basic block for those.
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000488 updateSaveRestorePoints(MBB, RS.get());
Quentin Colombet61b305e2015-05-05 17:38:16 +0000489 // If we are at a point where we cannot improve the placement of
490 // save/restore instructions, just give up.
491 if (!ArePointsInteresting()) {
492 DEBUG(dbgs() << "No Shrink wrap candidate found\n");
493 return false;
494 }
495 // No need to look for other instructions, this basic block
496 // will already be part of the handled region.
497 break;
498 }
499 }
500 if (!ArePointsInteresting()) {
501 // If the points are not interesting at this point, then they must be null
502 // because it means we did not encounter any frame/CSR related code.
503 // Otherwise, we would have returned from the previous loop.
504 assert(!Save && !Restore && "We miss a shrink-wrap opportunity?!");
505 DEBUG(dbgs() << "Nothing to shrink-wrap\n");
506 return false;
507 }
508
509 DEBUG(dbgs() << "\n ** Results **\nFrequency of the Entry: " << EntryFreq
510 << '\n');
511
Quentin Colombet80835882015-05-27 06:25:48 +0000512 const TargetFrameLowering *TFI = MF.getSubtarget().getFrameLowering();
Quentin Colombet61b305e2015-05-05 17:38:16 +0000513 do {
514 DEBUG(dbgs() << "Shrink wrap candidates (#, Name, Freq):\nSave: "
515 << Save->getNumber() << ' ' << Save->getName() << ' '
516 << MBFI->getBlockFreq(Save).getFrequency() << "\nRestore: "
517 << Restore->getNumber() << ' ' << Restore->getName() << ' '
518 << MBFI->getBlockFreq(Restore).getFrequency() << '\n');
519
Quentin Colombet80835882015-05-27 06:25:48 +0000520 bool IsSaveCheap, TargetCanUseSaveAsPrologue = false;
521 if (((IsSaveCheap = EntryFreq >= MBFI->getBlockFreq(Save).getFrequency()) &&
522 EntryFreq >= MBFI->getBlockFreq(Restore).getFrequency()) &&
523 ((TargetCanUseSaveAsPrologue = TFI->canUseAsPrologue(*Save)) &&
524 TFI->canUseAsEpilogue(*Restore)))
Quentin Colombet61b305e2015-05-05 17:38:16 +0000525 break;
Quentin Colombet80835882015-05-27 06:25:48 +0000526 DEBUG(dbgs() << "New points are too expensive or invalid for the target\n");
Quentin Colombet61b305e2015-05-05 17:38:16 +0000527 MachineBasicBlock *NewBB;
Quentin Colombet80835882015-05-27 06:25:48 +0000528 if (!IsSaveCheap || !TargetCanUseSaveAsPrologue) {
Quentin Colombet61b305e2015-05-05 17:38:16 +0000529 Save = FindIDom<>(*Save, Save->predecessors(), *MDT);
530 if (!Save)
531 break;
532 NewBB = Save;
533 } else {
534 // Restore is expensive.
535 Restore = FindIDom<>(*Restore, Restore->successors(), *MPDT);
536 if (!Restore)
537 break;
538 NewBB = Restore;
539 }
Arnaud A. de Grandmaison4e89e9f2015-11-20 21:54:27 +0000540 updateSaveRestorePoints(*NewBB, RS.get());
Quentin Colombet61b305e2015-05-05 17:38:16 +0000541 } while (Save && Restore);
542
543 if (!ArePointsInteresting()) {
544 ++NumCandidatesDropped;
545 return false;
546 }
547
548 DEBUG(dbgs() << "Final shrink wrap candidates:\nSave: " << Save->getNumber()
549 << ' ' << Save->getName() << "\nRestore: "
550 << Restore->getNumber() << ' ' << Restore->getName() << '\n');
551
Matthias Braun941a7052016-07-28 18:40:00 +0000552 MachineFrameInfo &MFI = MF.getFrameInfo();
553 MFI.setSavePoint(Save);
554 MFI.setRestorePoint(Restore);
Quentin Colombet61b305e2015-05-05 17:38:16 +0000555 ++NumCandidates;
556 return false;
557}
Kit Bartond3cc1672015-08-31 18:26:45 +0000558
559bool ShrinkWrap::isShrinkWrapEnabled(const MachineFunction &MF) {
560 const TargetFrameLowering *TFI = MF.getSubtarget().getFrameLowering();
561
562 switch (EnableShrinkWrapOpt) {
563 case cl::BOU_UNSET:
Quentin Colombet94dc1e02015-11-12 18:13:42 +0000564 return TFI->enableShrinkWrapping(MF) &&
Evgeniy Stepanovc667c1f2017-12-09 00:21:41 +0000565 // Windows with CFI has some limitations that make it impossible
566 // to use shrink-wrapping.
567 !MF.getTarget().getMCAsmInfo()->usesWindowsCFI() &&
568 // Sanitizers look at the value of the stack at the location
569 // of the crash. Since a crash can happen anywhere, the
570 // frame must be lowered before anything else happen for the
571 // sanitizers to be able to get a correct stack frame.
Matthias Braunf1caa282017-12-15 22:22:58 +0000572 !(MF.getFunction().hasFnAttribute(Attribute::SanitizeAddress) ||
573 MF.getFunction().hasFnAttribute(Attribute::SanitizeThread) ||
574 MF.getFunction().hasFnAttribute(Attribute::SanitizeMemory) ||
575 MF.getFunction().hasFnAttribute(Attribute::SanitizeHWAddress));
Kit Bartond3cc1672015-08-31 18:26:45 +0000576 // If EnableShrinkWrap is set, it takes precedence on whatever the
577 // target sets. The rational is that we assume we want to test
578 // something related to shrink-wrapping.
579 case cl::BOU_TRUE:
580 return true;
581 case cl::BOU_FALSE:
582 return false;
583 }
584 llvm_unreachable("Invalid shrink-wrapping state");
585}