• Home
  • Raw
  • Download

Lines Matching refs:Reader

37   std::unique_ptr<IndexedInstrProfReader> Reader;  member
42 Reader = std::move(ReaderOrErr.get()); in readProfile()
49 ASSERT_TRUE(Reader->begin() == Reader->end()); in TEST_F()
58 auto I = Reader->begin(), E = Reader->end(); in TEST_F()
78 ErrorOr<InstrProfRecord> R = Reader->getInstrProfRecord("foo", 0x1234); in TEST_F()
84 R = Reader->getInstrProfRecord("foo", 0x1235); in TEST_F()
90 R = Reader->getInstrProfRecord("foo", 0x5678); in TEST_F()
93 R = Reader->getInstrProfRecord("bar", 0x1234); in TEST_F()
106 ASSERT_TRUE(NoError(Reader->getFunctionCounts("foo", 0x1234, Counts))); in TEST_F()
111 ASSERT_TRUE(NoError(Reader->getFunctionCounts("foo", 0x1235, Counts))); in TEST_F()
117 EC = Reader->getFunctionCounts("foo", 0x5678, Counts); in TEST_F()
120 EC = Reader->getFunctionCounts("bar", 0x1234, Counts); in TEST_F()
151 ErrorOr<InstrProfRecord> R = Reader->getInstrProfRecord("caller", 0x1234); in TEST_F()
203 Reader->setValueProfDataEndianness(support::big); in TEST_F()
205 ErrorOr<InstrProfRecord> R = Reader->getInstrProfRecord("caller", 0x1234); in TEST_F()
294 ErrorOr<InstrProfRecord> R = Reader->getInstrProfRecord("caller", 0x1234); in TEST_F()
389 Reader->getInstrProfRecord("foo", 0x1234); in TEST_F()
394 Reader->getInstrProfRecord("baz", 0x5678); in TEST_F()
504 ASSERT_EQ(1ULL << 63, Reader->getMaximumFunctionCount()); in TEST_F()
516 ASSERT_TRUE(NoError(Reader->getFunctionCounts("foo", 0x1234, Counts))); in TEST_F()
521 ASSERT_TRUE(NoError(Reader->getFunctionCounts("foo", 0x1235, Counts))); in TEST_F()