Searched refs:ModId (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ModuleSummaryIndex.cpp | 581 auto NodeId = [](uint64_t ModId, GlobalValue::GUID Id) { in exportToDot() argument 582 return ModId == (uint64_t)-1 ? std::to_string(Id) in exportToDot() 583 : std::string("M") + std::to_string(ModId) + in exportToDot() 617 auto ModId = ModuleIdMap.empty() ? 0 : ModuleIdMap[ModIt.first]; in exportToDot() local 619 OS << " subgraph cluster_" << std::to_string(ModId) << " {\n"; in exportToDot() 628 CrossModuleEdges.push_back({ModId, Hotness, IdFrom, IdTo}); in exportToDot() 631 DrawEdge(" ", ModId, IdFrom, ModId, IdTo, Hotness); in exportToDot() 635 NodeMap[SummaryIt.first].push_back(ModId); in exportToDot() 672 OS << " " << NodeId(ModId, SummaryIt.first) << " " << A.getAsString() in exportToDot()
|