1 //===- ModuleSummaryAnalysis.cpp - Module summary index builder -----------===//
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 pass builds a ModuleSummaryIndex object for the module, to be written
10 // to bitcode or LLVM assembly.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/Analysis/ModuleSummaryAnalysis.h"
15 #include "llvm/ADT/ArrayRef.h"
16 #include "llvm/ADT/DenseSet.h"
17 #include "llvm/ADT/MapVector.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/ADT/SetVector.h"
20 #include "llvm/ADT/SmallPtrSet.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/Analysis/BlockFrequencyInfo.h"
24 #include "llvm/Analysis/BranchProbabilityInfo.h"
25 #include "llvm/Analysis/IndirectCallPromotionAnalysis.h"
26 #include "llvm/Analysis/LoopInfo.h"
27 #include "llvm/Analysis/ProfileSummaryInfo.h"
28 #include "llvm/Analysis/StackSafetyAnalysis.h"
29 #include "llvm/Analysis/TypeMetadataUtils.h"
30 #include "llvm/IR/Attributes.h"
31 #include "llvm/IR/BasicBlock.h"
32 #include "llvm/IR/Constant.h"
33 #include "llvm/IR/Constants.h"
34 #include "llvm/IR/Dominators.h"
35 #include "llvm/IR/Function.h"
36 #include "llvm/IR/GlobalAlias.h"
37 #include "llvm/IR/GlobalValue.h"
38 #include "llvm/IR/GlobalVariable.h"
39 #include "llvm/IR/Instructions.h"
40 #include "llvm/IR/IntrinsicInst.h"
41 #include "llvm/IR/Intrinsics.h"
42 #include "llvm/IR/Metadata.h"
43 #include "llvm/IR/Module.h"
44 #include "llvm/IR/ModuleSummaryIndex.h"
45 #include "llvm/IR/Use.h"
46 #include "llvm/IR/User.h"
47 #include "llvm/InitializePasses.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 cl::opt<std::string> ModuleSummaryDotFile(
75     "module-summary-dot-file", cl::init(""), cl::Hidden,
76     cl::value_desc("filename"),
77     cl::desc("File to emit dot graph of new summary into."));
78 
79 // Walk through the operands of a given User via worklist iteration and populate
80 // the set of GlobalValue references encountered. Invoked either on an
81 // Instruction or a GlobalVariable (which walks its initializer).
82 // Return true if any of the operands contains blockaddress. This is important
83 // to know when computing summary for global var, because if global variable
84 // references basic block address we can't import it separately from function
85 // containing that basic block. For simplicity we currently don't import such
86 // global vars at all. When importing function we aren't interested if any
87 // instruction in it takes an address of any basic block, because instruction
88 // can only take an address of basic block located in the same function.
89 static bool findRefEdges(ModuleSummaryIndex &Index, const User *CurUser,
90                          SetVector<ValueInfo> &RefEdges,
91                          SmallPtrSet<const User *, 8> &Visited) {
92   bool HasBlockAddress = false;
93   SmallVector<const User *, 32> Worklist;
94   Worklist.push_back(CurUser);
95 
96   while (!Worklist.empty()) {
97     const User *U = Worklist.pop_back_val();
98 
99     if (!Visited.insert(U).second)
100       continue;
101 
102     const auto *CB = dyn_cast<CallBase>(U);
103 
104     for (const auto &OI : U->operands()) {
105       const User *Operand = dyn_cast<User>(OI);
106       if (!Operand)
107         continue;
108       if (isa<BlockAddress>(Operand)) {
109         HasBlockAddress = true;
110         continue;
111       }
112       if (auto *GV = dyn_cast<GlobalValue>(Operand)) {
113         // We have a reference to a global value. This should be added to
114         // the reference set unless it is a callee. Callees are handled
115         // specially by WriteFunction and are added to a separate list.
116         if (!(CB && CB->isCallee(&OI)))
117           RefEdges.insert(Index.getOrInsertValueInfo(GV));
118         continue;
119       }
120       Worklist.push_back(Operand);
121     }
122   }
123   return HasBlockAddress;
124 }
125 
126 static CalleeInfo::HotnessType getHotness(uint64_t ProfileCount,
127                                           ProfileSummaryInfo *PSI) {
128   if (!PSI)
129     return CalleeInfo::HotnessType::Unknown;
130   if (PSI->isHotCount(ProfileCount))
131     return CalleeInfo::HotnessType::Hot;
132   if (PSI->isColdCount(ProfileCount))
133     return CalleeInfo::HotnessType::Cold;
134   return CalleeInfo::HotnessType::None;
135 }
136 
137 static bool isNonRenamableLocal(const GlobalValue &GV) {
138   return GV.hasSection() && GV.hasLocalLinkage();
139 }
140 
141 /// Determine whether this call has all constant integer arguments (excluding
142 /// "this") and summarize it to VCalls or ConstVCalls as appropriate.
143 static void addVCallToSet(DevirtCallSite Call, GlobalValue::GUID Guid,
144                           SetVector<FunctionSummary::VFuncId> &VCalls,
145                           SetVector<FunctionSummary::ConstVCall> &ConstVCalls) {
146   std::vector<uint64_t> Args;
147   // Start from the second argument to skip the "this" pointer.
148   for (auto &Arg : drop_begin(Call.CB.args())) {
149     auto *CI = dyn_cast<ConstantInt>(Arg);
150     if (!CI || CI->getBitWidth() > 64) {
151       VCalls.insert({Guid, Call.Offset});
152       return;
153     }
154     Args.push_back(CI->getZExtValue());
155   }
156   ConstVCalls.insert({{Guid, Call.Offset}, std::move(Args)});
157 }
158 
159 /// If this intrinsic call requires that we add information to the function
160 /// summary, do so via the non-constant reference arguments.
161 static void addIntrinsicToSummary(
162     const CallInst *CI, SetVector<GlobalValue::GUID> &TypeTests,
163     SetVector<FunctionSummary::VFuncId> &TypeTestAssumeVCalls,
164     SetVector<FunctionSummary::VFuncId> &TypeCheckedLoadVCalls,
165     SetVector<FunctionSummary::ConstVCall> &TypeTestAssumeConstVCalls,
166     SetVector<FunctionSummary::ConstVCall> &TypeCheckedLoadConstVCalls,
167     DominatorTree &DT) {
168   switch (CI->getCalledFunction()->getIntrinsicID()) {
169   case Intrinsic::type_test: {
170     auto *TypeMDVal = cast<MetadataAsValue>(CI->getArgOperand(1));
171     auto *TypeId = dyn_cast<MDString>(TypeMDVal->getMetadata());
172     if (!TypeId)
173       break;
174     GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString());
175 
176     // Produce a summary from type.test intrinsics. We only summarize type.test
177     // intrinsics that are used other than by an llvm.assume intrinsic.
178     // Intrinsics that are assumed are relevant only to the devirtualization
179     // pass, not the type test lowering pass.
180     bool HasNonAssumeUses = llvm::any_of(CI->uses(), [](const Use &CIU) {
181       auto *AssumeCI = dyn_cast<CallInst>(CIU.getUser());
182       if (!AssumeCI)
183         return true;
184       Function *F = AssumeCI->getCalledFunction();
185       return !F || F->getIntrinsicID() != Intrinsic::assume;
186     });
187     if (HasNonAssumeUses)
188       TypeTests.insert(Guid);
189 
190     SmallVector<DevirtCallSite, 4> DevirtCalls;
191     SmallVector<CallInst *, 4> Assumes;
192     findDevirtualizableCallsForTypeTest(DevirtCalls, Assumes, CI, DT);
193     for (auto &Call : DevirtCalls)
194       addVCallToSet(Call, Guid, TypeTestAssumeVCalls,
195                     TypeTestAssumeConstVCalls);
196 
197     break;
198   }
199 
200   case Intrinsic::type_checked_load: {
201     auto *TypeMDVal = cast<MetadataAsValue>(CI->getArgOperand(2));
202     auto *TypeId = dyn_cast<MDString>(TypeMDVal->getMetadata());
203     if (!TypeId)
204       break;
205     GlobalValue::GUID Guid = GlobalValue::getGUID(TypeId->getString());
206 
207     SmallVector<DevirtCallSite, 4> DevirtCalls;
208     SmallVector<Instruction *, 4> LoadedPtrs;
209     SmallVector<Instruction *, 4> Preds;
210     bool HasNonCallUses = false;
211     findDevirtualizableCallsForTypeCheckedLoad(DevirtCalls, LoadedPtrs, Preds,
212                                                HasNonCallUses, CI, DT);
213     // Any non-call uses of the result of llvm.type.checked.load will
214     // prevent us from optimizing away the llvm.type.test.
215     if (HasNonCallUses)
216       TypeTests.insert(Guid);
217     for (auto &Call : DevirtCalls)
218       addVCallToSet(Call, Guid, TypeCheckedLoadVCalls,
219                     TypeCheckedLoadConstVCalls);
220 
221     break;
222   }
223   default:
224     break;
225   }
226 }
227 
228 static bool isNonVolatileLoad(const Instruction *I) {
229   if (const auto *LI = dyn_cast<LoadInst>(I))
230     return !LI->isVolatile();
231 
232   return false;
233 }
234 
235 static bool isNonVolatileStore(const Instruction *I) {
236   if (const auto *SI = dyn_cast<StoreInst>(I))
237     return !SI->isVolatile();
238 
239   return false;
240 }
241 
242 static void computeFunctionSummary(
243     ModuleSummaryIndex &Index, const Module &M, const Function &F,
244     BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI, DominatorTree &DT,
245     bool HasLocalsInUsedOrAsm, DenseSet<GlobalValue::GUID> &CantBePromoted,
246     bool IsThinLTO,
247     std::function<const StackSafetyInfo *(const Function &F)> GetSSICallback) {
248   // Summary not currently supported for anonymous functions, they should
249   // have been named.
250   assert(F.hasName());
251 
252   unsigned NumInsts = 0;
253   // Map from callee ValueId to profile count. Used to accumulate profile
254   // counts for all static calls to a given callee.
255   MapVector<ValueInfo, CalleeInfo> CallGraphEdges;
256   SetVector<ValueInfo> RefEdges, LoadRefEdges, StoreRefEdges;
257   SetVector<GlobalValue::GUID> TypeTests;
258   SetVector<FunctionSummary::VFuncId> TypeTestAssumeVCalls,
259       TypeCheckedLoadVCalls;
260   SetVector<FunctionSummary::ConstVCall> TypeTestAssumeConstVCalls,
261       TypeCheckedLoadConstVCalls;
262   ICallPromotionAnalysis ICallAnalysis;
263   SmallPtrSet<const User *, 8> Visited;
264 
265   // Add personality function, prefix data and prologue data to function's ref
266   // list.
267   findRefEdges(Index, &F, RefEdges, Visited);
268   std::vector<const Instruction *> NonVolatileLoads;
269   std::vector<const Instruction *> NonVolatileStores;
270 
271   bool HasInlineAsmMaybeReferencingInternal = false;
272   for (const BasicBlock &BB : F)
273     for (const Instruction &I : BB) {
274       if (isa<DbgInfoIntrinsic>(I))
275         continue;
276       ++NumInsts;
277       // Regular LTO module doesn't participate in ThinLTO import,
278       // so no reference from it can be read/writeonly, since this
279       // would require importing variable as local copy
280       if (IsThinLTO) {
281         if (isNonVolatileLoad(&I)) {
282           // Postpone processing of non-volatile load instructions
283           // See comments below
284           Visited.insert(&I);
285           NonVolatileLoads.push_back(&I);
286           continue;
287         } else if (isNonVolatileStore(&I)) {
288           Visited.insert(&I);
289           NonVolatileStores.push_back(&I);
290           // All references from second operand of store (destination address)
291           // can be considered write-only if they're not referenced by any
292           // non-store instruction. References from first operand of store
293           // (stored value) can't be treated either as read- or as write-only
294           // so we add them to RefEdges as we do with all other instructions
295           // except non-volatile load.
296           Value *Stored = I.getOperand(0);
297           if (auto *GV = dyn_cast<GlobalValue>(Stored))
298             // findRefEdges will try to examine GV operands, so instead
299             // of calling it we should add GV to RefEdges directly.
300             RefEdges.insert(Index.getOrInsertValueInfo(GV));
301           else if (auto *U = dyn_cast<User>(Stored))
302             findRefEdges(Index, U, RefEdges, Visited);
303           continue;
304         }
305       }
306       findRefEdges(Index, &I, RefEdges, Visited);
307       const auto *CB = dyn_cast<CallBase>(&I);
308       if (!CB)
309         continue;
310 
311       const auto *CI = dyn_cast<CallInst>(&I);
312       // Since we don't know exactly which local values are referenced in inline
313       // assembly, conservatively mark the function as possibly referencing
314       // a local value from inline assembly to ensure we don't export a
315       // reference (which would require renaming and promotion of the
316       // referenced value).
317       if (HasLocalsInUsedOrAsm && CI && CI->isInlineAsm())
318         HasInlineAsmMaybeReferencingInternal = true;
319 
320       auto *CalledValue = CB->getCalledOperand();
321       auto *CalledFunction = CB->getCalledFunction();
322       if (CalledValue && !CalledFunction) {
323         CalledValue = CalledValue->stripPointerCasts();
324         // Stripping pointer casts can reveal a called function.
325         CalledFunction = dyn_cast<Function>(CalledValue);
326       }
327       // Check if this is an alias to a function. If so, get the
328       // called aliasee for the checks below.
329       if (auto *GA = dyn_cast<GlobalAlias>(CalledValue)) {
330         assert(!CalledFunction && "Expected null called function in callsite for alias");
331         CalledFunction = dyn_cast<Function>(GA->getBaseObject());
332       }
333       // Check if this is a direct call to a known function or a known
334       // intrinsic, or an indirect call with profile data.
335       if (CalledFunction) {
336         if (CI && CalledFunction->isIntrinsic()) {
337           addIntrinsicToSummary(
338               CI, TypeTests, TypeTestAssumeVCalls, TypeCheckedLoadVCalls,
339               TypeTestAssumeConstVCalls, TypeCheckedLoadConstVCalls, DT);
340           continue;
341         }
342         // We should have named any anonymous globals
343         assert(CalledFunction->hasName());
344         auto ScaledCount = PSI->getProfileCount(*CB, BFI);
345         auto Hotness = ScaledCount ? getHotness(ScaledCount.getValue(), PSI)
346                                    : CalleeInfo::HotnessType::Unknown;
347         if (ForceSummaryEdgesCold != FunctionSummary::FSHT_None)
348           Hotness = CalleeInfo::HotnessType::Cold;
349 
350         // Use the original CalledValue, in case it was an alias. We want
351         // to record the call edge to the alias in that case. Eventually
352         // an alias summary will be created to associate the alias and
353         // aliasee.
354         auto &ValueInfo = CallGraphEdges[Index.getOrInsertValueInfo(
355             cast<GlobalValue>(CalledValue))];
356         ValueInfo.updateHotness(Hotness);
357         // Add the relative block frequency to CalleeInfo if there is no profile
358         // information.
359         if (BFI != nullptr && Hotness == CalleeInfo::HotnessType::Unknown) {
360           uint64_t BBFreq = BFI->getBlockFreq(&BB).getFrequency();
361           uint64_t EntryFreq = BFI->getEntryFreq();
362           ValueInfo.updateRelBlockFreq(BBFreq, EntryFreq);
363         }
364       } else {
365         // Skip inline assembly calls.
366         if (CI && CI->isInlineAsm())
367           continue;
368         // Skip direct calls.
369         if (!CalledValue || isa<Constant>(CalledValue))
370           continue;
371 
372         // Check if the instruction has a callees metadata. If so, add callees
373         // to CallGraphEdges to reflect the references from the metadata, and
374         // to enable importing for subsequent indirect call promotion and
375         // inlining.
376         if (auto *MD = I.getMetadata(LLVMContext::MD_callees)) {
377           for (auto &Op : MD->operands()) {
378             Function *Callee = mdconst::extract_or_null<Function>(Op);
379             if (Callee)
380               CallGraphEdges[Index.getOrInsertValueInfo(Callee)];
381           }
382         }
383 
384         uint32_t NumVals, NumCandidates;
385         uint64_t TotalCount;
386         auto CandidateProfileData =
387             ICallAnalysis.getPromotionCandidatesForInstruction(
388                 &I, NumVals, TotalCount, NumCandidates);
389         for (auto &Candidate : CandidateProfileData)
390           CallGraphEdges[Index.getOrInsertValueInfo(Candidate.Value)]
391               .updateHotness(getHotness(Candidate.Count, PSI));
392       }
393     }
394   Index.addBlockCount(F.size());
395 
396   std::vector<ValueInfo> Refs;
397   if (IsThinLTO) {
398     auto AddRefEdges = [&](const std::vector<const Instruction *> &Instrs,
399                            SetVector<ValueInfo> &Edges,
400                            SmallPtrSet<const User *, 8> &Cache) {
401       for (const auto *I : Instrs) {
402         Cache.erase(I);
403         findRefEdges(Index, I, Edges, Cache);
404       }
405     };
406 
407     // By now we processed all instructions in a function, except
408     // non-volatile loads and non-volatile value stores. Let's find
409     // ref edges for both of instruction sets
410     AddRefEdges(NonVolatileLoads, LoadRefEdges, Visited);
411     // We can add some values to the Visited set when processing load
412     // instructions which are also used by stores in NonVolatileStores.
413     // For example this can happen if we have following code:
414     //
415     // store %Derived* @foo, %Derived** bitcast (%Base** @bar to %Derived**)
416     // %42 = load %Derived*, %Derived** bitcast (%Base** @bar to %Derived**)
417     //
418     // After processing loads we'll add bitcast to the Visited set, and if
419     // we use the same set while processing stores, we'll never see store
420     // to @bar and @bar will be mistakenly treated as readonly.
421     SmallPtrSet<const llvm::User *, 8> StoreCache;
422     AddRefEdges(NonVolatileStores, StoreRefEdges, StoreCache);
423 
424     // If both load and store instruction reference the same variable
425     // we won't be able to optimize it. Add all such reference edges
426     // to RefEdges set.
427     for (auto &VI : StoreRefEdges)
428       if (LoadRefEdges.remove(VI))
429         RefEdges.insert(VI);
430 
431     unsigned RefCnt = RefEdges.size();
432     // All new reference edges inserted in two loops below are either
433     // read or write only. They will be grouped in the end of RefEdges
434     // vector, so we can use a single integer value to identify them.
435     for (auto &VI : LoadRefEdges)
436       RefEdges.insert(VI);
437 
438     unsigned FirstWORef = RefEdges.size();
439     for (auto &VI : StoreRefEdges)
440       RefEdges.insert(VI);
441 
442     Refs = RefEdges.takeVector();
443     for (; RefCnt < FirstWORef; ++RefCnt)
444       Refs[RefCnt].setReadOnly();
445 
446     for (; RefCnt < Refs.size(); ++RefCnt)
447       Refs[RefCnt].setWriteOnly();
448   } else {
449     Refs = RefEdges.takeVector();
450   }
451   // Explicit add hot edges to enforce importing for designated GUIDs for
452   // sample PGO, to enable the same inlines as the profiled optimized binary.
453   for (auto &I : F.getImportGUIDs())
454     CallGraphEdges[Index.getOrInsertValueInfo(I)].updateHotness(
455         ForceSummaryEdgesCold == FunctionSummary::FSHT_All
456             ? CalleeInfo::HotnessType::Cold
457             : CalleeInfo::HotnessType::Critical);
458 
459   bool NonRenamableLocal = isNonRenamableLocal(F);
460   bool NotEligibleForImport =
461       NonRenamableLocal || HasInlineAsmMaybeReferencingInternal;
462   GlobalValueSummary::GVFlags Flags(
463       F.getLinkage(), F.getVisibility(), NotEligibleForImport,
464       /* Live = */ false, F.isDSOLocal(),
465       F.hasLinkOnceODRLinkage() && F.hasGlobalUnnamedAddr());
466   FunctionSummary::FFlags FunFlags{
467       F.hasFnAttribute(Attribute::ReadNone),
468       F.hasFnAttribute(Attribute::ReadOnly),
469       F.hasFnAttribute(Attribute::NoRecurse), F.returnDoesNotAlias(),
470       // FIXME: refactor this to use the same code that inliner is using.
471       // Don't try to import functions with noinline attribute.
472       F.getAttributes().hasFnAttribute(Attribute::NoInline),
473       F.hasFnAttribute(Attribute::AlwaysInline)};
474   std::vector<FunctionSummary::ParamAccess> ParamAccesses;
475   if (auto *SSI = GetSSICallback(F))
476     ParamAccesses = SSI->getParamAccesses(Index);
477   auto FuncSummary = std::make_unique<FunctionSummary>(
478       Flags, NumInsts, FunFlags, /*EntryCount=*/0, std::move(Refs),
479       CallGraphEdges.takeVector(), TypeTests.takeVector(),
480       TypeTestAssumeVCalls.takeVector(), TypeCheckedLoadVCalls.takeVector(),
481       TypeTestAssumeConstVCalls.takeVector(),
482       TypeCheckedLoadConstVCalls.takeVector(), std::move(ParamAccesses));
483   if (NonRenamableLocal)
484     CantBePromoted.insert(F.getGUID());
485   Index.addGlobalValueSummary(F, std::move(FuncSummary));
486 }
487 
488 /// Find function pointers referenced within the given vtable initializer
489 /// (or subset of an initializer) \p I. The starting offset of \p I within
490 /// the vtable initializer is \p StartingOffset. Any discovered function
491 /// pointers are added to \p VTableFuncs along with their cumulative offset
492 /// within the initializer.
493 static void findFuncPointers(const Constant *I, uint64_t StartingOffset,
494                              const Module &M, ModuleSummaryIndex &Index,
495                              VTableFuncList &VTableFuncs) {
496   // First check if this is a function pointer.
497   if (I->getType()->isPointerTy()) {
498     auto Fn = dyn_cast<Function>(I->stripPointerCasts());
499     // We can disregard __cxa_pure_virtual as a possible call target, as
500     // calls to pure virtuals are UB.
501     if (Fn && Fn->getName() != "__cxa_pure_virtual")
502       VTableFuncs.push_back({Index.getOrInsertValueInfo(Fn), StartingOffset});
503     return;
504   }
505 
506   // Walk through the elements in the constant struct or array and recursively
507   // look for virtual function pointers.
508   const DataLayout &DL = M.getDataLayout();
509   if (auto *C = dyn_cast<ConstantStruct>(I)) {
510     StructType *STy = dyn_cast<StructType>(C->getType());
511     assert(STy);
512     const StructLayout *SL = DL.getStructLayout(C->getType());
513 
514     for (StructType::element_iterator EB = STy->element_begin(), EI = EB,
515                                       EE = STy->element_end();
516          EI != EE; ++EI) {
517       auto Offset = SL->getElementOffset(EI - EB);
518       unsigned Op = SL->getElementContainingOffset(Offset);
519       findFuncPointers(cast<Constant>(I->getOperand(Op)),
520                        StartingOffset + Offset, M, Index, VTableFuncs);
521     }
522   } else if (auto *C = dyn_cast<ConstantArray>(I)) {
523     ArrayType *ATy = C->getType();
524     Type *EltTy = ATy->getElementType();
525     uint64_t EltSize = DL.getTypeAllocSize(EltTy);
526     for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
527       findFuncPointers(cast<Constant>(I->getOperand(i)),
528                        StartingOffset + i * EltSize, M, Index, VTableFuncs);
529     }
530   }
531 }
532 
533 // Identify the function pointers referenced by vtable definition \p V.
534 static void computeVTableFuncs(ModuleSummaryIndex &Index,
535                                const GlobalVariable &V, const Module &M,
536                                VTableFuncList &VTableFuncs) {
537   if (!V.isConstant())
538     return;
539 
540   findFuncPointers(V.getInitializer(), /*StartingOffset=*/0, M, Index,
541                    VTableFuncs);
542 
543 #ifndef NDEBUG
544   // Validate that the VTableFuncs list is ordered by offset.
545   uint64_t PrevOffset = 0;
546   for (auto &P : VTableFuncs) {
547     // The findVFuncPointers traversal should have encountered the
548     // functions in offset order. We need to use ">=" since PrevOffset
549     // starts at 0.
550     assert(P.VTableOffset >= PrevOffset);
551     PrevOffset = P.VTableOffset;
552   }
553 #endif
554 }
555 
556 /// Record vtable definition \p V for each type metadata it references.
557 static void
558 recordTypeIdCompatibleVtableReferences(ModuleSummaryIndex &Index,
559                                        const GlobalVariable &V,
560                                        SmallVectorImpl<MDNode *> &Types) {
561   for (MDNode *Type : Types) {
562     auto TypeID = Type->getOperand(1).get();
563 
564     uint64_t Offset =
565         cast<ConstantInt>(
566             cast<ConstantAsMetadata>(Type->getOperand(0))->getValue())
567             ->getZExtValue();
568 
569     if (auto *TypeId = dyn_cast<MDString>(TypeID))
570       Index.getOrInsertTypeIdCompatibleVtableSummary(TypeId->getString())
571           .push_back({Offset, Index.getOrInsertValueInfo(&V)});
572   }
573 }
574 
575 static void computeVariableSummary(ModuleSummaryIndex &Index,
576                                    const GlobalVariable &V,
577                                    DenseSet<GlobalValue::GUID> &CantBePromoted,
578                                    const Module &M,
579                                    SmallVectorImpl<MDNode *> &Types) {
580   SetVector<ValueInfo> RefEdges;
581   SmallPtrSet<const User *, 8> Visited;
582   bool HasBlockAddress = findRefEdges(Index, &V, RefEdges, Visited);
583   bool NonRenamableLocal = isNonRenamableLocal(V);
584   GlobalValueSummary::GVFlags Flags(
585       V.getLinkage(), V.getVisibility(), NonRenamableLocal,
586       /* Live = */ false, V.isDSOLocal(),
587       V.hasLinkOnceODRLinkage() && V.hasGlobalUnnamedAddr());
588 
589   VTableFuncList VTableFuncs;
590   // If splitting is not enabled, then we compute the summary information
591   // necessary for index-based whole program devirtualization.
592   if (!Index.enableSplitLTOUnit()) {
593     Types.clear();
594     V.getMetadata(LLVMContext::MD_type, Types);
595     if (!Types.empty()) {
596       // Identify the function pointers referenced by this vtable definition.
597       computeVTableFuncs(Index, V, M, VTableFuncs);
598 
599       // Record this vtable definition for each type metadata it references.
600       recordTypeIdCompatibleVtableReferences(Index, V, Types);
601     }
602   }
603 
604   // Don't mark variables we won't be able to internalize as read/write-only.
605   bool CanBeInternalized =
606       !V.hasComdat() && !V.hasAppendingLinkage() && !V.isInterposable() &&
607       !V.hasAvailableExternallyLinkage() && !V.hasDLLExportStorageClass();
608   bool Constant = V.isConstant();
609   GlobalVarSummary::GVarFlags VarFlags(CanBeInternalized,
610                                        Constant ? false : CanBeInternalized,
611                                        Constant, V.getVCallVisibility());
612   auto GVarSummary = std::make_unique<GlobalVarSummary>(Flags, VarFlags,
613                                                          RefEdges.takeVector());
614   if (NonRenamableLocal)
615     CantBePromoted.insert(V.getGUID());
616   if (HasBlockAddress)
617     GVarSummary->setNotEligibleToImport();
618   if (!VTableFuncs.empty())
619     GVarSummary->setVTableFuncs(VTableFuncs);
620   Index.addGlobalValueSummary(V, std::move(GVarSummary));
621 }
622 
623 static void
624 computeAliasSummary(ModuleSummaryIndex &Index, const GlobalAlias &A,
625                     DenseSet<GlobalValue::GUID> &CantBePromoted) {
626   bool NonRenamableLocal = isNonRenamableLocal(A);
627   GlobalValueSummary::GVFlags Flags(
628       A.getLinkage(), A.getVisibility(), NonRenamableLocal,
629       /* Live = */ false, A.isDSOLocal(),
630       A.hasLinkOnceODRLinkage() && A.hasGlobalUnnamedAddr());
631   auto AS = std::make_unique<AliasSummary>(Flags);
632   auto *Aliasee = A.getBaseObject();
633   auto AliaseeVI = Index.getValueInfo(Aliasee->getGUID());
634   assert(AliaseeVI && "Alias expects aliasee summary to be available");
635   assert(AliaseeVI.getSummaryList().size() == 1 &&
636          "Expected a single entry per aliasee in per-module index");
637   AS->setAliasee(AliaseeVI, AliaseeVI.getSummaryList()[0].get());
638   if (NonRenamableLocal)
639     CantBePromoted.insert(A.getGUID());
640   Index.addGlobalValueSummary(A, std::move(AS));
641 }
642 
643 // Set LiveRoot flag on entries matching the given value name.
644 static void setLiveRoot(ModuleSummaryIndex &Index, StringRef Name) {
645   if (ValueInfo VI = Index.getValueInfo(GlobalValue::getGUID(Name)))
646     for (auto &Summary : VI.getSummaryList())
647       Summary->setLive(true);
648 }
649 
650 ModuleSummaryIndex llvm::buildModuleSummaryIndex(
651     const Module &M,
652     std::function<BlockFrequencyInfo *(const Function &F)> GetBFICallback,
653     ProfileSummaryInfo *PSI,
654     std::function<const StackSafetyInfo *(const Function &F)> GetSSICallback) {
655   assert(PSI);
656   bool EnableSplitLTOUnit = false;
657   if (auto *MD = mdconst::extract_or_null<ConstantInt>(
658           M.getModuleFlag("EnableSplitLTOUnit")))
659     EnableSplitLTOUnit = MD->getZExtValue();
660   ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit);
661 
662   // Identify the local values in the llvm.used and llvm.compiler.used sets,
663   // which should not be exported as they would then require renaming and
664   // promotion, but we may have opaque uses e.g. in inline asm. We collect them
665   // here because we use this information to mark functions containing inline
666   // assembly calls as not importable.
667   SmallPtrSet<GlobalValue *, 8> LocalsUsed;
668   SmallPtrSet<GlobalValue *, 8> Used;
669   // First collect those in the llvm.used set.
670   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
671   // Next collect those in the llvm.compiler.used set.
672   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ true);
673   DenseSet<GlobalValue::GUID> CantBePromoted;
674   for (auto *V : Used) {
675     if (V->hasLocalLinkage()) {
676       LocalsUsed.insert(V);
677       CantBePromoted.insert(V->getGUID());
678     }
679   }
680 
681   bool HasLocalInlineAsmSymbol = false;
682   if (!M.getModuleInlineAsm().empty()) {
683     // Collect the local values defined by module level asm, and set up
684     // summaries for these symbols so that they can be marked as NoRename,
685     // to prevent export of any use of them in regular IR that would require
686     // renaming within the module level asm. Note we don't need to create a
687     // summary for weak or global defs, as they don't need to be flagged as
688     // NoRename, and defs in module level asm can't be imported anyway.
689     // Also, any values used but not defined within module level asm should
690     // be listed on the llvm.used or llvm.compiler.used global and marked as
691     // referenced from there.
692     ModuleSymbolTable::CollectAsmSymbols(
693         M, [&](StringRef Name, object::BasicSymbolRef::Flags Flags) {
694           // Symbols not marked as Weak or Global are local definitions.
695           if (Flags & (object::BasicSymbolRef::SF_Weak |
696                        object::BasicSymbolRef::SF_Global))
697             return;
698           HasLocalInlineAsmSymbol = true;
699           GlobalValue *GV = M.getNamedValue(Name);
700           if (!GV)
701             return;
702           assert(GV->isDeclaration() && "Def in module asm already has definition");
703           GlobalValueSummary::GVFlags GVFlags(
704               GlobalValue::InternalLinkage, GlobalValue::DefaultVisibility,
705               /* NotEligibleToImport = */ true,
706               /* Live = */ true,
707               /* Local */ GV->isDSOLocal(),
708               GV->hasLinkOnceODRLinkage() && GV->hasGlobalUnnamedAddr());
709           CantBePromoted.insert(GV->getGUID());
710           // Create the appropriate summary type.
711           if (Function *F = dyn_cast<Function>(GV)) {
712             std::unique_ptr<FunctionSummary> Summary =
713                 std::make_unique<FunctionSummary>(
714                     GVFlags, /*InstCount=*/0,
715                     FunctionSummary::FFlags{
716                         F->hasFnAttribute(Attribute::ReadNone),
717                         F->hasFnAttribute(Attribute::ReadOnly),
718                         F->hasFnAttribute(Attribute::NoRecurse),
719                         F->returnDoesNotAlias(),
720                         /* NoInline = */ false,
721                         F->hasFnAttribute(Attribute::AlwaysInline)},
722                     /*EntryCount=*/0, ArrayRef<ValueInfo>{},
723                     ArrayRef<FunctionSummary::EdgeTy>{},
724                     ArrayRef<GlobalValue::GUID>{},
725                     ArrayRef<FunctionSummary::VFuncId>{},
726                     ArrayRef<FunctionSummary::VFuncId>{},
727                     ArrayRef<FunctionSummary::ConstVCall>{},
728                     ArrayRef<FunctionSummary::ConstVCall>{},
729                     ArrayRef<FunctionSummary::ParamAccess>{});
730             Index.addGlobalValueSummary(*GV, std::move(Summary));
731           } else {
732             std::unique_ptr<GlobalVarSummary> Summary =
733                 std::make_unique<GlobalVarSummary>(
734                     GVFlags,
735                     GlobalVarSummary::GVarFlags(
736                         false, false, cast<GlobalVariable>(GV)->isConstant(),
737                         GlobalObject::VCallVisibilityPublic),
738                     ArrayRef<ValueInfo>{});
739             Index.addGlobalValueSummary(*GV, std::move(Summary));
740           }
741         });
742   }
743 
744   bool IsThinLTO = true;
745   if (auto *MD =
746           mdconst::extract_or_null<ConstantInt>(M.getModuleFlag("ThinLTO")))
747     IsThinLTO = MD->getZExtValue();
748 
749   // Compute summaries for all functions defined in module, and save in the
750   // index.
751   for (auto &F : M) {
752     if (F.isDeclaration())
753       continue;
754 
755     DominatorTree DT(const_cast<Function &>(F));
756     BlockFrequencyInfo *BFI = nullptr;
757     std::unique_ptr<BlockFrequencyInfo> BFIPtr;
758     if (GetBFICallback)
759       BFI = GetBFICallback(F);
760     else if (F.hasProfileData()) {
761       LoopInfo LI{DT};
762       BranchProbabilityInfo BPI{F, LI};
763       BFIPtr = std::make_unique<BlockFrequencyInfo>(F, BPI, LI);
764       BFI = BFIPtr.get();
765     }
766 
767     computeFunctionSummary(Index, M, F, BFI, PSI, DT,
768                            !LocalsUsed.empty() || HasLocalInlineAsmSymbol,
769                            CantBePromoted, IsThinLTO, GetSSICallback);
770   }
771 
772   // Compute summaries for all variables defined in module, and save in the
773   // index.
774   SmallVector<MDNode *, 2> Types;
775   for (const GlobalVariable &G : M.globals()) {
776     if (G.isDeclaration())
777       continue;
778     computeVariableSummary(Index, G, CantBePromoted, M, Types);
779   }
780 
781   // Compute summaries for all aliases defined in module, and save in the
782   // index.
783   for (const GlobalAlias &A : M.aliases())
784     computeAliasSummary(Index, A, CantBePromoted);
785 
786   for (auto *V : LocalsUsed) {
787     auto *Summary = Index.getGlobalValueSummary(*V);
788     assert(Summary && "Missing summary for global value");
789     Summary->setNotEligibleToImport();
790   }
791 
792   // The linker doesn't know about these LLVM produced values, so we need
793   // to flag them as live in the index to ensure index-based dead value
794   // analysis treats them as live roots of the analysis.
795   setLiveRoot(Index, "llvm.used");
796   setLiveRoot(Index, "llvm.compiler.used");
797   setLiveRoot(Index, "llvm.global_ctors");
798   setLiveRoot(Index, "llvm.global_dtors");
799   setLiveRoot(Index, "llvm.global.annotations");
800 
801   for (auto &GlobalList : Index) {
802     // Ignore entries for references that are undefined in the current module.
803     if (GlobalList.second.SummaryList.empty())
804       continue;
805 
806     assert(GlobalList.second.SummaryList.size() == 1 &&
807            "Expected module's index to have one summary per GUID");
808     auto &Summary = GlobalList.second.SummaryList[0];
809     if (!IsThinLTO) {
810       Summary->setNotEligibleToImport();
811       continue;
812     }
813 
814     bool AllRefsCanBeExternallyReferenced =
815         llvm::all_of(Summary->refs(), [&](const ValueInfo &VI) {
816           return !CantBePromoted.count(VI.getGUID());
817         });
818     if (!AllRefsCanBeExternallyReferenced) {
819       Summary->setNotEligibleToImport();
820       continue;
821     }
822 
823     if (auto *FuncSummary = dyn_cast<FunctionSummary>(Summary.get())) {
824       bool AllCallsCanBeExternallyReferenced = llvm::all_of(
825           FuncSummary->calls(), [&](const FunctionSummary::EdgeTy &Edge) {
826             return !CantBePromoted.count(Edge.first.getGUID());
827           });
828       if (!AllCallsCanBeExternallyReferenced)
829         Summary->setNotEligibleToImport();
830     }
831   }
832 
833   if (!ModuleSummaryDotFile.empty()) {
834     std::error_code EC;
835     raw_fd_ostream OSDot(ModuleSummaryDotFile, EC, sys::fs::OpenFlags::OF_None);
836     if (EC)
837       report_fatal_error(Twine("Failed to open dot file ") +
838                          ModuleSummaryDotFile + ": " + EC.message() + "\n");
839     Index.exportToDot(OSDot, {});
840   }
841 
842   return Index;
843 }
844 
845 AnalysisKey ModuleSummaryIndexAnalysis::Key;
846 
847 ModuleSummaryIndex
848 ModuleSummaryIndexAnalysis::run(Module &M, ModuleAnalysisManager &AM) {
849   ProfileSummaryInfo &PSI = AM.getResult<ProfileSummaryAnalysis>(M);
850   auto &FAM = AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
851   bool NeedSSI = needsParamAccessSummary(M);
852   return buildModuleSummaryIndex(
853       M,
854       [&FAM](const Function &F) {
855         return &FAM.getResult<BlockFrequencyAnalysis>(
856             *const_cast<Function *>(&F));
857       },
858       &PSI,
859       [&FAM, NeedSSI](const Function &F) -> const StackSafetyInfo * {
860         return NeedSSI ? &FAM.getResult<StackSafetyAnalysis>(
861                              const_cast<Function &>(F))
862                        : nullptr;
863       });
864 }
865 
866 char ModuleSummaryIndexWrapperPass::ID = 0;
867 
868 INITIALIZE_PASS_BEGIN(ModuleSummaryIndexWrapperPass, "module-summary-analysis",
869                       "Module Summary Analysis", false, true)
870 INITIALIZE_PASS_DEPENDENCY(BlockFrequencyInfoWrapperPass)
871 INITIALIZE_PASS_DEPENDENCY(ProfileSummaryInfoWrapperPass)
872 INITIALIZE_PASS_DEPENDENCY(StackSafetyInfoWrapperPass)
873 INITIALIZE_PASS_END(ModuleSummaryIndexWrapperPass, "module-summary-analysis",
874                     "Module Summary Analysis", false, true)
875 
876 ModulePass *llvm::createModuleSummaryIndexWrapperPass() {
877   return new ModuleSummaryIndexWrapperPass();
878 }
879 
880 ModuleSummaryIndexWrapperPass::ModuleSummaryIndexWrapperPass()
881     : ModulePass(ID) {
882   initializeModuleSummaryIndexWrapperPassPass(*PassRegistry::getPassRegistry());
883 }
884 
885 bool ModuleSummaryIndexWrapperPass::runOnModule(Module &M) {
886   auto *PSI = &getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI();
887   bool NeedSSI = needsParamAccessSummary(M);
888   Index.emplace(buildModuleSummaryIndex(
889       M,
890       [this](const Function &F) {
891         return &(this->getAnalysis<BlockFrequencyInfoWrapperPass>(
892                          *const_cast<Function *>(&F))
893                      .getBFI());
894       },
895       PSI,
896       [&](const Function &F) -> const StackSafetyInfo * {
897         return NeedSSI ? &getAnalysis<StackSafetyInfoWrapperPass>(
898                               const_cast<Function &>(F))
899                               .getResult()
900                        : nullptr;
901       }));
902   return false;
903 }
904 
905 bool ModuleSummaryIndexWrapperPass::doFinalization(Module &M) {
906   Index.reset();
907   return false;
908 }
909 
910 void ModuleSummaryIndexWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
911   AU.setPreservesAll();
912   AU.addRequired<BlockFrequencyInfoWrapperPass>();
913   AU.addRequired<ProfileSummaryInfoWrapperPass>();
914   AU.addRequired<StackSafetyInfoWrapperPass>();
915 }
916 
917 char ImmutableModuleSummaryIndexWrapperPass::ID = 0;
918 
919 ImmutableModuleSummaryIndexWrapperPass::ImmutableModuleSummaryIndexWrapperPass(
920     const ModuleSummaryIndex *Index)
921     : ImmutablePass(ID), Index(Index) {
922   initializeImmutableModuleSummaryIndexWrapperPassPass(
923       *PassRegistry::getPassRegistry());
924 }
925 
926 void ImmutableModuleSummaryIndexWrapperPass::getAnalysisUsage(
927     AnalysisUsage &AU) const {
928   AU.setPreservesAll();
929 }
930 
931 ImmutablePass *llvm::createImmutableModuleSummaryIndexWrapperPass(
932     const ModuleSummaryIndex *Index) {
933   return new ImmutableModuleSummaryIndexWrapperPass(Index);
934 }
935 
936 INITIALIZE_PASS(ImmutableModuleSummaryIndexWrapperPass, "module-summary-info",
937                 "Module summary info", false, true)
938