65#define DEBUG_TYPE "module-summary-analysis"
75 cl::desc(
"Force all edges in the function summary to cold"),
78 "all-non-critical",
"All non-critical edges."),
83 cl::desc(
"File to emit dot graph of new summary into"));
88 "Enable MemProf support for summarizing and cloning indirect calls"));
100 cl::desc(
"Max number of summary edges added from "
101 "indirect call profile metadata"));
126 bool &RefLocalLinkageIFunc) {
127 bool HasBlockAddress =
false;
129 if (Visited.
insert(CurUser).second)
132 while (!Worklist.
empty()) {
136 for (
const auto &OI : U->operands()) {
141 HasBlockAddress =
true;
148 if (!(CB && CB->isCallee(&OI))) {
154 GI && GI->hasLocalLinkage()) {
155 RefLocalLinkageIFunc =
true;
158 RefEdges.insert(Index.getOrInsertValueInfo(GV));
162 if (Visited.
insert(Operand).second)
175 for (
const auto &V : ValueDataArray)
176 RefEdges.insert(Index.getOrInsertValueInfo(
179 return HasBlockAddress;
190 if (!
F.hasMetadata(LLVMContext::MD_implicit_ref))
193 F.getMetadata(LLVMContext::MD_implicit_ref, MDs);
198 RefEdges.insert(Index.getOrInsertValueInfo(GV));
225 std::vector<FunctionSummary::ConstVCall>> &ConstVCalls) {
226 std::vector<uint64_t> Args;
230 if (!CI || CI->getBitWidth() > 64) {
234 Args.push_back(CI->getZExtValue());
236 ConstVCalls.insert({{
Guid,
Call.Offset}, std::move(Args)});
245 &TypeTestAssumeVCalls,
247 &TypeCheckedLoadVCalls,
249 std::vector<FunctionSummary::ConstVCall>>
250 &TypeTestAssumeConstVCalls,
252 std::vector<FunctionSummary::ConstVCall>>
253 &TypeCheckedLoadConstVCalls,
256 case Intrinsic::type_test:
257 case Intrinsic::public_type_test: {
270 return !isa<AssumeInst>(CIU.getUser());
272 if (HasNonAssumeUses)
273 TypeTests.insert(
Guid);
278 for (
auto &
Call : DevirtCalls)
280 TypeTestAssumeConstVCalls);
285 case Intrinsic::type_checked_load_relative:
286 case Intrinsic::type_checked_load: {
297 bool HasNonCallUses =
false;
299 HasNonCallUses, CI, DT);
303 TypeTests.insert(
Guid);
304 for (
auto &
Call : DevirtCalls)
306 TypeCheckedLoadConstVCalls);
317 return !LI->isVolatile();
324 return !
SI->isVolatile();
351 unsigned NumInsts = 0;
361 TypeTestAssumeVCalls, TypeCheckedLoadVCalls;
363 std::vector<FunctionSummary::ConstVCall>>
364 TypeTestAssumeConstVCalls, TypeCheckedLoadConstVCalls;
370 bool HasLocalIFuncCallOrRef =
false;
371 findRefEdges(Index, &
F, RefEdges, Visited, HasLocalIFuncCallOrRef);
374 std::vector<const Instruction *> NonVolatileLoads;
375 std::vector<const Instruction *> NonVolatileStores;
377 std::vector<CallsiteInfo> Callsites;
378 std::vector<AllocInfo> Allocs;
384 bool HasInlineAsmMaybeReferencingInternal =
false;
385 bool HasIndirBranchToBlockAddress =
false;
386 bool HasUnknownCall =
false;
387 bool MayThrow =
false;
393 if (BB.hasAddressTaken()) {
396 HasIndirBranchToBlockAddress =
true;
402 if (
I.isDebugOrPseudoInst())
414 NonVolatileLoads.push_back(&
I);
418 NonVolatileStores.push_back(&
I);
425 Value *Stored =
I.getOperand(0);
429 RefEdges.
insert(Index.getOrInsertValueInfo(GV));
431 findRefEdges(Index, U, RefEdges, Visited, HasLocalIFuncCallOrRef);
435 findRefEdges(Index, &
I, RefEdges, Visited, HasLocalIFuncCallOrRef);
449 if (HasLocalsInUsedOrAsm && CI && CI->isInlineAsm())
450 HasInlineAsmMaybeReferencingInternal =
true;
457 auto *CalledValue = CB->getCalledOperand();
458 auto *CalledFunction = CB->getCalledFunction();
459 if (CalledValue && !CalledFunction) {
460 CalledValue = CalledValue->stripPointerCasts();
467 assert(!CalledFunction &&
"Expected null called function in callsite for alias");
472 if (CalledFunction) {
473 if (CI && CalledFunction->isIntrinsic()) {
475 CI, TypeTests, TypeTestAssumeVCalls, TypeCheckedLoadVCalls,
476 TypeTestAssumeConstVCalls, TypeCheckedLoadConstVCalls, DT);
480 assert(CalledFunction->hasName());
482 auto Hotness = ScaledCount ?
getHotness(*ScaledCount, PSI)
491 auto &
ValueInfo = CallGraphEdges[Index.getOrInsertValueInfo(
494 if (CB->isTailCall())
497 HasUnknownCall =
true;
506 if (GI->hasLocalLinkage())
507 HasLocalIFuncCallOrRef =
true;
509 if (CI && CI->isInlineAsm())
519 if (
auto *MD =
I.getMetadata(LLVMContext::MD_callees)) {
520 for (
const auto &
Op : MD->operands()) {
523 CallGraphEdges[Index.getOrInsertValueInfo(Callee)];
527 CandidateProfileData =
530 for (
const auto &Candidate : CandidateProfileData)
531 CallGraphEdges[Index.getOrInsertValueInfo(Candidate.Value)]
532 .updateHotness(
getHotness(Candidate.Count, PSI));
548 CallsThatMayHaveMemprofSummary.
insert(CB);
554 I.getMetadata(LLVMContext::MD_callsite));
555 auto *MemProfMD =
I.getMetadata(LLVMContext::MD_memprof);
557 std::vector<MIBInfo> MIBs;
558 std::vector<std::vector<ContextTotalSize>> ContextSizeInfos;
559 bool HasNonZeroContextSizeInfos =
false;
560 for (
auto &MDOp : MemProfMD->operands()) {
567 for (
auto ContextIter =
569 ContextIter != StackContext.
end(); ++ContextIter) {
570 unsigned StackIdIdx = Index.addOrGetStackIdIndex(*ContextIter);
574 if (StackIdIndices.
empty() || StackIdIndices.
back() != StackIdIdx)
579 assert(MIBMD->getNumOperands() > 2 ||
581 if (MIBMD->getNumOperands() > 2) {
582 std::vector<ContextTotalSize> ContextSizes;
583 for (
unsigned I = 2;
I < MIBMD->getNumOperands();
I++) {
592 ContextSizes.push_back({FullStackId, TS});
596 HasNonZeroContextSizeInfos =
true;
597 ContextSizeInfos.push_back(std::move(ContextSizes));
606 ContextSizeInfos.push_back({{0, 0}});
611 Allocs.push_back(
AllocInfo(std::move(MIBs)));
612 assert(HasNonZeroContextSizeInfos ||
618 if (HasNonZeroContextSizeInfos) {
619 assert(Allocs.back().MIBs.size() == ContextSizeInfos.size());
620 Allocs.back().ContextSizeInfos = std::move(ContextSizeInfos);
622 }
else if (!InstCallsite.
empty()) {
624 for (
auto StackId : InstCallsite)
625 StackIdIndices.
push_back(Index.addOrGetStackIdIndex(StackId));
626 if (CalledFunction) {
631 auto CalleeValueInfo =
633 Callsites.push_back({CalleeValueInfo, StackIdIndices});
640 for (
const auto &Candidate : CandidateProfileData) {
641 auto CalleeValueInfo = Index.getOrInsertValueInfo(Candidate.Value);
642 Callsites.push_back({CalleeValueInfo, StackIdIndices});
650 Index.addBlockCount(
F.size());
655 [&](
const std::vector<const Instruction *> &Instrs,
658 for (
const auto *
I : Instrs) {
660 findRefEdges(Index,
I, Edges, Cache, HasLocalIFuncCallOrRef);
667 AddRefEdges(NonVolatileLoads, LoadRefEdges, Visited);
679 AddRefEdges(NonVolatileStores, StoreRefEdges, StoreCache);
684 for (
const auto &VI : StoreRefEdges)
685 if (LoadRefEdges.
remove(VI))
688 unsigned RefCnt = RefEdges.
size();
694 unsigned FirstWORef = RefEdges.
size();
698 for (; RefCnt < FirstWORef; ++RefCnt)
699 Refs[RefCnt].setReadOnly();
701 for (; RefCnt < Refs.
size(); ++RefCnt)
702 Refs[RefCnt].setWriteOnly();
708 for (
auto &
I :
F.getImportGUIDs())
709 CallGraphEdges[Index.getOrInsertValueInfo(
I)].updateHotness(
725 if (CallsThatMayHaveMemprofSummary.
count(CB))
734 bool NotEligibleForImport =
735 NonRenamableLocal || HasInlineAsmMaybeReferencingInternal ||
736 HasIndirBranchToBlockAddress || HasLocalIFuncCallOrRef;
738 F.getLinkage(),
F.getVisibility(), NotEligibleForImport,
739 false,
F.isDSOLocal(),
F.canBeOmittedFromSymbolTable(),
743 F.doesNotAccessMemory(),
F.onlyReadsMemory() && !
F.doesNotAccessMemory(),
744 F.hasFnAttribute(Attribute::NoRecurse),
F.returnDoesNotAlias(),
747 F.getAttributes().hasFnAttr(Attribute::NoInline),
748 F.hasFnAttribute(Attribute::AlwaysInline),
749 F.hasFnAttribute(Attribute::NoUnwind), MayThrow, HasUnknownCall,
751 std::vector<FunctionSummary::ParamAccess> ParamAccesses;
752 if (
auto *SSI = GetSSICallback(
F))
753 ParamAccesses = SSI->getParamAccesses(Index);
754 auto FuncSummary = std::make_unique<FunctionSummary>(
755 Flags, NumInsts, FunFlags, std::move(Refs), CallGraphEdges.
takeVector(),
758 TypeTestAssumeConstVCalls.takeVector(),
759 TypeCheckedLoadConstVCalls.takeVector(), std::move(ParamAccesses),
760 std::move(Callsites), std::move(Allocs));
761 if (NonRenamableLocal)
762 CantBePromoted.
insert(
F.getGUID());
763 Index.addGlobalValueSummary(
F, std::move(FuncSummary));
776 if (
I->getType()->isPointerTy()) {
777 auto C =
I->stripPointerCasts();
784 if (GV && GV->getName() !=
"__cxa_pure_virtual")
785 VTableFuncs.push_back({Index.getOrInsertValueInfo(GV), StartingOffset});
802 StartingOffset +
Offset, M, Index, VTableFuncs, OrigGV);
806 Type *EltTy = ATy->getElementType();
807 uint64_t EltSize =
DL.getTypeAllocSize(EltTy);
808 for (
unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
810 StartingOffset + i * EltSize, M, Index, VTableFuncs,
815 if (CE->getOpcode() != Instruction::Trunc ||
822 if (CE->getOpcode() == Instruction::Sub) {
824 APSInt LHSOffset, RHSOffset;
855 for (
auto &
P : VTableFuncs) {
859 assert(
P.VTableOffset >= PrevOffset);
860 PrevOffset =
P.VTableOffset;
879 Index.getOrInsertTypeIdCompatibleVtableSummary(TypeId->getString())
880 .push_back({
Offset, Index.getOrInsertValueInfo(&V)});
891 bool RefLocalIFunc =
false;
892 bool HasBlockAddress =
893 findRefEdges(Index, &V, RefEdges, Visited, RefLocalIFunc);
894 const bool NotEligibleForImport = (HasBlockAddress || RefLocalIFunc);
897 V.getLinkage(), V.getVisibility(), NonRenamableLocal,
898 false, V.isDSOLocal(), V.canBeOmittedFromSymbolTable(),
904 if (!Index.enableSplitLTOUnit()) {
906 V.getMetadata(LLVMContext::MD_type, Types);
907 if (!Types.empty()) {
917 bool CanBeInternalized =
918 !V.hasComdat() && !V.hasAppendingLinkage() && !V.isInterposable() &&
919 !V.hasAvailableExternallyLinkage() && !V.hasDLLExportStorageClass();
922 Constant ?
false : CanBeInternalized,
924 auto GVarSummary = std::make_unique<GlobalVarSummary>(Flags, VarFlags,
926 if (NonRenamableLocal)
927 CantBePromoted.
insert(V.getGUID());
928 if (NotEligibleForImport)
929 GVarSummary->setNotEligibleToImport();
930 if (!VTableFuncs.empty())
931 GVarSummary->setVTableFuncs(VTableFuncs);
932 Index.addGlobalValueSummary(V, std::move(GVarSummary));
944 A.getLinkage(),
A.getVisibility(), NonRenamableLocal,
945 false,
A.isDSOLocal(),
A.canBeOmittedFromSymbolTable(),
947 auto AS = std::make_unique<AliasSummary>(Flags);
948 auto AliaseeVI = Index.getValueInfo(Aliasee->
getGUID());
949 assert(AliaseeVI &&
"Alias expects aliasee summary to be available");
950 assert(AliaseeVI.getSummaryList().size() == 1 &&
951 "Expected a single entry per aliasee in per-module index");
952 AS->setAliasee(AliaseeVI, AliaseeVI.getSummaryList()[0].get());
953 if (NonRenamableLocal)
954 CantBePromoted.
insert(
A.getGUID());
955 Index.addGlobalValueSummary(
A, std::move(AS));
962 for (
const auto &Summary : VI.getSummaryList())
963 Summary->setLive(
true);
972 bool EnableSplitLTOUnit =
false;
973 bool UnifiedLTO =
false;
975 M.getModuleFlag(
"EnableSplitLTOUnit")))
976 EnableSplitLTOUnit = MD->getZExtValue();
979 UnifiedLTO = MD->getZExtValue();
994 for (
auto *V : Used) {
995 if (V->hasLocalLinkage()) {
997 CantBePromoted.
insert(V->getGUID());
1001 bool HasLocalInlineAsmSymbol =
false;
1002 if (!M.getModuleInlineAsm().empty()) {
1018 HasLocalInlineAsmSymbol =
true;
1033 std::unique_ptr<FunctionSummary> Summary =
1034 std::make_unique<FunctionSummary>(
1037 F->hasFnAttribute(Attribute::ReadNone),
1038 F->hasFnAttribute(Attribute::ReadOnly),
1039 F->hasFnAttribute(Attribute::NoRecurse),
1040 F->returnDoesNotAlias(),
1042 F->hasFnAttribute(Attribute::AlwaysInline),
1043 F->hasFnAttribute(Attribute::NoUnwind),
1056 Index.addGlobalValueSummary(*GV, std::move(Summary));
1058 std::unique_ptr<GlobalVarSummary> Summary =
1059 std::make_unique<GlobalVarSummary>(
1065 Index.addGlobalValueSummary(*GV, std::move(Summary));
1070 bool IsThinLTO =
true;
1073 IsThinLTO = MD->getZExtValue();
1077 for (
const auto &
F : M) {
1078 if (
F.isDeclaration())
1083 std::unique_ptr<BlockFrequencyInfo> BFIPtr;
1085 BFI = GetBFICallback(
F);
1086 else if (
F.hasProfileData()) {
1091 BFIPtr = std::make_unique<BlockFrequencyInfo>(
F, BPI, LI);
1096 !LocalsUsed.
empty() || HasLocalInlineAsmSymbol,
1097 CantBePromoted, IsThinLTO, GetSSICallback);
1104 if (
G.isDeclaration())
1116 I.applyAlongResolverPath([&Index](
const GlobalValue &GV) {
1117 Index.getGlobalValueSummary(GV)->setLive(
true);
1121 for (
auto *V : LocalsUsed) {
1122 auto *Summary = Index.getGlobalValueSummary(*V);
1123 assert(Summary &&
"Missing summary for global value");
1124 Summary->setNotEligibleToImport();
1136 for (
auto &GlobalList : Index) {
1138 if (GlobalList.second.getSummaryList().empty())
1141 assert(GlobalList.second.getSummaryList().size() == 1 &&
1142 "Expected module's index to have one summary per GUID");
1143 auto &Summary = GlobalList.second.getSummaryList()[0];
1145 Summary->setNotEligibleToImport();
1149 bool AllRefsCanBeExternallyReferenced =
1151 return !CantBePromoted.count(VI.getGUID());
1153 if (!AllRefsCanBeExternallyReferenced) {
1154 Summary->setNotEligibleToImport();
1161 return !CantBePromoted.count(Edge.first.getGUID());
1163 if (!AllCallsCanBeExternallyReferenced)
1164 Summary->setNotEligibleToImport();
1174 Index.exportToDot(OSDot, {});
1181AnalysisKey ImmutableModuleSummaryIndexAnalysis::Key;
1205 "Module Summary Analysis",
false,
true)
1268 "Module summary info",
false,
true)
1273 if (CB->isDebugOrPseudoInst())
1276 auto *CalledValue = CB->getCalledOperand();
1277 auto *CalledFunction = CB->getCalledFunction();
1278 if (CalledValue && !CalledFunction) {
1279 CalledValue = CalledValue->stripPointerCasts();
1286 assert(!CalledFunction &&
1287 "Expected null called function in callsite for alias");
1292 if (CalledFunction) {
1293 if (CI && CalledFunction->isIntrinsic())
1300 if (CI && CI->isInlineAsm())
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static bool isConstant(const MachineInstr &MI)
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file contains the simple types necessary to represent the attributes associated with functions a...
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file declares the LLVM IR specialization of the GenericCycle templates.
This file defines the DenseSet and SmallDenseSet classes.
Module.h This file contains the declarations for the Module class.
This defines the Use class.
This file implements a map that provides insertion order iteration.
static void addVCallToSet(DevirtCallSite Call, GlobalValue::GUID Guid, SetVector< FunctionSummary::VFuncId, std::vector< FunctionSummary::VFuncId > > &VCalls, SetVector< FunctionSummary::ConstVCall, std::vector< FunctionSummary::ConstVCall > > &ConstVCalls)
Determine whether this call has all constant integer arguments (excluding "this") and summarize it to...
static void computeVTableFuncs(ModuleSummaryIndex &Index, const GlobalVariable &V, const Module &M, VTableFuncList &VTableFuncs)
static void computeAliasSummary(ModuleSummaryIndex &Index, const GlobalAlias &A, DenseSet< GlobalValue::GUID > &CantBePromoted)
static void findFuncPointers(const Constant *I, uint64_t StartingOffset, const Module &M, ModuleSummaryIndex &Index, VTableFuncList &VTableFuncs, const GlobalVariable &OrigGV)
Find function pointers referenced within the given vtable initializer (or subset of an initializer) I...
static void computeVariableSummary(ModuleSummaryIndex &Index, const GlobalVariable &V, DenseSet< GlobalValue::GUID > &CantBePromoted, const Module &M, SmallVectorImpl< MDNode * > &Types)
static void setLiveRoot(ModuleSummaryIndex &Index, StringRef Name)
static CalleeInfo::HotnessType getHotness(uint64_t ProfileCount, ProfileSummaryInfo *PSI)
static bool isNonVolatileLoad(const Instruction *I)
static void findImplicitRefEdges(ModuleSummaryIndex &Index, const Function &F, SetVector< ValueInfo, SmallVector< ValueInfo, 0 > > &RefEdges)
Collect globals referenced via !implicit.ref metadata on a function and add them as reference edges i...
static bool isNonRenamableLocal(const GlobalValue &GV)
static void computeFunctionSummary(ModuleSummaryIndex &Index, const Module &M, const Function &F, BlockFrequencyInfo *BFI, ProfileSummaryInfo *PSI, DominatorTree &DT, bool HasLocalsInUsedOrAsm, DenseSet< GlobalValue::GUID > &CantBePromoted, bool IsThinLTO, std::function< const StackSafetyInfo *(const Function &F)> GetSSICallback)
static bool mustBeUnreachableFunction(const Function &F)
static bool isNonVolatileStore(const Instruction *I)
static bool findRefEdges(ModuleSummaryIndex &Index, const User *CurUser, SetVector< ValueInfo, SmallVector< ValueInfo, 0 > > &RefEdges, SmallPtrSet< const User *, 8 > &Visited, bool &RefLocalLinkageIFunc)
static void addIntrinsicToSummary(const CallInst *CI, SetVector< GlobalValue::GUID, std::vector< GlobalValue::GUID > > &TypeTests, SetVector< FunctionSummary::VFuncId, std::vector< FunctionSummary::VFuncId > > &TypeTestAssumeVCalls, SetVector< FunctionSummary::VFuncId, std::vector< FunctionSummary::VFuncId > > &TypeCheckedLoadVCalls, SetVector< FunctionSummary::ConstVCall, std::vector< FunctionSummary::ConstVCall > > &TypeTestAssumeConstVCalls, SetVector< FunctionSummary::ConstVCall, std::vector< FunctionSummary::ConstVCall > > &TypeCheckedLoadConstVCalls, DominatorTree &DT)
If this intrinsic call requires that we add information to the function summary, do so via the non-co...
static void recordTypeIdCompatibleVtableReferences(ModuleSummaryIndex &Index, const GlobalVariable &V, SmallVectorImpl< MDNode * > &Types)
Record vtable definition V for each type metadata it references.
This is the interface to build a ModuleSummaryIndex for a module.
ModuleSummaryIndex.h This file contains the declarations the classes that hold the module index and s...
FunctionAnalysisManager FAM
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
An arbitrary precision integer that knows its signedness.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void setPreservesAll()
Set by analyses that do not transform their input at all.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
LLVM Basic Block Representation.
static LLVM_ABI BlockAddress * get(Function *F, BasicBlock *BB)
Return a BlockAddress for the specified function and basic block.
Analysis pass which computes BlockFrequencyInfo.
Legacy analysis pass which computes BlockFrequencyInfo.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Analysis providing branch probability information.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
Value * getArgOperand(unsigned i) const
This class represents a function call, abstracting a target machine's calling convention.
This is an important base class in LLVM.
A parsed version of the target data layout string in and methods for querying it.
Implements a dense probed hash-table based set.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
std::pair< ValueInfo, CalleeInfo > EdgeTy
<CalleeValueInfo, CalleeInfo> call edge pair.
ForceSummaryHotnessType
Types for -force-summary-edges-cold debugging option.
Intrinsic::ID getIntrinsicID() const LLVM_READONLY
getIntrinsicID - This method returns the ID number of the specified function, or Intrinsic::not_intri...
void compute(FunctionT &F)
Compute the cycle info for a function.
static LLVM_ABI GUID getGUIDAssumingExternalLinkage(StringRef GlobalName)
Return a 64-bit global unique ID constructed from the name of a global symbol.
LLVM_ABI bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
uint64_t GUID
Declare a type to represent a global unique identifier for a global value.
bool hasLocalLinkage() const
LLVM_ABI GUID getGUID() const
Return a 64-bit global unique ID for this value.
@ DefaultVisibility
The GV is visible.
LLVM_ABI bool canBeOmittedFromSymbolTable() const
True if GV can be left out of the object symbol table.
@ InternalLinkage
Rename collisions when linking (static functions).
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
Legacy wrapper pass to provide the ModuleSummaryIndex object.
ImmutableModuleSummaryIndexWrapperPass(const ModuleSummaryIndex *Index=nullptr)
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
ImmutablePass class - This class is used to provide information that does not need to be run.
const MDOperand & getOperand(unsigned I) const
unsigned getNumOperands() const
Return number of MDNode operands.
Tracking metadata reference owned by Metadata.
This class implements a map that also provides access to all stored values in a deterministic order.
VectorType takeVector()
Clear the MapVector and return the underlying vector.
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &AM)
Legacy wrapper pass to provide the ModuleSummaryIndex object.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
bool doFinalization(Module &M) override
doFinalization - Virtual method overriden by subclasses to do any necessary clean up after all passes...
ModuleSummaryIndexWrapperPass()
bool runOnModule(Module &M) override
runOnModule - Virtual method overriden by subclasses to process the module being operated on.
Class to hold module path string table and global value map, and encapsulate methods for operating on...
static LLVM_ABI void CollectAsmSymbols(const Module &M, function_ref< void(StringRef, object::BasicSymbolRef::Flags)> AsmSymbol)
Parse inline ASM and collect the symbols that are defined or referenced in the current module.
A Module instance is used to store all the information related to an LLVM module.
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
AnalysisType & getAnalysis() const
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information ...
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
An analysis pass based on legacy pass manager to deliver ProfileSummaryInfo.
Analysis providing profile information.
LLVM_ABI bool isColdCount(uint64_t C) const
Returns true if count C is considered cold.
LLVM_ABI bool hasPartialSampleProfile() const
Returns true if module M has partial-profile sample profile.
LLVM_ABI bool isHotCount(uint64_t C) const
Returns true if count C is considered hot.
LLVM_ABI std::optional< uint64_t > getProfileCount(const CallBase &CallInst, BlockFrequencyInfo *BFI) const
Returns the profile count for CallInst.
A vector that has set insertion semantics.
bool remove(const value_type &X)
Remove an item from the set vector.
size_type size() const
Determine the number of elements in the SetVector.
void insert_range(Range &&R)
Vector takeVector()
Clear the SetVector and return the underlying vector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StackSafetyInfo wrapper for the new pass manager.
StackSafetyInfo wrapper for the legacy pass manager.
Interface to access stack safety analysis results for single function.
Represent a constant reference to a string, i.e.
Used to lazily calculate structure layout information for a target machine, based on the DataLayout s...
LLVM_ABI unsigned getElementContainingOffset(uint64_t FixedOffset) const
Given a valid byte offset into the structure, returns the structure index that contains it.
TypeSize getElementOffset(unsigned Idx) const
Class to represent struct types.
ArrayRef< Type * > elements() const
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
iterator_range< use_iterator > uses()
std::pair< iterator, bool > insert(const ValueT &V)
size_type count(const_arg_type_t< ValueT > V) const
Return 1 if the specified key is in the set, 0 otherwise.
Helper class to iterate through stack ids in both metadata (memprof MIB and callsite) and the corresp...
CallStackIterator beginAfterSharedPrefix(const CallStack &Other)
CallStackIterator end() const
A raw_ostream that writes to a file descriptor.
@ C
The default llvm calling convention, compatible with C.
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
LocationClass< Ty > location(Ty &L)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract_or_null(Y &&MD)
Extract a Value from Metadata, allowing null.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract(Y &&MD)
Extract a Value from Metadata, if any.
LLVM_ABI bool metadataIncludesAllContextSizeInfo()
Whether the alloc memeprof metadata will include context size info for all MIBs.
LLVM_ABI AllocationType getMIBAllocType(const MDNode *MIB)
Returns the allocation type from an MIB metadata node.
LLVM_ABI MDNode * getMIBStackNode(const MDNode *MIB)
Returns the stack node from an MIB metadata node.
@ OF_Text
The file should be opened in text mode on platforms like z/OS that make this distinction.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
cl::opt< bool > MemProfReportHintedSizes("memprof-report-hinted-sizes", cl::init(false), cl::Hidden, cl::desc("Report total allocation sizes of hinted allocations"))
std::vector< VirtFuncOffset > VTableFuncList
List of functions referenced by a particular vtable definition.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool mayHaveMemprofSummary(const CallBase *CB)
Returns true if the instruction could have memprof metadata, used to ensure consistency between summa...
LLVM_ABI bool IsConstantOffsetFromGlobal(Constant *C, GlobalValue *&GV, APInt &Offset, const DataLayout &DL, DSOLocalEquivalent **DSOEquiv=nullptr)
If this constant is a constant offset from a global, return the global and the constant.
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
FunctionSummary::ForceSummaryHotnessType ForceSummaryEdgesCold
LLVM_ABI bool needsParamAccessSummary(const Module &M)
static cl::opt< std::string > ModuleSummaryDotFile("module-summary-dot-file", cl::Hidden, cl::value_desc("filename"), cl::desc("File to emit dot graph of new summary into"))
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
LLVM_ABI ModuleSummaryIndex buildModuleSummaryIndex(const Module &M, std::function< BlockFrequencyInfo *(const Function &F)> GetBFICallback, ProfileSummaryInfo *PSI, std::function< const StackSafetyInfo *(const Function &F)> GetSSICallback=[](const Function &F) -> const StackSafetyInfo *{ return nullptr;})
Direct function to compute a ModuleSummaryIndex from a given module.
cl::opt< unsigned > MaxNumVTableAnnotations("icp-max-num-vtables", cl::init(6), cl::Hidden, cl::desc("Max number of vtables annotated for a vtable load instruction."))
LLVM_ABI cl::opt< bool > ScalePartialSampleProfileWorkingSetSize
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
cl::opt< unsigned > MaxSummaryIndirectEdges("module-summary-max-indirect-edges", cl::init(0), cl::Hidden, cl::desc("Max number of summary edges added from " "indirect call profile metadata"))
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
LLVM_ABI void findDevirtualizableCallsForTypeCheckedLoad(SmallVectorImpl< DevirtCallSite > &DevirtCalls, SmallVectorImpl< Instruction * > &LoadedPtrs, SmallVectorImpl< Instruction * > &Preds, bool &HasNonCallUses, const CallInst *CI, DominatorTree &DT)
Given a call to the intrinsic @llvm.type.checked.load, find all devirtualizable call sites based on t...
LLVM_ABI SmallVector< InstrProfValueData, 4 > getValueProfDataFromInst(const Instruction &Inst, InstrProfValueKind ValueKind, uint32_t MaxNumValueData, uint64_t &TotalC, bool GetNoICPValue=false)
Extract the value profile data from Inst and returns them if Inst is annotated with value profile dat...
LLVM_ABI ModulePass * createModuleSummaryIndexWrapperPass()
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
DWARFExpression::Operation Op
LLVM_ABI ImmutablePass * createImmutableModuleSummaryIndexWrapperPass(const ModuleSummaryIndex *Index)
static cl::opt< FunctionSummary::ForceSummaryHotnessType, true > FSEC("force-summary-edges-cold", cl::Hidden, cl::location(ForceSummaryEdgesCold), cl::desc("Force all edges in the function summary to cold"), cl::values(clEnumValN(FunctionSummary::FSHT_None, "none", "None."), clEnumValN(FunctionSummary::FSHT_AllNonCritical, "all-non-critical", "All non-critical edges."), clEnumValN(FunctionSummary::FSHT_All, "all", "All edges.")))
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
static cl::opt< bool > EnableMemProfIndirectCallSupport("enable-memprof-indirect-call-support", cl::init(true), cl::Hidden, cl::desc("Enable MemProf support for summarizing and cloning indirect calls"))
LLVM_ABI void findDevirtualizableCallsForTypeTest(SmallVectorImpl< DevirtCallSite > &DevirtCalls, SmallVectorImpl< CallInst * > &Assumes, const CallInst *CI, DominatorTree &DT)
Given a call to the intrinsic @llvm.type.test, find all devirtualizable call sites based on the call ...
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
LLVM_ABI GlobalVariable * collectUsedGlobalVariables(const Module &M, SmallVectorImpl< GlobalValue * > &Vec, bool CompilerUsed)
Given "llvm.used" or "llvm.compiler.used" as a global name, collect the initializer elements of that ...
Summary of memprof metadata on allocations.
A special type used by analysis passes to provide an address that identifies that particular analysis...
A call site that could be devirtualized.
A specification for a virtual function call with all constant integer arguments.
Flags specific to function summaries.
An "identifier" for a virtual function.
Group flags (Linkage, NotEligibleToImport, etc.) as a bitfield.
Summary of a single MIB in a memprof metadata on allocations.
Struct that holds a reference to a particular GUID in a global value summary.