Lines Matching refs:IndexedInstrProfReader
174 if (IndexedInstrProfReader::hasFormat(*Buffer)) in create()
175 Result.reset(new IndexedInstrProfReader(std::move(Buffer))); in create()
192 Expected<std::unique_ptr<IndexedInstrProfReader>>
193 IndexedInstrProfReader::create(const Twine &Path, vfs::FileSystem &FS, in create()
210 return IndexedInstrProfReader::create(std::move(BufferOrError.get()), in create()
214 Expected<std::unique_ptr<IndexedInstrProfReader>>
215 IndexedInstrProfReader::create(std::unique_ptr<MemoryBuffer> Buffer, in create()
218 if (!IndexedInstrProfReader::hasFormat(*Buffer)) in create()
220 auto Result = std::make_unique<IndexedInstrProfReader>( in create()
1136 bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat()
1148 IndexedInstrProfReader::readSummary(IndexedInstrProf::ProfVersion Version, in readSummary()
1344 Error IndexedInstrProfReader::readHeader() { in readHeader()
1461 InstrProfSymtab &IndexedInstrProfReader::getSymtab() { in getSymtab()
1482 Expected<InstrProfRecord> IndexedInstrProfReader::getInstrProfRecord( in getInstrProfRecord()
1641 Error IndexedInstrProfReader::getFunctionCounts(StringRef FuncName, in getFunctionCounts()
1652 Error IndexedInstrProfReader::getFunctionBitmap(StringRef FuncName, in getFunctionBitmap()
1679 Error IndexedInstrProfReader::readNextRecord(NamedInstrProfRecord &Record) { in readNextRecord()
1694 Error IndexedInstrProfReader::readBinaryIds( in readBinaryIds()
1700 Error IndexedInstrProfReader::printBinaryIds(raw_ostream &OS) { in printBinaryIds()