Searched refs:TypeTests (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ModuleSummaryIndexYAML.h | 143 std::vector<uint64_t> TypeTests; 189 io.mapOptional("TypeTests", summary.TypeTests); 235 ArrayRef<FunctionSummary::EdgeTy>{}, std::move(FSum.TypeTests),
|
H A D | ModuleSummaryIndex.h | 732 std::vector<GlobalValue::GUID> TypeTests; 918 std::vector<GlobalValue::GUID> TypeTests, 928 if (!TypeTests.empty() || !TypeTestAssumeVCalls.empty() || 932 TypeIdInfo{std::move(TypeTests), std::move(TypeTestAssumeVCalls), 979 return TIdInfo->TypeTests; 1040 TIdInfo->TypeTests.push_back(Guid);
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ModuleSummaryAnalysis.cpp | 201 SetVector<GlobalValue::GUID, std::vector<GlobalValue::GUID>> &TypeTests, in addIntrinsicToSummary() argument 230 TypeTests.insert(Guid); in addIntrinsicToSummary() 259 TypeTests.insert(Guid); in addIntrinsicToSummary() 315 SetVector<GlobalValue::GUID, std::vector<GlobalValue::GUID>> TypeTests; in computeFunctionSummary() local 424 CI, TypeTests, TypeTestAssumeVCalls, TypeCheckedLoadVCalls, in computeFunctionSummary() 675 CallGraphEdges.takeVector(), TypeTests.takeVector(), in computeFunctionSummary()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/AsmParser/ |
H A D | LLParser.h | 400 bool parseTypeTests(std::vector<GlobalValue::GUID> &TypeTests);
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 9446 std::move(Calls), std::move(TypeIdInfo.TypeTests), in parseFunctionSummary() 10058 if (parseTypeTests(TypeIdInfo.TypeTests)) in parseOptionalTypeIdInfo() 10095 bool LLParser::parseTypeTests(std::vector<GlobalValue::GUID> &TypeTests) { in parseTypeTests() argument 10112 IdToIndexMap[ID].push_back(std::make_pair(TypeTests.size(), Loc)); in parseTypeTests() 10116 TypeTests.push_back(GUID); in parseTypeTests() 10124 assert(TypeTests[P.first] == 0 && in parseTypeTests() 10126 Ids.emplace_back(&TypeTests[P.first], P.second); in parseTypeTests()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AsmWriter.cpp | 3478 if (!TIDInfo.TypeTests.empty()) { in printTypeIdInfo() 3482 for (auto &GUID : TIDInfo.TypeTests) { in printTypeIdInfo()
|