Lines Matching defs:PGO
894 "version should be >= 2 for SHT_LLVM_BB_ADDR_MAP when PGO features "
1234 for (const auto &PGO : PGOAnalyses) {
1235 errs() << "FuncEntryCount: " << PGO.FuncEntryCount << "\n";
1236 for (const auto &PGOBB : PGO.BBEntries)
1240 for (const auto &PGO : *ExpectedPGO) {
1241 errs() << "FuncEntryCount: " << PGO.FuncEntryCount << "\n";
1242 for (const auto &PGOBB : PGO.BBEntries)
1246 for (auto &&[BB, PGO] : llvm::zip(*BBAddrMaps, PGOAnalyses)) {
1247 if (PGO.FeatEnable.BBFreq || PGO.FeatEnable.BrProb)
1248 EXPECT_EQ(BB.getNumBBEntries(), PGO.BBEntries.size());