Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/MachO/
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()
H A DSectionPriorities.h75 llvm::MapVector<SectionPair, uint64_t> callGraphProfile; variable
/freebsd/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) {
H A DConfig.h215 callGraphProfile; member
H A DDriver.cpp969 config->callGraphProfile[std::make_pair(from, to)] += count; in readCallGraph()
1047 config->callGraphProfile[{from, to}] += cgpe.cgp_weight; in readCallGraphsFromObjectFiles()
H A DWriter.cpp1057 if (!config->callGraphProfile.empty()) in buildSectionOrder()
/freebsd/contrib/llvm-project/lld/COFF/
H A DCallGraphSort.cpp77 const MapVector<SectionPair, uint64_t> &profile = ctx.config.callGraphProfile; in CallGraphSort()
H A DConfig.h272 callGraphProfile; member
H A DDriver.cpp1152 ctx.config.callGraphProfile[{from, to}] += count; in parseCallGraphFile()
1182 ctx.config.callGraphProfile[{from, to}] += count; in readCallGraphsFromObjectFiles()
H A DWriter.cpp950 if (!ctx.config.callGraphProfile.empty()) { in sortSections()