Searched refs:ModId (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | ModuleSummaryIndex.cpp | 533 auto NodeId = [](uint64_t ModId, GlobalValue::GUID Id) { in exportToDot() argument 534 return ModId == (uint64_t)-1 ? std::to_string(Id) in exportToDot() 535 : std::string("M") + std::to_string(ModId) + in exportToDot() 567 auto ModId = getModuleId(ModIt.first); in exportToDot() local 569 OS << " subgraph cluster_" << std::to_string(ModId) << " {\n"; in exportToDot() 578 CrossModuleEdges.push_back({ModId, Hotness, IdFrom, IdTo}); in exportToDot() 581 DrawEdge(" ", ModId, IdFrom, ModId, IdTo, Hotness); in exportToDot() 585 NodeMap[SummaryIt.first].push_back(ModId); in exportToDot() 618 OS << " " << NodeId(ModId, SummaryIt.first) << " " << A.getAsString() in exportToDot()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
H A D | ModuleSummaryIndex.h | 1421 ModuleInfo *addModule(StringRef ModPath, uint64_t ModId, 1423 return &*ModulePathStringTable.insert({ModPath, {ModId, Hash}}).first;
|