Lines Matching defs:VTableGUIDAndCounts
338 // multiple vtables. `VTableGUIDAndCounts` tracks the vtable GUIDs and
341 VTableGUIDCountsMap VTableGUIDAndCounts;
600 Candidate.VTableGUIDAndCounts[VTableVal] = V.Count;
658 if (!EnableVTableProfileUse || C.VTableGUIDAndCounts.empty())
662 // proportionally. Each vtable-guid in `C.VTableGUIDAndCounts` represents
666 for (const auto &[GUID, VTableCount] : C.VTableGUIDAndCounts)
669 for (const auto &[GUID, VTableCount] : C.VTableGUIDAndCounts) {
732 for (auto &[GUID, Count] : Candidate.VTableGUIDAndCounts)
749 const auto &VTableGUIDAndCounts = Candidate.VTableGUIDAndCounts;
756 << ore::NV("VTable", VTableGUIDAndCounts.size())
761 for (auto [GUID, Count] : VTableGUIDAndCounts)
859 auto &VTableGUIDAndCounts = Candidate.VTableGUIDAndCounts;
864 for ([[maybe_unused]] auto &[GUID, Count] : VTableGUIDAndCounts)
871 for (auto &[GUID, Count] : VTableGUIDAndCounts) {
913 assert(VTableVar && "VTableVar must exist for GUID in VTableGUIDAndCounts");