HomeSort by: relevance | last modified time | path
    Searched refs:TypeTests (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndexYAML.h 142 std::vector<uint64_t> TypeTests;
187 io.mapOptional("TypeTests", summary.TypeTests);
232 ArrayRef<FunctionSummary::EdgeTy>{}, std::move(FSum.TypeTests),
ModuleSummaryIndex.h 546 std::vector<GlobalValue::GUID> TypeTests;
658 std::vector<GlobalValue::GUID> TypeTests,
667 if (!TypeTests.empty() || !TypeTestAssumeVCalls.empty() ||
671 TypeIdInfo{std::move(TypeTests), std::move(TypeTestAssumeVCalls),
708 return TIdInfo->TypeTests;
769 TIdInfo->TypeTests.push_back(Guid);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleSummaryAnalysis.cpp 161 const CallInst *CI, SetVector<GlobalValue::GUID> &TypeTests,
183 TypeTests.insert(Guid);
211 TypeTests.insert(Guid);
252 SetVector<GlobalValue::GUID> TypeTests;
333 CI, TypeTests, TypeTestAssumeVCalls, TypeCheckedLoadVCalls,
474 CallGraphEdges.takeVector(), TypeTests.takeVector(),
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLParser.h 355 bool parseTypeTests(std::vector<GlobalValue::GUID> &TypeTests);
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 8706 std::move(Calls), std::move(TypeIdInfo.TypeTests),
9257 /// := 'typeidinfo' ':' '(' [',' TypeTests]? [',' TypeTestAssumeVCalls]?
9272 if (parseTypeTests(TypeIdInfo.TypeTests))
9306 /// TypeTests
9307 /// ::= 'typeTests' ':' '(' (SummaryID | UInt64)
9309 bool LLParser::parseTypeTests(std::vector<GlobalValue::GUID> &TypeTests) {
9323 // Keep track of the TypeTests array index needing a forward reference.
9326 IdToIndexMap[ID].push_back(std::make_pair(TypeTests.size(), Loc));
9330 TypeTests.push_back(GUID);
9333 // Now that the TypeTests vector is finalized, it is safe to save th
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 3279 if (!TIDInfo.TypeTests.empty()) {
3281 Out << "typeTests: (";
3283 for (auto &GUID : TIDInfo.TypeTests) {

Completed in 36 milliseconds