Lines Matching refs:PGOReader
1104 bool readCounters(IndexedInstrProfReader *PGOReader, bool &AllZeros,
1111 void populateCoverage(IndexedInstrProfReader *PGOReader);
1371 bool PGOUseFunc::readCounters(IndexedInstrProfReader *PGOReader, bool &AllZeros, in readCounters() argument
1375 Expected<InstrProfRecord> Result = PGOReader->getInstrProfRecord( in readCounters()
1415 ProgramMaxCount = PGOReader->getMaximumFunctionCount(IsCS); in readCounters()
1419 void PGOUseFunc::populateCoverage(IndexedInstrProfReader *PGOReader) { in populateCoverage() argument
1421 Expected<InstrProfRecord> Result = PGOReader->getInstrProfRecord( in populateCoverage()
2070 std::unique_ptr<IndexedInstrProfReader> PGOReader = in annotateAllFunctions() local
2072 if (!PGOReader) { in annotateAllFunctions()
2077 if (!PGOReader->hasCSIRLevelProfile() && IsCS) in annotateAllFunctions()
2081 if (!PGOReader->isIRLevelProfile()) { in annotateAllFunctions()
2086 if (PGOReader->functionEntryOnly()) { in annotateAllFunctions()
2106 M.setProfileSummary(PGOReader->getSummary(IsCS).getMD(M.getContext()), in annotateAllFunctions()
2118 bool InstrumentFuncEntry = PGOReader->instrEntryBBEnabled(); in annotateAllFunctions()
2123 bool HasSingleByteCoverage = PGOReader->hasSingleByteCoverage(); in annotateAllFunctions()
2139 Func.populateCoverage(PGOReader.get()); in annotateAllFunctions()
2148 if (!Func.readCounters(PGOReader.get(), AllZeros, PseudoKind)) in annotateAllFunctions()