Lines Matching full:guid
36 PGOContextualProfile::getOrEmplace(uint32_t Index, GlobalValue::GUID G, in getOrEmplace()
42 "Duplicate GUID for same callsite."); in getOrEmplace()
47 DenseSet<GlobalValue::GUID> &Guids) const { in getContainedGuids()
48 Guids.insert(GUID); in getContainedGuids()
80 std::optional<ctx_profile::GUID> Guid; in readContext() local
90 return Guid.has_value() && Counters.has_value() && in readContext()
102 case PGOCtxProfileRecords::Guid: in readContext()
104 return wrongValue("The GUID record should have exactly one value"); in readContext()
105 Guid = RecordValues[0]; in readContext()
127 PGOContextualProfile Ret(*Guid, std::move(*Counters)); in readContext()
133 Targets.insert({SC->second.guid(), std::move(SC->second)}); in readContext()
162 Expected<std::map<GlobalValue::GUID, PGOContextualProfile>>
164 std::map<GlobalValue::GUID, PGOContextualProfile> Ret; in loadContexts()
168 auto Key = E->second.guid(); in loadContexts()