Lines Matching defs:GUID

8793              "Forward referenced type id GUID expected to be 0");
8898 "Forward referenced type id GUID expected to be 0");
9193 /// Stores the given Name/GUID and associated summary into the Index.
9196 std::string Name, GlobalValue::GUID GUID, GlobalValue::LinkageTypes Linkage,
9198 // First create the ValueInfo utilizing the Name or GUID.
9200 if (GUID != 0) {
9202 VI = Index->getOrInsertValueInfo(GUID);
9214 "Need a source_filename to compute GUID for local");
9215 GUID = GlobalValue::getGUID(
9217 VI = Index->getOrInsertValueInfo(GUID, Index->saveString(Name));
9307 GlobalValue::GUID GUID = 0;
9314 // Can't create GUID/ValueInfo until we have the linkage.
9318 if (parseToken(lltok::colon, "expected ':' here") || parseUInt64(GUID))
9330 // A GUID with no summary came from a VALUE_GUID record, dummy GUID
9331 // created for indirect calls with VP. A Name with no GUID came from
9333 // used when the GUID must be computed from Name, and in that case
9335 return addGlobalValueToIndex(Name, GUID, GlobalValue::ExternalLinkage, ID,
9347 if (parseFunctionSummary(Name, GUID, ID))
9351 if (parseVariableSummary(Name, GUID, ID))
9355 if (parseAliasSummary(Name, GUID, ID))
9375 bool LLParser::parseFunctionSummary(std::string Name, GlobalValue::GUID GUID,
9455 return addGlobalValueToIndex(Name, GUID,
9463 bool LLParser::parseVariableSummary(std::string Name, GlobalValue::GUID GUID,
9514 return addGlobalValueToIndex(Name, GUID,
9522 bool LLParser::parseAliasSummary(std::string Name, GlobalValue::GUID GUID,
9564 return addGlobalValueToIndex(Name, GUID,
10095 bool LLParser::parseTypeTests(std::vector<GlobalValue::GUID> &TypeTests) {
10105 GlobalValue::GUID GUID = 0;
10110 // We will save the location of the GUID needing an update, but
10114 } else if (parseUInt64(GUID))
10116 TypeTests.push_back(GUID);
10125 "Forward referenced type id GUID expected to be 0");
10163 assert(VFuncIdList[P.first].GUID == 0 &&
10164 "Forward referenced type id GUID expected to be 0");
10165 Ids.emplace_back(&VFuncIdList[P.first].GUID, P.second);
10200 assert(ConstVCallList[P.first].VFunc.GUID == 0 &&
10201 "Forward referenced type id GUID expected to be 0");
10202 Ids.emplace_back(&ConstVCallList[P.first].VFunc.GUID, P.second);
10240 VFuncId.GUID = 0;
10244 // We will save the location of the GUID needing an update, but
10250 parseUInt64(VFuncId.GUID))