Lines Matching refs:CountFromProfile
1130 bool setInstrumentedCounts(const std::vector<uint64_t> &CountFromProfile);
1170 const std::vector<uint64_t> &CountFromProfile) { in setInstrumentedCounts() argument
1181 if (NumCounters != CountFromProfile.size()) { in setInstrumentedCounts()
1189 uint64_t CountValue = CountFromProfile[I++]; in setInstrumentedCounts()
1198 ProfileCountSize = CountFromProfile.size(); in setInstrumentedCounts()
1333 std::vector<uint64_t> &CountFromProfile = ProfileRecord.Counts; in readCounters() local
1336 LLVM_DEBUG(dbgs() << CountFromProfile.size() << " counts\n"); in readCounters()
1339 for (unsigned I = 0, S = CountFromProfile.size(); I < S; I++) { in readCounters()
1340 LLVM_DEBUG(dbgs() << " " << I << ": " << CountFromProfile[I] << "\n"); in readCounters()
1341 ValueSum += CountFromProfile[I]; in readCounters()
1350 if (!setInstrumentedCounts(CountFromProfile)) { in readCounters()
1643 std::vector<uint64_t> &CountFromProfile = UseFunc->getProfileRecord().Counts; in annotateOneSelectInst() local
1644 assert(*CurCtrIdx < CountFromProfile.size() && in annotateOneSelectInst()
1647 SCounts[0] = CountFromProfile[*CurCtrIdx]; // True count in annotateOneSelectInst()