Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/IR/
H A DModuleSummaryIndex.cpp547 auto NodeId = [](uint64_t ModId, GlobalValue::GUID Id) { in exportToDot() argument
548 return ModId == (uint64_t)-1 ? std::to_string(Id) in exportToDot()
549 : std::string("M") + std::to_string(ModId) + in exportToDot()
581 auto ModId = getModuleId(ModIt.first); in exportToDot() local
583 OS << " subgraph cluster_" << std::to_string(ModId) << " {\n"; in exportToDot()
592 CrossModuleEdges.push_back({ModId, Hotness, IdFrom, IdTo}); in exportToDot()
595 DrawEdge(" ", ModId, IdFrom, ModId, IdTo, Hotness); in exportToDot()
599 NodeMap[SummaryIt.first].push_back(ModId); in exportToDot()
632 OS << " " << NodeId(ModId, SummaryIt.first) << " " << A.getAsString() in exportToDot()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1488 ModuleInfo *addModule(StringRef ModPath, uint64_t ModId,
1490 return &*ModulePathStringTable.insert({ModPath, {ModId, Hash}}).first;