Lines Matching refs:CountFromProfile
933 void setInstrumentedCounts(const std::vector<uint64_t> &CountFromProfile);
964 const std::vector<uint64_t> &CountFromProfile) { in setInstrumentedCounts() argument
965 assert(FuncInfo.getNumCounters() == CountFromProfile.size()); in setInstrumentedCounts()
976 uint64_t CountValue = CountFromProfile[I++]; in setInstrumentedCounts()
995 ProfileCountSize = CountFromProfile.size(); in setInstrumentedCounts()
1048 std::vector<uint64_t> &CountFromProfile = ProfileRecord.Counts; in readCounters() local
1051 LLVM_DEBUG(dbgs() << CountFromProfile.size() << " counts\n"); in readCounters()
1053 for (unsigned I = 0, S = CountFromProfile.size(); I < S; I++) { in readCounters()
1054 LLVM_DEBUG(dbgs() << " " << I << ": " << CountFromProfile[I] << "\n"); in readCounters()
1055 ValueSum += CountFromProfile[I]; in readCounters()
1064 setInstrumentedCounts(CountFromProfile); in readCounters()
1240 std::vector<uint64_t> &CountFromProfile = UseFunc->getProfileRecord().Counts; in annotateOneSelectInst() local
1241 assert(*CurCtrIdx < CountFromProfile.size() && in annotateOneSelectInst()
1244 SCounts[0] = CountFromProfile[*CurCtrIdx]; // True count in annotateOneSelectInst()