xref: /llvm-project/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp (revision 896d0e1a2a79caad35ede3385bbcfd7fe0702b43)
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 (auto EI : llvm::enumerate(STy->elements())) {
515       auto Offset = SL->getElementOffset(EI.index());
516       unsigned Op = SL->getElementContainingOffset(Offset);
517       findFuncPointers(cast<Constant>(I->getOperand(Op)),
518                        StartingOffset + Offset, M, Index, VTableFuncs);
519     }
520   } else if (auto *C = dyn_cast<ConstantArray>(I)) {
521     ArrayType *ATy = C->getType();
522     Type *EltTy = ATy->getElementType();
523     uint64_t EltSize = DL.getTypeAllocSize(EltTy);
524     for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
525       findFuncPointers(cast<Constant>(I->getOperand(i)),
526                        StartingOffset + i * EltSize, M, Index, VTableFuncs);
527     }
528   }
529 }
530 
531 // Identify the function pointers referenced by vtable definition \p V.
532 static void computeVTableFuncs(ModuleSummaryIndex &Index,
533                                const GlobalVariable &V, const Module &M,
534                                VTableFuncList &VTableFuncs) {
535   if (!V.isConstant())
536     return;
537 
538   findFuncPointers(V.getInitializer(), /*StartingOffset=*/0, M, Index,
539                    VTableFuncs);
540 
541 #ifndef NDEBUG
542   // Validate that the VTableFuncs list is ordered by offset.
543   uint64_t PrevOffset = 0;
544   for (auto &P : VTableFuncs) {
545     // The findVFuncPointers traversal should have encountered the
546     // functions in offset order. We need to use ">=" since PrevOffset
547     // starts at 0.
548     assert(P.VTableOffset >= PrevOffset);
549     PrevOffset = P.VTableOffset;
550   }
551 #endif
552 }
553 
554 /// Record vtable definition \p V for each type metadata it references.
555 static void
556 recordTypeIdCompatibleVtableReferences(ModuleSummaryIndex &Index,
557                                        const GlobalVariable &V,
558                                        SmallVectorImpl<MDNode *> &Types) {
559   for (MDNode *Type : Types) {
560     auto TypeID = Type->getOperand(1).get();
561 
562     uint64_t Offset =
563         cast<ConstantInt>(
564             cast<ConstantAsMetadata>(Type->getOperand(0))->getValue())
565             ->getZExtValue();
566 
567     if (auto *TypeId = dyn_cast<MDString>(TypeID))
568       Index.getOrInsertTypeIdCompatibleVtableSummary(TypeId->getString())
569           .push_back({Offset, Index.getOrInsertValueInfo(&V)});
570   }
571 }
572 
573 static void computeVariableSummary(ModuleSummaryIndex &Index,
574                                    const GlobalVariable &V,
575                                    DenseSet<GlobalValue::GUID> &CantBePromoted,
576                                    const Module &M,
577                                    SmallVectorImpl<MDNode *> &Types) {
578   SetVector<ValueInfo> RefEdges;
579   SmallPtrSet<const User *, 8> Visited;
580   bool HasBlockAddress = findRefEdges(Index, &V, RefEdges, Visited);
581   bool NonRenamableLocal = isNonRenamableLocal(V);
582   GlobalValueSummary::GVFlags Flags(
583       V.getLinkage(), V.getVisibility(), NonRenamableLocal,
584       /* Live = */ false, V.isDSOLocal(),
585       V.hasLinkOnceODRLinkage() && V.hasGlobalUnnamedAddr());
586 
587   VTableFuncList VTableFuncs;
588   // If splitting is not enabled, then we compute the summary information
589   // necessary for index-based whole program devirtualization.
590   if (!Index.enableSplitLTOUnit()) {
591     Types.clear();
592     V.getMetadata(LLVMContext::MD_type, Types);
593     if (!Types.empty()) {
594       // Identify the function pointers referenced by this vtable definition.
595       computeVTableFuncs(Index, V, M, VTableFuncs);
596 
597       // Record this vtable definition for each type metadata it references.
598       recordTypeIdCompatibleVtableReferences(Index, V, Types);
599     }
600   }
601 
602   // Don't mark variables we won't be able to internalize as read/write-only.
603   bool CanBeInternalized =
604       !V.hasComdat() && !V.hasAppendingLinkage() && !V.isInterposable() &&
605       !V.hasAvailableExternallyLinkage() && !V.hasDLLExportStorageClass();
606   bool Constant = V.isConstant();
607   GlobalVarSummary::GVarFlags VarFlags(CanBeInternalized,
608                                        Constant ? false : CanBeInternalized,
609                                        Constant, V.getVCallVisibility());
610   auto GVarSummary = std::make_unique<GlobalVarSummary>(Flags, VarFlags,
611                                                          RefEdges.takeVector());
612   if (NonRenamableLocal)
613     CantBePromoted.insert(V.getGUID());
614   if (HasBlockAddress)
615     GVarSummary->setNotEligibleToImport();
616   if (!VTableFuncs.empty())
617     GVarSummary->setVTableFuncs(VTableFuncs);
618   Index.addGlobalValueSummary(V, std::move(GVarSummary));
619 }
620 
621 static void
622 computeAliasSummary(ModuleSummaryIndex &Index, const GlobalAlias &A,
623                     DenseSet<GlobalValue::GUID> &CantBePromoted) {
624   bool NonRenamableLocal = isNonRenamableLocal(A);
625   GlobalValueSummary::GVFlags Flags(
626       A.getLinkage(), A.getVisibility(), NonRenamableLocal,
627       /* Live = */ false, A.isDSOLocal(),
628       A.hasLinkOnceODRLinkage() && A.hasGlobalUnnamedAddr());
629   auto AS = std::make_unique<AliasSummary>(Flags);
630   auto *Aliasee = A.getBaseObject();
631   auto AliaseeVI = Index.getValueInfo(Aliasee->getGUID());
632   assert(AliaseeVI && "Alias expects aliasee summary to be available");
633   assert(AliaseeVI.getSummaryList().size() == 1 &&
634          "Expected a single entry per aliasee in per-module index");
635   AS->setAliasee(AliaseeVI, AliaseeVI.getSummaryList()[0].get());
636   if (NonRenamableLocal)
637     CantBePromoted.insert(A.getGUID());
638   Index.addGlobalValueSummary(A, std::move(AS));
639 }
640 
641 // Set LiveRoot flag on entries matching the given value name.
642 static void setLiveRoot(ModuleSummaryIndex &Index, StringRef Name) {
643   if (ValueInfo VI = Index.getValueInfo(GlobalValue::getGUID(Name)))
644     for (auto &Summary : VI.getSummaryList())
645       Summary->setLive(true);
646 }
647 
648 ModuleSummaryIndex llvm::buildModuleSummaryIndex(
649     const Module &M,
650     std::function<BlockFrequencyInfo *(const Function &F)> GetBFICallback,
651     ProfileSummaryInfo *PSI,
652     std::function<const StackSafetyInfo *(const Function &F)> GetSSICallback) {
653   assert(PSI);
654   bool EnableSplitLTOUnit = false;
655   if (auto *MD = mdconst::extract_or_null<ConstantInt>(
656           M.getModuleFlag("EnableSplitLTOUnit")))
657     EnableSplitLTOUnit = MD->getZExtValue();
658   ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit);
659 
660   // Identify the local values in the llvm.used and llvm.compiler.used sets,
661   // which should not be exported as they would then require renaming and
662   // promotion, but we may have opaque uses e.g. in inline asm. We collect them
663   // here because we use this information to mark functions containing inline
664   // assembly calls as not importable.
665   SmallPtrSet<GlobalValue *, 8> LocalsUsed;
666   SmallPtrSet<GlobalValue *, 8> Used;
667   // First collect those in the llvm.used set.
668   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ false);
669   // Next collect those in the llvm.compiler.used set.
670   collectUsedGlobalVariables(M, Used, /*CompilerUsed*/ true);
671   DenseSet<GlobalValue::GUID> CantBePromoted;
672   for (auto *V : Used) {
673     if (V->hasLocalLinkage()) {
674       LocalsUsed.insert(V);
675       CantBePromoted.insert(V->getGUID());
676     }
677   }
678 
679   bool HasLocalInlineAsmSymbol = false;
680   if (!M.getModuleInlineAsm().empty()) {
681     // Collect the local values defined by module level asm, and set up
682     // summaries for these symbols so that they can be marked as NoRename,
683     // to prevent export of any use of them in regular IR that would require
684     // renaming within the module level asm. Note we don't need to create a
685     // summary for weak or global defs, as they don't need to be flagged as
686     // NoRename, and defs in module level asm can't be imported anyway.
687     // Also, any values used but not defined within module level asm should
688     // be listed on the llvm.used or llvm.compiler.used global and marked as
689     // referenced from there.
690     ModuleSymbolTable::CollectAsmSymbols(
691         M, [&](StringRef Name, object::BasicSymbolRef::Flags Flags) {
692           // Symbols not marked as Weak or Global are local definitions.
693           if (Flags & (object::BasicSymbolRef::SF_Weak |
694                        object::BasicSymbolRef::SF_Global))
695             return;
696           HasLocalInlineAsmSymbol = true;
697           GlobalValue *GV = M.getNamedValue(Name);
698           if (!GV)
699             return;
700           assert(GV->isDeclaration() && "Def in module asm already has definition");
701           GlobalValueSummary::GVFlags GVFlags(
702               GlobalValue::InternalLinkage, GlobalValue::DefaultVisibility,
703               /* NotEligibleToImport = */ true,
704               /* Live = */ true,
705               /* Local */ GV->isDSOLocal(),
706               GV->hasLinkOnceODRLinkage() && GV->hasGlobalUnnamedAddr());
707           CantBePromoted.insert(GV->getGUID());
708           // Create the appropriate summary type.
709           if (Function *F = dyn_cast<Function>(GV)) {
710             std::unique_ptr<FunctionSummary> Summary =
711                 std::make_unique<FunctionSummary>(
712                     GVFlags, /*InstCount=*/0,
713                     FunctionSummary::FFlags{
714                         F->hasFnAttribute(Attribute::ReadNone),
715                         F->hasFnAttribute(Attribute::ReadOnly),
716                         F->hasFnAttribute(Attribute::NoRecurse),
717                         F->returnDoesNotAlias(),
718                         /* NoInline = */ false,
719                         F->hasFnAttribute(Attribute::AlwaysInline)},
720                     /*EntryCount=*/0, ArrayRef<ValueInfo>{},
721                     ArrayRef<FunctionSummary::EdgeTy>{},
722                     ArrayRef<GlobalValue::GUID>{},
723                     ArrayRef<FunctionSummary::VFuncId>{},
724                     ArrayRef<FunctionSummary::VFuncId>{},
725                     ArrayRef<FunctionSummary::ConstVCall>{},
726                     ArrayRef<FunctionSummary::ConstVCall>{},
727                     ArrayRef<FunctionSummary::ParamAccess>{});
728             Index.addGlobalValueSummary(*GV, std::move(Summary));
729           } else {
730             std::unique_ptr<GlobalVarSummary> Summary =
731                 std::make_unique<GlobalVarSummary>(
732                     GVFlags,
733                     GlobalVarSummary::GVarFlags(
734                         false, false, cast<GlobalVariable>(GV)->isConstant(),
735                         GlobalObject::VCallVisibilityPublic),
736                     ArrayRef<ValueInfo>{});
737             Index.addGlobalValueSummary(*GV, std::move(Summary));
738           }
739         });
740   }
741 
742   bool IsThinLTO = true;
743   if (auto *MD =
744           mdconst::extract_or_null<ConstantInt>(M.getModuleFlag("ThinLTO")))
745     IsThinLTO = MD->getZExtValue();
746 
747   // Compute summaries for all functions defined in module, and save in the
748   // index.
749   for (auto &F : M) {
750     if (F.isDeclaration())
751       continue;
752 
753     DominatorTree DT(const_cast<Function &>(F));
754     BlockFrequencyInfo *BFI = nullptr;
755     std::unique_ptr<BlockFrequencyInfo> BFIPtr;
756     if (GetBFICallback)
757       BFI = GetBFICallback(F);
758     else if (F.hasProfileData()) {
759       LoopInfo LI{DT};
760       BranchProbabilityInfo BPI{F, LI};
761       BFIPtr = std::make_unique<BlockFrequencyInfo>(F, BPI, LI);
762       BFI = BFIPtr.get();
763     }
764 
765     computeFunctionSummary(Index, M, F, BFI, PSI, DT,
766                            !LocalsUsed.empty() || HasLocalInlineAsmSymbol,
767                            CantBePromoted, IsThinLTO, GetSSICallback);
768   }
769 
770   // Compute summaries for all variables defined in module, and save in the
771   // index.
772   SmallVector<MDNode *, 2> Types;
773   for (const GlobalVariable &G : M.globals()) {
774     if (G.isDeclaration())
775       continue;
776     computeVariableSummary(Index, G, CantBePromoted, M, Types);
777   }
778 
779   // Compute summaries for all aliases defined in module, and save in the
780   // index.
781   for (const GlobalAlias &A : M.aliases())
782     computeAliasSummary(Index, A, CantBePromoted);
783 
784   for (auto *V : LocalsUsed) {
785     auto *Summary = Index.getGlobalValueSummary(*V);
786     assert(Summary && "Missing summary for global value");
787     Summary->setNotEligibleToImport();
788   }
789 
790   // The linker doesn't know about these LLVM produced values, so we need
791   // to flag them as live in the index to ensure index-based dead value
792   // analysis treats them as live roots of the analysis.
793   setLiveRoot(Index, "llvm.used");
794   setLiveRoot(Index, "llvm.compiler.used");
795   setLiveRoot(Index, "llvm.global_ctors");
796   setLiveRoot(Index, "llvm.global_dtors");
797   setLiveRoot(Index, "llvm.global.annotations");
798 
799   for (auto &GlobalList : Index) {
800     // Ignore entries for references that are undefined in the current module.
801     if (GlobalList.second.SummaryList.empty())
802       continue;
803 
804     assert(GlobalList.second.SummaryList.size() == 1 &&
805            "Expected module's index to have one summary per GUID");
806     auto &Summary = GlobalList.second.SummaryList[0];
807     if (!IsThinLTO) {
808       Summary->setNotEligibleToImport();
809       continue;
810     }
811 
812     bool AllRefsCanBeExternallyReferenced =
813         llvm::all_of(Summary->refs(), [&](const ValueInfo &VI) {
814           return !CantBePromoted.count(VI.getGUID());
815         });
816     if (!AllRefsCanBeExternallyReferenced) {
817       Summary->setNotEligibleToImport();
818       continue;
819     }
820 
821     if (auto *FuncSummary = dyn_cast<FunctionSummary>(Summary.get())) {
822       bool AllCallsCanBeExternallyReferenced = llvm::all_of(
823           FuncSummary->calls(), [&](const FunctionSummary::EdgeTy &Edge) {
824             return !CantBePromoted.count(Edge.first.getGUID());
825           });
826       if (!AllCallsCanBeExternallyReferenced)
827         Summary->setNotEligibleToImport();
828     }
829   }
830 
831   if (!ModuleSummaryDotFile.empty()) {
832     std::error_code EC;
833     raw_fd_ostream OSDot(ModuleSummaryDotFile, EC, sys::fs::OpenFlags::OF_None);
834     if (EC)
835       report_fatal_error(Twine("Failed to open dot file ") +
836                          ModuleSummaryDotFile + ": " + EC.message() + "\n");
837     Index.exportToDot(OSDot, {});
838   }
839 
840   return Index;
841 }
842 
843 AnalysisKey ModuleSummaryIndexAnalysis::Key;
844 
845 ModuleSummaryIndex
846 ModuleSummaryIndexAnalysis::run(Module &M, ModuleAnalysisManager &AM) {
847   ProfileSummaryInfo &PSI = AM.getResult<ProfileSummaryAnalysis>(M);
848   auto &FAM = AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
849   bool NeedSSI = needsParamAccessSummary(M);
850   return buildModuleSummaryIndex(
851       M,
852       [&FAM](const Function &F) {
853         return &FAM.getResult<BlockFrequencyAnalysis>(
854             *const_cast<Function *>(&F));
855       },
856       &PSI,
857       [&FAM, NeedSSI](const Function &F) -> const StackSafetyInfo * {
858         return NeedSSI ? &FAM.getResult<StackSafetyAnalysis>(
859                              const_cast<Function &>(F))
860                        : nullptr;
861       });
862 }
863 
864 char ModuleSummaryIndexWrapperPass::ID = 0;
865 
866 INITIALIZE_PASS_BEGIN(ModuleSummaryIndexWrapperPass, "module-summary-analysis",
867                       "Module Summary Analysis", false, true)
868 INITIALIZE_PASS_DEPENDENCY(BlockFrequencyInfoWrapperPass)
869 INITIALIZE_PASS_DEPENDENCY(ProfileSummaryInfoWrapperPass)
870 INITIALIZE_PASS_DEPENDENCY(StackSafetyInfoWrapperPass)
871 INITIALIZE_PASS_END(ModuleSummaryIndexWrapperPass, "module-summary-analysis",
872                     "Module Summary Analysis", false, true)
873 
874 ModulePass *llvm::createModuleSummaryIndexWrapperPass() {
875   return new ModuleSummaryIndexWrapperPass();
876 }
877 
878 ModuleSummaryIndexWrapperPass::ModuleSummaryIndexWrapperPass()
879     : ModulePass(ID) {
880   initializeModuleSummaryIndexWrapperPassPass(*PassRegistry::getPassRegistry());
881 }
882 
883 bool ModuleSummaryIndexWrapperPass::runOnModule(Module &M) {
884   auto *PSI = &getAnalysis<ProfileSummaryInfoWrapperPass>().getPSI();
885   bool NeedSSI = needsParamAccessSummary(M);
886   Index.emplace(buildModuleSummaryIndex(
887       M,
888       [this](const Function &F) {
889         return &(this->getAnalysis<BlockFrequencyInfoWrapperPass>(
890                          *const_cast<Function *>(&F))
891                      .getBFI());
892       },
893       PSI,
894       [&](const Function &F) -> const StackSafetyInfo * {
895         return NeedSSI ? &getAnalysis<StackSafetyInfoWrapperPass>(
896                               const_cast<Function &>(F))
897                               .getResult()
898                        : nullptr;
899       }));
900   return false;
901 }
902 
903 bool ModuleSummaryIndexWrapperPass::doFinalization(Module &M) {
904   Index.reset();
905   return false;
906 }
907 
908 void ModuleSummaryIndexWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
909   AU.setPreservesAll();
910   AU.addRequired<BlockFrequencyInfoWrapperPass>();
911   AU.addRequired<ProfileSummaryInfoWrapperPass>();
912   AU.addRequired<StackSafetyInfoWrapperPass>();
913 }
914 
915 char ImmutableModuleSummaryIndexWrapperPass::ID = 0;
916 
917 ImmutableModuleSummaryIndexWrapperPass::ImmutableModuleSummaryIndexWrapperPass(
918     const ModuleSummaryIndex *Index)
919     : ImmutablePass(ID), Index(Index) {
920   initializeImmutableModuleSummaryIndexWrapperPassPass(
921       *PassRegistry::getPassRegistry());
922 }
923 
924 void ImmutableModuleSummaryIndexWrapperPass::getAnalysisUsage(
925     AnalysisUsage &AU) const {
926   AU.setPreservesAll();
927 }
928 
929 ImmutablePass *llvm::createImmutableModuleSummaryIndexWrapperPass(
930     const ModuleSummaryIndex *Index) {
931   return new ImmutableModuleSummaryIndexWrapperPass(Index);
932 }
933 
934 INITIALIZE_PASS(ImmutableModuleSummaryIndexWrapperPass, "module-summary-info",
935                 "Module summary info", false, true)
936