1 //===- SampleProfile.cpp - Incorporate sample profiles into the IR --------===//
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 SampleProfileLoader transformation. This pass
10 // reads a profile file generated by a sampling profiler (e.g. Linux Perf -
11 // http://perf.wiki.kernel.org/) and generates IR metadata to reflect the
12 // profile information in the given profile.
13 //
14 // This pass generates branch weight annotations on the IR:
15 //
16 // - prof: Represents branch weights. This annotation is added to branches
17 //      to indicate the weights of each edge coming out of the branch.
18 //      The weight of each edge is the weight of the target block for
19 //      that edge. The weight of a block B is computed as the maximum
20 //      number of samples found in B.
21 //
22 //===----------------------------------------------------------------------===//
23 
24 #include "llvm/Transforms/IPO/SampleProfile.h"
25 #include "llvm/ADT/ArrayRef.h"
26 #include "llvm/ADT/DenseMap.h"
27 #include "llvm/ADT/DenseSet.h"
28 #include "llvm/ADT/PriorityQueue.h"
29 #include "llvm/ADT/SCCIterator.h"
30 #include "llvm/ADT/SmallVector.h"
31 #include "llvm/ADT/Statistic.h"
32 #include "llvm/ADT/StringMap.h"
33 #include "llvm/ADT/StringRef.h"
34 #include "llvm/ADT/Twine.h"
35 #include "llvm/Analysis/AssumptionCache.h"
36 #include "llvm/Analysis/BlockFrequencyInfoImpl.h"
37 #include "llvm/Analysis/CallGraph.h"
38 #include "llvm/Analysis/InlineAdvisor.h"
39 #include "llvm/Analysis/InlineCost.h"
40 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
41 #include "llvm/Analysis/ProfileSummaryInfo.h"
42 #include "llvm/Analysis/ReplayInlineAdvisor.h"
43 #include "llvm/Analysis/TargetLibraryInfo.h"
44 #include "llvm/Analysis/TargetTransformInfo.h"
45 #include "llvm/IR/BasicBlock.h"
46 #include "llvm/IR/DebugLoc.h"
47 #include "llvm/IR/DiagnosticInfo.h"
48 #include "llvm/IR/Function.h"
49 #include "llvm/IR/GlobalValue.h"
50 #include "llvm/IR/InstrTypes.h"
51 #include "llvm/IR/Instruction.h"
52 #include "llvm/IR/Instructions.h"
53 #include "llvm/IR/IntrinsicInst.h"
54 #include "llvm/IR/LLVMContext.h"
55 #include "llvm/IR/MDBuilder.h"
56 #include "llvm/IR/Module.h"
57 #include "llvm/IR/PassManager.h"
58 #include "llvm/IR/PseudoProbe.h"
59 #include "llvm/IR/ValueSymbolTable.h"
60 #include "llvm/InitializePasses.h"
61 #include "llvm/Pass.h"
62 #include "llvm/ProfileData/InstrProf.h"
63 #include "llvm/ProfileData/SampleProf.h"
64 #include "llvm/ProfileData/SampleProfReader.h"
65 #include "llvm/Support/Casting.h"
66 #include "llvm/Support/CommandLine.h"
67 #include "llvm/Support/Debug.h"
68 #include "llvm/Support/ErrorOr.h"
69 #include "llvm/Support/raw_ostream.h"
70 #include "llvm/Transforms/IPO.h"
71 #include "llvm/Transforms/IPO/ProfiledCallGraph.h"
72 #include "llvm/Transforms/IPO/SampleContextTracker.h"
73 #include "llvm/Transforms/IPO/SampleProfileProbe.h"
74 #include "llvm/Transforms/Instrumentation.h"
75 #include "llvm/Transforms/Utils/CallPromotionUtils.h"
76 #include "llvm/Transforms/Utils/Cloning.h"
77 #include "llvm/Transforms/Utils/SampleProfileInference.h"
78 #include "llvm/Transforms/Utils/SampleProfileLoaderBaseImpl.h"
79 #include "llvm/Transforms/Utils/SampleProfileLoaderBaseUtil.h"
80 #include <algorithm>
81 #include <cassert>
82 #include <cstdint>
83 #include <functional>
84 #include <limits>
85 #include <map>
86 #include <memory>
87 #include <queue>
88 #include <string>
89 #include <system_error>
90 #include <utility>
91 #include <vector>
92 
93 using namespace llvm;
94 using namespace sampleprof;
95 using namespace llvm::sampleprofutil;
96 using ProfileCount = Function::ProfileCount;
97 #define DEBUG_TYPE "sample-profile"
98 #define CSINLINE_DEBUG DEBUG_TYPE "-inline"
99 
100 STATISTIC(NumCSInlined,
101           "Number of functions inlined with context sensitive profile");
102 STATISTIC(NumCSNotInlined,
103           "Number of functions not inlined with context sensitive profile");
104 STATISTIC(NumMismatchedProfile,
105           "Number of functions with CFG mismatched profile");
106 STATISTIC(NumMatchedProfile, "Number of functions with CFG matched profile");
107 STATISTIC(NumDuplicatedInlinesite,
108           "Number of inlined callsites with a partial distribution factor");
109 
110 STATISTIC(NumCSInlinedHitMinLimit,
111           "Number of functions with FDO inline stopped due to min size limit");
112 STATISTIC(NumCSInlinedHitMaxLimit,
113           "Number of functions with FDO inline stopped due to max size limit");
114 STATISTIC(
115     NumCSInlinedHitGrowthLimit,
116     "Number of functions with FDO inline stopped due to growth size limit");
117 
118 // Command line option to specify the file to read samples from. This is
119 // mainly used for debugging.
120 static cl::opt<std::string> SampleProfileFile(
121     "sample-profile-file", cl::init(""), cl::value_desc("filename"),
122     cl::desc("Profile file loaded by -sample-profile"), cl::Hidden);
123 
124 // The named file contains a set of transformations that may have been applied
125 // to the symbol names between the program from which the sample data was
126 // collected and the current program's symbols.
127 static cl::opt<std::string> SampleProfileRemappingFile(
128     "sample-profile-remapping-file", cl::init(""), cl::value_desc("filename"),
129     cl::desc("Profile remapping file loaded by -sample-profile"), cl::Hidden);
130 
131 static cl::opt<bool> ProfileSampleAccurate(
132     "profile-sample-accurate", cl::Hidden, cl::init(false),
133     cl::desc("If the sample profile is accurate, we will mark all un-sampled "
134              "callsite and function as having 0 samples. Otherwise, treat "
135              "un-sampled callsites and functions conservatively as unknown. "));
136 
137 static cl::opt<bool> ProfileSampleBlockAccurate(
138     "profile-sample-block-accurate", cl::Hidden, cl::init(false),
139     cl::desc("If the sample profile is accurate, we will mark all un-sampled "
140              "branches and calls as having 0 samples. Otherwise, treat "
141              "them conservatively as unknown. "));
142 
143 static cl::opt<bool> ProfileAccurateForSymsInList(
144     "profile-accurate-for-symsinlist", cl::Hidden, cl::ZeroOrMore,
145     cl::init(true),
146     cl::desc("For symbols in profile symbol list, regard their profiles to "
147              "be accurate. It may be overriden by profile-sample-accurate. "));
148 
149 static cl::opt<bool> ProfileMergeInlinee(
150     "sample-profile-merge-inlinee", cl::Hidden, cl::init(true),
151     cl::desc("Merge past inlinee's profile to outline version if sample "
152              "profile loader decided not to inline a call site. It will "
153              "only be enabled when top-down order of profile loading is "
154              "enabled. "));
155 
156 static cl::opt<bool> ProfileTopDownLoad(
157     "sample-profile-top-down-load", cl::Hidden, cl::init(true),
158     cl::desc("Do profile annotation and inlining for functions in top-down "
159              "order of call graph during sample profile loading. It only "
160              "works for new pass manager. "));
161 
162 static cl::opt<bool>
163     UseProfiledCallGraph("use-profiled-call-graph", cl::init(true), cl::Hidden,
164                          cl::desc("Process functions in a top-down order "
165                                   "defined by the profiled call graph when "
166                                   "-sample-profile-top-down-load is on."));
167 cl::opt<bool>
168     SortProfiledSCC("sort-profiled-scc-member", cl::init(true), cl::Hidden,
169                     cl::desc("Sort profiled recursion by edge weights."));
170 
171 static cl::opt<bool> ProfileSizeInline(
172     "sample-profile-inline-size", cl::Hidden, cl::init(false),
173     cl::desc("Inline cold call sites in profile loader if it's beneficial "
174              "for code size."));
175 
176 // Since profiles are consumed by many passes, turning on this option has
177 // side effects. For instance, pre-link SCC inliner would see merged profiles
178 // and inline the hot functions (that are skipped in this pass).
179 static cl::opt<bool> DisableSampleLoaderInlining(
180     "disable-sample-loader-inlining", cl::Hidden, cl::init(false),
181     cl::desc("If true, artifically skip inline transformation in sample-loader "
182              "pass, and merge (or scale) profiles (as configured by "
183              "--sample-profile-merge-inlinee)."));
184 
185 cl::opt<int> ProfileInlineGrowthLimit(
186     "sample-profile-inline-growth-limit", cl::Hidden, cl::init(12),
187     cl::desc("The size growth ratio limit for proirity-based sample profile "
188              "loader inlining."));
189 
190 cl::opt<int> ProfileInlineLimitMin(
191     "sample-profile-inline-limit-min", cl::Hidden, cl::init(100),
192     cl::desc("The lower bound of size growth limit for "
193              "proirity-based sample profile loader inlining."));
194 
195 cl::opt<int> ProfileInlineLimitMax(
196     "sample-profile-inline-limit-max", cl::Hidden, cl::init(10000),
197     cl::desc("The upper bound of size growth limit for "
198              "proirity-based sample profile loader inlining."));
199 
200 cl::opt<int> SampleHotCallSiteThreshold(
201     "sample-profile-hot-inline-threshold", cl::Hidden, cl::init(3000),
202     cl::desc("Hot callsite threshold for proirity-based sample profile loader "
203              "inlining."));
204 
205 cl::opt<int> SampleColdCallSiteThreshold(
206     "sample-profile-cold-inline-threshold", cl::Hidden, cl::init(45),
207     cl::desc("Threshold for inlining cold callsites"));
208 
209 static cl::opt<unsigned> ProfileICPRelativeHotness(
210     "sample-profile-icp-relative-hotness", cl::Hidden, cl::init(25),
211     cl::desc(
212         "Relative hotness percentage threshold for indirect "
213         "call promotion in proirity-based sample profile loader inlining."));
214 
215 static cl::opt<unsigned> ProfileICPRelativeHotnessSkip(
216     "sample-profile-icp-relative-hotness-skip", cl::Hidden, cl::init(1),
217     cl::desc(
218         "Skip relative hotness check for ICP up to given number of targets."));
219 
220 static cl::opt<bool> CallsitePrioritizedInline(
221     "sample-profile-prioritized-inline", cl::Hidden, cl::ZeroOrMore,
222     cl::init(false),
223     cl::desc("Use call site prioritized inlining for sample profile loader."
224              "Currently only CSSPGO is supported."));
225 
226 static cl::opt<bool> UsePreInlinerDecision(
227     "sample-profile-use-preinliner", cl::Hidden, cl::ZeroOrMore,
228     cl::init(false),
229     cl::desc("Use the preinliner decisions stored in profile context."));
230 
231 static cl::opt<bool> AllowRecursiveInline(
232     "sample-profile-recursive-inline", cl::Hidden, cl::ZeroOrMore,
233     cl::init(false),
234     cl::desc("Allow sample loader inliner to inline recursive calls."));
235 
236 static cl::opt<std::string> ProfileInlineReplayFile(
237     "sample-profile-inline-replay", cl::init(""), cl::value_desc("filename"),
238     cl::desc(
239         "Optimization remarks file containing inline remarks to be replayed "
240         "by inlining from sample profile loader."),
241     cl::Hidden);
242 
243 static cl::opt<ReplayInlinerSettings::Scope> ProfileInlineReplayScope(
244     "sample-profile-inline-replay-scope",
245     cl::init(ReplayInlinerSettings::Scope::Function),
246     cl::values(clEnumValN(ReplayInlinerSettings::Scope::Function, "Function",
247                           "Replay on functions that have remarks associated "
248                           "with them (default)"),
249                clEnumValN(ReplayInlinerSettings::Scope::Module, "Module",
250                           "Replay on the entire module")),
251     cl::desc("Whether inline replay should be applied to the entire "
252              "Module or just the Functions (default) that are present as "
253              "callers in remarks during sample profile inlining."),
254     cl::Hidden);
255 
256 static cl::opt<ReplayInlinerSettings::Fallback> ProfileInlineReplayFallback(
257     "sample-profile-inline-replay-fallback",
258     cl::init(ReplayInlinerSettings::Fallback::Original),
259     cl::values(
260         clEnumValN(
261             ReplayInlinerSettings::Fallback::Original, "Original",
262             "All decisions not in replay send to original advisor (default)"),
263         clEnumValN(ReplayInlinerSettings::Fallback::AlwaysInline,
264                    "AlwaysInline", "All decisions not in replay are inlined"),
265         clEnumValN(ReplayInlinerSettings::Fallback::NeverInline, "NeverInline",
266                    "All decisions not in replay are not inlined")),
267     cl::desc("How sample profile inline replay treats sites that don't come "
268              "from the replay. Original: defers to original advisor, "
269              "AlwaysInline: inline all sites not in replay, NeverInline: "
270              "inline no sites not in replay"),
271     cl::Hidden);
272 
273 static cl::opt<CallSiteFormat::Format> ProfileInlineReplayFormat(
274     "sample-profile-inline-replay-format",
275     cl::init(CallSiteFormat::Format::LineColumnDiscriminator),
276     cl::values(
277         clEnumValN(CallSiteFormat::Format::Line, "Line", "<Line Number>"),
278         clEnumValN(CallSiteFormat::Format::LineColumn, "LineColumn",
279                    "<Line Number>:<Column Number>"),
280         clEnumValN(CallSiteFormat::Format::LineDiscriminator,
281                    "LineDiscriminator", "<Line Number>.<Discriminator>"),
282         clEnumValN(CallSiteFormat::Format::LineColumnDiscriminator,
283                    "LineColumnDiscriminator",
284                    "<Line Number>:<Column Number>.<Discriminator> (default)")),
285     cl::desc("How sample profile inline replay file is formatted"), cl::Hidden);
286 
287 static cl::opt<unsigned>
288     MaxNumPromotions("sample-profile-icp-max-prom", cl::init(3), cl::Hidden,
289                      cl::ZeroOrMore,
290                      cl::desc("Max number of promotions for a single indirect "
291                               "call callsite in sample profile loader"));
292 
293 static cl::opt<bool> OverwriteExistingWeights(
294     "overwrite-existing-weights", cl::Hidden, cl::init(false),
295     cl::desc("Ignore existing branch weights on IR and always overwrite."));
296 
297 extern cl::opt<bool> EnableExtTspBlockPlacement;
298 
299 namespace {
300 
301 using BlockWeightMap = DenseMap<const BasicBlock *, uint64_t>;
302 using EquivalenceClassMap = DenseMap<const BasicBlock *, const BasicBlock *>;
303 using Edge = std::pair<const BasicBlock *, const BasicBlock *>;
304 using EdgeWeightMap = DenseMap<Edge, uint64_t>;
305 using BlockEdgeMap =
306     DenseMap<const BasicBlock *, SmallVector<const BasicBlock *, 8>>;
307 
308 class GUIDToFuncNameMapper {
309 public:
310   GUIDToFuncNameMapper(Module &M, SampleProfileReader &Reader,
311                        DenseMap<uint64_t, StringRef> &GUIDToFuncNameMap)
312       : CurrentReader(Reader), CurrentModule(M),
313         CurrentGUIDToFuncNameMap(GUIDToFuncNameMap) {
314     if (!CurrentReader.useMD5())
315       return;
316 
317     for (const auto &F : CurrentModule) {
318       StringRef OrigName = F.getName();
319       CurrentGUIDToFuncNameMap.insert(
320           {Function::getGUID(OrigName), OrigName});
321 
322       // Local to global var promotion used by optimization like thinlto
323       // will rename the var and add suffix like ".llvm.xxx" to the
324       // original local name. In sample profile, the suffixes of function
325       // names are all stripped. Since it is possible that the mapper is
326       // built in post-thin-link phase and var promotion has been done,
327       // we need to add the substring of function name without the suffix
328       // into the GUIDToFuncNameMap.
329       StringRef CanonName = FunctionSamples::getCanonicalFnName(F);
330       if (CanonName != OrigName)
331         CurrentGUIDToFuncNameMap.insert(
332             {Function::getGUID(CanonName), CanonName});
333     }
334 
335     // Update GUIDToFuncNameMap for each function including inlinees.
336     SetGUIDToFuncNameMapForAll(&CurrentGUIDToFuncNameMap);
337   }
338 
339   ~GUIDToFuncNameMapper() {
340     if (!CurrentReader.useMD5())
341       return;
342 
343     CurrentGUIDToFuncNameMap.clear();
344 
345     // Reset GUIDToFuncNameMap for of each function as they're no
346     // longer valid at this point.
347     SetGUIDToFuncNameMapForAll(nullptr);
348   }
349 
350 private:
351   void SetGUIDToFuncNameMapForAll(DenseMap<uint64_t, StringRef> *Map) {
352     std::queue<FunctionSamples *> FSToUpdate;
353     for (auto &IFS : CurrentReader.getProfiles()) {
354       FSToUpdate.push(&IFS.second);
355     }
356 
357     while (!FSToUpdate.empty()) {
358       FunctionSamples *FS = FSToUpdate.front();
359       FSToUpdate.pop();
360       FS->GUIDToFuncNameMap = Map;
361       for (const auto &ICS : FS->getCallsiteSamples()) {
362         const FunctionSamplesMap &FSMap = ICS.second;
363         for (auto &IFS : FSMap) {
364           FunctionSamples &FS = const_cast<FunctionSamples &>(IFS.second);
365           FSToUpdate.push(&FS);
366         }
367       }
368     }
369   }
370 
371   SampleProfileReader &CurrentReader;
372   Module &CurrentModule;
373   DenseMap<uint64_t, StringRef> &CurrentGUIDToFuncNameMap;
374 };
375 
376 // Inline candidate used by iterative callsite prioritized inliner
377 struct InlineCandidate {
378   CallBase *CallInstr;
379   const FunctionSamples *CalleeSamples;
380   // Prorated callsite count, which will be used to guide inlining. For example,
381   // if a callsite is duplicated in LTO prelink, then in LTO postlink the two
382   // copies will get their own distribution factors and their prorated counts
383   // will be used to decide if they should be inlined independently.
384   uint64_t CallsiteCount;
385   // Call site distribution factor to prorate the profile samples for a
386   // duplicated callsite. Default value is 1.0.
387   float CallsiteDistribution;
388 };
389 
390 // Inline candidate comparer using call site weight
391 struct CandidateComparer {
392   bool operator()(const InlineCandidate &LHS, const InlineCandidate &RHS) {
393     if (LHS.CallsiteCount != RHS.CallsiteCount)
394       return LHS.CallsiteCount < RHS.CallsiteCount;
395 
396     const FunctionSamples *LCS = LHS.CalleeSamples;
397     const FunctionSamples *RCS = RHS.CalleeSamples;
398     assert(LCS && RCS && "Expect non-null FunctionSamples");
399 
400     // Tie breaker using number of samples try to favor smaller functions first
401     if (LCS->getBodySamples().size() != RCS->getBodySamples().size())
402       return LCS->getBodySamples().size() > RCS->getBodySamples().size();
403 
404     // Tie breaker using GUID so we have stable/deterministic inlining order
405     return LCS->getGUID(LCS->getName()) < RCS->getGUID(RCS->getName());
406   }
407 };
408 
409 using CandidateQueue =
410     PriorityQueue<InlineCandidate, std::vector<InlineCandidate>,
411                   CandidateComparer>;
412 
413 /// Sample profile pass.
414 ///
415 /// This pass reads profile data from the file specified by
416 /// -sample-profile-file and annotates every affected function with the
417 /// profile information found in that file.
418 class SampleProfileLoader final
419     : public SampleProfileLoaderBaseImpl<BasicBlock> {
420 public:
421   SampleProfileLoader(
422       StringRef Name, StringRef RemapName, ThinOrFullLTOPhase LTOPhase,
423       std::function<AssumptionCache &(Function &)> GetAssumptionCache,
424       std::function<TargetTransformInfo &(Function &)> GetTargetTransformInfo,
425       std::function<const TargetLibraryInfo &(Function &)> GetTLI)
426       : SampleProfileLoaderBaseImpl(std::string(Name), std::string(RemapName)),
427         GetAC(std::move(GetAssumptionCache)),
428         GetTTI(std::move(GetTargetTransformInfo)), GetTLI(std::move(GetTLI)),
429         LTOPhase(LTOPhase) {}
430 
431   bool doInitialization(Module &M, FunctionAnalysisManager *FAM = nullptr);
432   bool runOnModule(Module &M, ModuleAnalysisManager *AM,
433                    ProfileSummaryInfo *_PSI, CallGraph *CG);
434 
435 protected:
436   bool runOnFunction(Function &F, ModuleAnalysisManager *AM);
437   bool emitAnnotations(Function &F);
438   ErrorOr<uint64_t> getInstWeight(const Instruction &I) override;
439   ErrorOr<uint64_t> getProbeWeight(const Instruction &I);
440   const FunctionSamples *findCalleeFunctionSamples(const CallBase &I) const;
441   const FunctionSamples *
442   findFunctionSamples(const Instruction &I) const override;
443   std::vector<const FunctionSamples *>
444   findIndirectCallFunctionSamples(const Instruction &I, uint64_t &Sum) const;
445   void findExternalInlineCandidate(CallBase *CB, const FunctionSamples *Samples,
446                                    DenseSet<GlobalValue::GUID> &InlinedGUIDs,
447                                    const StringMap<Function *> &SymbolMap,
448                                    uint64_t Threshold);
449   // Attempt to promote indirect call and also inline the promoted call
450   bool tryPromoteAndInlineCandidate(
451       Function &F, InlineCandidate &Candidate, uint64_t SumOrigin,
452       uint64_t &Sum, SmallVector<CallBase *, 8> *InlinedCallSites = nullptr);
453 
454   bool inlineHotFunctions(Function &F,
455                           DenseSet<GlobalValue::GUID> &InlinedGUIDs);
456   Optional<InlineCost> getExternalInlineAdvisorCost(CallBase &CB);
457   bool getExternalInlineAdvisorShouldInline(CallBase &CB);
458   InlineCost shouldInlineCandidate(InlineCandidate &Candidate);
459   bool getInlineCandidate(InlineCandidate *NewCandidate, CallBase *CB);
460   bool
461   tryInlineCandidate(InlineCandidate &Candidate,
462                      SmallVector<CallBase *, 8> *InlinedCallSites = nullptr);
463   bool
464   inlineHotFunctionsWithPriority(Function &F,
465                                  DenseSet<GlobalValue::GUID> &InlinedGUIDs);
466   // Inline cold/small functions in addition to hot ones
467   bool shouldInlineColdCallee(CallBase &CallInst);
468   void emitOptimizationRemarksForInlineCandidates(
469       const SmallVectorImpl<CallBase *> &Candidates, const Function &F,
470       bool Hot);
471   void promoteMergeNotInlinedContextSamples(
472       DenseMap<CallBase *, const FunctionSamples *> NonInlinedCallSites,
473       const Function &F);
474   std::vector<Function *> buildFunctionOrder(Module &M, CallGraph *CG);
475   std::unique_ptr<ProfiledCallGraph> buildProfiledCallGraph(CallGraph &CG);
476   void generateMDProfMetadata(Function &F);
477 
478   /// Map from function name to Function *. Used to find the function from
479   /// the function name. If the function name contains suffix, additional
480   /// entry is added to map from the stripped name to the function if there
481   /// is one-to-one mapping.
482   StringMap<Function *> SymbolMap;
483 
484   std::function<AssumptionCache &(Function &)> GetAC;
485   std::function<TargetTransformInfo &(Function &)> GetTTI;
486   std::function<const TargetLibraryInfo &(Function &)> GetTLI;
487 
488   /// Profile tracker for different context.
489   std::unique_ptr<SampleContextTracker> ContextTracker;
490 
491   /// Flag indicating whether input profile is context-sensitive
492   bool ProfileIsCSFlat = false;
493 
494   /// Flag indicating which LTO/ThinLTO phase the pass is invoked in.
495   ///
496   /// We need to know the LTO phase because for example in ThinLTOPrelink
497   /// phase, in annotation, we should not promote indirect calls. Instead,
498   /// we will mark GUIDs that needs to be annotated to the function.
499   ThinOrFullLTOPhase LTOPhase;
500 
501   /// Profle Symbol list tells whether a function name appears in the binary
502   /// used to generate the current profile.
503   std::unique_ptr<ProfileSymbolList> PSL;
504 
505   /// Total number of samples collected in this profile.
506   ///
507   /// This is the sum of all the samples collected in all the functions executed
508   /// at runtime.
509   uint64_t TotalCollectedSamples = 0;
510 
511   // Information recorded when we declined to inline a call site
512   // because we have determined it is too cold is accumulated for
513   // each callee function. Initially this is just the entry count.
514   struct NotInlinedProfileInfo {
515     uint64_t entryCount;
516   };
517   DenseMap<Function *, NotInlinedProfileInfo> notInlinedCallInfo;
518 
519   // GUIDToFuncNameMap saves the mapping from GUID to the symbol name, for
520   // all the function symbols defined or declared in current module.
521   DenseMap<uint64_t, StringRef> GUIDToFuncNameMap;
522 
523   // All the Names used in FunctionSamples including outline function
524   // names, inline instance names and call target names.
525   StringSet<> NamesInProfile;
526 
527   // For symbol in profile symbol list, whether to regard their profiles
528   // to be accurate. It is mainly decided by existance of profile symbol
529   // list and -profile-accurate-for-symsinlist flag, but it can be
530   // overriden by -profile-sample-accurate or profile-sample-accurate
531   // attribute.
532   bool ProfAccForSymsInList;
533 
534   // External inline advisor used to replay inline decision from remarks.
535   std::unique_ptr<InlineAdvisor> ExternalInlineAdvisor;
536 
537   // A pseudo probe helper to correlate the imported sample counts.
538   std::unique_ptr<PseudoProbeManager> ProbeManager;
539 };
540 
541 class SampleProfileLoaderLegacyPass : public ModulePass {
542 public:
543   // Class identification, replacement for typeinfo
544   static char ID;
545 
546   SampleProfileLoaderLegacyPass(
547       StringRef Name = SampleProfileFile,
548       ThinOrFullLTOPhase LTOPhase = ThinOrFullLTOPhase::None)
549       : ModulePass(ID), SampleLoader(
550                             Name, SampleProfileRemappingFile, LTOPhase,
551                             [&](Function &F) -> AssumptionCache & {
552                               return ACT->getAssumptionCache(F);
553                             },
554                             [&](Function &F) -> TargetTransformInfo & {
555                               return TTIWP->getTTI(F);
556                             },
557                             [&](Function &F) -> TargetLibraryInfo & {
558                               return TLIWP->getTLI(F);
559                             }) {
560     initializeSampleProfileLoaderLegacyPassPass(
561         *PassRegistry::getPassRegistry());
562   }
563 
564   void dump() { SampleLoader.dump(); }
565 
566   bool doInitialization(Module &M) override {
567     return SampleLoader.doInitialization(M);
568   }
569 
570   StringRef getPassName() const override { return "Sample profile pass"; }
571   bool runOnModule(Module &M) override;
572 
573   void getAnalysisUsage(AnalysisUsage &AU) const override {
574     AU.addRequired<AssumptionCacheTracker>();
575     AU.addRequired<TargetTransformInfoWrapperPass>();
576     AU.addRequired<TargetLibraryInfoWrapperPass>();
577     AU.addRequired<ProfileSummaryInfoWrapperPass>();
578   }
579 
580 private:
581   SampleProfileLoader SampleLoader;
582   AssumptionCacheTracker *ACT = nullptr;
583   TargetTransformInfoWrapperPass *TTIWP = nullptr;
584   TargetLibraryInfoWrapperPass *TLIWP = nullptr;
585 };
586 
587 } // end anonymous namespace
588 
589 ErrorOr<uint64_t> SampleProfileLoader::getInstWeight(const Instruction &Inst) {
590   if (FunctionSamples::ProfileIsProbeBased)
591     return getProbeWeight(Inst);
592 
593   const DebugLoc &DLoc = Inst.getDebugLoc();
594   if (!DLoc)
595     return std::error_code();
596 
597   // Ignore all intrinsics, phinodes and branch instructions.
598   // Branch and phinodes instruction usually contains debug info from sources
599   // outside of the residing basic block, thus we ignore them during annotation.
600   if (isa<BranchInst>(Inst) || isa<IntrinsicInst>(Inst) || isa<PHINode>(Inst))
601     return std::error_code();
602 
603   // For non-CS profile, if a direct call/invoke instruction is inlined in
604   // profile (findCalleeFunctionSamples returns non-empty result), but not
605   // inlined here, it means that the inlined callsite has no sample, thus the
606   // call instruction should have 0 count.
607   // For CS profile, the callsite count of previously inlined callees is
608   // populated with the entry count of the callees.
609   if (!ProfileIsCSFlat)
610     if (const auto *CB = dyn_cast<CallBase>(&Inst))
611       if (!CB->isIndirectCall() && findCalleeFunctionSamples(*CB))
612         return 0;
613 
614   return getInstWeightImpl(Inst);
615 }
616 
617 // Here use error_code to represent: 1) The dangling probe. 2) Ignore the weight
618 // of non-probe instruction. So if all instructions of the BB give error_code,
619 // tell the inference algorithm to infer the BB weight.
620 ErrorOr<uint64_t> SampleProfileLoader::getProbeWeight(const Instruction &Inst) {
621   assert(FunctionSamples::ProfileIsProbeBased &&
622          "Profile is not pseudo probe based");
623   Optional<PseudoProbe> Probe = extractProbe(Inst);
624   // Ignore the non-probe instruction. If none of the instruction in the BB is
625   // probe, we choose to infer the BB's weight.
626   if (!Probe)
627     return std::error_code();
628 
629   const FunctionSamples *FS = findFunctionSamples(Inst);
630   // If none of the instruction has FunctionSample, we choose to return zero
631   // value sample to indicate the BB is cold. This could happen when the
632   // instruction is from inlinee and no profile data is found.
633   // FIXME: This should not be affected by the source drift issue as 1) if the
634   // newly added function is top-level inliner, it won't match the CFG checksum
635   // in the function profile or 2) if it's the inlinee, the inlinee should have
636   // a profile, otherwise it wouldn't be inlined. For non-probe based profile,
637   // we can improve it by adding a switch for profile-sample-block-accurate for
638   // block level counts in the future.
639   if (!FS)
640     return 0;
641 
642   // For non-CS profile, If a direct call/invoke instruction is inlined in
643   // profile (findCalleeFunctionSamples returns non-empty result), but not
644   // inlined here, it means that the inlined callsite has no sample, thus the
645   // call instruction should have 0 count.
646   // For CS profile, the callsite count of previously inlined callees is
647   // populated with the entry count of the callees.
648   if (!ProfileIsCSFlat)
649     if (const auto *CB = dyn_cast<CallBase>(&Inst))
650       if (!CB->isIndirectCall() && findCalleeFunctionSamples(*CB))
651         return 0;
652 
653   const ErrorOr<uint64_t> &R = FS->findSamplesAt(Probe->Id, 0);
654   if (R) {
655     uint64_t Samples = R.get() * Probe->Factor;
656     bool FirstMark = CoverageTracker.markSamplesUsed(FS, Probe->Id, 0, Samples);
657     if (FirstMark) {
658       ORE->emit([&]() {
659         OptimizationRemarkAnalysis Remark(DEBUG_TYPE, "AppliedSamples", &Inst);
660         Remark << "Applied " << ore::NV("NumSamples", Samples);
661         Remark << " samples from profile (ProbeId=";
662         Remark << ore::NV("ProbeId", Probe->Id);
663         Remark << ", Factor=";
664         Remark << ore::NV("Factor", Probe->Factor);
665         Remark << ", OriginalSamples=";
666         Remark << ore::NV("OriginalSamples", R.get());
667         Remark << ")";
668         return Remark;
669       });
670     }
671     LLVM_DEBUG(dbgs() << "    " << Probe->Id << ":" << Inst
672                       << " - weight: " << R.get() << " - factor: "
673                       << format("%0.2f", Probe->Factor) << ")\n");
674     return Samples;
675   }
676   return R;
677 }
678 
679 /// Get the FunctionSamples for a call instruction.
680 ///
681 /// The FunctionSamples of a call/invoke instruction \p Inst is the inlined
682 /// instance in which that call instruction is calling to. It contains
683 /// all samples that resides in the inlined instance. We first find the
684 /// inlined instance in which the call instruction is from, then we
685 /// traverse its children to find the callsite with the matching
686 /// location.
687 ///
688 /// \param Inst Call/Invoke instruction to query.
689 ///
690 /// \returns The FunctionSamples pointer to the inlined instance.
691 const FunctionSamples *
692 SampleProfileLoader::findCalleeFunctionSamples(const CallBase &Inst) const {
693   const DILocation *DIL = Inst.getDebugLoc();
694   if (!DIL) {
695     return nullptr;
696   }
697 
698   StringRef CalleeName;
699   if (Function *Callee = Inst.getCalledFunction())
700     CalleeName = Callee->getName();
701 
702   if (ProfileIsCSFlat)
703     return ContextTracker->getCalleeContextSamplesFor(Inst, CalleeName);
704 
705   const FunctionSamples *FS = findFunctionSamples(Inst);
706   if (FS == nullptr)
707     return nullptr;
708 
709   return FS->findFunctionSamplesAt(FunctionSamples::getCallSiteIdentifier(DIL),
710                                    CalleeName, Reader->getRemapper());
711 }
712 
713 /// Returns a vector of FunctionSamples that are the indirect call targets
714 /// of \p Inst. The vector is sorted by the total number of samples. Stores
715 /// the total call count of the indirect call in \p Sum.
716 std::vector<const FunctionSamples *>
717 SampleProfileLoader::findIndirectCallFunctionSamples(
718     const Instruction &Inst, uint64_t &Sum) const {
719   const DILocation *DIL = Inst.getDebugLoc();
720   std::vector<const FunctionSamples *> R;
721 
722   if (!DIL) {
723     return R;
724   }
725 
726   auto FSCompare = [](const FunctionSamples *L, const FunctionSamples *R) {
727     assert(L && R && "Expect non-null FunctionSamples");
728     if (L->getEntrySamples() != R->getEntrySamples())
729       return L->getEntrySamples() > R->getEntrySamples();
730     return FunctionSamples::getGUID(L->getName()) <
731            FunctionSamples::getGUID(R->getName());
732   };
733 
734   if (ProfileIsCSFlat) {
735     auto CalleeSamples =
736         ContextTracker->getIndirectCalleeContextSamplesFor(DIL);
737     if (CalleeSamples.empty())
738       return R;
739 
740     // For CSSPGO, we only use target context profile's entry count
741     // as that already includes both inlined callee and non-inlined ones..
742     Sum = 0;
743     for (const auto *const FS : CalleeSamples) {
744       Sum += FS->getEntrySamples();
745       R.push_back(FS);
746     }
747     llvm::sort(R, FSCompare);
748     return R;
749   }
750 
751   const FunctionSamples *FS = findFunctionSamples(Inst);
752   if (FS == nullptr)
753     return R;
754 
755   auto CallSite = FunctionSamples::getCallSiteIdentifier(DIL);
756   auto T = FS->findCallTargetMapAt(CallSite);
757   Sum = 0;
758   if (T)
759     for (const auto &T_C : T.get())
760       Sum += T_C.second;
761   if (const FunctionSamplesMap *M = FS->findFunctionSamplesMapAt(CallSite)) {
762     if (M->empty())
763       return R;
764     for (const auto &NameFS : *M) {
765       Sum += NameFS.second.getEntrySamples();
766       R.push_back(&NameFS.second);
767     }
768     llvm::sort(R, FSCompare);
769   }
770   return R;
771 }
772 
773 const FunctionSamples *
774 SampleProfileLoader::findFunctionSamples(const Instruction &Inst) const {
775   if (FunctionSamples::ProfileIsProbeBased) {
776     Optional<PseudoProbe> Probe = extractProbe(Inst);
777     if (!Probe)
778       return nullptr;
779   }
780 
781   const DILocation *DIL = Inst.getDebugLoc();
782   if (!DIL)
783     return Samples;
784 
785   auto it = DILocation2SampleMap.try_emplace(DIL,nullptr);
786   if (it.second) {
787     if (ProfileIsCSFlat)
788       it.first->second = ContextTracker->getContextSamplesFor(DIL);
789     else
790       it.first->second =
791           Samples->findFunctionSamples(DIL, Reader->getRemapper());
792   }
793   return it.first->second;
794 }
795 
796 /// Check whether the indirect call promotion history of \p Inst allows
797 /// the promotion for \p Candidate.
798 /// If the profile count for the promotion candidate \p Candidate is
799 /// NOMORE_ICP_MAGICNUM, it means \p Candidate has already been promoted
800 /// for \p Inst. If we already have at least MaxNumPromotions
801 /// NOMORE_ICP_MAGICNUM count values in the value profile of \p Inst, we
802 /// cannot promote for \p Inst anymore.
803 static bool doesHistoryAllowICP(const Instruction &Inst, StringRef Candidate) {
804   uint32_t NumVals = 0;
805   uint64_t TotalCount = 0;
806   std::unique_ptr<InstrProfValueData[]> ValueData =
807       std::make_unique<InstrProfValueData[]>(MaxNumPromotions);
808   bool Valid =
809       getValueProfDataFromInst(Inst, IPVK_IndirectCallTarget, MaxNumPromotions,
810                                ValueData.get(), NumVals, TotalCount, true);
811   // No valid value profile so no promoted targets have been recorded
812   // before. Ok to do ICP.
813   if (!Valid)
814     return true;
815 
816   unsigned NumPromoted = 0;
817   for (uint32_t I = 0; I < NumVals; I++) {
818     if (ValueData[I].Count != NOMORE_ICP_MAGICNUM)
819       continue;
820 
821     // If the promotion candidate has NOMORE_ICP_MAGICNUM count in the
822     // metadata, it means the candidate has been promoted for this
823     // indirect call.
824     if (ValueData[I].Value == Function::getGUID(Candidate))
825       return false;
826     NumPromoted++;
827     // If already have MaxNumPromotions promotion, don't do it anymore.
828     if (NumPromoted == MaxNumPromotions)
829       return false;
830   }
831   return true;
832 }
833 
834 /// Update indirect call target profile metadata for \p Inst.
835 /// Usually \p Sum is the sum of counts of all the targets for \p Inst.
836 /// If it is 0, it means updateIDTMetaData is used to mark a
837 /// certain target to be promoted already. If it is not zero,
838 /// we expect to use it to update the total count in the value profile.
839 static void
840 updateIDTMetaData(Instruction &Inst,
841                   const SmallVectorImpl<InstrProfValueData> &CallTargets,
842                   uint64_t Sum) {
843   // Bail out early if MaxNumPromotions is zero.
844   // This prevents allocating an array of zero length below.
845   //
846   // Note `updateIDTMetaData` is called in two places so check
847   // `MaxNumPromotions` inside it.
848   if (MaxNumPromotions == 0)
849     return;
850   uint32_t NumVals = 0;
851   // OldSum is the existing total count in the value profile data.
852   uint64_t OldSum = 0;
853   std::unique_ptr<InstrProfValueData[]> ValueData =
854       std::make_unique<InstrProfValueData[]>(MaxNumPromotions);
855   bool Valid =
856       getValueProfDataFromInst(Inst, IPVK_IndirectCallTarget, MaxNumPromotions,
857                                ValueData.get(), NumVals, OldSum, true);
858 
859   DenseMap<uint64_t, uint64_t> ValueCountMap;
860   if (Sum == 0) {
861     assert((CallTargets.size() == 1 &&
862             CallTargets[0].Count == NOMORE_ICP_MAGICNUM) &&
863            "If sum is 0, assume only one element in CallTargets "
864            "with count being NOMORE_ICP_MAGICNUM");
865     // Initialize ValueCountMap with existing value profile data.
866     if (Valid) {
867       for (uint32_t I = 0; I < NumVals; I++)
868         ValueCountMap[ValueData[I].Value] = ValueData[I].Count;
869     }
870     auto Pair =
871         ValueCountMap.try_emplace(CallTargets[0].Value, CallTargets[0].Count);
872     // If the target already exists in value profile, decrease the total
873     // count OldSum and reset the target's count to NOMORE_ICP_MAGICNUM.
874     if (!Pair.second) {
875       OldSum -= Pair.first->second;
876       Pair.first->second = NOMORE_ICP_MAGICNUM;
877     }
878     Sum = OldSum;
879   } else {
880     // Initialize ValueCountMap with existing NOMORE_ICP_MAGICNUM
881     // counts in the value profile.
882     if (Valid) {
883       for (uint32_t I = 0; I < NumVals; I++) {
884         if (ValueData[I].Count == NOMORE_ICP_MAGICNUM)
885           ValueCountMap[ValueData[I].Value] = ValueData[I].Count;
886       }
887     }
888 
889     for (const auto &Data : CallTargets) {
890       auto Pair = ValueCountMap.try_emplace(Data.Value, Data.Count);
891       if (Pair.second)
892         continue;
893       // The target represented by Data.Value has already been promoted.
894       // Keep the count as NOMORE_ICP_MAGICNUM in the profile and decrease
895       // Sum by Data.Count.
896       assert(Sum >= Data.Count && "Sum should never be less than Data.Count");
897       Sum -= Data.Count;
898     }
899   }
900 
901   SmallVector<InstrProfValueData, 8> NewCallTargets;
902   for (const auto &ValueCount : ValueCountMap) {
903     NewCallTargets.emplace_back(
904         InstrProfValueData{ValueCount.first, ValueCount.second});
905   }
906 
907   llvm::sort(NewCallTargets,
908              [](const InstrProfValueData &L, const InstrProfValueData &R) {
909                if (L.Count != R.Count)
910                  return L.Count > R.Count;
911                return L.Value > R.Value;
912              });
913 
914   uint32_t MaxMDCount =
915       std::min(NewCallTargets.size(), static_cast<size_t>(MaxNumPromotions));
916   annotateValueSite(*Inst.getParent()->getParent()->getParent(), Inst,
917                     NewCallTargets, Sum, IPVK_IndirectCallTarget, MaxMDCount);
918 }
919 
920 /// Attempt to promote indirect call and also inline the promoted call.
921 ///
922 /// \param F  Caller function.
923 /// \param Candidate  ICP and inline candidate.
924 /// \param SumOrigin  Original sum of target counts for indirect call before
925 ///                   promoting given candidate.
926 /// \param Sum        Prorated sum of remaining target counts for indirect call
927 ///                   after promoting given candidate.
928 /// \param InlinedCallSite  Output vector for new call sites exposed after
929 /// inlining.
930 bool SampleProfileLoader::tryPromoteAndInlineCandidate(
931     Function &F, InlineCandidate &Candidate, uint64_t SumOrigin, uint64_t &Sum,
932     SmallVector<CallBase *, 8> *InlinedCallSite) {
933   // Bail out early if sample-loader inliner is disabled.
934   if (DisableSampleLoaderInlining)
935     return false;
936 
937   // Bail out early if MaxNumPromotions is zero.
938   // This prevents allocating an array of zero length in callees below.
939   if (MaxNumPromotions == 0)
940     return false;
941   auto CalleeFunctionName = Candidate.CalleeSamples->getFuncName();
942   auto R = SymbolMap.find(CalleeFunctionName);
943   if (R == SymbolMap.end() || !R->getValue())
944     return false;
945 
946   auto &CI = *Candidate.CallInstr;
947   if (!doesHistoryAllowICP(CI, R->getValue()->getName()))
948     return false;
949 
950   const char *Reason = "Callee function not available";
951   // R->getValue() != &F is to prevent promoting a recursive call.
952   // If it is a recursive call, we do not inline it as it could bloat
953   // the code exponentially. There is way to better handle this, e.g.
954   // clone the caller first, and inline the cloned caller if it is
955   // recursive. As llvm does not inline recursive calls, we will
956   // simply ignore it instead of handling it explicitly.
957   if (!R->getValue()->isDeclaration() && R->getValue()->getSubprogram() &&
958       R->getValue()->hasFnAttribute("use-sample-profile") &&
959       R->getValue() != &F && isLegalToPromote(CI, R->getValue(), &Reason)) {
960     // For promoted target, set its value with NOMORE_ICP_MAGICNUM count
961     // in the value profile metadata so the target won't be promoted again.
962     SmallVector<InstrProfValueData, 1> SortedCallTargets = {InstrProfValueData{
963         Function::getGUID(R->getValue()->getName()), NOMORE_ICP_MAGICNUM}};
964     updateIDTMetaData(CI, SortedCallTargets, 0);
965 
966     auto *DI = &pgo::promoteIndirectCall(
967         CI, R->getValue(), Candidate.CallsiteCount, Sum, false, ORE);
968     if (DI) {
969       Sum -= Candidate.CallsiteCount;
970       // Do not prorate the indirect callsite distribution since the original
971       // distribution will be used to scale down non-promoted profile target
972       // counts later. By doing this we lose track of the real callsite count
973       // for the leftover indirect callsite as a trade off for accurate call
974       // target counts.
975       // TODO: Ideally we would have two separate factors, one for call site
976       // counts and one is used to prorate call target counts.
977       // Do not update the promoted direct callsite distribution at this
978       // point since the original distribution combined with the callee profile
979       // will be used to prorate callsites from the callee if inlined. Once not
980       // inlined, the direct callsite distribution should be prorated so that
981       // the it will reflect the real callsite counts.
982       Candidate.CallInstr = DI;
983       if (isa<CallInst>(DI) || isa<InvokeInst>(DI)) {
984         bool Inlined = tryInlineCandidate(Candidate, InlinedCallSite);
985         if (!Inlined) {
986           // Prorate the direct callsite distribution so that it reflects real
987           // callsite counts.
988           setProbeDistributionFactor(
989               *DI, static_cast<float>(Candidate.CallsiteCount) / SumOrigin);
990         }
991         return Inlined;
992       }
993     }
994   } else {
995     LLVM_DEBUG(dbgs() << "\nFailed to promote indirect call to "
996                       << Candidate.CalleeSamples->getFuncName() << " because "
997                       << Reason << "\n");
998   }
999   return false;
1000 }
1001 
1002 bool SampleProfileLoader::shouldInlineColdCallee(CallBase &CallInst) {
1003   if (!ProfileSizeInline)
1004     return false;
1005 
1006   Function *Callee = CallInst.getCalledFunction();
1007   if (Callee == nullptr)
1008     return false;
1009 
1010   InlineCost Cost = getInlineCost(CallInst, getInlineParams(), GetTTI(*Callee),
1011                                   GetAC, GetTLI);
1012 
1013   if (Cost.isNever())
1014     return false;
1015 
1016   if (Cost.isAlways())
1017     return true;
1018 
1019   return Cost.getCost() <= SampleColdCallSiteThreshold;
1020 }
1021 
1022 void SampleProfileLoader::emitOptimizationRemarksForInlineCandidates(
1023     const SmallVectorImpl<CallBase *> &Candidates, const Function &F,
1024     bool Hot) {
1025   for (auto I : Candidates) {
1026     Function *CalledFunction = I->getCalledFunction();
1027     if (CalledFunction) {
1028       ORE->emit(OptimizationRemarkAnalysis(CSINLINE_DEBUG, "InlineAttempt",
1029                                            I->getDebugLoc(), I->getParent())
1030                 << "previous inlining reattempted for "
1031                 << (Hot ? "hotness: '" : "size: '")
1032                 << ore::NV("Callee", CalledFunction) << "' into '"
1033                 << ore::NV("Caller", &F) << "'");
1034     }
1035   }
1036 }
1037 
1038 void SampleProfileLoader::findExternalInlineCandidate(
1039     CallBase *CB, const FunctionSamples *Samples,
1040     DenseSet<GlobalValue::GUID> &InlinedGUIDs,
1041     const StringMap<Function *> &SymbolMap, uint64_t Threshold) {
1042 
1043   // If ExternalInlineAdvisor wants to inline an external function
1044   // make sure it's imported
1045   if (CB && getExternalInlineAdvisorShouldInline(*CB)) {
1046     // Samples may not exist for replayed function, if so
1047     // just add the direct GUID and move on
1048     if (!Samples) {
1049       InlinedGUIDs.insert(
1050           FunctionSamples::getGUID(CB->getCalledFunction()->getName()));
1051       return;
1052     }
1053     // Otherwise, drop the threshold to import everything that we can
1054     Threshold = 0;
1055   }
1056 
1057   assert(Samples && "expect non-null caller profile");
1058 
1059   // For AutoFDO profile, retrieve candidate profiles by walking over
1060   // the nested inlinee profiles.
1061   if (!ProfileIsCSFlat) {
1062     Samples->findInlinedFunctions(InlinedGUIDs, SymbolMap, Threshold);
1063     return;
1064   }
1065 
1066   ContextTrieNode *Caller =
1067       ContextTracker->getContextFor(Samples->getContext());
1068   std::queue<ContextTrieNode *> CalleeList;
1069   CalleeList.push(Caller);
1070   while (!CalleeList.empty()) {
1071     ContextTrieNode *Node = CalleeList.front();
1072     CalleeList.pop();
1073     FunctionSamples *CalleeSample = Node->getFunctionSamples();
1074     // For CSSPGO profile, retrieve candidate profile by walking over the
1075     // trie built for context profile. Note that also take call targets
1076     // even if callee doesn't have a corresponding context profile.
1077     if (!CalleeSample)
1078       continue;
1079 
1080     // If pre-inliner decision is used, honor that for importing as well.
1081     bool PreInline =
1082         UsePreInlinerDecision &&
1083         CalleeSample->getContext().hasAttribute(ContextShouldBeInlined);
1084     if (!PreInline && CalleeSample->getEntrySamples() < Threshold)
1085       continue;
1086 
1087     StringRef Name = CalleeSample->getFuncName();
1088     Function *Func = SymbolMap.lookup(Name);
1089     // Add to the import list only when it's defined out of module.
1090     if (!Func || Func->isDeclaration())
1091       InlinedGUIDs.insert(FunctionSamples::getGUID(CalleeSample->getName()));
1092 
1093     // Import hot CallTargets, which may not be available in IR because full
1094     // profile annotation cannot be done until backend compilation in ThinLTO.
1095     for (const auto &BS : CalleeSample->getBodySamples())
1096       for (const auto &TS : BS.second.getCallTargets())
1097         if (TS.getValue() > Threshold) {
1098           StringRef CalleeName = CalleeSample->getFuncName(TS.getKey());
1099           const Function *Callee = SymbolMap.lookup(CalleeName);
1100           if (!Callee || Callee->isDeclaration())
1101             InlinedGUIDs.insert(FunctionSamples::getGUID(TS.getKey()));
1102         }
1103 
1104     // Import hot child context profile associted with callees. Note that this
1105     // may have some overlap with the call target loop above, but doing this
1106     // based child context profile again effectively allow us to use the max of
1107     // entry count and call target count to determine importing.
1108     for (auto &Child : Node->getAllChildContext()) {
1109       ContextTrieNode *CalleeNode = &Child.second;
1110       CalleeList.push(CalleeNode);
1111     }
1112   }
1113 }
1114 
1115 /// Iteratively inline hot callsites of a function.
1116 ///
1117 /// Iteratively traverse all callsites of the function \p F, so as to
1118 /// find out callsites with corresponding inline instances.
1119 ///
1120 /// For such callsites,
1121 /// - If it is hot enough, inline the callsites and adds callsites of the callee
1122 ///   into the caller. If the call is an indirect call, first promote
1123 ///   it to direct call. Each indirect call is limited with a single target.
1124 ///
1125 /// - If a callsite is not inlined, merge the its profile to the outline
1126 ///   version (if --sample-profile-merge-inlinee is true), or scale the
1127 ///   counters of standalone function based on the profile of inlined
1128 ///   instances (if --sample-profile-merge-inlinee is false).
1129 ///
1130 ///   Later passes may consume the updated profiles.
1131 ///
1132 /// \param F function to perform iterative inlining.
1133 /// \param InlinedGUIDs a set to be updated to include all GUIDs that are
1134 ///     inlined in the profiled binary.
1135 ///
1136 /// \returns True if there is any inline happened.
1137 bool SampleProfileLoader::inlineHotFunctions(
1138     Function &F, DenseSet<GlobalValue::GUID> &InlinedGUIDs) {
1139   // ProfAccForSymsInList is used in callsiteIsHot. The assertion makes sure
1140   // Profile symbol list is ignored when profile-sample-accurate is on.
1141   assert((!ProfAccForSymsInList ||
1142           (!ProfileSampleAccurate &&
1143            !F.hasFnAttribute("profile-sample-accurate"))) &&
1144          "ProfAccForSymsInList should be false when profile-sample-accurate "
1145          "is enabled");
1146 
1147   DenseMap<CallBase *, const FunctionSamples *> LocalNotInlinedCallSites;
1148   bool Changed = false;
1149   bool LocalChanged = true;
1150   while (LocalChanged) {
1151     LocalChanged = false;
1152     SmallVector<CallBase *, 10> CIS;
1153     for (auto &BB : F) {
1154       bool Hot = false;
1155       SmallVector<CallBase *, 10> AllCandidates;
1156       SmallVector<CallBase *, 10> ColdCandidates;
1157       for (auto &I : BB.getInstList()) {
1158         const FunctionSamples *FS = nullptr;
1159         if (auto *CB = dyn_cast<CallBase>(&I)) {
1160           if (!isa<IntrinsicInst>(I)) {
1161             if ((FS = findCalleeFunctionSamples(*CB))) {
1162               assert((!FunctionSamples::UseMD5 || FS->GUIDToFuncNameMap) &&
1163                      "GUIDToFuncNameMap has to be populated");
1164               AllCandidates.push_back(CB);
1165               if (FS->getEntrySamples() > 0 || ProfileIsCSFlat)
1166                 LocalNotInlinedCallSites.try_emplace(CB, FS);
1167               if (callsiteIsHot(FS, PSI, ProfAccForSymsInList))
1168                 Hot = true;
1169               else if (shouldInlineColdCallee(*CB))
1170                 ColdCandidates.push_back(CB);
1171             } else if (getExternalInlineAdvisorShouldInline(*CB)) {
1172               AllCandidates.push_back(CB);
1173             }
1174           }
1175         }
1176       }
1177       if (Hot || ExternalInlineAdvisor) {
1178         CIS.insert(CIS.begin(), AllCandidates.begin(), AllCandidates.end());
1179         emitOptimizationRemarksForInlineCandidates(AllCandidates, F, true);
1180       } else {
1181         CIS.insert(CIS.begin(), ColdCandidates.begin(), ColdCandidates.end());
1182         emitOptimizationRemarksForInlineCandidates(ColdCandidates, F, false);
1183       }
1184     }
1185     for (CallBase *I : CIS) {
1186       Function *CalledFunction = I->getCalledFunction();
1187       InlineCandidate Candidate = {I, LocalNotInlinedCallSites.lookup(I),
1188                                    0 /* dummy count */,
1189                                    1.0 /* dummy distribution factor */};
1190       // Do not inline recursive calls.
1191       if (CalledFunction == &F)
1192         continue;
1193       if (I->isIndirectCall()) {
1194         uint64_t Sum;
1195         for (const auto *FS : findIndirectCallFunctionSamples(*I, Sum)) {
1196           uint64_t SumOrigin = Sum;
1197           if (LTOPhase == ThinOrFullLTOPhase::ThinLTOPreLink) {
1198             findExternalInlineCandidate(I, FS, InlinedGUIDs, SymbolMap,
1199                                         PSI->getOrCompHotCountThreshold());
1200             continue;
1201           }
1202           if (!callsiteIsHot(FS, PSI, ProfAccForSymsInList))
1203             continue;
1204 
1205           Candidate = {I, FS, FS->getEntrySamples(), 1.0};
1206           if (tryPromoteAndInlineCandidate(F, Candidate, SumOrigin, Sum)) {
1207             LocalNotInlinedCallSites.erase(I);
1208             LocalChanged = true;
1209           }
1210         }
1211       } else if (CalledFunction && CalledFunction->getSubprogram() &&
1212                  !CalledFunction->isDeclaration()) {
1213         if (tryInlineCandidate(Candidate)) {
1214           LocalNotInlinedCallSites.erase(I);
1215           LocalChanged = true;
1216         }
1217       } else if (LTOPhase == ThinOrFullLTOPhase::ThinLTOPreLink) {
1218         findExternalInlineCandidate(I, findCalleeFunctionSamples(*I),
1219                                     InlinedGUIDs, SymbolMap,
1220                                     PSI->getOrCompHotCountThreshold());
1221       }
1222     }
1223     Changed |= LocalChanged;
1224   }
1225 
1226   // For CS profile, profile for not inlined context will be merged when
1227   // base profile is being retrieved.
1228   if (!FunctionSamples::ProfileIsCSFlat)
1229     promoteMergeNotInlinedContextSamples(LocalNotInlinedCallSites, F);
1230   return Changed;
1231 }
1232 
1233 bool SampleProfileLoader::tryInlineCandidate(
1234     InlineCandidate &Candidate, SmallVector<CallBase *, 8> *InlinedCallSites) {
1235   // Do not attempt to inline a candidate if
1236   // --disable-sample-loader-inlining is true.
1237   if (DisableSampleLoaderInlining)
1238     return false;
1239 
1240   CallBase &CB = *Candidate.CallInstr;
1241   Function *CalledFunction = CB.getCalledFunction();
1242   assert(CalledFunction && "Expect a callee with definition");
1243   DebugLoc DLoc = CB.getDebugLoc();
1244   BasicBlock *BB = CB.getParent();
1245 
1246   InlineCost Cost = shouldInlineCandidate(Candidate);
1247   if (Cost.isNever()) {
1248     ORE->emit(OptimizationRemarkAnalysis(CSINLINE_DEBUG, "InlineFail", DLoc, BB)
1249               << "incompatible inlining");
1250     return false;
1251   }
1252 
1253   if (!Cost)
1254     return false;
1255 
1256   InlineFunctionInfo IFI(nullptr, GetAC);
1257   IFI.UpdateProfile = false;
1258   if (!InlineFunction(CB, IFI).isSuccess())
1259     return false;
1260 
1261   // Merge the attributes based on the inlining.
1262   AttributeFuncs::mergeAttributesForInlining(*BB->getParent(),
1263                                              *CalledFunction);
1264 
1265   // The call to InlineFunction erases I, so we can't pass it here.
1266   emitInlinedIntoBasedOnCost(*ORE, DLoc, BB, *CalledFunction,
1267                              *BB->getParent(), Cost, true, CSINLINE_DEBUG);
1268 
1269   // Now populate the list of newly exposed call sites.
1270   if (InlinedCallSites) {
1271     InlinedCallSites->clear();
1272     for (auto &I : IFI.InlinedCallSites)
1273       InlinedCallSites->push_back(I);
1274   }
1275 
1276   if (ProfileIsCSFlat)
1277     ContextTracker->markContextSamplesInlined(Candidate.CalleeSamples);
1278   ++NumCSInlined;
1279 
1280   // Prorate inlined probes for a duplicated inlining callsite which probably
1281   // has a distribution less than 100%. Samples for an inlinee should be
1282   // distributed among the copies of the original callsite based on each
1283   // callsite's distribution factor for counts accuracy. Note that an inlined
1284   // probe may come with its own distribution factor if it has been duplicated
1285   // in the inlinee body. The two factor are multiplied to reflect the
1286   // aggregation of duplication.
1287   if (Candidate.CallsiteDistribution < 1) {
1288     for (auto &I : IFI.InlinedCallSites) {
1289       if (Optional<PseudoProbe> Probe = extractProbe(*I))
1290         setProbeDistributionFactor(*I, Probe->Factor *
1291                                    Candidate.CallsiteDistribution);
1292     }
1293     NumDuplicatedInlinesite++;
1294   }
1295 
1296   return true;
1297 }
1298 
1299 bool SampleProfileLoader::getInlineCandidate(InlineCandidate *NewCandidate,
1300                                              CallBase *CB) {
1301   assert(CB && "Expect non-null call instruction");
1302 
1303   if (isa<IntrinsicInst>(CB))
1304     return false;
1305 
1306   // Find the callee's profile. For indirect call, find hottest target profile.
1307   const FunctionSamples *CalleeSamples = findCalleeFunctionSamples(*CB);
1308   // If ExternalInlineAdvisor wants to inline this site, do so even
1309   // if Samples are not present.
1310   if (!CalleeSamples && !getExternalInlineAdvisorShouldInline(*CB))
1311     return false;
1312 
1313   float Factor = 1.0;
1314   if (Optional<PseudoProbe> Probe = extractProbe(*CB))
1315     Factor = Probe->Factor;
1316 
1317   uint64_t CallsiteCount =
1318       CalleeSamples ? CalleeSamples->getEntrySamples() * Factor : 0;
1319   *NewCandidate = {CB, CalleeSamples, CallsiteCount, Factor};
1320   return true;
1321 }
1322 
1323 Optional<InlineCost>
1324 SampleProfileLoader::getExternalInlineAdvisorCost(CallBase &CB) {
1325   std::unique_ptr<InlineAdvice> Advice = nullptr;
1326   if (ExternalInlineAdvisor) {
1327     Advice = ExternalInlineAdvisor->getAdvice(CB);
1328     if (Advice) {
1329       if (!Advice->isInliningRecommended()) {
1330         Advice->recordUnattemptedInlining();
1331         return InlineCost::getNever("not previously inlined");
1332       }
1333       Advice->recordInlining();
1334       return InlineCost::getAlways("previously inlined");
1335     }
1336   }
1337 
1338   return {};
1339 }
1340 
1341 bool SampleProfileLoader::getExternalInlineAdvisorShouldInline(CallBase &CB) {
1342   Optional<InlineCost> Cost = getExternalInlineAdvisorCost(CB);
1343   return Cost ? !!Cost.getValue() : false;
1344 }
1345 
1346 InlineCost
1347 SampleProfileLoader::shouldInlineCandidate(InlineCandidate &Candidate) {
1348   if (Optional<InlineCost> ReplayCost =
1349           getExternalInlineAdvisorCost(*Candidate.CallInstr))
1350     return ReplayCost.getValue();
1351   // Adjust threshold based on call site hotness, only do this for callsite
1352   // prioritized inliner because otherwise cost-benefit check is done earlier.
1353   int SampleThreshold = SampleColdCallSiteThreshold;
1354   if (CallsitePrioritizedInline) {
1355     if (Candidate.CallsiteCount > PSI->getHotCountThreshold())
1356       SampleThreshold = SampleHotCallSiteThreshold;
1357     else if (!ProfileSizeInline)
1358       return InlineCost::getNever("cold callsite");
1359   }
1360 
1361   Function *Callee = Candidate.CallInstr->getCalledFunction();
1362   assert(Callee && "Expect a definition for inline candidate of direct call");
1363 
1364   InlineParams Params = getInlineParams();
1365   // We will ignore the threshold from inline cost, so always get full cost.
1366   Params.ComputeFullInlineCost = true;
1367   Params.AllowRecursiveCall = AllowRecursiveInline;
1368   // Checks if there is anything in the reachable portion of the callee at
1369   // this callsite that makes this inlining potentially illegal. Need to
1370   // set ComputeFullInlineCost, otherwise getInlineCost may return early
1371   // when cost exceeds threshold without checking all IRs in the callee.
1372   // The acutal cost does not matter because we only checks isNever() to
1373   // see if it is legal to inline the callsite.
1374   InlineCost Cost = getInlineCost(*Candidate.CallInstr, Callee, Params,
1375                                   GetTTI(*Callee), GetAC, GetTLI);
1376 
1377   // Honor always inline and never inline from call analyzer
1378   if (Cost.isNever() || Cost.isAlways())
1379     return Cost;
1380 
1381   // With CSSPGO, the preinliner in llvm-profgen can estimate global inline
1382   // decisions based on hotness as well as accurate function byte sizes for
1383   // given context using function/inlinee sizes from previous build. It
1384   // stores the decision in profile, and also adjust/merge context profile
1385   // aiming at better context-sensitive post-inline profile quality, assuming
1386   // all inline decision estimates are going to be honored by compiler. Here
1387   // we replay that inline decision under `sample-profile-use-preinliner`.
1388   // Note that we don't need to handle negative decision from preinliner as
1389   // context profile for not inlined calls are merged by preinliner already.
1390   if (UsePreInlinerDecision && Candidate.CalleeSamples) {
1391     // Once two node are merged due to promotion, we're losing some context
1392     // so the original context-sensitive preinliner decision should be ignored
1393     // for SyntheticContext.
1394     SampleContext &Context = Candidate.CalleeSamples->getContext();
1395     if (!Context.hasState(SyntheticContext) &&
1396         Context.hasAttribute(ContextShouldBeInlined))
1397       return InlineCost::getAlways("preinliner");
1398   }
1399 
1400   // For old FDO inliner, we inline the call site as long as cost is not
1401   // "Never". The cost-benefit check is done earlier.
1402   if (!CallsitePrioritizedInline) {
1403     return InlineCost::get(Cost.getCost(), INT_MAX);
1404   }
1405 
1406   // Otherwise only use the cost from call analyzer, but overwite threshold with
1407   // Sample PGO threshold.
1408   return InlineCost::get(Cost.getCost(), SampleThreshold);
1409 }
1410 
1411 bool SampleProfileLoader::inlineHotFunctionsWithPriority(
1412     Function &F, DenseSet<GlobalValue::GUID> &InlinedGUIDs) {
1413   // ProfAccForSymsInList is used in callsiteIsHot. The assertion makes sure
1414   // Profile symbol list is ignored when profile-sample-accurate is on.
1415   assert((!ProfAccForSymsInList ||
1416           (!ProfileSampleAccurate &&
1417            !F.hasFnAttribute("profile-sample-accurate"))) &&
1418          "ProfAccForSymsInList should be false when profile-sample-accurate "
1419          "is enabled");
1420 
1421   // Populating worklist with initial call sites from root inliner, along
1422   // with call site weights.
1423   CandidateQueue CQueue;
1424   InlineCandidate NewCandidate;
1425   for (auto &BB : F) {
1426     for (auto &I : BB.getInstList()) {
1427       auto *CB = dyn_cast<CallBase>(&I);
1428       if (!CB)
1429         continue;
1430       if (getInlineCandidate(&NewCandidate, CB))
1431         CQueue.push(NewCandidate);
1432     }
1433   }
1434 
1435   // Cap the size growth from profile guided inlining. This is needed even
1436   // though cost of each inline candidate already accounts for callee size,
1437   // because with top-down inlining, we can grow inliner size significantly
1438   // with large number of smaller inlinees each pass the cost check.
1439   assert(ProfileInlineLimitMax >= ProfileInlineLimitMin &&
1440          "Max inline size limit should not be smaller than min inline size "
1441          "limit.");
1442   unsigned SizeLimit = F.getInstructionCount() * ProfileInlineGrowthLimit;
1443   SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax);
1444   SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin);
1445   if (ExternalInlineAdvisor)
1446     SizeLimit = std::numeric_limits<unsigned>::max();
1447 
1448   DenseMap<CallBase *, const FunctionSamples *> LocalNotInlinedCallSites;
1449 
1450   // Perform iterative BFS call site prioritized inlining
1451   bool Changed = false;
1452   while (!CQueue.empty() && F.getInstructionCount() < SizeLimit) {
1453     InlineCandidate Candidate = CQueue.top();
1454     CQueue.pop();
1455     CallBase *I = Candidate.CallInstr;
1456     Function *CalledFunction = I->getCalledFunction();
1457 
1458     if (CalledFunction == &F)
1459       continue;
1460     if (I->isIndirectCall()) {
1461       uint64_t Sum = 0;
1462       auto CalleeSamples = findIndirectCallFunctionSamples(*I, Sum);
1463       uint64_t SumOrigin = Sum;
1464       Sum *= Candidate.CallsiteDistribution;
1465       unsigned ICPCount = 0;
1466       for (const auto *FS : CalleeSamples) {
1467         // TODO: Consider disable pre-lTO ICP for MonoLTO as well
1468         if (LTOPhase == ThinOrFullLTOPhase::ThinLTOPreLink) {
1469           findExternalInlineCandidate(I, FS, InlinedGUIDs, SymbolMap,
1470                                       PSI->getOrCompHotCountThreshold());
1471           continue;
1472         }
1473         uint64_t EntryCountDistributed =
1474             FS->getEntrySamples() * Candidate.CallsiteDistribution;
1475         // In addition to regular inline cost check, we also need to make sure
1476         // ICP isn't introducing excessive speculative checks even if individual
1477         // target looks beneficial to promote and inline. That means we should
1478         // only do ICP when there's a small number dominant targets.
1479         if (ICPCount >= ProfileICPRelativeHotnessSkip &&
1480             EntryCountDistributed * 100 < SumOrigin * ProfileICPRelativeHotness)
1481           break;
1482         // TODO: Fix CallAnalyzer to handle all indirect calls.
1483         // For indirect call, we don't run CallAnalyzer to get InlineCost
1484         // before actual inlining. This is because we could see two different
1485         // types from the same definition, which makes CallAnalyzer choke as
1486         // it's expecting matching parameter type on both caller and callee
1487         // side. See example from PR18962 for the triggering cases (the bug was
1488         // fixed, but we generate different types).
1489         if (!PSI->isHotCount(EntryCountDistributed))
1490           break;
1491         SmallVector<CallBase *, 8> InlinedCallSites;
1492         // Attach function profile for promoted indirect callee, and update
1493         // call site count for the promoted inline candidate too.
1494         Candidate = {I, FS, EntryCountDistributed,
1495                      Candidate.CallsiteDistribution};
1496         if (tryPromoteAndInlineCandidate(F, Candidate, SumOrigin, Sum,
1497                                          &InlinedCallSites)) {
1498           for (auto *CB : InlinedCallSites) {
1499             if (getInlineCandidate(&NewCandidate, CB))
1500               CQueue.emplace(NewCandidate);
1501           }
1502           ICPCount++;
1503           Changed = true;
1504         } else if (!ContextTracker) {
1505           LocalNotInlinedCallSites.try_emplace(I, FS);
1506         }
1507       }
1508     } else if (CalledFunction && CalledFunction->getSubprogram() &&
1509                !CalledFunction->isDeclaration()) {
1510       SmallVector<CallBase *, 8> InlinedCallSites;
1511       if (tryInlineCandidate(Candidate, &InlinedCallSites)) {
1512         for (auto *CB : InlinedCallSites) {
1513           if (getInlineCandidate(&NewCandidate, CB))
1514             CQueue.emplace(NewCandidate);
1515         }
1516         Changed = true;
1517       } else if (!ContextTracker) {
1518         LocalNotInlinedCallSites.try_emplace(I, Candidate.CalleeSamples);
1519       }
1520     } else if (LTOPhase == ThinOrFullLTOPhase::ThinLTOPreLink) {
1521       findExternalInlineCandidate(I, findCalleeFunctionSamples(*I),
1522                                   InlinedGUIDs, SymbolMap,
1523                                   PSI->getOrCompHotCountThreshold());
1524     }
1525   }
1526 
1527   if (!CQueue.empty()) {
1528     if (SizeLimit == (unsigned)ProfileInlineLimitMax)
1529       ++NumCSInlinedHitMaxLimit;
1530     else if (SizeLimit == (unsigned)ProfileInlineLimitMin)
1531       ++NumCSInlinedHitMinLimit;
1532     else
1533       ++NumCSInlinedHitGrowthLimit;
1534   }
1535 
1536   // For CS profile, profile for not inlined context will be merged when
1537   // base profile is being retrieved.
1538   if (!FunctionSamples::ProfileIsCSFlat)
1539     promoteMergeNotInlinedContextSamples(LocalNotInlinedCallSites, F);
1540   return Changed;
1541 }
1542 
1543 void SampleProfileLoader::promoteMergeNotInlinedContextSamples(
1544     DenseMap<CallBase *, const FunctionSamples *> NonInlinedCallSites,
1545     const Function &F) {
1546   // Accumulate not inlined callsite information into notInlinedSamples
1547   for (const auto &Pair : NonInlinedCallSites) {
1548     CallBase *I = Pair.getFirst();
1549     Function *Callee = I->getCalledFunction();
1550     if (!Callee || Callee->isDeclaration())
1551       continue;
1552 
1553     ORE->emit(OptimizationRemarkAnalysis(CSINLINE_DEBUG, "NotInline",
1554                                          I->getDebugLoc(), I->getParent())
1555               << "previous inlining not repeated: '"
1556               << ore::NV("Callee", Callee) << "' into '"
1557               << ore::NV("Caller", &F) << "'");
1558 
1559     ++NumCSNotInlined;
1560     const FunctionSamples *FS = Pair.getSecond();
1561     if (FS->getTotalSamples() == 0 && FS->getEntrySamples() == 0) {
1562       continue;
1563     }
1564 
1565     // Do not merge a context that is already duplicated into the base profile.
1566     if (FS->getContext().hasAttribute(sampleprof::ContextDuplicatedIntoBase))
1567       continue;
1568 
1569     if (ProfileMergeInlinee) {
1570       // A function call can be replicated by optimizations like callsite
1571       // splitting or jump threading and the replicates end up sharing the
1572       // sample nested callee profile instead of slicing the original
1573       // inlinee's profile. We want to do merge exactly once by filtering out
1574       // callee profiles with a non-zero head sample count.
1575       if (FS->getHeadSamples() == 0) {
1576         // Use entry samples as head samples during the merge, as inlinees
1577         // don't have head samples.
1578         const_cast<FunctionSamples *>(FS)->addHeadSamples(
1579             FS->getEntrySamples());
1580 
1581         // Note that we have to do the merge right after processing function.
1582         // This allows OutlineFS's profile to be used for annotation during
1583         // top-down processing of functions' annotation.
1584         FunctionSamples *OutlineFS = Reader->getOrCreateSamplesFor(*Callee);
1585         OutlineFS->merge(*FS, 1);
1586         // Set outlined profile to be synthetic to not bias the inliner.
1587         OutlineFS->SetContextSynthetic();
1588       }
1589     } else {
1590       auto pair =
1591           notInlinedCallInfo.try_emplace(Callee, NotInlinedProfileInfo{0});
1592       pair.first->second.entryCount += FS->getEntrySamples();
1593     }
1594   }
1595 }
1596 
1597 /// Returns the sorted CallTargetMap \p M by count in descending order.
1598 static SmallVector<InstrProfValueData, 2>
1599 GetSortedValueDataFromCallTargets(const SampleRecord::CallTargetMap &M) {
1600   SmallVector<InstrProfValueData, 2> R;
1601   for (const auto &I : SampleRecord::SortCallTargets(M)) {
1602     R.emplace_back(
1603         InstrProfValueData{FunctionSamples::getGUID(I.first), I.second});
1604   }
1605   return R;
1606 }
1607 
1608 // Generate MD_prof metadata for every branch instruction using the
1609 // edge weights computed during propagation.
1610 void SampleProfileLoader::generateMDProfMetadata(Function &F) {
1611   // Generate MD_prof metadata for every branch instruction using the
1612   // edge weights computed during propagation.
1613   LLVM_DEBUG(dbgs() << "\nPropagation complete. Setting branch weights\n");
1614   LLVMContext &Ctx = F.getContext();
1615   MDBuilder MDB(Ctx);
1616   for (auto &BI : F) {
1617     BasicBlock *BB = &BI;
1618 
1619     if (BlockWeights[BB]) {
1620       for (auto &I : BB->getInstList()) {
1621         if (!isa<CallInst>(I) && !isa<InvokeInst>(I))
1622           continue;
1623         if (!cast<CallBase>(I).getCalledFunction()) {
1624           const DebugLoc &DLoc = I.getDebugLoc();
1625           if (!DLoc)
1626             continue;
1627           const DILocation *DIL = DLoc;
1628           const FunctionSamples *FS = findFunctionSamples(I);
1629           if (!FS)
1630             continue;
1631           auto CallSite = FunctionSamples::getCallSiteIdentifier(DIL);
1632           auto T = FS->findCallTargetMapAt(CallSite);
1633           if (!T || T.get().empty())
1634             continue;
1635           if (FunctionSamples::ProfileIsProbeBased) {
1636             // Prorate the callsite counts based on the pre-ICP distribution
1637             // factor to reflect what is already done to the callsite before
1638             // ICP, such as calliste cloning.
1639             if (Optional<PseudoProbe> Probe = extractProbe(I)) {
1640               if (Probe->Factor < 1)
1641                 T = SampleRecord::adjustCallTargets(T.get(), Probe->Factor);
1642             }
1643           }
1644           SmallVector<InstrProfValueData, 2> SortedCallTargets =
1645               GetSortedValueDataFromCallTargets(T.get());
1646           uint64_t Sum = 0;
1647           for (const auto &C : T.get())
1648             Sum += C.second;
1649           // With CSSPGO all indirect call targets are counted torwards the
1650           // original indirect call site in the profile, including both
1651           // inlined and non-inlined targets.
1652           if (!FunctionSamples::ProfileIsCSFlat) {
1653             if (const FunctionSamplesMap *M =
1654                     FS->findFunctionSamplesMapAt(CallSite)) {
1655               for (const auto &NameFS : *M)
1656                 Sum += NameFS.second.getEntrySamples();
1657             }
1658           }
1659           if (Sum)
1660             updateIDTMetaData(I, SortedCallTargets, Sum);
1661           else if (OverwriteExistingWeights)
1662             I.setMetadata(LLVMContext::MD_prof, nullptr);
1663         } else if (!isa<IntrinsicInst>(&I)) {
1664           I.setMetadata(LLVMContext::MD_prof,
1665                         MDB.createBranchWeights(
1666                             {static_cast<uint32_t>(BlockWeights[BB])}));
1667         }
1668       }
1669     } else if (OverwriteExistingWeights || ProfileSampleBlockAccurate) {
1670       // Set profile metadata (possibly annotated by LTO prelink) to zero or
1671       // clear it for cold code.
1672       for (auto &I : BB->getInstList()) {
1673         if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
1674           if (cast<CallBase>(I).isIndirectCall())
1675             I.setMetadata(LLVMContext::MD_prof, nullptr);
1676           else
1677             I.setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(0));
1678         }
1679       }
1680     }
1681 
1682     Instruction *TI = BB->getTerminator();
1683     if (TI->getNumSuccessors() == 1)
1684       continue;
1685     if (!isa<BranchInst>(TI) && !isa<SwitchInst>(TI) &&
1686         !isa<IndirectBrInst>(TI))
1687       continue;
1688 
1689     DebugLoc BranchLoc = TI->getDebugLoc();
1690     LLVM_DEBUG(dbgs() << "\nGetting weights for branch at line "
1691                       << ((BranchLoc) ? Twine(BranchLoc.getLine())
1692                                       : Twine("<UNKNOWN LOCATION>"))
1693                       << ".\n");
1694     SmallVector<uint32_t, 4> Weights;
1695     uint32_t MaxWeight = 0;
1696     Instruction *MaxDestInst;
1697     // Since profi treats multiple edges (multiway branches) as a single edge,
1698     // we need to distribute the computed weight among the branches. We do
1699     // this by evenly splitting the edge weight among destinations.
1700     DenseMap<const BasicBlock *, uint64_t> EdgeMultiplicity;
1701     std::vector<uint64_t> EdgeIndex;
1702     if (SampleProfileUseProfi) {
1703       EdgeIndex.resize(TI->getNumSuccessors());
1704       for (unsigned I = 0; I < TI->getNumSuccessors(); ++I) {
1705         const BasicBlock *Succ = TI->getSuccessor(I);
1706         EdgeIndex[I] = EdgeMultiplicity[Succ];
1707         EdgeMultiplicity[Succ]++;
1708       }
1709     }
1710     for (unsigned I = 0; I < TI->getNumSuccessors(); ++I) {
1711       BasicBlock *Succ = TI->getSuccessor(I);
1712       Edge E = std::make_pair(BB, Succ);
1713       uint64_t Weight = EdgeWeights[E];
1714       LLVM_DEBUG(dbgs() << "\t"; printEdgeWeight(dbgs(), E));
1715       // Use uint32_t saturated arithmetic to adjust the incoming weights,
1716       // if needed. Sample counts in profiles are 64-bit unsigned values,
1717       // but internally branch weights are expressed as 32-bit values.
1718       if (Weight > std::numeric_limits<uint32_t>::max()) {
1719         LLVM_DEBUG(dbgs() << " (saturated due to uint32_t overflow)");
1720         Weight = std::numeric_limits<uint32_t>::max();
1721       }
1722       if (!SampleProfileUseProfi) {
1723         // Weight is added by one to avoid propagation errors introduced by
1724         // 0 weights.
1725         Weights.push_back(static_cast<uint32_t>(Weight + 1));
1726       } else {
1727         // Profi creates proper weights that do not require "+1" adjustments but
1728         // we evenly split the weight among branches with the same destination.
1729         uint64_t W = Weight / EdgeMultiplicity[Succ];
1730         // Rounding up, if needed, so that first branches are hotter.
1731         if (EdgeIndex[I] < Weight % EdgeMultiplicity[Succ])
1732           W++;
1733         Weights.push_back(static_cast<uint32_t>(W));
1734       }
1735       if (Weight != 0) {
1736         if (Weight > MaxWeight) {
1737           MaxWeight = Weight;
1738           MaxDestInst = Succ->getFirstNonPHIOrDbgOrLifetime();
1739         }
1740       }
1741     }
1742 
1743     // FIXME: Re-enable for sample profiling after investigating why the sum
1744     // of branch weights can be 0
1745     //
1746     // misexpect::checkExpectAnnotations(*TI, Weights, /*IsFrontend=*/false);
1747 
1748     uint64_t TempWeight;
1749     // Only set weights if there is at least one non-zero weight.
1750     // In any other case, let the analyzer set weights.
1751     // Do not set weights if the weights are present unless under
1752     // OverwriteExistingWeights. In ThinLTO, the profile annotation is done
1753     // twice. If the first annotation already set the weights, the second pass
1754     // does not need to set it. With OverwriteExistingWeights, Blocks with zero
1755     // weight should have their existing metadata (possibly annotated by LTO
1756     // prelink) cleared.
1757     if (MaxWeight > 0 &&
1758         (!TI->extractProfTotalWeight(TempWeight) || OverwriteExistingWeights)) {
1759       LLVM_DEBUG(dbgs() << "SUCCESS. Found non-zero weights.\n");
1760       TI->setMetadata(LLVMContext::MD_prof, MDB.createBranchWeights(Weights));
1761       ORE->emit([&]() {
1762         return OptimizationRemark(DEBUG_TYPE, "PopularDest", MaxDestInst)
1763                << "most popular destination for conditional branches at "
1764                << ore::NV("CondBranchesLoc", BranchLoc);
1765       });
1766     } else {
1767       if (OverwriteExistingWeights) {
1768         TI->setMetadata(LLVMContext::MD_prof, nullptr);
1769         LLVM_DEBUG(dbgs() << "CLEARED. All branch weights are zero.\n");
1770       } else {
1771         LLVM_DEBUG(dbgs() << "SKIPPED. All branch weights are zero.\n");
1772       }
1773     }
1774   }
1775 }
1776 
1777 /// Once all the branch weights are computed, we emit the MD_prof
1778 /// metadata on BB using the computed values for each of its branches.
1779 ///
1780 /// \param F The function to query.
1781 ///
1782 /// \returns true if \p F was modified. Returns false, otherwise.
1783 bool SampleProfileLoader::emitAnnotations(Function &F) {
1784   bool Changed = false;
1785 
1786   if (FunctionSamples::ProfileIsProbeBased) {
1787     if (!ProbeManager->profileIsValid(F, *Samples)) {
1788       LLVM_DEBUG(
1789           dbgs() << "Profile is invalid due to CFG mismatch for Function "
1790                  << F.getName());
1791       ++NumMismatchedProfile;
1792       return false;
1793     }
1794     ++NumMatchedProfile;
1795   } else {
1796     if (getFunctionLoc(F) == 0)
1797       return false;
1798 
1799     LLVM_DEBUG(dbgs() << "Line number for the first instruction in "
1800                       << F.getName() << ": " << getFunctionLoc(F) << "\n");
1801   }
1802 
1803   DenseSet<GlobalValue::GUID> InlinedGUIDs;
1804   if (CallsitePrioritizedInline)
1805     Changed |= inlineHotFunctionsWithPriority(F, InlinedGUIDs);
1806   else
1807     Changed |= inlineHotFunctions(F, InlinedGUIDs);
1808 
1809   Changed |= computeAndPropagateWeights(F, InlinedGUIDs);
1810 
1811   if (Changed)
1812     generateMDProfMetadata(F);
1813 
1814   emitCoverageRemarks(F);
1815   return Changed;
1816 }
1817 
1818 char SampleProfileLoaderLegacyPass::ID = 0;
1819 
1820 INITIALIZE_PASS_BEGIN(SampleProfileLoaderLegacyPass, "sample-profile",
1821                       "Sample Profile loader", false, false)
1822 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
1823 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
1824 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1825 INITIALIZE_PASS_DEPENDENCY(ProfileSummaryInfoWrapperPass)
1826 INITIALIZE_PASS_END(SampleProfileLoaderLegacyPass, "sample-profile",
1827                     "Sample Profile loader", false, false)
1828 
1829 std::unique_ptr<ProfiledCallGraph>
1830 SampleProfileLoader::buildProfiledCallGraph(CallGraph &CG) {
1831   std::unique_ptr<ProfiledCallGraph> ProfiledCG;
1832   if (ProfileIsCSFlat)
1833     ProfiledCG = std::make_unique<ProfiledCallGraph>(*ContextTracker);
1834   else
1835     ProfiledCG = std::make_unique<ProfiledCallGraph>(Reader->getProfiles());
1836 
1837   // Add all functions into the profiled call graph even if they are not in
1838   // the profile. This makes sure functions missing from the profile still
1839   // gets a chance to be processed.
1840   for (auto &Node : CG) {
1841     const auto *F = Node.first;
1842     if (!F || F->isDeclaration() || !F->hasFnAttribute("use-sample-profile"))
1843       continue;
1844     ProfiledCG->addProfiledFunction(FunctionSamples::getCanonicalFnName(*F));
1845   }
1846 
1847   return ProfiledCG;
1848 }
1849 
1850 std::vector<Function *>
1851 SampleProfileLoader::buildFunctionOrder(Module &M, CallGraph *CG) {
1852   std::vector<Function *> FunctionOrderList;
1853   FunctionOrderList.reserve(M.size());
1854 
1855   if (!ProfileTopDownLoad && UseProfiledCallGraph)
1856     errs() << "WARNING: -use-profiled-call-graph ignored, should be used "
1857               "together with -sample-profile-top-down-load.\n";
1858 
1859   if (!ProfileTopDownLoad || CG == nullptr) {
1860     if (ProfileMergeInlinee) {
1861       // Disable ProfileMergeInlinee if profile is not loaded in top down order,
1862       // because the profile for a function may be used for the profile
1863       // annotation of its outline copy before the profile merging of its
1864       // non-inlined inline instances, and that is not the way how
1865       // ProfileMergeInlinee is supposed to work.
1866       ProfileMergeInlinee = false;
1867     }
1868 
1869     for (Function &F : M)
1870       if (!F.isDeclaration() && F.hasFnAttribute("use-sample-profile"))
1871         FunctionOrderList.push_back(&F);
1872     return FunctionOrderList;
1873   }
1874 
1875   assert(&CG->getModule() == &M);
1876 
1877   if (UseProfiledCallGraph ||
1878       (ProfileIsCSFlat && !UseProfiledCallGraph.getNumOccurrences())) {
1879     // Use profiled call edges to augment the top-down order. There are cases
1880     // that the top-down order computed based on the static call graph doesn't
1881     // reflect real execution order. For example
1882     //
1883     // 1. Incomplete static call graph due to unknown indirect call targets.
1884     //    Adjusting the order by considering indirect call edges from the
1885     //    profile can enable the inlining of indirect call targets by allowing
1886     //    the caller processed before them.
1887     // 2. Mutual call edges in an SCC. The static processing order computed for
1888     //    an SCC may not reflect the call contexts in the context-sensitive
1889     //    profile, thus may cause potential inlining to be overlooked. The
1890     //    function order in one SCC is being adjusted to a top-down order based
1891     //    on the profile to favor more inlining. This is only a problem with CS
1892     //    profile.
1893     // 3. Transitive indirect call edges due to inlining. When a callee function
1894     //    (say B) is inlined into into a caller function (say A) in LTO prelink,
1895     //    every call edge originated from the callee B will be transferred to
1896     //    the caller A. If any transferred edge (say A->C) is indirect, the
1897     //    original profiled indirect edge B->C, even if considered, would not
1898     //    enforce a top-down order from the caller A to the potential indirect
1899     //    call target C in LTO postlink since the inlined callee B is gone from
1900     //    the static call graph.
1901     // 4. #3 can happen even for direct call targets, due to functions defined
1902     //    in header files. A header function (say A), when included into source
1903     //    files, is defined multiple times but only one definition survives due
1904     //    to ODR. Therefore, the LTO prelink inlining done on those dropped
1905     //    definitions can be useless based on a local file scope. More
1906     //    importantly, the inlinee (say B), once fully inlined to a
1907     //    to-be-dropped A, will have no profile to consume when its outlined
1908     //    version is compiled. This can lead to a profile-less prelink
1909     //    compilation for the outlined version of B which may be called from
1910     //    external modules. while this isn't easy to fix, we rely on the
1911     //    postlink AutoFDO pipeline to optimize B. Since the survived copy of
1912     //    the A can be inlined in its local scope in prelink, it may not exist
1913     //    in the merged IR in postlink, and we'll need the profiled call edges
1914     //    to enforce a top-down order for the rest of the functions.
1915     //
1916     // Considering those cases, a profiled call graph completely independent of
1917     // the static call graph is constructed based on profile data, where
1918     // function objects are not even needed to handle case #3 and case 4.
1919     //
1920     // Note that static callgraph edges are completely ignored since they
1921     // can be conflicting with profiled edges for cyclic SCCs and may result in
1922     // an SCC order incompatible with profile-defined one. Using strictly
1923     // profile order ensures a maximum inlining experience. On the other hand,
1924     // static call edges are not so important when they don't correspond to a
1925     // context in the profile.
1926 
1927     std::unique_ptr<ProfiledCallGraph> ProfiledCG = buildProfiledCallGraph(*CG);
1928     scc_iterator<ProfiledCallGraph *> CGI = scc_begin(ProfiledCG.get());
1929     while (!CGI.isAtEnd()) {
1930       auto Range = *CGI;
1931       if (SortProfiledSCC) {
1932         // Sort nodes in one SCC based on callsite hotness.
1933         scc_member_iterator<ProfiledCallGraph *> SI(*CGI);
1934         Range = *SI;
1935       }
1936       for (auto *Node : Range) {
1937         Function *F = SymbolMap.lookup(Node->Name);
1938         if (F && !F->isDeclaration() && F->hasFnAttribute("use-sample-profile"))
1939           FunctionOrderList.push_back(F);
1940       }
1941       ++CGI;
1942     }
1943   } else {
1944     scc_iterator<CallGraph *> CGI = scc_begin(CG);
1945     while (!CGI.isAtEnd()) {
1946       for (CallGraphNode *Node : *CGI) {
1947         auto *F = Node->getFunction();
1948         if (F && !F->isDeclaration() && F->hasFnAttribute("use-sample-profile"))
1949           FunctionOrderList.push_back(F);
1950       }
1951       ++CGI;
1952     }
1953   }
1954 
1955   LLVM_DEBUG({
1956     dbgs() << "Function processing order:\n";
1957     for (auto F : reverse(FunctionOrderList)) {
1958       dbgs() << F->getName() << "\n";
1959     }
1960   });
1961 
1962   std::reverse(FunctionOrderList.begin(), FunctionOrderList.end());
1963   return FunctionOrderList;
1964 }
1965 
1966 bool SampleProfileLoader::doInitialization(Module &M,
1967                                            FunctionAnalysisManager *FAM) {
1968   auto &Ctx = M.getContext();
1969 
1970   auto ReaderOrErr = SampleProfileReader::create(
1971       Filename, Ctx, FSDiscriminatorPass::Base, RemappingFilename);
1972   if (std::error_code EC = ReaderOrErr.getError()) {
1973     std::string Msg = "Could not open profile: " + EC.message();
1974     Ctx.diagnose(DiagnosticInfoSampleProfile(Filename, Msg));
1975     return false;
1976   }
1977   Reader = std::move(ReaderOrErr.get());
1978   Reader->setSkipFlatProf(LTOPhase == ThinOrFullLTOPhase::ThinLTOPostLink);
1979   // set module before reading the profile so reader may be able to only
1980   // read the function profiles which are used by the current module.
1981   Reader->setModule(&M);
1982   if (std::error_code EC = Reader->read()) {
1983     std::string Msg = "profile reading failed: " + EC.message();
1984     Ctx.diagnose(DiagnosticInfoSampleProfile(Filename, Msg));
1985     return false;
1986   }
1987 
1988   PSL = Reader->getProfileSymbolList();
1989 
1990   // While profile-sample-accurate is on, ignore symbol list.
1991   ProfAccForSymsInList =
1992       ProfileAccurateForSymsInList && PSL && !ProfileSampleAccurate;
1993   if (ProfAccForSymsInList) {
1994     NamesInProfile.clear();
1995     if (auto NameTable = Reader->getNameTable())
1996       NamesInProfile.insert(NameTable->begin(), NameTable->end());
1997     CoverageTracker.setProfAccForSymsInList(true);
1998   }
1999 
2000   if (FAM && !ProfileInlineReplayFile.empty()) {
2001     ExternalInlineAdvisor = getReplayInlineAdvisor(
2002         M, *FAM, Ctx, /*OriginalAdvisor=*/nullptr,
2003         ReplayInlinerSettings{ProfileInlineReplayFile,
2004                               ProfileInlineReplayScope,
2005                               ProfileInlineReplayFallback,
2006                               {ProfileInlineReplayFormat}},
2007         /*EmitRemarks=*/false);
2008   }
2009 
2010   // Apply tweaks if context-sensitive or probe-based profile is available.
2011   if (Reader->profileIsCSFlat() || Reader->profileIsCSNested() ||
2012       Reader->profileIsProbeBased()) {
2013     if (!UseIterativeBFIInference.getNumOccurrences())
2014       UseIterativeBFIInference = true;
2015     if (!SampleProfileUseProfi.getNumOccurrences())
2016       SampleProfileUseProfi = true;
2017     if (!EnableExtTspBlockPlacement.getNumOccurrences())
2018       EnableExtTspBlockPlacement = true;
2019   }
2020 
2021   if (Reader->profileIsCSFlat() || Reader->profileIsCSNested()) {
2022     ProfileIsCSFlat = Reader->profileIsCSFlat();
2023     // Enable priority-base inliner and size inline by default for CSSPGO.
2024     if (!ProfileSizeInline.getNumOccurrences())
2025       ProfileSizeInline = true;
2026     if (!CallsitePrioritizedInline.getNumOccurrences())
2027       CallsitePrioritizedInline = true;
2028 
2029     // For CSSPGO, use preinliner decision by default when available.
2030     if (!UsePreInlinerDecision.getNumOccurrences())
2031       UsePreInlinerDecision = true;
2032 
2033     // For CSSPGO, we also allow recursive inline to best use context profile.
2034     if (!AllowRecursiveInline.getNumOccurrences())
2035       AllowRecursiveInline = true;
2036 
2037     if (FunctionSamples::ProfileIsCSFlat) {
2038       // Tracker for profiles under different context
2039       ContextTracker = std::make_unique<SampleContextTracker>(
2040           Reader->getProfiles(), &GUIDToFuncNameMap);
2041     }
2042   }
2043 
2044   // Load pseudo probe descriptors for probe-based function samples.
2045   if (Reader->profileIsProbeBased()) {
2046     ProbeManager = std::make_unique<PseudoProbeManager>(M);
2047     if (!ProbeManager->moduleIsProbed(M)) {
2048       const char *Msg =
2049           "Pseudo-probe-based profile requires SampleProfileProbePass";
2050       Ctx.diagnose(DiagnosticInfoSampleProfile(M.getModuleIdentifier(), Msg,
2051                                                DS_Warning));
2052       return false;
2053     }
2054   }
2055 
2056   return true;
2057 }
2058 
2059 ModulePass *llvm::createSampleProfileLoaderPass() {
2060   return new SampleProfileLoaderLegacyPass();
2061 }
2062 
2063 ModulePass *llvm::createSampleProfileLoaderPass(StringRef Name) {
2064   return new SampleProfileLoaderLegacyPass(Name);
2065 }
2066 
2067 bool SampleProfileLoader::runOnModule(Module &M, ModuleAnalysisManager *AM,
2068                                       ProfileSummaryInfo *_PSI, CallGraph *CG) {
2069   GUIDToFuncNameMapper Mapper(M, *Reader, GUIDToFuncNameMap);
2070 
2071   PSI = _PSI;
2072   if (M.getProfileSummary(/* IsCS */ false) == nullptr) {
2073     M.setProfileSummary(Reader->getSummary().getMD(M.getContext()),
2074                         ProfileSummary::PSK_Sample);
2075     PSI->refresh();
2076   }
2077   // Compute the total number of samples collected in this profile.
2078   for (const auto &I : Reader->getProfiles())
2079     TotalCollectedSamples += I.second.getTotalSamples();
2080 
2081   auto Remapper = Reader->getRemapper();
2082   // Populate the symbol map.
2083   for (const auto &N_F : M.getValueSymbolTable()) {
2084     StringRef OrigName = N_F.getKey();
2085     Function *F = dyn_cast<Function>(N_F.getValue());
2086     if (F == nullptr || OrigName.empty())
2087       continue;
2088     SymbolMap[OrigName] = F;
2089     StringRef NewName = FunctionSamples::getCanonicalFnName(*F);
2090     if (OrigName != NewName && !NewName.empty()) {
2091       auto r = SymbolMap.insert(std::make_pair(NewName, F));
2092       // Failiing to insert means there is already an entry in SymbolMap,
2093       // thus there are multiple functions that are mapped to the same
2094       // stripped name. In this case of name conflicting, set the value
2095       // to nullptr to avoid confusion.
2096       if (!r.second)
2097         r.first->second = nullptr;
2098       OrigName = NewName;
2099     }
2100     // Insert the remapped names into SymbolMap.
2101     if (Remapper) {
2102       if (auto MapName = Remapper->lookUpNameInProfile(OrigName)) {
2103         if (*MapName != OrigName && !MapName->empty())
2104           SymbolMap.insert(std::make_pair(*MapName, F));
2105       }
2106     }
2107   }
2108   assert(SymbolMap.count(StringRef()) == 0 &&
2109          "No empty StringRef should be added in SymbolMap");
2110 
2111   bool retval = false;
2112   for (auto F : buildFunctionOrder(M, CG)) {
2113     assert(!F->isDeclaration());
2114     clearFunctionData();
2115     retval |= runOnFunction(*F, AM);
2116   }
2117 
2118   // Account for cold calls not inlined....
2119   if (!ProfileIsCSFlat)
2120     for (const std::pair<Function *, NotInlinedProfileInfo> &pair :
2121          notInlinedCallInfo)
2122       updateProfileCallee(pair.first, pair.second.entryCount);
2123 
2124   return retval;
2125 }
2126 
2127 bool SampleProfileLoaderLegacyPass::runOnModule(Module &M) {
2128   ACT = &getAnalysis<AssumptionCacheTracker>();
2129   TTIWP = &getAnalysis<TargetTransformInfoWrapperPass>();
2130   TLIWP = &getAnalysis<TargetLibraryInfoWrapperPass>();
2131   ProfileSummaryInfo *PSI =
2132       &getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI();
2133   return SampleLoader.runOnModule(M, nullptr, PSI, nullptr);
2134 }
2135 
2136 bool SampleProfileLoader::runOnFunction(Function &F, ModuleAnalysisManager *AM) {
2137   LLVM_DEBUG(dbgs() << "\n\nProcessing Function " << F.getName() << "\n");
2138   DILocation2SampleMap.clear();
2139   // By default the entry count is initialized to -1, which will be treated
2140   // conservatively by getEntryCount as the same as unknown (None). This is
2141   // to avoid newly added code to be treated as cold. If we have samples
2142   // this will be overwritten in emitAnnotations.
2143   uint64_t initialEntryCount = -1;
2144 
2145   ProfAccForSymsInList = ProfileAccurateForSymsInList && PSL;
2146   if (ProfileSampleAccurate || F.hasFnAttribute("profile-sample-accurate")) {
2147     // initialize all the function entry counts to 0. It means all the
2148     // functions without profile will be regarded as cold.
2149     initialEntryCount = 0;
2150     // profile-sample-accurate is a user assertion which has a higher precedence
2151     // than symbol list. When profile-sample-accurate is on, ignore symbol list.
2152     ProfAccForSymsInList = false;
2153   }
2154   CoverageTracker.setProfAccForSymsInList(ProfAccForSymsInList);
2155 
2156   // PSL -- profile symbol list include all the symbols in sampled binary.
2157   // If ProfileAccurateForSymsInList is enabled, PSL is used to treat
2158   // old functions without samples being cold, without having to worry
2159   // about new and hot functions being mistakenly treated as cold.
2160   if (ProfAccForSymsInList) {
2161     // Initialize the entry count to 0 for functions in the list.
2162     if (PSL->contains(F.getName()))
2163       initialEntryCount = 0;
2164 
2165     // Function in the symbol list but without sample will be regarded as
2166     // cold. To minimize the potential negative performance impact it could
2167     // have, we want to be a little conservative here saying if a function
2168     // shows up in the profile, no matter as outline function, inline instance
2169     // or call targets, treat the function as not being cold. This will handle
2170     // the cases such as most callsites of a function are inlined in sampled
2171     // binary but not inlined in current build (because of source code drift,
2172     // imprecise debug information, or the callsites are all cold individually
2173     // but not cold accumulatively...), so the outline function showing up as
2174     // cold in sampled binary will actually not be cold after current build.
2175     StringRef CanonName = FunctionSamples::getCanonicalFnName(F);
2176     if (NamesInProfile.count(CanonName))
2177       initialEntryCount = -1;
2178   }
2179 
2180   // Initialize entry count when the function has no existing entry
2181   // count value.
2182   if (!F.getEntryCount().hasValue())
2183     F.setEntryCount(ProfileCount(initialEntryCount, Function::PCT_Real));
2184   std::unique_ptr<OptimizationRemarkEmitter> OwnedORE;
2185   if (AM) {
2186     auto &FAM =
2187         AM->getResult<FunctionAnalysisManagerModuleProxy>(*F.getParent())
2188             .getManager();
2189     ORE = &FAM.getResult<OptimizationRemarkEmitterAnalysis>(F);
2190   } else {
2191     OwnedORE = std::make_unique<OptimizationRemarkEmitter>(&F);
2192     ORE = OwnedORE.get();
2193   }
2194 
2195   if (ProfileIsCSFlat)
2196     Samples = ContextTracker->getBaseSamplesFor(F);
2197   else
2198     Samples = Reader->getSamplesFor(F);
2199 
2200   if (Samples && !Samples->empty())
2201     return emitAnnotations(F);
2202   return false;
2203 }
2204 
2205 PreservedAnalyses SampleProfileLoaderPass::run(Module &M,
2206                                                ModuleAnalysisManager &AM) {
2207   FunctionAnalysisManager &FAM =
2208       AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
2209 
2210   auto GetAssumptionCache = [&](Function &F) -> AssumptionCache & {
2211     return FAM.getResult<AssumptionAnalysis>(F);
2212   };
2213   auto GetTTI = [&](Function &F) -> TargetTransformInfo & {
2214     return FAM.getResult<TargetIRAnalysis>(F);
2215   };
2216   auto GetTLI = [&](Function &F) -> const TargetLibraryInfo & {
2217     return FAM.getResult<TargetLibraryAnalysis>(F);
2218   };
2219 
2220   SampleProfileLoader SampleLoader(
2221       ProfileFileName.empty() ? SampleProfileFile : ProfileFileName,
2222       ProfileRemappingFileName.empty() ? SampleProfileRemappingFile
2223                                        : ProfileRemappingFileName,
2224       LTOPhase, GetAssumptionCache, GetTTI, GetTLI);
2225 
2226   if (!SampleLoader.doInitialization(M, &FAM))
2227     return PreservedAnalyses::all();
2228 
2229   ProfileSummaryInfo *PSI = &AM.getResult<ProfileSummaryAnalysis>(M);
2230   CallGraph &CG = AM.getResult<CallGraphAnalysis>(M);
2231   if (!SampleLoader.runOnModule(M, &AM, PSI, &CG))
2232     return PreservedAnalyses::all();
2233 
2234   return PreservedAnalyses::none();
2235 }
2236