Home
last modified time | relevance | path

Searched refs:getFunctionCounts (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/ProfileData/
H A DInstrProfTest.cpp125 EXPECT_THAT_ERROR(Reader->getFunctionCounts("foo", 0x1234, Counts), in TEST_P()
131 EXPECT_THAT_ERROR(Reader->getFunctionCounts("foo", 0x1235, Counts), in TEST_P()
137 Error E1 = Reader->getFunctionCounts("foo", 0x5678, Counts); in TEST_P()
140 Error E2 = Reader->getFunctionCounts("bar", 0x1234, Counts); in TEST_P()
1014 EXPECT_THAT_ERROR(Reader->getFunctionCounts("foo", 0x1234, Counts), in TEST_P()
1020 EXPECT_THAT_ERROR(Reader->getFunctionCounts("foo", 0x1235, Counts), in TEST_P()
1207 EXPECT_THAT_ERROR(Reader->getFunctionCounts(FooName, 0x1234, Counts), in TEST_P()
1217 EXPECT_THAT_ERROR(Reader->getFunctionCounts(BarName, 0x567, Counts), in TEST_P()
1227 EXPECT_THAT_ERROR(Reader->getFunctionCounts(BadName, 0x1234, Counts), in TEST_P()
1229 EXPECT_THAT_ERROR(Reader->getFunctionCounts(BadName, 0x567, Counts), in TEST_P()
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h636 Error getFunctionCounts(StringRef FuncName, uint64_t FuncHash,
/llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp247 if (Error E = ProfileReader.getFunctionCounts(Record.FunctionName, in loadFunctionRecord()
/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfReader.cpp1112 Error IndexedInstrProfReader::getFunctionCounts(StringRef FuncName, in getFunctionCounts() function in IndexedInstrProfReader