Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp570 auto NodeId = [](uint64_t ModId, GlobalValue::GUID Id) { in exportToDot() argument
571 return ModId == (uint64_t)-1 ? std::to_string(Id) in exportToDot()
572 : std::string("M") + std::to_string(ModId) + in exportToDot()
606 auto ModId = ModuleIdMap.empty() ? 0 : ModuleIdMap[ModIt.first]; in exportToDot() local
608 OS << " subgraph cluster_" << std::to_string(ModId) << " {\n"; in exportToDot()
617 CrossModuleEdges.push_back({ModId, Hotness, IdFrom, IdTo}); in exportToDot()
620 DrawEdge(" ", ModId, IdFrom, ModId, IdTo, Hotness); in exportToDot()
624 NodeMap[SummaryIt.first].push_back(ModId); in exportToDot()
661 OS << " " << NodeId(ModId, SummaryIt.first) << " " << A.getAsString() in exportToDot()