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