1 //===- Inliner.cpp - Code common to all inliners --------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the mechanics required to implement inlining without
10 // missing any calls and updating the call graph.  The decisions of which calls
11 // are profitable to inline are implemented elsewhere.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "llvm/Transforms/IPO/Inliner.h"
16 #include "llvm/ADT/DenseMap.h"
17 #include "llvm/ADT/Optional.h"
18 #include "llvm/ADT/PriorityWorklist.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/ScopeExit.h"
21 #include "llvm/ADT/SetVector.h"
22 #include "llvm/ADT/SmallPtrSet.h"
23 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/ADT/StringRef.h"
27 #include "llvm/Analysis/AssumptionCache.h"
28 #include "llvm/Analysis/BasicAliasAnalysis.h"
29 #include "llvm/Analysis/BlockFrequencyInfo.h"
30 #include "llvm/Analysis/CGSCCPassManager.h"
31 #include "llvm/Analysis/CallGraph.h"
32 #include "llvm/Analysis/InlineAdvisor.h"
33 #include "llvm/Analysis/InlineCost.h"
34 #include "llvm/Analysis/InlineOrder.h"
35 #include "llvm/Analysis/LazyCallGraph.h"
36 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
37 #include "llvm/Analysis/ProfileSummaryInfo.h"
38 #include "llvm/Analysis/ReplayInlineAdvisor.h"
39 #include "llvm/Analysis/TargetLibraryInfo.h"
40 #include "llvm/Analysis/Utils/ImportedFunctionsInliningStatistics.h"
41 #include "llvm/IR/Attributes.h"
42 #include "llvm/IR/BasicBlock.h"
43 #include "llvm/IR/DebugLoc.h"
44 #include "llvm/IR/DerivedTypes.h"
45 #include "llvm/IR/DiagnosticInfo.h"
46 #include "llvm/IR/Function.h"
47 #include "llvm/IR/InstIterator.h"
48 #include "llvm/IR/Instruction.h"
49 #include "llvm/IR/Instructions.h"
50 #include "llvm/IR/IntrinsicInst.h"
51 #include "llvm/IR/Metadata.h"
52 #include "llvm/IR/Module.h"
53 #include "llvm/IR/PassManager.h"
54 #include "llvm/IR/User.h"
55 #include "llvm/IR/Value.h"
56 #include "llvm/Pass.h"
57 #include "llvm/Support/Casting.h"
58 #include "llvm/Support/CommandLine.h"
59 #include "llvm/Support/Debug.h"
60 #include "llvm/Support/raw_ostream.h"
61 #include "llvm/Transforms/Utils/CallPromotionUtils.h"
62 #include "llvm/Transforms/Utils/Cloning.h"
63 #include "llvm/Transforms/Utils/Local.h"
64 #include "llvm/Transforms/Utils/ModuleUtils.h"
65 #include <algorithm>
66 #include <cassert>
67 #include <functional>
68 #include <utility>
69 #include <vector>
70 
71 using namespace llvm;
72 
73 #define DEBUG_TYPE "inline"
74 
75 STATISTIC(NumInlined, "Number of functions inlined");
76 STATISTIC(NumCallsDeleted, "Number of call sites deleted, not inlined");
77 STATISTIC(NumDeleted, "Number of functions deleted because all callers found");
78 STATISTIC(NumMergedAllocas, "Number of allocas merged together");
79 
80 /// Flag to disable manual alloca merging.
81 ///
82 /// Merging of allocas was originally done as a stack-size saving technique
83 /// prior to LLVM's code generator having support for stack coloring based on
84 /// lifetime markers. It is now in the process of being removed. To experiment
85 /// with disabling it and relying fully on lifetime marker based stack
86 /// coloring, you can pass this flag to LLVM.
87 static cl::opt<bool>
88     DisableInlinedAllocaMerging("disable-inlined-alloca-merging",
89                                 cl::init(false), cl::Hidden);
90 
91 static cl::opt<int> IntraSCCCostMultiplier(
92     "intra-scc-cost-multiplier", cl::init(2), cl::Hidden,
93     cl::desc(
94         "Cost multiplier to multiply onto inlined call sites where the "
95         "new call was previously an intra-SCC call (not relevant when the "
96         "original call was already intra-SCC). This can accumulate over "
97         "multiple inlinings (e.g. if a call site already had a cost "
98         "multiplier and one of its inlined calls was also subject to "
99         "this, the inlined call would have the original multiplier "
100         "multiplied by intra-scc-cost-multiplier). This is to prevent tons of "
101         "inlining through a child SCC which can cause terrible compile times"));
102 
103 /// A flag for test, so we can print the content of the advisor when running it
104 /// as part of the default (e.g. -O3) pipeline.
105 static cl::opt<bool> KeepAdvisorForPrinting("keep-inline-advisor-for-printing",
106                                             cl::init(false), cl::Hidden);
107 
108 /// Allows printing the contents of the advisor after each SCC inliner pass.
109 static cl::opt<bool>
110     EnablePostSCCAdvisorPrinting("enable-scc-inline-advisor-printing",
111                                  cl::init(false), cl::Hidden);
112 
113 extern cl::opt<InlinerFunctionImportStatsOpts> InlinerFunctionImportStats;
114 
115 static cl::opt<std::string> CGSCCInlineReplayFile(
116     "cgscc-inline-replay", cl::init(""), cl::value_desc("filename"),
117     cl::desc(
118         "Optimization remarks file containing inline remarks to be replayed "
119         "by cgscc inlining."),
120     cl::Hidden);
121 
122 static cl::opt<ReplayInlinerSettings::Scope> CGSCCInlineReplayScope(
123     "cgscc-inline-replay-scope",
124     cl::init(ReplayInlinerSettings::Scope::Function),
125     cl::values(clEnumValN(ReplayInlinerSettings::Scope::Function, "Function",
126                           "Replay on functions that have remarks associated "
127                           "with them (default)"),
128                clEnumValN(ReplayInlinerSettings::Scope::Module, "Module",
129                           "Replay on the entire module")),
130     cl::desc("Whether inline replay should be applied to the entire "
131              "Module or just the Functions (default) that are present as "
132              "callers in remarks during cgscc inlining."),
133     cl::Hidden);
134 
135 static cl::opt<ReplayInlinerSettings::Fallback> CGSCCInlineReplayFallback(
136     "cgscc-inline-replay-fallback",
137     cl::init(ReplayInlinerSettings::Fallback::Original),
138     cl::values(
139         clEnumValN(
140             ReplayInlinerSettings::Fallback::Original, "Original",
141             "All decisions not in replay send to original advisor (default)"),
142         clEnumValN(ReplayInlinerSettings::Fallback::AlwaysInline,
143                    "AlwaysInline", "All decisions not in replay are inlined"),
144         clEnumValN(ReplayInlinerSettings::Fallback::NeverInline, "NeverInline",
145                    "All decisions not in replay are not inlined")),
146     cl::desc(
147         "How cgscc inline replay treats sites that don't come from the replay. "
148         "Original: defers to original advisor, AlwaysInline: inline all sites "
149         "not in replay, NeverInline: inline no sites not in replay"),
150     cl::Hidden);
151 
152 static cl::opt<CallSiteFormat::Format> CGSCCInlineReplayFormat(
153     "cgscc-inline-replay-format",
154     cl::init(CallSiteFormat::Format::LineColumnDiscriminator),
155     cl::values(
156         clEnumValN(CallSiteFormat::Format::Line, "Line", "<Line Number>"),
157         clEnumValN(CallSiteFormat::Format::LineColumn, "LineColumn",
158                    "<Line Number>:<Column Number>"),
159         clEnumValN(CallSiteFormat::Format::LineDiscriminator,
160                    "LineDiscriminator", "<Line Number>.<Discriminator>"),
161         clEnumValN(CallSiteFormat::Format::LineColumnDiscriminator,
162                    "LineColumnDiscriminator",
163                    "<Line Number>:<Column Number>.<Discriminator> (default)")),
164     cl::desc("How cgscc inline replay file is formatted"), cl::Hidden);
165 
166 LegacyInlinerBase::LegacyInlinerBase(char &ID) : CallGraphSCCPass(ID) {}
167 
168 LegacyInlinerBase::LegacyInlinerBase(char &ID, bool InsertLifetime)
169     : CallGraphSCCPass(ID), InsertLifetime(InsertLifetime) {}
170 
171 /// For this class, we declare that we require and preserve the call graph.
172 /// If the derived class implements this method, it should
173 /// always explicitly call the implementation here.
174 void LegacyInlinerBase::getAnalysisUsage(AnalysisUsage &AU) const {
175   AU.addRequired<AssumptionCacheTracker>();
176   AU.addRequired<ProfileSummaryInfoWrapperPass>();
177   AU.addRequired<TargetLibraryInfoWrapperPass>();
178   getAAResultsAnalysisUsage(AU);
179   CallGraphSCCPass::getAnalysisUsage(AU);
180 }
181 
182 using InlinedArrayAllocasTy = DenseMap<ArrayType *, std::vector<AllocaInst *>>;
183 
184 /// Look at all of the allocas that we inlined through this call site.  If we
185 /// have already inlined other allocas through other calls into this function,
186 /// then we know that they have disjoint lifetimes and that we can merge them.
187 ///
188 /// There are many heuristics possible for merging these allocas, and the
189 /// different options have different tradeoffs.  One thing that we *really*
190 /// don't want to hurt is SRoA: once inlining happens, often allocas are no
191 /// longer address taken and so they can be promoted.
192 ///
193 /// Our "solution" for that is to only merge allocas whose outermost type is an
194 /// array type.  These are usually not promoted because someone is using a
195 /// variable index into them.  These are also often the most important ones to
196 /// merge.
197 ///
198 /// A better solution would be to have real memory lifetime markers in the IR
199 /// and not have the inliner do any merging of allocas at all.  This would
200 /// allow the backend to do proper stack slot coloring of all allocas that
201 /// *actually make it to the backend*, which is really what we want.
202 ///
203 /// Because we don't have this information, we do this simple and useful hack.
204 static void mergeInlinedArrayAllocas(Function *Caller, InlineFunctionInfo &IFI,
205                                      InlinedArrayAllocasTy &InlinedArrayAllocas,
206                                      int InlineHistory) {
207   SmallPtrSet<AllocaInst *, 16> UsedAllocas;
208 
209   // When processing our SCC, check to see if the call site was inlined from
210   // some other call site.  For example, if we're processing "A" in this code:
211   //   A() { B() }
212   //   B() { x = alloca ... C() }
213   //   C() { y = alloca ... }
214   // Assume that C was not inlined into B initially, and so we're processing A
215   // and decide to inline B into A.  Doing this makes an alloca available for
216   // reuse and makes a callsite (C) available for inlining.  When we process
217   // the C call site we don't want to do any alloca merging between X and Y
218   // because their scopes are not disjoint.  We could make this smarter by
219   // keeping track of the inline history for each alloca in the
220   // InlinedArrayAllocas but this isn't likely to be a significant win.
221   if (InlineHistory != -1) // Only do merging for top-level call sites in SCC.
222     return;
223 
224   // Loop over all the allocas we have so far and see if they can be merged with
225   // a previously inlined alloca.  If not, remember that we had it.
226   for (unsigned AllocaNo = 0, E = IFI.StaticAllocas.size(); AllocaNo != E;
227        ++AllocaNo) {
228     AllocaInst *AI = IFI.StaticAllocas[AllocaNo];
229 
230     // Don't bother trying to merge array allocations (they will usually be
231     // canonicalized to be an allocation *of* an array), or allocations whose
232     // type is not itself an array (because we're afraid of pessimizing SRoA).
233     ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType());
234     if (!ATy || AI->isArrayAllocation())
235       continue;
236 
237     // Get the list of all available allocas for this array type.
238     std::vector<AllocaInst *> &AllocasForType = InlinedArrayAllocas[ATy];
239 
240     // Loop over the allocas in AllocasForType to see if we can reuse one.  Note
241     // that we have to be careful not to reuse the same "available" alloca for
242     // multiple different allocas that we just inlined, we use the 'UsedAllocas'
243     // set to keep track of which "available" allocas are being used by this
244     // function.  Also, AllocasForType can be empty of course!
245     bool MergedAwayAlloca = false;
246     for (AllocaInst *AvailableAlloca : AllocasForType) {
247       Align Align1 = AI->getAlign();
248       Align Align2 = AvailableAlloca->getAlign();
249 
250       // The available alloca has to be in the right function, not in some other
251       // function in this SCC.
252       if (AvailableAlloca->getParent() != AI->getParent())
253         continue;
254 
255       // If the inlined function already uses this alloca then we can't reuse
256       // it.
257       if (!UsedAllocas.insert(AvailableAlloca).second)
258         continue;
259 
260       // Otherwise, we *can* reuse it, RAUW AI into AvailableAlloca and declare
261       // success!
262       LLVM_DEBUG(dbgs() << "    ***MERGED ALLOCA: " << *AI
263                         << "\n\t\tINTO: " << *AvailableAlloca << '\n');
264 
265       // Move affected dbg.declare calls immediately after the new alloca to
266       // avoid the situation when a dbg.declare precedes its alloca.
267       if (auto *L = LocalAsMetadata::getIfExists(AI))
268         if (auto *MDV = MetadataAsValue::getIfExists(AI->getContext(), L))
269           for (User *U : MDV->users())
270             if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(U))
271               DDI->moveBefore(AvailableAlloca->getNextNode());
272 
273       AI->replaceAllUsesWith(AvailableAlloca);
274 
275       if (Align1 > Align2)
276         AvailableAlloca->setAlignment(AI->getAlign());
277 
278       AI->eraseFromParent();
279       MergedAwayAlloca = true;
280       ++NumMergedAllocas;
281       IFI.StaticAllocas[AllocaNo] = nullptr;
282       break;
283     }
284 
285     // If we already nuked the alloca, we're done with it.
286     if (MergedAwayAlloca)
287       continue;
288 
289     // If we were unable to merge away the alloca either because there are no
290     // allocas of the right type available or because we reused them all
291     // already, remember that this alloca came from an inlined function and mark
292     // it used so we don't reuse it for other allocas from this inline
293     // operation.
294     AllocasForType.push_back(AI);
295     UsedAllocas.insert(AI);
296   }
297 }
298 
299 /// If it is possible to inline the specified call site,
300 /// do so and update the CallGraph for this operation.
301 ///
302 /// This function also does some basic book-keeping to update the IR.  The
303 /// InlinedArrayAllocas map keeps track of any allocas that are already
304 /// available from other functions inlined into the caller.  If we are able to
305 /// inline this call site we attempt to reuse already available allocas or add
306 /// any new allocas to the set if not possible.
307 static InlineResult inlineCallIfPossible(
308     CallBase &CB, InlineFunctionInfo &IFI,
309     InlinedArrayAllocasTy &InlinedArrayAllocas, int InlineHistory,
310     bool InsertLifetime, function_ref<AAResults &(Function &)> &AARGetter,
311     ImportedFunctionsInliningStatistics &ImportedFunctionsStats) {
312   Function *Callee = CB.getCalledFunction();
313   Function *Caller = CB.getCaller();
314 
315   AAResults &AAR = AARGetter(*Callee);
316 
317   // Try to inline the function.  Get the list of static allocas that were
318   // inlined.
319   InlineResult IR = InlineFunction(CB, IFI, &AAR, InsertLifetime);
320   if (!IR.isSuccess())
321     return IR;
322 
323   if (InlinerFunctionImportStats != InlinerFunctionImportStatsOpts::No)
324     ImportedFunctionsStats.recordInline(*Caller, *Callee);
325 
326   AttributeFuncs::mergeAttributesForInlining(*Caller, *Callee);
327 
328   if (!DisableInlinedAllocaMerging)
329     mergeInlinedArrayAllocas(Caller, IFI, InlinedArrayAllocas, InlineHistory);
330 
331   return IR; // success
332 }
333 
334 /// Return true if the specified inline history ID
335 /// indicates an inline history that includes the specified function.
336 static bool inlineHistoryIncludes(
337     Function *F, int InlineHistoryID,
338     const SmallVectorImpl<std::pair<Function *, int>> &InlineHistory) {
339   while (InlineHistoryID != -1) {
340     assert(unsigned(InlineHistoryID) < InlineHistory.size() &&
341            "Invalid inline history ID");
342     if (InlineHistory[InlineHistoryID].first == F)
343       return true;
344     InlineHistoryID = InlineHistory[InlineHistoryID].second;
345   }
346   return false;
347 }
348 
349 bool LegacyInlinerBase::doInitialization(CallGraph &CG) {
350   if (InlinerFunctionImportStats != InlinerFunctionImportStatsOpts::No)
351     ImportedFunctionsStats.setModuleInfo(CG.getModule());
352   return false; // No changes to CallGraph.
353 }
354 
355 bool LegacyInlinerBase::runOnSCC(CallGraphSCC &SCC) {
356   if (skipSCC(SCC))
357     return false;
358   return inlineCalls(SCC);
359 }
360 
361 static bool
362 inlineCallsImpl(CallGraphSCC &SCC, CallGraph &CG,
363                 std::function<AssumptionCache &(Function &)> GetAssumptionCache,
364                 ProfileSummaryInfo *PSI,
365                 std::function<const TargetLibraryInfo &(Function &)> GetTLI,
366                 bool InsertLifetime,
367                 function_ref<InlineCost(CallBase &CB)> GetInlineCost,
368                 function_ref<AAResults &(Function &)> AARGetter,
369                 ImportedFunctionsInliningStatistics &ImportedFunctionsStats) {
370   SmallPtrSet<Function *, 8> SCCFunctions;
371   LLVM_DEBUG(dbgs() << "Inliner visiting SCC:");
372   for (CallGraphNode *Node : SCC) {
373     Function *F = Node->getFunction();
374     if (F)
375       SCCFunctions.insert(F);
376     LLVM_DEBUG(dbgs() << " " << (F ? F->getName() : "INDIRECTNODE"));
377   }
378 
379   // Scan through and identify all call sites ahead of time so that we only
380   // inline call sites in the original functions, not call sites that result
381   // from inlining other functions.
382   SmallVector<std::pair<CallBase *, int>, 16> CallSites;
383 
384   // When inlining a callee produces new call sites, we want to keep track of
385   // the fact that they were inlined from the callee.  This allows us to avoid
386   // infinite inlining in some obscure cases.  To represent this, we use an
387   // index into the InlineHistory vector.
388   SmallVector<std::pair<Function *, int>, 8> InlineHistory;
389 
390   for (CallGraphNode *Node : SCC) {
391     Function *F = Node->getFunction();
392     if (!F || F->isDeclaration())
393       continue;
394 
395     OptimizationRemarkEmitter ORE(F);
396     for (BasicBlock &BB : *F)
397       for (Instruction &I : BB) {
398         auto *CB = dyn_cast<CallBase>(&I);
399         // If this isn't a call, or it is a call to an intrinsic, it can
400         // never be inlined.
401         if (!CB || isa<IntrinsicInst>(I))
402           continue;
403 
404         // If this is a direct call to an external function, we can never inline
405         // it.  If it is an indirect call, inlining may resolve it to be a
406         // direct call, so we keep it.
407         if (Function *Callee = CB->getCalledFunction())
408           if (Callee->isDeclaration()) {
409             using namespace ore;
410 
411             setInlineRemark(*CB, "unavailable definition");
412             ORE.emit([&]() {
413               return OptimizationRemarkMissed(DEBUG_TYPE, "NoDefinition", &I)
414                      << NV("Callee", Callee) << " will not be inlined into "
415                      << NV("Caller", CB->getCaller())
416                      << " because its definition is unavailable"
417                      << setIsVerbose();
418             });
419             continue;
420           }
421 
422         CallSites.push_back(std::make_pair(CB, -1));
423       }
424   }
425 
426   LLVM_DEBUG(dbgs() << ": " << CallSites.size() << " call sites.\n");
427 
428   // If there are no calls in this function, exit early.
429   if (CallSites.empty())
430     return false;
431 
432   // Now that we have all of the call sites, move the ones to functions in the
433   // current SCC to the end of the list.
434   unsigned FirstCallInSCC = CallSites.size();
435   for (unsigned I = 0; I < FirstCallInSCC; ++I)
436     if (Function *F = CallSites[I].first->getCalledFunction())
437       if (SCCFunctions.count(F))
438         std::swap(CallSites[I--], CallSites[--FirstCallInSCC]);
439 
440   InlinedArrayAllocasTy InlinedArrayAllocas;
441   InlineFunctionInfo InlineInfo(&CG, GetAssumptionCache, PSI);
442 
443   // Now that we have all of the call sites, loop over them and inline them if
444   // it looks profitable to do so.
445   bool Changed = false;
446   bool LocalChange;
447   do {
448     LocalChange = false;
449     // Iterate over the outer loop because inlining functions can cause indirect
450     // calls to become direct calls.
451     // CallSites may be modified inside so ranged for loop can not be used.
452     for (unsigned CSi = 0; CSi != CallSites.size(); ++CSi) {
453       auto &P = CallSites[CSi];
454       CallBase &CB = *P.first;
455       const int InlineHistoryID = P.second;
456 
457       Function *Caller = CB.getCaller();
458       Function *Callee = CB.getCalledFunction();
459 
460       // We can only inline direct calls to non-declarations.
461       if (!Callee || Callee->isDeclaration())
462         continue;
463 
464       bool IsTriviallyDead = isInstructionTriviallyDead(&CB, &GetTLI(*Caller));
465 
466       if (!IsTriviallyDead) {
467         // If this call site was obtained by inlining another function, verify
468         // that the include path for the function did not include the callee
469         // itself.  If so, we'd be recursively inlining the same function,
470         // which would provide the same callsites, which would cause us to
471         // infinitely inline.
472         if (InlineHistoryID != -1 &&
473             inlineHistoryIncludes(Callee, InlineHistoryID, InlineHistory)) {
474           setInlineRemark(CB, "recursive");
475           continue;
476         }
477       }
478 
479       // FIXME for new PM: because of the old PM we currently generate ORE and
480       // in turn BFI on demand.  With the new PM, the ORE dependency should
481       // just become a regular analysis dependency.
482       OptimizationRemarkEmitter ORE(Caller);
483 
484       auto OIC = shouldInline(CB, GetInlineCost, ORE);
485       // If the policy determines that we should inline this function,
486       // delete the call instead.
487       if (!OIC)
488         continue;
489 
490       // If this call site is dead and it is to a readonly function, we should
491       // just delete the call instead of trying to inline it, regardless of
492       // size.  This happens because IPSCCP propagates the result out of the
493       // call and then we're left with the dead call.
494       if (IsTriviallyDead) {
495         LLVM_DEBUG(dbgs() << "    -> Deleting dead call: " << CB << "\n");
496         // Update the call graph by deleting the edge from Callee to Caller.
497         setInlineRemark(CB, "trivially dead");
498         CG[Caller]->removeCallEdgeFor(CB);
499         CB.eraseFromParent();
500         ++NumCallsDeleted;
501       } else {
502         // Get DebugLoc to report. CB will be invalid after Inliner.
503         DebugLoc DLoc = CB.getDebugLoc();
504         BasicBlock *Block = CB.getParent();
505 
506         // Attempt to inline the function.
507         using namespace ore;
508 
509         InlineResult IR = inlineCallIfPossible(
510             CB, InlineInfo, InlinedArrayAllocas, InlineHistoryID,
511             InsertLifetime, AARGetter, ImportedFunctionsStats);
512         if (!IR.isSuccess()) {
513           setInlineRemark(CB, std::string(IR.getFailureReason()) + "; " +
514                                   inlineCostStr(*OIC));
515           ORE.emit([&]() {
516             return OptimizationRemarkMissed(DEBUG_TYPE, "NotInlined", DLoc,
517                                             Block)
518                    << NV("Callee", Callee) << " will not be inlined into "
519                    << NV("Caller", Caller) << ": "
520                    << NV("Reason", IR.getFailureReason());
521           });
522           continue;
523         }
524         ++NumInlined;
525 
526         emitInlinedIntoBasedOnCost(ORE, DLoc, Block, *Callee, *Caller, *OIC);
527 
528         // If inlining this function gave us any new call sites, throw them
529         // onto our worklist to process.  They are useful inline candidates.
530         if (!InlineInfo.InlinedCalls.empty()) {
531           // Create a new inline history entry for this, so that we remember
532           // that these new callsites came about due to inlining Callee.
533           int NewHistoryID = InlineHistory.size();
534           InlineHistory.push_back(std::make_pair(Callee, InlineHistoryID));
535 
536 #ifndef NDEBUG
537           // Make sure no dupplicates in the inline candidates. This could
538           // happen when a callsite is simpilfied to reusing the return value
539           // of another callsite during function cloning, thus the other
540           // callsite will be reconsidered here.
541           DenseSet<CallBase *> DbgCallSites;
542           for (auto &II : CallSites)
543             DbgCallSites.insert(II.first);
544 #endif
545 
546           for (Value *Ptr : InlineInfo.InlinedCalls) {
547 #ifndef NDEBUG
548             assert(DbgCallSites.count(dyn_cast<CallBase>(Ptr)) == 0);
549 #endif
550             CallSites.push_back(
551                 std::make_pair(dyn_cast<CallBase>(Ptr), NewHistoryID));
552           }
553         }
554       }
555 
556       // If we inlined or deleted the last possible call site to the function,
557       // delete the function body now.
558       if (Callee && Callee->use_empty() && Callee->hasLocalLinkage() &&
559           // TODO: Can remove if in SCC now.
560           !SCCFunctions.count(Callee) &&
561           // The function may be apparently dead, but if there are indirect
562           // callgraph references to the node, we cannot delete it yet, this
563           // could invalidate the CGSCC iterator.
564           CG[Callee]->getNumReferences() == 0) {
565         LLVM_DEBUG(dbgs() << "    -> Deleting dead function: "
566                           << Callee->getName() << "\n");
567         CallGraphNode *CalleeNode = CG[Callee];
568 
569         // Remove any call graph edges from the callee to its callees.
570         CalleeNode->removeAllCalledFunctions();
571 
572         // Removing the node for callee from the call graph and delete it.
573         delete CG.removeFunctionFromModule(CalleeNode);
574         ++NumDeleted;
575       }
576 
577       // Remove this call site from the list.  If possible, use
578       // swap/pop_back for efficiency, but do not use it if doing so would
579       // move a call site to a function in this SCC before the
580       // 'FirstCallInSCC' barrier.
581       if (SCC.isSingular()) {
582         CallSites[CSi] = CallSites.back();
583         CallSites.pop_back();
584       } else {
585         CallSites.erase(CallSites.begin() + CSi);
586       }
587       --CSi;
588 
589       Changed = true;
590       LocalChange = true;
591     }
592   } while (LocalChange);
593 
594   return Changed;
595 }
596 
597 bool LegacyInlinerBase::inlineCalls(CallGraphSCC &SCC) {
598   CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
599   ACT = &getAnalysis<AssumptionCacheTracker>();
600   PSI = &getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI();
601   GetTLI = [&](Function &F) -> const TargetLibraryInfo & {
602     return getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F);
603   };
604   auto GetAssumptionCache = [&](Function &F) -> AssumptionCache & {
605     return ACT->getAssumptionCache(F);
606   };
607   return inlineCallsImpl(
608       SCC, CG, GetAssumptionCache, PSI, GetTLI, InsertLifetime,
609       [&](CallBase &CB) { return getInlineCost(CB); }, LegacyAARGetter(*this),
610       ImportedFunctionsStats);
611 }
612 
613 /// Remove now-dead linkonce functions at the end of
614 /// processing to avoid breaking the SCC traversal.
615 bool LegacyInlinerBase::doFinalization(CallGraph &CG) {
616   if (InlinerFunctionImportStats != InlinerFunctionImportStatsOpts::No)
617     ImportedFunctionsStats.dump(InlinerFunctionImportStats ==
618                                 InlinerFunctionImportStatsOpts::Verbose);
619   return removeDeadFunctions(CG);
620 }
621 
622 /// Remove dead functions that are not included in DNR (Do Not Remove) list.
623 bool LegacyInlinerBase::removeDeadFunctions(CallGraph &CG,
624                                             bool AlwaysInlineOnly) {
625   SmallVector<CallGraphNode *, 16> FunctionsToRemove;
626   SmallVector<Function *, 16> DeadFunctionsInComdats;
627 
628   auto RemoveCGN = [&](CallGraphNode *CGN) {
629     // Remove any call graph edges from the function to its callees.
630     CGN->removeAllCalledFunctions();
631 
632     // Remove any edges from the external node to the function's call graph
633     // node.  These edges might have been made irrelegant due to
634     // optimization of the program.
635     CG.getExternalCallingNode()->removeAnyCallEdgeTo(CGN);
636 
637     // Removing the node for callee from the call graph and delete it.
638     FunctionsToRemove.push_back(CGN);
639   };
640 
641   // Scan for all of the functions, looking for ones that should now be removed
642   // from the program.  Insert the dead ones in the FunctionsToRemove set.
643   for (const auto &I : CG) {
644     CallGraphNode *CGN = I.second.get();
645     Function *F = CGN->getFunction();
646     if (!F || F->isDeclaration())
647       continue;
648 
649     // Handle the case when this function is called and we only want to care
650     // about always-inline functions. This is a bit of a hack to share code
651     // between here and the InlineAlways pass.
652     if (AlwaysInlineOnly && !F->hasFnAttribute(Attribute::AlwaysInline))
653       continue;
654 
655     // If the only remaining users of the function are dead constants, remove
656     // them.
657     F->removeDeadConstantUsers();
658 
659     if (!F->isDefTriviallyDead())
660       continue;
661 
662     // It is unsafe to drop a function with discardable linkage from a COMDAT
663     // without also dropping the other members of the COMDAT.
664     // The inliner doesn't visit non-function entities which are in COMDAT
665     // groups so it is unsafe to do so *unless* the linkage is local.
666     if (!F->hasLocalLinkage()) {
667       if (F->hasComdat()) {
668         DeadFunctionsInComdats.push_back(F);
669         continue;
670       }
671     }
672 
673     RemoveCGN(CGN);
674   }
675   if (!DeadFunctionsInComdats.empty()) {
676     // Filter out the functions whose comdats remain alive.
677     filterDeadComdatFunctions(DeadFunctionsInComdats);
678     // Remove the rest.
679     for (Function *F : DeadFunctionsInComdats)
680       RemoveCGN(CG[F]);
681   }
682 
683   if (FunctionsToRemove.empty())
684     return false;
685 
686   // Now that we know which functions to delete, do so.  We didn't want to do
687   // this inline, because that would invalidate our CallGraph::iterator
688   // objects. :(
689   //
690   // Note that it doesn't matter that we are iterating over a non-stable order
691   // here to do this, it doesn't matter which order the functions are deleted
692   // in.
693   array_pod_sort(FunctionsToRemove.begin(), FunctionsToRemove.end());
694   FunctionsToRemove.erase(
695       std::unique(FunctionsToRemove.begin(), FunctionsToRemove.end()),
696       FunctionsToRemove.end());
697   for (CallGraphNode *CGN : FunctionsToRemove) {
698     delete CG.removeFunctionFromModule(CGN);
699     ++NumDeleted;
700   }
701   return true;
702 }
703 
704 InlineAdvisor &
705 InlinerPass::getAdvisor(const ModuleAnalysisManagerCGSCCProxy::Result &MAM,
706                         FunctionAnalysisManager &FAM, Module &M) {
707   if (OwnedAdvisor)
708     return *OwnedAdvisor;
709 
710   auto *IAA = MAM.getCachedResult<InlineAdvisorAnalysis>(M);
711   if (!IAA) {
712     // It should still be possible to run the inliner as a stand-alone SCC pass,
713     // for test scenarios. In that case, we default to the
714     // DefaultInlineAdvisor, which doesn't need to keep state between SCC pass
715     // runs. It also uses just the default InlineParams.
716     // In this case, we need to use the provided FAM, which is valid for the
717     // duration of the inliner pass, and thus the lifetime of the owned advisor.
718     // The one we would get from the MAM can be invalidated as a result of the
719     // inliner's activity.
720     OwnedAdvisor =
721         std::make_unique<DefaultInlineAdvisor>(M, FAM, getInlineParams());
722 
723     if (!CGSCCInlineReplayFile.empty())
724       OwnedAdvisor = getReplayInlineAdvisor(
725           M, FAM, M.getContext(), std::move(OwnedAdvisor),
726           ReplayInlinerSettings{CGSCCInlineReplayFile,
727                                 CGSCCInlineReplayScope,
728                                 CGSCCInlineReplayFallback,
729                                 {CGSCCInlineReplayFormat}},
730           /*EmitRemarks=*/true);
731 
732     return *OwnedAdvisor;
733   }
734   assert(IAA->getAdvisor() &&
735          "Expected a present InlineAdvisorAnalysis also have an "
736          "InlineAdvisor initialized");
737   return *IAA->getAdvisor();
738 }
739 
740 PreservedAnalyses InlinerPass::run(LazyCallGraph::SCC &InitialC,
741                                    CGSCCAnalysisManager &AM, LazyCallGraph &CG,
742                                    CGSCCUpdateResult &UR) {
743   const auto &MAMProxy =
744       AM.getResult<ModuleAnalysisManagerCGSCCProxy>(InitialC, CG);
745   bool Changed = false;
746 
747   assert(InitialC.size() > 0 && "Cannot handle an empty SCC!");
748   Module &M = *InitialC.begin()->getFunction().getParent();
749   ProfileSummaryInfo *PSI = MAMProxy.getCachedResult<ProfileSummaryAnalysis>(M);
750 
751   FunctionAnalysisManager &FAM =
752       AM.getResult<FunctionAnalysisManagerCGSCCProxy>(InitialC, CG)
753           .getManager();
754 
755   InlineAdvisor &Advisor = getAdvisor(MAMProxy, FAM, M);
756   Advisor.onPassEntry(&InitialC);
757 
758   auto AdvisorOnExit = make_scope_exit([&] { Advisor.onPassExit(&InitialC); });
759 
760   // We use a single common worklist for calls across the entire SCC. We
761   // process these in-order and append new calls introduced during inlining to
762   // the end. The PriorityInlineOrder is optional here, in which the smaller
763   // callee would have a higher priority to inline.
764   //
765   // Note that this particular order of processing is actually critical to
766   // avoid very bad behaviors. Consider *highly connected* call graphs where
767   // each function contains a small amount of code and a couple of calls to
768   // other functions. Because the LLVM inliner is fundamentally a bottom-up
769   // inliner, it can handle gracefully the fact that these all appear to be
770   // reasonable inlining candidates as it will flatten things until they become
771   // too big to inline, and then move on and flatten another batch.
772   //
773   // However, when processing call edges *within* an SCC we cannot rely on this
774   // bottom-up behavior. As a consequence, with heavily connected *SCCs* of
775   // functions we can end up incrementally inlining N calls into each of
776   // N functions because each incremental inlining decision looks good and we
777   // don't have a topological ordering to prevent explosions.
778   //
779   // To compensate for this, we don't process transitive edges made immediate
780   // by inlining until we've done one pass of inlining across the entire SCC.
781   // Large, highly connected SCCs still lead to some amount of code bloat in
782   // this model, but it is uniformly spread across all the functions in the SCC
783   // and eventually they all become too large to inline, rather than
784   // incrementally maknig a single function grow in a super linear fashion.
785   DefaultInlineOrder<std::pair<CallBase *, int>> Calls;
786 
787   // Populate the initial list of calls in this SCC.
788   for (auto &N : InitialC) {
789     auto &ORE =
790         FAM.getResult<OptimizationRemarkEmitterAnalysis>(N.getFunction());
791     // We want to generally process call sites top-down in order for
792     // simplifications stemming from replacing the call with the returned value
793     // after inlining to be visible to subsequent inlining decisions.
794     // FIXME: Using instructions sequence is a really bad way to do this.
795     // Instead we should do an actual RPO walk of the function body.
796     for (Instruction &I : instructions(N.getFunction()))
797       if (auto *CB = dyn_cast<CallBase>(&I))
798         if (Function *Callee = CB->getCalledFunction()) {
799           if (!Callee->isDeclaration())
800             Calls.push({CB, -1});
801           else if (!isa<IntrinsicInst>(I)) {
802             using namespace ore;
803             setInlineRemark(*CB, "unavailable definition");
804             ORE.emit([&]() {
805               return OptimizationRemarkMissed(DEBUG_TYPE, "NoDefinition", &I)
806                      << NV("Callee", Callee) << " will not be inlined into "
807                      << NV("Caller", CB->getCaller())
808                      << " because its definition is unavailable"
809                      << setIsVerbose();
810             });
811           }
812         }
813   }
814   if (Calls.empty())
815     return PreservedAnalyses::all();
816 
817   // Capture updatable variable for the current SCC.
818   auto *C = &InitialC;
819 
820   // When inlining a callee produces new call sites, we want to keep track of
821   // the fact that they were inlined from the callee.  This allows us to avoid
822   // infinite inlining in some obscure cases.  To represent this, we use an
823   // index into the InlineHistory vector.
824   SmallVector<std::pair<Function *, int>, 16> InlineHistory;
825 
826   // Track a set vector of inlined callees so that we can augment the caller
827   // with all of their edges in the call graph before pruning out the ones that
828   // got simplified away.
829   SmallSetVector<Function *, 4> InlinedCallees;
830 
831   // Track the dead functions to delete once finished with inlining calls. We
832   // defer deleting these to make it easier to handle the call graph updates.
833   SmallVector<Function *, 4> DeadFunctions;
834 
835   // Track potentially dead non-local functions with comdats to see if they can
836   // be deleted as a batch after inlining.
837   SmallVector<Function *, 4> DeadFunctionsInComdats;
838 
839   // Loop forward over all of the calls.
840   while (!Calls.empty()) {
841     // We expect the calls to typically be batched with sequences of calls that
842     // have the same caller, so we first set up some shared infrastructure for
843     // this caller. We also do any pruning we can at this layer on the caller
844     // alone.
845     Function &F = *Calls.front().first->getCaller();
846     LazyCallGraph::Node &N = *CG.lookup(F);
847     if (CG.lookupSCC(N) != C) {
848       Calls.pop();
849       continue;
850     }
851 
852     LLVM_DEBUG(dbgs() << "Inlining calls in: " << F.getName() << "\n"
853                       << "    Function size: " << F.getInstructionCount()
854                       << "\n");
855 
856     auto GetAssumptionCache = [&](Function &F) -> AssumptionCache & {
857       return FAM.getResult<AssumptionAnalysis>(F);
858     };
859 
860     // Now process as many calls as we have within this caller in the sequence.
861     // We bail out as soon as the caller has to change so we can update the
862     // call graph and prepare the context of that new caller.
863     bool DidInline = false;
864     while (!Calls.empty() && Calls.front().first->getCaller() == &F) {
865       auto P = Calls.pop();
866       CallBase *CB = P.first;
867       const int InlineHistoryID = P.second;
868       Function &Callee = *CB->getCalledFunction();
869 
870       if (InlineHistoryID != -1 &&
871           inlineHistoryIncludes(&Callee, InlineHistoryID, InlineHistory)) {
872         LLVM_DEBUG(dbgs() << "Skipping inlining due to history: "
873                           << F.getName() << " -> " << Callee.getName() << "\n");
874         setInlineRemark(*CB, "recursive");
875         continue;
876       }
877 
878       // Check if this inlining may repeat breaking an SCC apart that has
879       // already been split once before. In that case, inlining here may
880       // trigger infinite inlining, much like is prevented within the inliner
881       // itself by the InlineHistory above, but spread across CGSCC iterations
882       // and thus hidden from the full inline history.
883       LazyCallGraph::SCC *CalleeSCC = CG.lookupSCC(*CG.lookup(Callee));
884       if (CalleeSCC == C && UR.InlinedInternalEdges.count({&N, C})) {
885         LLVM_DEBUG(dbgs() << "Skipping inlining internal SCC edge from a node "
886                              "previously split out of this SCC by inlining: "
887                           << F.getName() << " -> " << Callee.getName() << "\n");
888         setInlineRemark(*CB, "recursive SCC split");
889         continue;
890       }
891 
892       std::unique_ptr<InlineAdvice> Advice =
893           Advisor.getAdvice(*CB, OnlyMandatory);
894 
895       // Check whether we want to inline this callsite.
896       if (!Advice)
897         continue;
898 
899       if (!Advice->isInliningRecommended()) {
900         Advice->recordUnattemptedInlining();
901         continue;
902       }
903 
904       int CBCostMult =
905           getStringFnAttrAsInt(
906               *CB, InlineConstants::FunctionInlineCostMultiplierAttributeName)
907               .value_or(1);
908 
909       // Setup the data structure used to plumb customization into the
910       // `InlineFunction` routine.
911       InlineFunctionInfo IFI(
912           /*cg=*/nullptr, GetAssumptionCache, PSI,
913           &FAM.getResult<BlockFrequencyAnalysis>(*(CB->getCaller())),
914           &FAM.getResult<BlockFrequencyAnalysis>(Callee));
915 
916       InlineResult IR =
917           InlineFunction(*CB, IFI, &FAM.getResult<AAManager>(*CB->getCaller()));
918       if (!IR.isSuccess()) {
919         Advice->recordUnsuccessfulInlining(IR);
920         continue;
921       }
922 
923       DidInline = true;
924       InlinedCallees.insert(&Callee);
925       ++NumInlined;
926 
927       LLVM_DEBUG(dbgs() << "    Size after inlining: "
928                         << F.getInstructionCount() << "\n");
929 
930       // Add any new callsites to defined functions to the worklist.
931       if (!IFI.InlinedCallSites.empty()) {
932         int NewHistoryID = InlineHistory.size();
933         InlineHistory.push_back({&Callee, InlineHistoryID});
934 
935         for (CallBase *ICB : reverse(IFI.InlinedCallSites)) {
936           Function *NewCallee = ICB->getCalledFunction();
937           assert(!(NewCallee && NewCallee->isIntrinsic()) &&
938                  "Intrinsic calls should not be tracked.");
939           if (!NewCallee) {
940             // Try to promote an indirect (virtual) call without waiting for
941             // the post-inline cleanup and the next DevirtSCCRepeatedPass
942             // iteration because the next iteration may not happen and we may
943             // miss inlining it.
944             if (tryPromoteCall(*ICB))
945               NewCallee = ICB->getCalledFunction();
946           }
947           if (NewCallee) {
948             if (!NewCallee->isDeclaration()) {
949               Calls.push({ICB, NewHistoryID});
950               // Continually inlining through an SCC can result in huge compile
951               // times and bloated code since we arbitrarily stop at some point
952               // when the inliner decides it's not profitable to inline anymore.
953               // We attempt to mitigate this by making these calls exponentially
954               // more expensive.
955               // This doesn't apply to calls in the same SCC since if we do
956               // inline through the SCC the function will end up being
957               // self-recursive which the inliner bails out on, and inlining
958               // within an SCC is necessary for performance.
959               if (CalleeSCC != C &&
960                   CalleeSCC == CG.lookupSCC(CG.get(*NewCallee))) {
961                 Attribute NewCBCostMult = Attribute::get(
962                     M.getContext(),
963                     InlineConstants::FunctionInlineCostMultiplierAttributeName,
964                     itostr(CBCostMult * IntraSCCCostMultiplier));
965                 ICB->addFnAttr(NewCBCostMult);
966               }
967             }
968           }
969         }
970       }
971 
972       // Merge the attributes based on the inlining.
973       AttributeFuncs::mergeAttributesForInlining(F, Callee);
974 
975       // For local functions or discardable functions without comdats, check
976       // whether this makes the callee trivially dead. In that case, we can drop
977       // the body of the function eagerly which may reduce the number of callers
978       // of other functions to one, changing inline cost thresholds. Non-local
979       // discardable functions with comdats are checked later on.
980       bool CalleeWasDeleted = false;
981       if (Callee.isDiscardableIfUnused() && Callee.hasZeroLiveUses() &&
982           !CG.isLibFunction(Callee)) {
983         if (Callee.hasLocalLinkage() || !Callee.hasComdat()) {
984           Calls.erase_if([&](const std::pair<CallBase *, int> &Call) {
985             return Call.first->getCaller() == &Callee;
986           });
987           // Clear the body and queue the function itself for deletion when we
988           // finish inlining and call graph updates.
989           // Note that after this point, it is an error to do anything other
990           // than use the callee's address or delete it.
991           Callee.dropAllReferences();
992           assert(!is_contained(DeadFunctions, &Callee) &&
993                  "Cannot put cause a function to become dead twice!");
994           DeadFunctions.push_back(&Callee);
995           CalleeWasDeleted = true;
996         } else {
997           DeadFunctionsInComdats.push_back(&Callee);
998         }
999       }
1000       if (CalleeWasDeleted)
1001         Advice->recordInliningWithCalleeDeleted();
1002       else
1003         Advice->recordInlining();
1004     }
1005 
1006     if (!DidInline)
1007       continue;
1008     Changed = true;
1009 
1010     // At this point, since we have made changes we have at least removed
1011     // a call instruction. However, in the process we do some incremental
1012     // simplification of the surrounding code. This simplification can
1013     // essentially do all of the same things as a function pass and we can
1014     // re-use the exact same logic for updating the call graph to reflect the
1015     // change.
1016 
1017     // Inside the update, we also update the FunctionAnalysisManager in the
1018     // proxy for this particular SCC. We do this as the SCC may have changed and
1019     // as we're going to mutate this particular function we want to make sure
1020     // the proxy is in place to forward any invalidation events.
1021     LazyCallGraph::SCC *OldC = C;
1022     C = &updateCGAndAnalysisManagerForCGSCCPass(CG, *C, N, AM, UR, FAM);
1023     LLVM_DEBUG(dbgs() << "Updated inlining SCC: " << *C << "\n");
1024 
1025     // If this causes an SCC to split apart into multiple smaller SCCs, there
1026     // is a subtle risk we need to prepare for. Other transformations may
1027     // expose an "infinite inlining" opportunity later, and because of the SCC
1028     // mutation, we will revisit this function and potentially re-inline. If we
1029     // do, and that re-inlining also has the potentially to mutate the SCC
1030     // structure, the infinite inlining problem can manifest through infinite
1031     // SCC splits and merges. To avoid this, we capture the originating caller
1032     // node and the SCC containing the call edge. This is a slight over
1033     // approximation of the possible inlining decisions that must be avoided,
1034     // but is relatively efficient to store. We use C != OldC to know when
1035     // a new SCC is generated and the original SCC may be generated via merge
1036     // in later iterations.
1037     //
1038     // It is also possible that even if no new SCC is generated
1039     // (i.e., C == OldC), the original SCC could be split and then merged
1040     // into the same one as itself. and the original SCC will be added into
1041     // UR.CWorklist again, we want to catch such cases too.
1042     //
1043     // FIXME: This seems like a very heavyweight way of retaining the inline
1044     // history, we should look for a more efficient way of tracking it.
1045     if ((C != OldC || UR.CWorklist.count(OldC)) &&
1046         llvm::any_of(InlinedCallees, [&](Function *Callee) {
1047           return CG.lookupSCC(*CG.lookup(*Callee)) == OldC;
1048         })) {
1049       LLVM_DEBUG(dbgs() << "Inlined an internal call edge and split an SCC, "
1050                            "retaining this to avoid infinite inlining.\n");
1051       UR.InlinedInternalEdges.insert({&N, OldC});
1052     }
1053     InlinedCallees.clear();
1054 
1055     // Invalidate analyses for this function now so that we don't have to
1056     // invalidate analyses for all functions in this SCC later.
1057     FAM.invalidate(F, PreservedAnalyses::none());
1058   }
1059 
1060   // We must ensure that we only delete functions with comdats if every function
1061   // in the comdat is going to be deleted.
1062   if (!DeadFunctionsInComdats.empty()) {
1063     filterDeadComdatFunctions(DeadFunctionsInComdats);
1064     for (auto *Callee : DeadFunctionsInComdats)
1065       Callee->dropAllReferences();
1066     DeadFunctions.append(DeadFunctionsInComdats);
1067   }
1068 
1069   // Now that we've finished inlining all of the calls across this SCC, delete
1070   // all of the trivially dead functions, updating the call graph and the CGSCC
1071   // pass manager in the process.
1072   //
1073   // Note that this walks a pointer set which has non-deterministic order but
1074   // that is OK as all we do is delete things and add pointers to unordered
1075   // sets.
1076   for (Function *DeadF : DeadFunctions) {
1077     // Get the necessary information out of the call graph and nuke the
1078     // function there. Also, clear out any cached analyses.
1079     auto &DeadC = *CG.lookupSCC(*CG.lookup(*DeadF));
1080     FAM.clear(*DeadF, DeadF->getName());
1081     AM.clear(DeadC, DeadC.getName());
1082     auto &DeadRC = DeadC.getOuterRefSCC();
1083     CG.removeDeadFunction(*DeadF);
1084 
1085     // Mark the relevant parts of the call graph as invalid so we don't visit
1086     // them.
1087     UR.InvalidatedSCCs.insert(&DeadC);
1088     UR.InvalidatedRefSCCs.insert(&DeadRC);
1089 
1090     // If the updated SCC was the one containing the deleted function, clear it.
1091     if (&DeadC == UR.UpdatedC)
1092       UR.UpdatedC = nullptr;
1093 
1094     // And delete the actual function from the module.
1095     M.getFunctionList().erase(DeadF);
1096 
1097     ++NumDeleted;
1098   }
1099 
1100   if (!Changed)
1101     return PreservedAnalyses::all();
1102 
1103   PreservedAnalyses PA;
1104   // Even if we change the IR, we update the core CGSCC data structures and so
1105   // can preserve the proxy to the function analysis manager.
1106   PA.preserve<FunctionAnalysisManagerCGSCCProxy>();
1107   // We have already invalidated all analyses on modified functions.
1108   PA.preserveSet<AllAnalysesOn<Function>>();
1109   return PA;
1110 }
1111 
1112 ModuleInlinerWrapperPass::ModuleInlinerWrapperPass(InlineParams Params,
1113                                                    bool MandatoryFirst,
1114                                                    InliningAdvisorMode Mode,
1115                                                    unsigned MaxDevirtIterations)
1116     : Params(Params), Mode(Mode), MaxDevirtIterations(MaxDevirtIterations) {
1117   // Run the inliner first. The theory is that we are walking bottom-up and so
1118   // the callees have already been fully optimized, and we want to inline them
1119   // into the callers so that our optimizations can reflect that.
1120   // For PreLinkThinLTO pass, we disable hot-caller heuristic for sample PGO
1121   // because it makes profile annotation in the backend inaccurate.
1122   if (MandatoryFirst) {
1123     PM.addPass(InlinerPass(/*OnlyMandatory*/ true));
1124     if (EnablePostSCCAdvisorPrinting)
1125       PM.addPass(InlineAdvisorAnalysisPrinterPass(dbgs()));
1126   }
1127   PM.addPass(InlinerPass());
1128   if (EnablePostSCCAdvisorPrinting)
1129     PM.addPass(InlineAdvisorAnalysisPrinterPass(dbgs()));
1130 }
1131 
1132 PreservedAnalyses ModuleInlinerWrapperPass::run(Module &M,
1133                                                 ModuleAnalysisManager &MAM) {
1134   auto &IAA = MAM.getResult<InlineAdvisorAnalysis>(M);
1135   if (!IAA.tryCreate(Params, Mode,
1136                      {CGSCCInlineReplayFile,
1137                       CGSCCInlineReplayScope,
1138                       CGSCCInlineReplayFallback,
1139                       {CGSCCInlineReplayFormat}})) {
1140     M.getContext().emitError(
1141         "Could not setup Inlining Advisor for the requested "
1142         "mode and/or options");
1143     return PreservedAnalyses::all();
1144   }
1145 
1146   // We wrap the CGSCC pipeline in a devirtualization repeater. This will try
1147   // to detect when we devirtualize indirect calls and iterate the SCC passes
1148   // in that case to try and catch knock-on inlining or function attrs
1149   // opportunities. Then we add it to the module pipeline by walking the SCCs
1150   // in postorder (or bottom-up).
1151   // If MaxDevirtIterations is 0, we just don't use the devirtualization
1152   // wrapper.
1153   if (MaxDevirtIterations == 0)
1154     MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(std::move(PM)));
1155   else
1156     MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(
1157         createDevirtSCCRepeatedPass(std::move(PM), MaxDevirtIterations)));
1158 
1159   MPM.addPass(std::move(AfterCGMPM));
1160   MPM.run(M, MAM);
1161 
1162   // Discard the InlineAdvisor, a subsequent inlining session should construct
1163   // its own.
1164   auto PA = PreservedAnalyses::all();
1165   if (!KeepAdvisorForPrinting)
1166     PA.abandon<InlineAdvisorAnalysis>();
1167   return PA;
1168 }
1169 
1170 void InlinerPass::printPipeline(
1171     raw_ostream &OS, function_ref<StringRef(StringRef)> MapClassName2PassName) {
1172   static_cast<PassInfoMixin<InlinerPass> *>(this)->printPipeline(
1173       OS, MapClassName2PassName);
1174   if (OnlyMandatory)
1175     OS << "<only-mandatory>";
1176 }
1177 
1178 void ModuleInlinerWrapperPass::printPipeline(
1179     raw_ostream &OS, function_ref<StringRef(StringRef)> MapClassName2PassName) {
1180   // Print some info about passes added to the wrapper. This is however
1181   // incomplete as InlineAdvisorAnalysis part isn't included (which also depends
1182   // on Params and Mode).
1183   if (!MPM.isEmpty()) {
1184     MPM.printPipeline(OS, MapClassName2PassName);
1185     OS << ",";
1186   }
1187   OS << "cgscc(";
1188   if (MaxDevirtIterations != 0)
1189     OS << "devirt<" << MaxDevirtIterations << ">(";
1190   PM.printPipeline(OS, MapClassName2PassName);
1191   if (MaxDevirtIterations != 0)
1192     OS << ")";
1193   OS << ")";
1194 }
1195