Home | History | Annotate | Download | only in ProfileData

Lines Matching refs:Reader

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