Home
last modified time | relevance | path

Searched refs:callGraphProfile (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DSectionPriorities.h74 llvm::MapVector<SectionPair, uint64_t> callGraphProfile; variable
H A DSectionPriorities.cpp290 callGraphProfile[{fromSym->isec, toSym->isec}] += entry.count; in extractCallGraphProfile()
296 assert(callGraphProfile.empty() && in parseOrderFile()
363 sectionPriorities = CallGraphSort(callGraphProfile).run(); in buildInputSectionPriorities()
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp115 MapVector<SectionPair, uint64_t> &profile = config->callGraphProfile; in CallGraphSort()
297 for (std::pair<SectionPair, uint64_t> &c : config->callGraphProfile) { in computeCacheDirectedSortOrder()
H A DConfig.h209 callGraphProfile; member
H A DDriver.cpp940 config->callGraphProfile[std::make_pair(from, to)] += count; in readCallGraph()
1009 config->callGraphProfile[{from, to}] += cgpe.cgp_weight; in readCallGraphsFromObjectFiles()
H A DWriter.cpp1319 if (!config->callGraphProfile.empty()) in buildSectionOrder()
/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DCallGraphSort.cpp77 const MapVector<SectionPair, uint64_t> &profile = ctx.config.callGraphProfile; in CallGraphSort()
H A DConfig.h269 callGraphProfile; member
H A DDriver.cpp1160 ctx.config.callGraphProfile[{from, to}] += count; in parseCallGraphFile()
1190 ctx.config.callGraphProfile[{from, to}] += count; in readCallGraphsFromObjectFiles()
H A DWriter.cpp950 if (!ctx.config.callGraphProfile.empty()) { in sortSections()