Lines Matching refs:Reader
129 auto Reader = std::move(ReaderOrErr.get()); in mergeInstrProfile() local
130 for (auto &I : *Reader) { in mergeInstrProfile()
137 if (Reader->hasError()) in mergeInstrProfile()
138 exitWithErrorCode(Reader->getError(), Input.Filename); in mergeInstrProfile()
173 const auto Reader = Readers.back().get(); in mergeSampleProfile() local
174 if (std::error_code EC = Reader->read()) in mergeSampleProfile()
177 StringMap<FunctionSamples> &Profiles = Reader->getProfiles(); in mergeSampleProfile()
259 auto Reader = std::move(ReaderOrErr.get()); in showInstrProfile() local
262 for (const auto &Func : *Reader) { in showInstrProfile()
270 InstrProfSymtab &Symtab = Reader->getSymtab(); in showInstrProfile()
310 InstrProfSymtab &Symtab = Reader->getSymtab(); in showInstrProfile()
327 if (Reader->hasError()) in showInstrProfile()
328 exitWithErrorCode(Reader->getError(), Filename); in showInstrProfile()
349 auto Reader = std::move(ReaderOrErr.get()); in showSampleProfile() local
350 if (std::error_code EC = Reader->read()) in showSampleProfile()
354 Reader->dump(OS); in showSampleProfile()
356 Reader->dumpFunctionProfile(ShowFunction, OS); in showSampleProfile()