xref: /llvm-project/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp (revision bf46e7410c8a1d26c4a434261baaae28a904d657)
1 //===- ModuleSummaryAnalysis.cpp - Module summary index builder -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass builds a ModuleSummaryIndex object for the module, to be written
11 // to bitcode or LLVM assembly.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "llvm/Analysis/ModuleSummaryAnalysis.h"
16 #include "llvm/ADT/ArrayRef.h"
17 #include "llvm/ADT/DenseSet.h"
18 #include "llvm/ADT/MapVector.h"
19 #include "llvm/ADT/STLExtras.h"
20 #include "llvm/ADT/SetVector.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/SmallVector.h"
23 #include "llvm/ADT/StringRef.h"
24 #include "llvm/Analysis/BlockFrequencyInfo.h"
25 #include "llvm/Analysis/BranchProbabilityInfo.h"
26 #include "llvm/Analysis/IndirectCallPromotionAnalysis.h"
27 #include "llvm/Analysis/LoopInfo.h"
28 #include "llvm/Analysis/ProfileSummaryInfo.h"
29 #include "llvm/Analysis/TypeMetadataUtils.h"
30 #include "llvm/IR/Attributes.h"
31 #include "llvm/IR/BasicBlock.h"
32 #include "llvm/IR/CallSite.h"
33 #include "llvm/IR/Constant.h"
34 #include "llvm/IR/Constants.h"
35 #include "llvm/IR/Dominators.h"
36 #include "llvm/IR/Function.h"
37 #include "llvm/IR/GlobalAlias.h"
38 #include "llvm/IR/GlobalValue.h"
39 #include "llvm/IR/GlobalVariable.h"
40 #include "llvm/IR/Instructions.h"
41 #include "llvm/IR/IntrinsicInst.h"
42 #include "llvm/IR/Intrinsics.h"
43 #include "llvm/IR/Metadata.h"
44 #include "llvm/IR/Module.h"
45 #include "llvm/IR/ModuleSummaryIndex.h"
46 #include "llvm/IR/Use.h"
47 #include "llvm/IR/User.h"
48 #include "llvm/Object/ModuleSymbolTable.h"
49 #include "llvm/Object/SymbolicFile.h"
50 #include "llvm/Pass.h"
51 #include "llvm/Support/Casting.h"
52 #include "llvm/Support/CommandLine.h"
53 #include <algorithm>
54 #include <cassert>
55 #include <cstdint>
56 #include <vector>
57 
58 using namespace llvm;
59 
60 #define DEBUG_TYPE "module-summary-analysis"
61 
62 // Option to force edges cold which will block importing when the
63 // -import-cold-multiplier is set to 0. Useful for debugging.
64 FunctionSummary::ForceSummaryHotnessType ForceSummaryEdgesCold =
65     FunctionSummary::FSHT_None;
66 cl::opt<FunctionSummary::ForceSummaryHotnessType, true> FSEC(
67     "force-summary-edges-cold", cl::Hidden, cl::location(ForceSummaryEdgesCold),
68     cl::desc("Force all edges in the function summary to cold"),
69     cl::values(clEnumValN(FunctionSummary::FSHT_None, "none", "None."),
70                clEnumValN(FunctionSummary::FSHT_AllNonCritical,
71                           "all-non-critical", "All non-critical edges."),
72                clEnumValN(FunctionSummary::FSHT_All, "all", "All edges.")));
73 
74 // Walk through the operands of a given User via worklist iteration and populate
75 // the set of GlobalValue references encountered. Invoked either on an
76 // Instruction or a GlobalVariable (which walks its initializer).
77 // Return true if any of the operands contains blockaddress. This is important
78 // to know when computing summary for global var, because if global variable
79 // references basic block address we can't import it separately from function
80 // containing that basic block. For simplicity we currently don't import such
81 // global vars at all. When importing function we aren't interested if any
82 // instruction in it takes an address of any basic block, because instruction
83 // can only take an address of basic block located in the same function.
84 static bool findRefEdges(ModuleSummaryIndex &Index, const User *CurUser,
85                          SetVector<ValueInfo> &RefEdges,
86                          SmallPtrSet<const User *, 8> &Visited) {
87   bool HasBlockAddress = false;
88   SmallVector<const User *, 32> Worklist;
89   Worklist.push_back(CurUser);
90 
91   while (!Worklist.empty()) {
92     const User *U = Worklist.pop_back_val();
93 
94     if (!Visited.insert(U).second)
95       continue;
96 
97     ImmutableCallSite CS(U);
98 
99     for (const auto &OI : U->operands()) {
100       const User *Operand = dyn_cast<User>(OI);
101       if (!Operand)
102         continue;
103       if (isa<BlockAddress>(Operand)) {
104         HasBlockAddress = true;
105         continue;
106       }
107       if (auto *GV = dyn_cast<GlobalValue>(Operand)) {
108         // We have a reference to a global value. This should be added to
109         // the reference set unless it is a callee. Callees are handled
110         // specially by WriteFunction and are added to a separate list.
111         if (!(CS && CS.isCallee(&OI)))
112           RefEdges.insert(Index.getOrInsertValueInfo(GV));
113         continue;
114       }
115       Worklist.push_back(Operand);
116     }
117   }
118   return HasBlockAddress;
119 }
120 
121 static CalleeInfo::HotnessType getHotness(uint64_t ProfileCount,
122                                           ProfileSummaryInfo *PSI) {
123   if (!PSI)
124     return CalleeInfo::HotnessType::Unknown;
125   if (PSI->isHotCount(ProfileCount))
126     return CalleeInfo::HotnessType::Hot;
127   if (PSI->isColdCount(ProfileCount))
128     return CalleeInfo::HotnessType::Cold;
129   return CalleeInfo::HotnessType::None;
130 }
131 
132 static bool isNonRenamableLocal(const GlobalValue &GV) {
133   return GV.hasSection() && GV.hasLocalLinkage();
134 }
135 
136 /// Determine whether this call has all constant integer arguments (excluding
137 /// "this") and summarize it to VCalls or ConstVCalls as appropriate.
138 static void addVCallToSet(DevirtCallSite Call, GlobalValue::GUID Guid,
139                           SetVector<FunctionSummary::VFuncId> &VCalls,
140                           SetVector<FunctionSummary::ConstVCall> &ConstVCalls) {
141   std::vector<uint64_t> Args;
142   // Start from the second argument to skip the "this" pointer.
143   for (auto &Arg : make_range(Call.CS.arg_begin() + 1, Call.CS.arg_end())) {
144     auto *CI = dyn_cast<ConstantInt>(Arg);
145     if (!CI || CI->getBitWidth() > 64) {
146       VCalls.insert({Guid, Call.Offset});
147       return;
148     }
149     Args.push_back(CI->getZExtValue());
150   }
151   ConstVCalls.insert({{Guid, Call.Offset}, std::move(Args)});
152 }
153 
154 /// If this intrinsic call requires that we add information to the function
155 /// summary, do so via the non-constant reference arguments.
156 static void addIntrinsicToSummary(
157     const CallInst *CI, SetVector<GlobalValue::GUID> &TypeTests,
158     SetVector<FunctionSummary::VFuncId> &TypeTestAssumeVCalls,
159     SetVector<FunctionSummary::VFuncId> &TypeCheckedLoadVCalls,
160     SetVector<FunctionSummary::ConstVCall> &TypeTestAssumeConstVCalls,
161     SetVector<FunctionSummary::ConstVCall> &TypeCheckedLoadConstVCalls,
162     DominatorTree &DT) {
163   switch (CI->getCalledFunction()->getIntrinsicID()) {
164   case Intrinsic::type_test: {
165     auto *TypeMDVal = cast<MetadataAsValue>(CI->getArgOperand(1));
166     auto *TypeId = dyn_cast<MDString>(TypeMDVal->getMetadata());
167     if (!TypeId)
168       break;
169     GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString());
170 
171     // Produce a summary from type.test intrinsics. We only summarize type.test
172     // intrinsics that are used other than by an llvm.assume intrinsic.
173     // Intrinsics that are assumed are relevant only to the devirtualization
174     // pass, not the type test lowering pass.
175     bool HasNonAssumeUses = llvm::any_of(CI->uses(), [](const Use &CIU) {
176       auto *AssumeCI = dyn_cast<CallInst>(CIU.getUser());
177       if (!AssumeCI)
178         return true;
179       Function *F = AssumeCI->getCalledFunction();
180       return !F || F->getIntrinsicID() != Intrinsic::assume;
181     });
182     if (HasNonAssumeUses)
183       TypeTests.insert(Guid);
184 
185     SmallVector<DevirtCallSite, 4> DevirtCalls;
186     SmallVector<CallInst *, 4> Assumes;
187     findDevirtualizableCallsForTypeTest(DevirtCalls, Assumes, CI, DT);
188     for (auto &Call : DevirtCalls)
189       addVCallToSet(Call, Guid, TypeTestAssumeVCalls,
190                     TypeTestAssumeConstVCalls);
191 
192     break;
193   }
194 
195   case Intrinsic::type_checked_load: {
196     auto *TypeMDVal = cast<MetadataAsValue>(CI->getArgOperand(2));
197     auto *TypeId = dyn_cast<MDString>(TypeMDVal->getMetadata());
198     if (!TypeId)
199       break;
200     GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString());
201 
202     SmallVector<DevirtCallSite, 4> DevirtCalls;
203     SmallVector<Instruction *, 4> LoadedPtrs;
204     SmallVector<Instruction *, 4> Preds;
205     bool HasNonCallUses = false;
206     findDevirtualizableCallsForTypeCheckedLoad(DevirtCalls, LoadedPtrs, Preds,
207                                                HasNonCallUses, CI, DT);
208     // Any non-call uses of the result of llvm.type.checked.load will
209     // prevent us from optimizing away the llvm.type.test.
210     if (HasNonCallUses)
211       TypeTests.insert(Guid);
212     for (auto &Call : DevirtCalls)
213       addVCallToSet(Call, Guid, TypeCheckedLoadVCalls,
214                     TypeCheckedLoadConstVCalls);
215 
216     break;
217   }
218   default:
219     break;
220   }
221 }
222 
223 static bool isNonVolatileLoad(const Instruction *I) {
224   if (const auto *LI = dyn_cast<LoadInst>(I))
225     return !LI->isVolatile();
226 
227   return false;
228 }
229 
230 static void computeFunctionSummary(ModuleSummaryIndex &Index, const Module &M,
231                                    const Function &F, BlockFrequencyInfo *BFI,
232                                    ProfileSummaryInfo *PSI, DominatorTree &DT,
233                                    bool HasLocalsInUsedOrAsm,
234                                    DenseSet<GlobalValue::GUID> &CantBePromoted,
235                                    bool IsThinLTO) {
236   // Summary not currently supported for anonymous functions, they should
237   // have been named.
238   assert(F.hasName());
239 
240   unsigned NumInsts = 0;
241   // Map from callee ValueId to profile count. Used to accumulate profile
242   // counts for all static calls to a given callee.
243   MapVector<ValueInfo, CalleeInfo> CallGraphEdges;
244   SetVector<ValueInfo> RefEdges;
245   SetVector<GlobalValue::GUID> TypeTests;
246   SetVector<FunctionSummary::VFuncId> TypeTestAssumeVCalls,
247       TypeCheckedLoadVCalls;
248   SetVector<FunctionSummary::ConstVCall> TypeTestAssumeConstVCalls,
249       TypeCheckedLoadConstVCalls;
250   ICallPromotionAnalysis ICallAnalysis;
251   SmallPtrSet<const User *, 8> Visited;
252 
253   // Add personality function, prefix data and prologue data to function's ref
254   // list.
255   findRefEdges(Index, &F, RefEdges, Visited);
256   std::vector<const Instruction *> NonVolatileLoads;
257 
258   bool HasInlineAsmMaybeReferencingInternal = false;
259   bool InitsVarArgs = false;
260   for (const BasicBlock &BB : F)
261     for (const Instruction &I : BB) {
262       if (isa<DbgInfoIntrinsic>(I))
263         continue;
264       if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I)) {
265         if (II->getIntrinsicID() == Intrinsic::vastart)
266           InitsVarArgs = true;
267       }
268       ++NumInsts;
269       if (isNonVolatileLoad(&I)) {
270         // Postpone processing of non-volatile load instructions
271         // See comments below
272         Visited.insert(&I);
273         NonVolatileLoads.push_back(&I);
274         continue;
275       }
276       findRefEdges(Index, &I, RefEdges, Visited);
277       auto CS = ImmutableCallSite(&I);
278       if (!CS)
279         continue;
280 
281       const auto *CI = dyn_cast<CallInst>(&I);
282       // Since we don't know exactly which local values are referenced in inline
283       // assembly, conservatively mark the function as possibly referencing
284       // a local value from inline assembly to ensure we don't export a
285       // reference (which would require renaming and promotion of the
286       // referenced value).
287       if (HasLocalsInUsedOrAsm && CI && CI->isInlineAsm())
288         HasInlineAsmMaybeReferencingInternal = true;
289 
290       auto *CalledValue = CS.getCalledValue();
291       auto *CalledFunction = CS.getCalledFunction();
292       if (CalledValue && !CalledFunction) {
293         CalledValue = CalledValue->stripPointerCastsNoFollowAliases();
294         // Stripping pointer casts can reveal a called function.
295         CalledFunction = dyn_cast<Function>(CalledValue);
296       }
297       // Check if this is an alias to a function. If so, get the
298       // called aliasee for the checks below.
299       if (auto *GA = dyn_cast<GlobalAlias>(CalledValue)) {
300         assert(!CalledFunction && "Expected null called function in callsite for alias");
301         CalledFunction = dyn_cast<Function>(GA->getBaseObject());
302       }
303       // Check if this is a direct call to a known function or a known
304       // intrinsic, or an indirect call with profile data.
305       if (CalledFunction) {
306         if (CI && CalledFunction->isIntrinsic()) {
307           addIntrinsicToSummary(
308               CI, TypeTests, TypeTestAssumeVCalls, TypeCheckedLoadVCalls,
309               TypeTestAssumeConstVCalls, TypeCheckedLoadConstVCalls, DT);
310           continue;
311         }
312         // We should have named any anonymous globals
313         assert(CalledFunction->hasName());
314         auto ScaledCount = PSI->getProfileCount(&I, BFI);
315         auto Hotness = ScaledCount ? getHotness(ScaledCount.getValue(), PSI)
316                                    : CalleeInfo::HotnessType::Unknown;
317         if (ForceSummaryEdgesCold != FunctionSummary::FSHT_None)
318           Hotness = CalleeInfo::HotnessType::Cold;
319 
320         // Use the original CalledValue, in case it was an alias. We want
321         // to record the call edge to the alias in that case. Eventually
322         // an alias summary will be created to associate the alias and
323         // aliasee.
324         auto &ValueInfo = CallGraphEdges[Index.getOrInsertValueInfo(
325             cast<GlobalValue>(CalledValue))];
326         ValueInfo.updateHotness(Hotness);
327         // Add the relative block frequency to CalleeInfo if there is no profile
328         // information.
329         if (BFI != nullptr && Hotness == CalleeInfo::HotnessType::Unknown) {
330           uint64_t BBFreq = BFI->getBlockFreq(&BB).getFrequency();
331           uint64_t EntryFreq = BFI->getEntryFreq();
332           ValueInfo.updateRelBlockFreq(BBFreq, EntryFreq);
333         }
334       } else {
335         // Skip inline assembly calls.
336         if (CI && CI->isInlineAsm())
337           continue;
338         // Skip direct calls.
339         if (!CalledValue || isa<Constant>(CalledValue))
340           continue;
341 
342         // Check if the instruction has a callees metadata. If so, add callees
343         // to CallGraphEdges to reflect the references from the metadata, and
344         // to enable importing for subsequent indirect call promotion and
345         // inlining.
346         if (auto *MD = I.getMetadata(LLVMContext::MD_callees)) {
347           for (auto &Op : MD->operands()) {
348             Function *Callee = mdconst::extract_or_null<Function>(Op);
349             if (Callee)
350               CallGraphEdges[Index.getOrInsertValueInfo(Callee)];
351           }
352         }
353 
354         uint32_t NumVals, NumCandidates;
355         uint64_t TotalCount;
356         auto CandidateProfileData =
357             ICallAnalysis.getPromotionCandidatesForInstruction(
358                 &I, NumVals, TotalCount, NumCandidates);
359         for (auto &Candidate : CandidateProfileData)
360           CallGraphEdges[Index.getOrInsertValueInfo(Candidate.Value)]
361               .updateHotness(getHotness(Candidate.Count, PSI));
362       }
363     }
364 
365   // By now we processed all instructions in a function, except
366   // non-volatile loads. All new refs we add in a loop below
367   // are obviously constant. All constant refs are grouped in the
368   // end of RefEdges vector, so we can use a single integer value
369   // to identify them.
370   unsigned RefCnt = RefEdges.size();
371   for (const Instruction *I : NonVolatileLoads) {
372     Visited.erase(I);
373     findRefEdges(Index, I, RefEdges, Visited);
374   }
375   std::vector<ValueInfo> Refs = RefEdges.takeVector();
376   // Regular LTO module doesn't participate in ThinLTO import,
377   // so no reference from it can be readonly, since this would
378   // require importing variable as local copy
379   if (IsThinLTO)
380     for (; RefCnt < Refs.size(); ++RefCnt)
381       Refs[RefCnt].setReadOnly();
382 
383   // Explicit add hot edges to enforce importing for designated GUIDs for
384   // sample PGO, to enable the same inlines as the profiled optimized binary.
385   for (auto &I : F.getImportGUIDs())
386     CallGraphEdges[Index.getOrInsertValueInfo(I)].updateHotness(
387         ForceSummaryEdgesCold == FunctionSummary::FSHT_All
388             ? CalleeInfo::HotnessType::Cold
389             : CalleeInfo::HotnessType::Critical);
390 
391   bool NonRenamableLocal = isNonRenamableLocal(F);
392   bool NotEligibleForImport =
393       NonRenamableLocal || HasInlineAsmMaybeReferencingInternal;
394   GlobalValueSummary::GVFlags Flags(F.getLinkage(), NotEligibleForImport,
395                                     /* Live = */ false, F.isDSOLocal());
396   FunctionSummary::FFlags FunFlags{
397       F.hasFnAttribute(Attribute::ReadNone),
398       F.hasFnAttribute(Attribute::ReadOnly),
399       F.hasFnAttribute(Attribute::NoRecurse), F.returnDoesNotAlias(),
400       // Inliner doesn't handle variadic functions with va_start calls.
401       // FIXME: refactor this to use the same code that inliner is using.
402       InitsVarArgs ||
403           // Don't try to import functions with noinline attribute.
404           F.getAttributes().hasFnAttribute(Attribute::NoInline)};
405   auto FuncSummary = llvm::make_unique<FunctionSummary>(
406       Flags, NumInsts, FunFlags, std::move(Refs), CallGraphEdges.takeVector(),
407       TypeTests.takeVector(), TypeTestAssumeVCalls.takeVector(),
408       TypeCheckedLoadVCalls.takeVector(),
409       TypeTestAssumeConstVCalls.takeVector(),
410       TypeCheckedLoadConstVCalls.takeVector());
411   if (NonRenamableLocal)
412     CantBePromoted.insert(F.getGUID());
413   Index.addGlobalValueSummary(F, std::move(FuncSummary));
414 }
415 
416 static void
417 computeVariableSummary(ModuleSummaryIndex &Index, const GlobalVariable &V,
418                        DenseSet<GlobalValue::GUID> &CantBePromoted) {
419   SetVector<ValueInfo> RefEdges;
420   SmallPtrSet<const User *, 8> Visited;
421   bool HasBlockAddress = findRefEdges(Index, &V, RefEdges, Visited);
422   bool NonRenamableLocal = isNonRenamableLocal(V);
423   GlobalValueSummary::GVFlags Flags(V.getLinkage(), NonRenamableLocal,
424                                     /* Live = */ false, V.isDSOLocal());
425 
426   // Don't mark variables we won't be able to internalize as read-only.
427   GlobalVarSummary::GVarFlags VarFlags(
428       !V.hasComdat() && !V.hasAppendingLinkage() && !V.isInterposable() &&
429       !V.hasAvailableExternallyLinkage() && !V.hasDLLExportStorageClass());
430   auto GVarSummary = llvm::make_unique<GlobalVarSummary>(Flags, VarFlags,
431                                                          RefEdges.takeVector());
432   if (NonRenamableLocal)
433     CantBePromoted.insert(V.getGUID());
434   if (HasBlockAddress)
435     GVarSummary->setNotEligibleToImport();
436   Index.addGlobalValueSummary(V, std::move(GVarSummary));
437 }
438 
439 static void
440 computeAliasSummary(ModuleSummaryIndex &Index, const GlobalAlias &A,
441                     DenseSet<GlobalValue::GUID> &CantBePromoted) {
442   bool NonRenamableLocal = isNonRenamableLocal(A);
443   GlobalValueSummary::GVFlags Flags(A.getLinkage(), NonRenamableLocal,
444                                     /* Live = */ false, A.isDSOLocal());
445   auto AS = llvm::make_unique<AliasSummary>(Flags);
446   auto *Aliasee = A.getBaseObject();
447   auto *AliaseeSummary = Index.getGlobalValueSummary(*Aliasee);
448   assert(AliaseeSummary && "Alias expects aliasee summary to be parsed");
449   AS->setAliasee(AliaseeSummary);
450   if (NonRenamableLocal)
451     CantBePromoted.insert(A.getGUID());
452   Index.addGlobalValueSummary(A, std::move(AS));
453 }
454 
455 // Set LiveRoot flag on entries matching the given value name.
456 static void setLiveRoot(ModuleSummaryIndex &Index, StringRef Name) {
457   if (ValueInfo VI = Index.getValueInfo(GlobalValue::getGUID(Name)))
458     for (auto &Summary : VI.getSummaryList())
459       Summary->setLive(true);
460 }
461 
462 ModuleSummaryIndex llvm::buildModuleSummaryIndex(
463     const Module &M,
464     std::function<BlockFrequencyInfo *(const Function &F)> GetBFICallback,
465     ProfileSummaryInfo *PSI) {
466   assert(PSI);
467   ModuleSummaryIndex Index(/*HaveGVs=*/true);
468 
469   // Identify the local values in the llvm.used and llvm.compiler.used sets,
470   // which should not be exported as they would then require renaming and
471   // promotion, but we may have opaque uses e.g. in inline asm. We collect them
472   // here because we use this information to mark functions containing inline
473   // assembly calls as not importable.
474   SmallPtrSet<GlobalValue *, 8> LocalsUsed;
475   SmallPtrSet<GlobalValue *, 8> Used;
476   // First collect those in the llvm.used set.
477   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
478   // Next collect those in the llvm.compiler.used set.
479   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ true);
480   DenseSet<GlobalValue::GUID> CantBePromoted;
481   for (auto *V : Used) {
482     if (V->hasLocalLinkage()) {
483       LocalsUsed.insert(V);
484       CantBePromoted.insert(V->getGUID());
485     }
486   }
487 
488   bool HasLocalInlineAsmSymbol = false;
489   if (!M.getModuleInlineAsm().empty()) {
490     // Collect the local values defined by module level asm, and set up
491     // summaries for these symbols so that they can be marked as NoRename,
492     // to prevent export of any use of them in regular IR that would require
493     // renaming within the module level asm. Note we don't need to create a
494     // summary for weak or global defs, as they don't need to be flagged as
495     // NoRename, and defs in module level asm can't be imported anyway.
496     // Also, any values used but not defined within module level asm should
497     // be listed on the llvm.used or llvm.compiler.used global and marked as
498     // referenced from there.
499     ModuleSymbolTable::CollectAsmSymbols(
500         M, [&](StringRef Name, object::BasicSymbolRef::Flags Flags) {
501           // Symbols not marked as Weak or Global are local definitions.
502           if (Flags & (object::BasicSymbolRef::SF_Weak |
503                        object::BasicSymbolRef::SF_Global))
504             return;
505           HasLocalInlineAsmSymbol = true;
506           GlobalValue *GV = M.getNamedValue(Name);
507           if (!GV)
508             return;
509           assert(GV->isDeclaration() && "Def in module asm already has definition");
510           GlobalValueSummary::GVFlags GVFlags(GlobalValue::InternalLinkage,
511                                               /* NotEligibleToImport = */ true,
512                                               /* Live = */ true,
513                                               /* Local */ GV->isDSOLocal());
514           CantBePromoted.insert(GV->getGUID());
515           // Create the appropriate summary type.
516           if (Function *F = dyn_cast<Function>(GV)) {
517             std::unique_ptr<FunctionSummary> Summary =
518                 llvm::make_unique<FunctionSummary>(
519                     GVFlags, 0,
520                     FunctionSummary::FFlags{
521                         F->hasFnAttribute(Attribute::ReadNone),
522                         F->hasFnAttribute(Attribute::ReadOnly),
523                         F->hasFnAttribute(Attribute::NoRecurse),
524                         F->returnDoesNotAlias(),
525                         /* NoInline = */ false},
526                     ArrayRef<ValueInfo>{}, ArrayRef<FunctionSummary::EdgeTy>{},
527                     ArrayRef<GlobalValue::GUID>{},
528                     ArrayRef<FunctionSummary::VFuncId>{},
529                     ArrayRef<FunctionSummary::VFuncId>{},
530                     ArrayRef<FunctionSummary::ConstVCall>{},
531                     ArrayRef<FunctionSummary::ConstVCall>{});
532             Index.addGlobalValueSummary(*GV, std::move(Summary));
533           } else {
534             std::unique_ptr<GlobalVarSummary> Summary =
535                 llvm::make_unique<GlobalVarSummary>(
536                     GVFlags, GlobalVarSummary::GVarFlags(),
537                     ArrayRef<ValueInfo>{});
538             Index.addGlobalValueSummary(*GV, std::move(Summary));
539           }
540         });
541   }
542 
543   bool IsThinLTO = true;
544   if (auto *MD =
545           mdconst::extract_or_null<ConstantInt>(M.getModuleFlag("ThinLTO")))
546     IsThinLTO = MD->getZExtValue();
547 
548   // Compute summaries for all functions defined in module, and save in the
549   // index.
550   for (auto &F : M) {
551     if (F.isDeclaration())
552       continue;
553 
554     DominatorTree DT(const_cast<Function &>(F));
555     BlockFrequencyInfo *BFI = nullptr;
556     std::unique_ptr<BlockFrequencyInfo> BFIPtr;
557     if (GetBFICallback)
558       BFI = GetBFICallback(F);
559     else if (F.hasProfileData()) {
560       LoopInfo LI{DT};
561       BranchProbabilityInfo BPI{F, LI};
562       BFIPtr = llvm::make_unique<BlockFrequencyInfo>(F, BPI, LI);
563       BFI = BFIPtr.get();
564     }
565 
566     computeFunctionSummary(Index, M, F, BFI, PSI, DT,
567                            !LocalsUsed.empty() || HasLocalInlineAsmSymbol,
568                            CantBePromoted, IsThinLTO);
569   }
570 
571   // Compute summaries for all variables defined in module, and save in the
572   // index.
573   for (const GlobalVariable &G : M.globals()) {
574     if (G.isDeclaration())
575       continue;
576     computeVariableSummary(Index, G, CantBePromoted);
577   }
578 
579   // Compute summaries for all aliases defined in module, and save in the
580   // index.
581   for (const GlobalAlias &A : M.aliases())
582     computeAliasSummary(Index, A, CantBePromoted);
583 
584   for (auto *V : LocalsUsed) {
585     auto *Summary = Index.getGlobalValueSummary(*V);
586     assert(Summary && "Missing summary for global value");
587     Summary->setNotEligibleToImport();
588   }
589 
590   // The linker doesn't know about these LLVM produced values, so we need
591   // to flag them as live in the index to ensure index-based dead value
592   // analysis treats them as live roots of the analysis.
593   setLiveRoot(Index, "llvm.used");
594   setLiveRoot(Index, "llvm.compiler.used");
595   setLiveRoot(Index, "llvm.global_ctors");
596   setLiveRoot(Index, "llvm.global_dtors");
597   setLiveRoot(Index, "llvm.global.annotations");
598 
599   for (auto &GlobalList : Index) {
600     // Ignore entries for references that are undefined in the current module.
601     if (GlobalList.second.SummaryList.empty())
602       continue;
603 
604     assert(GlobalList.second.SummaryList.size() == 1 &&
605            "Expected module's index to have one summary per GUID");
606     auto &Summary = GlobalList.second.SummaryList[0];
607     if (!IsThinLTO) {
608       Summary->setNotEligibleToImport();
609       continue;
610     }
611 
612     bool AllRefsCanBeExternallyReferenced =
613         llvm::all_of(Summary->refs(), [&](const ValueInfo &VI) {
614           return !CantBePromoted.count(VI.getGUID());
615         });
616     if (!AllRefsCanBeExternallyReferenced) {
617       Summary->setNotEligibleToImport();
618       continue;
619     }
620 
621     if (auto *FuncSummary = dyn_cast<FunctionSummary>(Summary.get())) {
622       bool AllCallsCanBeExternallyReferenced = llvm::all_of(
623           FuncSummary->calls(), [&](const FunctionSummary::EdgeTy &Edge) {
624             return !CantBePromoted.count(Edge.first.getGUID());
625           });
626       if (!AllCallsCanBeExternallyReferenced)
627         Summary->setNotEligibleToImport();
628     }
629   }
630 
631   return Index;
632 }
633 
634 AnalysisKey ModuleSummaryIndexAnalysis::Key;
635 
636 ModuleSummaryIndex
637 ModuleSummaryIndexAnalysis::run(Module &M, ModuleAnalysisManager &AM) {
638   ProfileSummaryInfo &PSI = AM.getResult<ProfileSummaryAnalysis>(M);
639   auto &FAM = AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
640   return buildModuleSummaryIndex(
641       M,
642       [&FAM](const Function &F) {
643         return &FAM.getResult<BlockFrequencyAnalysis>(
644             *const_cast<Function *>(&F));
645       },
646       &PSI);
647 }
648 
649 char ModuleSummaryIndexWrapperPass::ID = 0;
650 
651 INITIALIZE_PASS_BEGIN(ModuleSummaryIndexWrapperPass, "module-summary-analysis",
652                       "Module Summary Analysis", false, true)
653 INITIALIZE_PASS_DEPENDENCY(BlockFrequencyInfoWrapperPass)
654 INITIALIZE_PASS_DEPENDENCY(ProfileSummaryInfoWrapperPass)
655 INITIALIZE_PASS_END(ModuleSummaryIndexWrapperPass, "module-summary-analysis",
656                     "Module Summary Analysis", false, true)
657 
658 ModulePass *llvm::createModuleSummaryIndexWrapperPass() {
659   return new ModuleSummaryIndexWrapperPass();
660 }
661 
662 ModuleSummaryIndexWrapperPass::ModuleSummaryIndexWrapperPass()
663     : ModulePass(ID) {
664   initializeModuleSummaryIndexWrapperPassPass(*PassRegistry::getPassRegistry());
665 }
666 
667 bool ModuleSummaryIndexWrapperPass::runOnModule(Module &M) {
668   auto &PSI = *getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI();
669   Index.emplace(buildModuleSummaryIndex(
670       M,
671       [this](const Function &F) {
672         return &(this->getAnalysis<BlockFrequencyInfoWrapperPass>(
673                          *const_cast<Function *>(&F))
674                      .getBFI());
675       },
676       &PSI));
677   return false;
678 }
679 
680 bool ModuleSummaryIndexWrapperPass::doFinalization(Module &M) {
681   Index.reset();
682   return false;
683 }
684 
685 void ModuleSummaryIndexWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
686   AU.setPreservesAll();
687   AU.addRequired<BlockFrequencyInfoWrapperPass>();
688   AU.addRequired<ProfileSummaryInfoWrapperPass>();
689 }
690