blob: 5c4a89977c38856b44d0449ea117c9ec89e47da9 [file] [log] [blame]
Philip Reames47cc6732015-02-04 00:37:33 +00001//===- PlaceSafepoints.cpp - Place GC Safepoints --------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Philip Reames47cc6732015-02-04 00:37:33 +00006//
7//===----------------------------------------------------------------------===//
8//
9// Place garbage collection safepoints at appropriate locations in the IR. This
10// does not make relocation semantics or variable liveness explicit. That's
11// done by RewriteStatepointsForGC.
12//
Philip Reamesd4a912f2015-02-09 22:44:03 +000013// Terminology:
14// - A call is said to be "parseable" if there is a stack map generated for the
15// return PC of the call. A runtime can determine where values listed in the
16// deopt arguments and (after RewriteStatepointsForGC) gc arguments are located
17// on the stack when the code is suspended inside such a call. Every parse
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +000018// point is represented by a call wrapped in an gc.statepoint intrinsic.
Philip Reamesd4a912f2015-02-09 22:44:03 +000019// - A "poll" is an explicit check in the generated code to determine if the
20// runtime needs the generated code to cooperate by calling a helper routine
21// and thus suspending its execution at a known state. The call to the helper
22// routine will be parseable. The (gc & runtime specific) logic of a poll is
23// assumed to be provided in a function of the name "gc.safepoint_poll".
24//
25// We aim to insert polls such that running code can quickly be brought to a
26// well defined state for inspection by the collector. In the current
27// implementation, this is done via the insertion of poll sites at method entry
28// and the backedge of most loops. We try to avoid inserting more polls than
Benjamin Kramerdf005cb2015-08-08 18:27:36 +000029// are necessary to ensure a finite period between poll sites. This is not
Philip Reamesd4a912f2015-02-09 22:44:03 +000030// because the poll itself is expensive in the generated code; it's not. Polls
31// do tend to impact the optimizer itself in negative ways; we'd like to avoid
32// perturbing the optimization of the method as much as we can.
33//
34// We also need to make most call sites parseable. The callee might execute a
35// poll (or otherwise be inspected by the GC). If so, the entire stack
36// (including the suspended frame of the current method) must be parseable.
37//
Philip Reames47cc6732015-02-04 00:37:33 +000038// This pass will insert:
Philip Reamesd4a912f2015-02-09 22:44:03 +000039// - Call parse points ("call safepoints") for any call which may need to
40// reach a safepoint during the execution of the callee function.
41// - Backedge safepoint polls and entry safepoint polls to ensure that
42// executing code reaches a safepoint poll in a finite amount of time.
Philip Reames47cc6732015-02-04 00:37:33 +000043//
Philip Reamesd4a912f2015-02-09 22:44:03 +000044// We do not currently support return statepoints, but adding them would not
45// be hard. They are not required for correctness - entry safepoints are an
46// alternative - but some GCs may prefer them. Patches welcome.
Philip Reames47cc6732015-02-04 00:37:33 +000047//
48//===----------------------------------------------------------------------===//
49
Reid Kleckner05da2fe2019-11-13 13:15:01 -080050#include "llvm/InitializePasses.h"
Philip Reames47cc6732015-02-04 00:37:33 +000051#include "llvm/Pass.h"
Sanjoy Das360a4e42016-01-28 23:03:17 +000052
Philip Reames5708cca2015-05-12 20:43:48 +000053#include "llvm/ADT/SetVector.h"
Philip Reames47cc6732015-02-04 00:37:33 +000054#include "llvm/ADT/Statistic.h"
Philip Reames47cc6732015-02-04 00:37:33 +000055#include "llvm/Analysis/CFG.h"
Sanjoy Das360a4e42016-01-28 23:03:17 +000056#include "llvm/Analysis/ScalarEvolution.h"
Daniel Neilson2574d7c2017-07-27 16:49:39 +000057#include "llvm/Analysis/TargetLibraryInfo.h"
David Blaikie31b98d22018-06-04 21:23:21 +000058#include "llvm/Transforms/Utils/Local.h"
Philip Reames47cc6732015-02-04 00:37:33 +000059#include "llvm/IR/Dominators.h"
Philip Reames47cc6732015-02-04 00:37:33 +000060#include "llvm/IR/IntrinsicInst.h"
Sanjoy Das360a4e42016-01-28 23:03:17 +000061#include "llvm/IR/LegacyPassManager.h"
Philip Reames47cc6732015-02-04 00:37:33 +000062#include "llvm/IR/Statepoint.h"
Philip Reames47cc6732015-02-04 00:37:33 +000063#include "llvm/Support/CommandLine.h"
Sanjoy Das360a4e42016-01-28 23:03:17 +000064#include "llvm/Support/Debug.h"
Philip Reames47cc6732015-02-04 00:37:33 +000065#include "llvm/Transforms/Scalar.h"
66#include "llvm/Transforms/Utils/BasicBlockUtils.h"
67#include "llvm/Transforms/Utils/Cloning.h"
Philip Reames47cc6732015-02-04 00:37:33 +000068
69#define DEBUG_TYPE "safepoint-placement"
Sanjoy Dascd23fec2016-01-28 23:03:19 +000070
Philip Reames47cc6732015-02-04 00:37:33 +000071STATISTIC(NumEntrySafepoints, "Number of entry safepoints inserted");
Philip Reames47cc6732015-02-04 00:37:33 +000072STATISTIC(NumBackedgeSafepoints, "Number of backedge safepoints inserted");
73
Sanjoy Dascd23fec2016-01-28 23:03:19 +000074STATISTIC(CallInLoop,
75 "Number of loops without safepoints due to calls in loop");
76STATISTIC(FiniteExecution,
77 "Number of loops without safepoints finite execution");
Philip Reames47cc6732015-02-04 00:37:33 +000078
79using namespace llvm;
80
Benjamin Kramerdf005cb2015-08-08 18:27:36 +000081// Ignore opportunities to avoid placing safepoints on backedges, useful for
Philip Reames47cc6732015-02-04 00:37:33 +000082// validation
Philip Reames1f3e5c12015-02-20 23:32:03 +000083static cl::opt<bool> AllBackedges("spp-all-backedges", cl::Hidden,
84 cl::init(false));
Philip Reames47cc6732015-02-04 00:37:33 +000085
Sanjoy Dasf75e15e2015-09-15 01:42:48 +000086/// How narrow does the trip count of a loop have to be to have to be considered
87/// "counted"? Counted loops do not get safepoints at backedges.
88static cl::opt<int> CountedLoopTripWidth("spp-counted-loop-trip-width",
89 cl::Hidden, cl::init(32));
Philip Reames47cc6732015-02-04 00:37:33 +000090
91// If true, split the backedge of a loop when placing the safepoint, otherwise
92// split the latch block itself. Both are useful to support for
93// experimentation, but in practice, it looks like splitting the backedge
94// optimizes better.
Philip Reames1f3e5c12015-02-20 23:32:03 +000095static cl::opt<bool> SplitBackedge("spp-split-backedge", cl::Hidden,
96 cl::init(false));
Philip Reames47cc6732015-02-04 00:37:33 +000097
Philip Reames47cc6732015-02-04 00:37:33 +000098namespace {
99
Philip Reames9f129042015-05-12 21:09:36 +0000100/// An analysis pass whose purpose is to identify each of the backedges in
101/// the function which require a safepoint poll to be inserted.
102struct PlaceBackedgeSafepointsImpl : public FunctionPass {
Philip Reames47cc6732015-02-04 00:37:33 +0000103 static char ID;
104
105 /// The output of the pass - gives a list of each backedge (described by
106 /// pointing at the branch) which need a poll inserted.
Chandler Carruthedb12a82018-10-15 10:04:59 +0000107 std::vector<Instruction *> PollLocations;
Philip Reames47cc6732015-02-04 00:37:33 +0000108
109 /// True unless we're running spp-no-calls in which case we need to disable
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000110 /// the call-dependent placement opts.
Philip Reames47cc6732015-02-04 00:37:33 +0000111 bool CallSafepointsEnabled;
Philip Reames9f129042015-05-12 21:09:36 +0000112
113 ScalarEvolution *SE = nullptr;
114 DominatorTree *DT = nullptr;
115 LoopInfo *LI = nullptr;
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000116 TargetLibraryInfo *TLI = nullptr;
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000117
Philip Reames47cc6732015-02-04 00:37:33 +0000118 PlaceBackedgeSafepointsImpl(bool CallSafepoints = false)
Philip Reames9f129042015-05-12 21:09:36 +0000119 : FunctionPass(ID), CallSafepointsEnabled(CallSafepoints) {
Philip Reames5a9685d2015-02-04 00:39:57 +0000120 initializePlaceBackedgeSafepointsImplPass(*PassRegistry::getPassRegistry());
Philip Reames47cc6732015-02-04 00:37:33 +0000121 }
122
Philip Reames9f129042015-05-12 21:09:36 +0000123 bool runOnLoop(Loop *);
124 void runOnLoopAndSubLoops(Loop *L) {
125 // Visit all the subloops
Benjamin Kramer135f7352016-06-26 12:28:59 +0000126 for (Loop *I : *L)
127 runOnLoopAndSubLoops(I);
Philip Reames9f129042015-05-12 21:09:36 +0000128 runOnLoop(L);
129 }
Justin Bogner383749a2015-05-12 21:49:47 +0000130
131 bool runOnFunction(Function &F) override {
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000132 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Philip Reames9f129042015-05-12 21:09:36 +0000133 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
134 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Teresa Johnson9c27b592019-09-07 03:09:36 +0000135 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F);
Benjamin Kramer135f7352016-06-26 12:28:59 +0000136 for (Loop *I : *LI) {
137 runOnLoopAndSubLoops(I);
Philip Reames9f129042015-05-12 21:09:36 +0000138 }
139 return false;
140 }
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000141
Philip Reames47cc6732015-02-04 00:37:33 +0000142 void getAnalysisUsage(AnalysisUsage &AU) const override {
Philip Reames57bdac92015-05-12 20:56:33 +0000143 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000144 AU.addRequired<ScalarEvolutionWrapperPass>();
Philip Reames9f129042015-05-12 21:09:36 +0000145 AU.addRequired<LoopInfoWrapperPass>();
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000146 AU.addRequired<TargetLibraryInfoWrapperPass>();
Philip Reames47cc6732015-02-04 00:37:33 +0000147 // We no longer modify the IR at all in this pass. Thus all
148 // analysis are preserved.
149 AU.setPreservesAll();
150 }
151};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000152}
Philip Reames47cc6732015-02-04 00:37:33 +0000153
Philip Reames1f3e5c12015-02-20 23:32:03 +0000154static cl::opt<bool> NoEntry("spp-no-entry", cl::Hidden, cl::init(false));
155static cl::opt<bool> NoCall("spp-no-call", cl::Hidden, cl::init(false));
156static cl::opt<bool> NoBackedge("spp-no-backedge", cl::Hidden, cl::init(false));
Philip Reames47cc6732015-02-04 00:37:33 +0000157
158namespace {
Philip Reames7b981792015-05-12 21:21:18 +0000159struct PlaceSafepoints : public FunctionPass {
Philip Reames47cc6732015-02-04 00:37:33 +0000160 static char ID; // Pass identification, replacement for typeid
161
Philip Reames7b981792015-05-12 21:21:18 +0000162 PlaceSafepoints() : FunctionPass(ID) {
Philip Reames47cc6732015-02-04 00:37:33 +0000163 initializePlaceSafepointsPass(*PassRegistry::getPassRegistry());
Philip Reames47cc6732015-02-04 00:37:33 +0000164 }
Philip Reames7b981792015-05-12 21:21:18 +0000165 bool runOnFunction(Function &F) override;
Philip Reames47cc6732015-02-04 00:37:33 +0000166
167 void getAnalysisUsage(AnalysisUsage &AU) const override {
168 // We modify the graph wholesale (inlining, block insertion, etc). We
169 // preserve nothing at the moment. We could potentially preserve dom tree
170 // if that was worth doing
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000171 AU.addRequired<TargetLibraryInfoWrapperPass>();
Philip Reames47cc6732015-02-04 00:37:33 +0000172 }
173};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000174}
Philip Reames47cc6732015-02-04 00:37:33 +0000175
176// Insert a safepoint poll immediately before the given instruction. Does
177// not handle the parsability of state at the runtime call, that's the
178// callers job.
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000179static void
Philip Reames388402452015-05-26 21:03:23 +0000180InsertSafepointPoll(Instruction *InsertBefore,
Chandler Carruth31607342019-02-11 07:42:30 +0000181 std::vector<CallBase *> &ParsePointsNeeded /*rval*/,
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000182 const TargetLibraryInfo &TLI);
Philip Reames47cc6732015-02-04 00:37:33 +0000183
Chandler Carruth31607342019-02-11 07:42:30 +0000184static bool needsStatepoint(CallBase *Call, const TargetLibraryInfo &TLI) {
185 if (callsGCLeafFunction(Call, TLI))
Philip Reames47cc6732015-02-04 00:37:33 +0000186 return false;
Chandler Carruth31607342019-02-11 07:42:30 +0000187 if (auto *CI = dyn_cast<CallInst>(Call)) {
188 if (CI->isInlineAsm())
Philip Reames47cc6732015-02-04 00:37:33 +0000189 return false;
190 }
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000191
Chandler Carruth31607342019-02-11 07:42:30 +0000192 return !(isStatepoint(Call) || isGCRelocate(Call) || isGCResult(Call));
Philip Reames47cc6732015-02-04 00:37:33 +0000193}
194
Philip Reames47cc6732015-02-04 00:37:33 +0000195/// Returns true if this loop is known to contain a call safepoint which
196/// must unconditionally execute on any iteration of the loop which returns
197/// to the loop header via an edge from Pred. Returns a conservative correct
198/// answer; i.e. false is always valid.
199static bool containsUnconditionalCallSafepoint(Loop *L, BasicBlock *Header,
200 BasicBlock *Pred,
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000201 DominatorTree &DT,
202 const TargetLibraryInfo &TLI) {
Philip Reames47cc6732015-02-04 00:37:33 +0000203 // In general, we're looking for any cut of the graph which ensures
204 // there's a call safepoint along every edge between Header and Pred.
205 // For the moment, we look only for the 'cuts' that consist of a single call
206 // instruction in a block which is dominated by the Header and dominates the
207 // loop latch (Pred) block. Somewhat surprisingly, walking the entire chain
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000208 // of such dominating blocks gets substantially more occurrences than just
Philip Reames47cc6732015-02-04 00:37:33 +0000209 // checking the Pred and Header blocks themselves. This may be due to the
210 // density of loop exit conditions caused by range and null checks.
211 // TODO: structure this as an analysis pass, cache the result for subloops,
212 // avoid dom tree recalculations
213 assert(DT.dominates(Header, Pred) && "loop latch not dominated by header?");
214
215 BasicBlock *Current = Pred;
216 while (true) {
217 for (Instruction &I : *Current) {
Chandler Carruth31607342019-02-11 07:42:30 +0000218 if (auto *Call = dyn_cast<CallBase>(&I))
Philip Reames47cc6732015-02-04 00:37:33 +0000219 // Note: Technically, needing a safepoint isn't quite the right
220 // condition here. We should instead be checking if the target method
221 // has an
222 // unconditional poll. In practice, this is only a theoretical concern
223 // since we don't have any methods with conditional-only safepoint
224 // polls.
Chandler Carruth31607342019-02-11 07:42:30 +0000225 if (needsStatepoint(Call, TLI))
Philip Reames47cc6732015-02-04 00:37:33 +0000226 return true;
227 }
228
229 if (Current == Header)
230 break;
231 Current = DT.getNode(Current)->getIDom()->getBlock();
232 }
233
234 return false;
235}
236
237/// Returns true if this loop is known to terminate in a finite number of
238/// iterations. Note that this function may return false for a loop which
239/// does actual terminate in a finite constant number of iterations due to
240/// conservatism in the analysis.
241static bool mustBeFiniteCountedLoop(Loop *L, ScalarEvolution *SE,
Philip Reames5a9685d2015-02-04 00:39:57 +0000242 BasicBlock *Pred) {
Philip Reames47cc6732015-02-04 00:37:33 +0000243 // A conservative bound on the loop as a whole.
Philip Reames7b051512019-08-14 21:58:13 +0000244 const SCEV *MaxTrips = SE->getConstantMaxBackedgeTakenCount(L);
Sanjoy Dasf75e15e2015-09-15 01:42:48 +0000245 if (MaxTrips != SE->getCouldNotCompute() &&
246 SE->getUnsignedRange(MaxTrips).getUnsignedMax().isIntN(
247 CountedLoopTripWidth))
248 return true;
Philip Reames47cc6732015-02-04 00:37:33 +0000249
250 // If this is a conditional branch to the header with the alternate path
251 // being outside the loop, we can ask questions about the execution frequency
252 // of the exit block.
253 if (L->isLoopExiting(Pred)) {
254 // This returns an exact expression only. TODO: We really only need an
255 // upper bound here, but SE doesn't expose that.
256 const SCEV *MaxExec = SE->getExitCount(L, Pred);
Sanjoy Dasf75e15e2015-09-15 01:42:48 +0000257 if (MaxExec != SE->getCouldNotCompute() &&
258 SE->getUnsignedRange(MaxExec).getUnsignedMax().isIntN(
259 CountedLoopTripWidth))
Philip Reames47cc6732015-02-04 00:37:33 +0000260 return true;
Philip Reames47cc6732015-02-04 00:37:33 +0000261 }
262
263 return /* not finite */ false;
264}
265
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000266static void scanOneBB(Instruction *Start, Instruction *End,
267 std::vector<CallInst *> &Calls,
268 DenseSet<BasicBlock *> &Seen,
269 std::vector<BasicBlock *> &Worklist) {
270 for (BasicBlock::iterator BBI(Start), BBE0 = Start->getParent()->end(),
271 BBE1 = BasicBlock::iterator(End);
272 BBI != BBE0 && BBI != BBE1; BBI++) {
273 if (CallInst *CI = dyn_cast<CallInst>(&*BBI))
274 Calls.push_back(CI);
275
Philip Reames47cc6732015-02-04 00:37:33 +0000276 // FIXME: This code does not handle invokes
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000277 assert(!isa<InvokeInst>(&*BBI) &&
Philip Reames47cc6732015-02-04 00:37:33 +0000278 "support for invokes in poll code needed");
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000279
Philip Reames47cc6732015-02-04 00:37:33 +0000280 // Only add the successor blocks if we reach the terminator instruction
281 // without encountering end first
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000282 if (BBI->isTerminator()) {
283 BasicBlock *BB = BBI->getParent();
Philip Reamesa29de872015-02-09 22:26:11 +0000284 for (BasicBlock *Succ : successors(BB)) {
Benjamin Kramer4dea8f52016-06-17 18:59:41 +0000285 if (Seen.insert(Succ).second) {
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000286 Worklist.push_back(Succ);
Philip Reames47cc6732015-02-04 00:37:33 +0000287 }
288 }
289 }
290 }
291}
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000292
293static void scanInlinedCode(Instruction *Start, Instruction *End,
294 std::vector<CallInst *> &Calls,
295 DenseSet<BasicBlock *> &Seen) {
296 Calls.clear();
297 std::vector<BasicBlock *> Worklist;
298 Seen.insert(Start->getParent());
299 scanOneBB(Start, End, Calls, Seen, Worklist);
300 while (!Worklist.empty()) {
301 BasicBlock *BB = Worklist.back();
302 Worklist.pop_back();
303 scanOneBB(&*BB->begin(), End, Calls, Seen, Worklist);
Philip Reames47cc6732015-02-04 00:37:33 +0000304 }
305}
306
Philip Reames9f129042015-05-12 21:09:36 +0000307bool PlaceBackedgeSafepointsImpl::runOnLoop(Loop *L) {
Philip Reames5708cca2015-05-12 20:43:48 +0000308 // Loop through all loop latches (branches controlling backedges). We need
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000309 // to place a safepoint on every backedge (potentially).
Philip Reames5708cca2015-05-12 20:43:48 +0000310 // Note: In common usage, there will be only one edge due to LoopSimplify
311 // having run sometime earlier in the pipeline, but this code must be correct
312 // w.r.t. loops with multiple backedges.
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000313 BasicBlock *Header = L->getHeader();
Philip Reames5708cca2015-05-12 20:43:48 +0000314 SmallVector<BasicBlock*, 16> LoopLatches;
315 L->getLoopLatches(LoopLatches);
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000316 for (BasicBlock *Pred : LoopLatches) {
317 assert(L->contains(Pred));
Philip Reames47cc6732015-02-04 00:37:33 +0000318
319 // Make a policy decision about whether this loop needs a safepoint or
320 // not. Note that this is about unburdening the optimizer in loops, not
321 // avoiding the runtime cost of the actual safepoint.
322 if (!AllBackedges) {
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000323 if (mustBeFiniteCountedLoop(L, SE, Pred)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000324 LLVM_DEBUG(dbgs() << "skipping safepoint placement in finite loop\n");
Philip Reames47cc6732015-02-04 00:37:33 +0000325 FiniteExecution++;
326 continue;
327 }
328 if (CallSafepointsEnabled &&
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000329 containsUnconditionalCallSafepoint(L, Header, Pred, *DT, *TLI)) {
Philip Reames47cc6732015-02-04 00:37:33 +0000330 // Note: This is only semantically legal since we won't do any further
331 // IPO or inlining before the actual call insertion.. If we hadn't, we
332 // might latter loose this call safepoint.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000333 LLVM_DEBUG(
334 dbgs()
335 << "skipping safepoint placement due to unconditional call\n");
Philip Reames47cc6732015-02-04 00:37:33 +0000336 CallInLoop++;
337 continue;
338 }
339 }
340
341 // TODO: We can create an inner loop which runs a finite number of
342 // iterations with an outer loop which contains a safepoint. This would
343 // not help runtime performance that much, but it might help our ability to
344 // optimize the inner loop.
345
Philip Reames47cc6732015-02-04 00:37:33 +0000346 // Safepoint insertion would involve creating a new basic block (as the
347 // target of the current backedge) which does the safepoint (of all live
348 // variables) and branches to the true header
Chandler Carruthedb12a82018-10-15 10:04:59 +0000349 Instruction *Term = Pred->getTerminator();
Philip Reames47cc6732015-02-04 00:37:33 +0000350
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000351 LLVM_DEBUG(dbgs() << "[LSP] terminator instruction: " << *Term);
Philip Reames47cc6732015-02-04 00:37:33 +0000352
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000353 PollLocations.push_back(Term);
Philip Reames47cc6732015-02-04 00:37:33 +0000354 }
355
Philip Reames5708cca2015-05-12 20:43:48 +0000356 return false;
Philip Reames47cc6732015-02-04 00:37:33 +0000357}
358
Philip Reamesd97cdf22015-05-19 23:40:11 +0000359/// Returns true if an entry safepoint is not required before this callsite in
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000360/// the caller function.
Chandler Carruth31607342019-02-11 07:42:30 +0000361static bool doesNotRequireEntrySafepointBefore(CallBase *Call) {
362 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Call)) {
Philip Reamesd97cdf22015-05-19 23:40:11 +0000363 switch (II->getIntrinsicID()) {
364 case Intrinsic::experimental_gc_statepoint:
365 case Intrinsic::experimental_patchpoint_void:
366 case Intrinsic::experimental_patchpoint_i64:
367 // The can wrap an actual call which may grow the stack by an unbounded
368 // amount or run forever.
369 return false;
370 default:
371 // Most LLVM intrinsics are things which do not expand to actual calls, or
372 // at least if they do, are leaf functions that cause only finite stack
373 // growth. In particular, the optimizer likes to form things like memsets
374 // out of stores in the original IR. Another important example is
Reid Kleckner60381792015-07-07 22:25:32 +0000375 // llvm.localescape which must occur in the entry block. Inserting a
376 // safepoint before it is not legal since it could push the localescape
Philip Reamesd97cdf22015-05-19 23:40:11 +0000377 // out of the entry block.
378 return true;
379 }
380 }
381 return false;
382}
383
Philip Reames47cc6732015-02-04 00:37:33 +0000384static Instruction *findLocationForEntrySafepoint(Function &F,
385 DominatorTree &DT) {
386
387 // Conceptually, this poll needs to be on method entry, but in
388 // practice, we place it as late in the entry block as possible. We
389 // can place it as late as we want as long as it dominates all calls
390 // that can grow the stack. This, combined with backedge polls,
391 // give us all the progress guarantees we need.
392
Philip Reames47cc6732015-02-04 00:37:33 +0000393 // hasNextInstruction and nextInstruction are used to iterate
394 // through a "straight line" execution sequence.
395
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000396 auto HasNextInstruction = [](Instruction *I) {
397 if (!I->isTerminator())
Philip Reames47cc6732015-02-04 00:37:33 +0000398 return true;
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000399
Philip Reames47cc6732015-02-04 00:37:33 +0000400 BasicBlock *nextBB = I->getParent()->getUniqueSuccessor();
401 return nextBB && (nextBB->getUniquePredecessor() != nullptr);
402 };
403
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000404 auto NextInstruction = [&](Instruction *I) {
405 assert(HasNextInstruction(I) &&
Philip Reames47cc6732015-02-04 00:37:33 +0000406 "first check if there is a next instruction!");
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000407
408 if (I->isTerminator())
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000409 return &I->getParent()->getUniqueSuccessor()->front();
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000410 return &*++I->getIterator();
Philip Reames47cc6732015-02-04 00:37:33 +0000411 };
412
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000413 Instruction *Cursor = nullptr;
414 for (Cursor = &F.getEntryBlock().front(); HasNextInstruction(Cursor);
415 Cursor = NextInstruction(Cursor)) {
Philip Reames47cc6732015-02-04 00:37:33 +0000416
Philip Reamesd97cdf22015-05-19 23:40:11 +0000417 // We need to ensure a safepoint poll occurs before any 'real' call. The
418 // easiest way to ensure finite execution between safepoints in the face of
419 // recursive and mutually recursive functions is to enforce that each take
420 // a safepoint. Additionally, we need to ensure a poll before any call
421 // which can grow the stack by an unbounded amount. This isn't required
422 // for GC semantics per se, but is a common requirement for languages
423 // which detect stack overflow via guard pages and then throw exceptions.
Chandler Carruth31607342019-02-11 07:42:30 +0000424 if (auto *Call = dyn_cast<CallBase>(Cursor)) {
425 if (doesNotRequireEntrySafepointBefore(Call))
Philip Reamesd97cdf22015-05-19 23:40:11 +0000426 continue;
Philip Reames47cc6732015-02-04 00:37:33 +0000427 break;
428 }
429 }
430
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000431 assert((HasNextInstruction(Cursor) || Cursor->isTerminator()) &&
Philip Reames5a9685d2015-02-04 00:39:57 +0000432 "either we stopped because of a call, or because of terminator");
Philip Reames47cc6732015-02-04 00:37:33 +0000433
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000434 return Cursor;
Philip Reames47cc6732015-02-04 00:37:33 +0000435}
436
Benjamin Kramer82f86522015-06-07 16:36:28 +0000437static const char *const GCSafepointPollName = "gc.safepoint_poll";
Philip Reamesb1ed02f2015-02-09 21:48:05 +0000438
439static bool isGCSafepointPoll(Function &F) {
440 return F.getName().equals(GCSafepointPollName);
441}
442
Philip Reames0b1b3872015-02-21 00:09:09 +0000443/// Returns true if this function should be rewritten to include safepoint
444/// polls and parseable call sites. The main point of this function is to be
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000445/// an extension point for custom logic.
Philip Reames0b1b3872015-02-21 00:09:09 +0000446static bool shouldRewriteFunction(Function &F) {
447 // TODO: This should check the GCStrategy
448 if (F.hasGC()) {
Mehdi Amini599ebf22016-01-08 02:28:20 +0000449 const auto &FunctionGCName = F.getGC();
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000450 const StringRef StatepointExampleName("statepoint-example");
451 const StringRef CoreCLRName("coreclr");
452 return (StatepointExampleName == FunctionGCName) ||
NAKAMURA Takumi5582a6a2015-05-25 01:43:34 +0000453 (CoreCLRName == FunctionGCName);
Philip Reames0b1b3872015-02-21 00:09:09 +0000454 } else
455 return false;
456}
457
458// TODO: These should become properties of the GCStrategy, possibly with
459// command line overrides.
460static bool enableEntrySafepoints(Function &F) { return !NoEntry; }
461static bool enableBackedgeSafepoints(Function &F) { return !NoBackedge; }
462static bool enableCallSafepoints(Function &F) { return !NoCall; }
463
Philip Reames47cc6732015-02-04 00:37:33 +0000464bool PlaceSafepoints::runOnFunction(Function &F) {
465 if (F.isDeclaration() || F.empty()) {
466 // This is a declaration, nothing to do. Must exit early to avoid crash in
467 // dom tree calculation
468 return false;
469 }
470
Philip Reames7e7dc3e2015-02-10 00:04:53 +0000471 if (isGCSafepointPoll(F)) {
472 // Given we're inlining this inside of safepoint poll insertion, this
473 // doesn't make any sense. Note that we do make any contained calls
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000474 // parseable after we inline a poll.
Philip Reames7e7dc3e2015-02-10 00:04:53 +0000475 return false;
476 }
477
Philip Reames0b1b3872015-02-21 00:09:09 +0000478 if (!shouldRewriteFunction(F))
479 return false;
480
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000481 const TargetLibraryInfo &TLI =
Teresa Johnson9c27b592019-09-07 03:09:36 +0000482 getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F);
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000483
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000484 bool Modified = false;
Philip Reames47cc6732015-02-04 00:37:33 +0000485
486 // In various bits below, we rely on the fact that uses are reachable from
487 // defs. When there are basic blocks unreachable from the entry, dominance
488 // and reachablity queries return non-sensical results. Thus, we preprocess
489 // the function to ensure these properties hold.
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000490 Modified |= removeUnreachableBlocks(F);
Philip Reames47cc6732015-02-04 00:37:33 +0000491
492 // STEP 1 - Insert the safepoint polling locations. We do not need to
493 // actually insert parse points yet. That will be done for all polls and
494 // calls in a single pass.
495
Philip Reames47cc6732015-02-04 00:37:33 +0000496 DominatorTree DT;
Philip Reames4d1a3ef2015-05-13 00:32:23 +0000497 DT.recalculate(F);
Philip Reames47cc6732015-02-04 00:37:33 +0000498
Philip Reames4d1a3ef2015-05-13 00:32:23 +0000499 SmallVector<Instruction *, 16> PollsNeeded;
Chandler Carruth31607342019-02-11 07:42:30 +0000500 std::vector<CallBase *> ParsePointNeeded;
Philip Reames47cc6732015-02-04 00:37:33 +0000501
Philip Reames0b1b3872015-02-21 00:09:09 +0000502 if (enableBackedgeSafepoints(F)) {
Philip Reames47cc6732015-02-04 00:37:33 +0000503 // Construct a pass manager to run the LoopPass backedge logic. We
504 // need the pass manager to handle scheduling all the loop passes
505 // appropriately. Doing this by hand is painful and just not worth messing
506 // with for the moment.
Chandler Carruth30d69c22015-02-13 10:01:29 +0000507 legacy::FunctionPassManager FPM(F.getParent());
Philip Reames0b1b3872015-02-21 00:09:09 +0000508 bool CanAssumeCallSafepoints = enableCallSafepoints(F);
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000509 auto *PBS = new PlaceBackedgeSafepointsImpl(CanAssumeCallSafepoints);
Philip Reames47cc6732015-02-04 00:37:33 +0000510 FPM.add(PBS);
Philip Reames47cc6732015-02-04 00:37:33 +0000511 FPM.run(F);
512
513 // We preserve dominance information when inserting the poll, otherwise
514 // we'd have to recalculate this on every insert
515 DT.recalculate(F);
516
Philip Reames5708cca2015-05-12 20:43:48 +0000517 auto &PollLocations = PBS->PollLocations;
518
519 auto OrderByBBName = [](Instruction *a, Instruction *b) {
520 return a->getParent()->getName() < b->getParent()->getName();
521 };
522 // We need the order of list to be stable so that naming ends up stable
523 // when we split edges. This makes test cases much easier to write.
Fangrui Song0cac7262018-09-27 02:13:45 +0000524 llvm::sort(PollLocations, OrderByBBName);
Philip Reames5708cca2015-05-12 20:43:48 +0000525
526 // We can sometimes end up with duplicate poll locations. This happens if
527 // a single loop is visited more than once. The fact this happens seems
528 // wrong, but it does happen for the split-backedge.ll test case.
529 PollLocations.erase(std::unique(PollLocations.begin(),
530 PollLocations.end()),
531 PollLocations.end());
532
Philip Reames47cc6732015-02-04 00:37:33 +0000533 // Insert a poll at each point the analysis pass identified
Philip Reames89fe5702015-05-12 23:39:23 +0000534 // The poll location must be the terminator of a loop latch block.
Chandler Carruthedb12a82018-10-15 10:04:59 +0000535 for (Instruction *Term : PollLocations) {
Philip Reames47cc6732015-02-04 00:37:33 +0000536 // We are inserting a poll, the function is modified
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000537 Modified = true;
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000538
Philip Reames47cc6732015-02-04 00:37:33 +0000539 if (SplitBackedge) {
540 // Split the backedge of the loop and insert the poll within that new
541 // basic block. This creates a loop with two latches per original
542 // latch (which is non-ideal), but this appears to be easier to
543 // optimize in practice than inserting the poll immediately before the
544 // latch test.
545
546 // Since this is a latch, at least one of the successors must dominate
547 // it. Its possible that we have a) duplicate edges to the same header
548 // and b) edges to distinct loop headers. We need to insert pools on
Philip Reames5708cca2015-05-12 20:43:48 +0000549 // each.
550 SetVector<BasicBlock *> Headers;
Philip Reames47cc6732015-02-04 00:37:33 +0000551 for (unsigned i = 0; i < Term->getNumSuccessors(); i++) {
552 BasicBlock *Succ = Term->getSuccessor(i);
553 if (DT.dominates(Succ, Term->getParent())) {
554 Headers.insert(Succ);
555 }
556 }
557 assert(!Headers.empty() && "poll location is not a loop latch?");
558
559 // The split loop structure here is so that we only need to recalculate
560 // the dominator tree once. Alternatively, we could just keep it up to
561 // date and use a more natural merged loop.
Philip Reames5708cca2015-05-12 20:43:48 +0000562 SetVector<BasicBlock *> SplitBackedges;
Philip Reames47cc6732015-02-04 00:37:33 +0000563 for (BasicBlock *Header : Headers) {
Philip Reames89fe5702015-05-12 23:39:23 +0000564 BasicBlock *NewBB = SplitEdge(Term->getParent(), Header, &DT);
Philip Reames4d1a3ef2015-05-13 00:32:23 +0000565 PollsNeeded.push_back(NewBB->getTerminator());
Philip Reames47cc6732015-02-04 00:37:33 +0000566 NumBackedgeSafepoints++;
567 }
Philip Reames47cc6732015-02-04 00:37:33 +0000568 } else {
569 // Split the latch block itself, right before the terminator.
Philip Reames4d1a3ef2015-05-13 00:32:23 +0000570 PollsNeeded.push_back(Term);
Philip Reames47cc6732015-02-04 00:37:33 +0000571 NumBackedgeSafepoints++;
572 }
Philip Reames47cc6732015-02-04 00:37:33 +0000573 }
574 }
575
Philip Reames0b1b3872015-02-21 00:09:09 +0000576 if (enableEntrySafepoints(F)) {
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000577 if (Instruction *Location = findLocationForEntrySafepoint(F, DT)) {
Philip Reames4d1a3ef2015-05-13 00:32:23 +0000578 PollsNeeded.push_back(Location);
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000579 Modified = true;
Philip Reames47cc6732015-02-04 00:37:33 +0000580 NumEntrySafepoints++;
Philip Reames47cc6732015-02-04 00:37:33 +0000581 }
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000582 // TODO: else we should assert that there was, in fact, a policy choice to
583 // not insert a entry safepoint poll.
Philip Reames47cc6732015-02-04 00:37:33 +0000584 }
585
Philip Reames4d1a3ef2015-05-13 00:32:23 +0000586 // Now that we've identified all the needed safepoint poll locations, insert
587 // safepoint polls themselves.
588 for (Instruction *PollLocation : PollsNeeded) {
Chandler Carruth31607342019-02-11 07:42:30 +0000589 std::vector<CallBase *> RuntimeCalls;
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000590 InsertSafepointPoll(PollLocation, RuntimeCalls, TLI);
Philip Reames4d1a3ef2015-05-13 00:32:23 +0000591 ParsePointNeeded.insert(ParsePointNeeded.end(), RuntimeCalls.begin(),
592 RuntimeCalls.end());
593 }
Sanjoy Das95639742016-01-22 21:02:55 +0000594
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000595 return Modified;
Philip Reames47cc6732015-02-04 00:37:33 +0000596}
597
598char PlaceBackedgeSafepointsImpl::ID = 0;
599char PlaceSafepoints::ID = 0;
600
Philip Reames7b981792015-05-12 21:21:18 +0000601FunctionPass *llvm::createPlaceSafepointsPass() {
602 return new PlaceSafepoints();
603}
Philip Reames47cc6732015-02-04 00:37:33 +0000604
605INITIALIZE_PASS_BEGIN(PlaceBackedgeSafepointsImpl,
606 "place-backedge-safepoints-impl",
607 "Place Backedge Safepoints", false, false)
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000608INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Philip Reames57bdac92015-05-12 20:56:33 +0000609INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Philip Reames9f129042015-05-12 21:09:36 +0000610INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Philip Reames47cc6732015-02-04 00:37:33 +0000611INITIALIZE_PASS_END(PlaceBackedgeSafepointsImpl,
612 "place-backedge-safepoints-impl",
613 "Place Backedge Safepoints", false, false)
614
615INITIALIZE_PASS_BEGIN(PlaceSafepoints, "place-safepoints", "Place Safepoints",
616 false, false)
617INITIALIZE_PASS_END(PlaceSafepoints, "place-safepoints", "Place Safepoints",
618 false, false)
619
Philip Reames5a9685d2015-02-04 00:39:57 +0000620static void
Philip Reames388402452015-05-26 21:03:23 +0000621InsertSafepointPoll(Instruction *InsertBefore,
Chandler Carruth31607342019-02-11 07:42:30 +0000622 std::vector<CallBase *> &ParsePointsNeeded /*rval*/,
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000623 const TargetLibraryInfo &TLI) {
Philip Reames388402452015-05-26 21:03:23 +0000624 BasicBlock *OrigBB = InsertBefore->getParent();
625 Module *M = InsertBefore->getModule();
626 assert(M && "must be part of a module");
Philip Reames47cc6732015-02-04 00:37:33 +0000627
628 // Inline the safepoint poll implementation - this will get all the branch,
629 // control flow, etc.. Most importantly, it will introduce the actual slow
630 // path call - where we need to insert a safepoint (parsepoint).
Philip Reames388402452015-05-26 21:03:23 +0000631
632 auto *F = M->getFunction(GCSafepointPollName);
Manuel Jacobe3773d62015-12-29 21:57:55 +0000633 assert(F && "gc.safepoint_poll function is missing");
Manuel Jacob5f6eaac2016-01-16 20:30:46 +0000634 assert(F->getValueType() ==
Philip Reames388402452015-05-26 21:03:23 +0000635 FunctionType::get(Type::getVoidTy(M->getContext()), false) &&
636 "gc.safepoint_poll declared with wrong type");
Ramkumar Ramachandra3edf74f2015-02-09 23:02:10 +0000637 assert(!F->empty() && "gc.safepoint_poll must be a non-empty function");
Philip Reames388402452015-05-26 21:03:23 +0000638 CallInst *PollCall = CallInst::Create(F, "", InsertBefore);
Philip Reames47cc6732015-02-04 00:37:33 +0000639
640 // Record some information about the call site we're replacing
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000641 BasicBlock::iterator Before(PollCall), After(PollCall);
642 bool IsBegin = false;
643 if (Before == OrigBB->begin())
644 IsBegin = true;
645 else
646 Before--;
Philip Reames47cc6732015-02-04 00:37:33 +0000647
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000648 After++;
649 assert(After != OrigBB->end() && "must have successor");
650
651 // Do the actual inlining
Philip Reames47cc6732015-02-04 00:37:33 +0000652 InlineFunctionInfo IFI;
Philip Reames388402452015-05-26 21:03:23 +0000653 bool InlineStatus = InlineFunction(PollCall, IFI);
654 assert(InlineStatus && "inline must succeed");
655 (void)InlineStatus; // suppress warning in release-asserts
Philip Reames47cc6732015-02-04 00:37:33 +0000656
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000657 // Check post-conditions
Philip Reames47cc6732015-02-04 00:37:33 +0000658 assert(IFI.StaticAllocas.empty() && "can't have allocs");
659
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000660 std::vector<CallInst *> Calls; // new calls
661 DenseSet<BasicBlock *> BBs; // new BBs + insertee
662
Philip Reames47cc6732015-02-04 00:37:33 +0000663 // Include only the newly inserted instructions, Note: begin may not be valid
664 // if we inserted to the beginning of the basic block
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000665 BasicBlock::iterator Start = IsBegin ? OrigBB->begin() : std::next(Before);
Philip Reames47cc6732015-02-04 00:37:33 +0000666
667 // If your poll function includes an unreachable at the end, that's not
668 // valid. Bugpoint likes to create this, so check for it.
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000669 assert(isPotentiallyReachable(&*Start, &*After) &&
Philip Reames47cc6732015-02-04 00:37:33 +0000670 "malformed poll function");
671
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000672 scanInlinedCode(&*Start, &*After, Calls, BBs);
673 assert(!Calls.empty() && "slow path not found for safepoint poll");
Philip Reames47cc6732015-02-04 00:37:33 +0000674
675 // Record the fact we need a parsable state at the runtime call contained in
676 // the poll function. This is required so that the runtime knows how to
677 // parse the last frame when we actually take the safepoint (i.e. execute
678 // the slow path)
679 assert(ParsePointsNeeded.empty());
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000680 for (auto *CI : Calls) {
Philip Reames47cc6732015-02-04 00:37:33 +0000681 // No safepoint needed or wanted
Daniel Neilson2574d7c2017-07-27 16:49:39 +0000682 if (!needsStatepoint(CI, TLI))
Philip Reames47cc6732015-02-04 00:37:33 +0000683 continue;
Philip Reames47cc6732015-02-04 00:37:33 +0000684
685 // These are likely runtime calls. Should we assert that via calling
686 // convention or something?
Chandler Carruth31607342019-02-11 07:42:30 +0000687 ParsePointsNeeded.push_back(CI);
Philip Reames47cc6732015-02-04 00:37:33 +0000688 }
Sanjoy Dascd23fec2016-01-28 23:03:19 +0000689 assert(ParsePointsNeeded.size() <= Calls.size());
Philip Reames47cc6732015-02-04 00:37:33 +0000690}