Searched refs:ModId (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | ModuleSummaryIndex.cpp | 350 auto NodeId = [](uint64_t ModId, GlobalValue::GUID Id) { in exportToDot() argument 351 return ModId == (uint64_t)-1 ? std::to_string(Id) in exportToDot() 352 : std::string("M") + std::to_string(ModId) + in exportToDot() 382 auto ModId = getModuleId(ModIt.first()); in exportToDot() local 384 OS << " subgraph cluster_" << std::to_string(ModId) << " {\n"; in exportToDot() 393 CrossModuleEdges.push_back({ModId, Hotness, IdFrom, IdTo}); in exportToDot() 396 DrawEdge(" ", ModId, IdFrom, ModId, IdTo, Hotness); in exportToDot() 400 NodeMap[SummaryIt.first].push_back(ModId); in exportToDot() 421 OS << " " << NodeId(ModId, SummaryIt.first) << " " << A.getAsString() in exportToDot()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndex.h | 1122 ModuleInfo *addModule(StringRef ModPath, uint64_t ModId, 1124 return &*ModulePathStringTable.insert({ModPath, {ModId, Hash}}).first;
|