Searched refs:CountFromProfile (Results 1 – 1 of 1) sorted by relevance
1040 bool setInstrumentedCounts(const std::vector<uint64_t> &CountFromProfile);1065 const std::vector<uint64_t> &CountFromProfile) { in setInstrumentedCounts() argument1073 if (NumCounters != CountFromProfile.size()) { in setInstrumentedCounts()1079 uint64_t CountValue = CountFromProfile[I++]; in setInstrumentedCounts()1083 ProfileCountSize = CountFromProfile.size(); in setInstrumentedCounts()1180 std::vector<uint64_t> &CountFromProfile = ProfileRecord.Counts; in readCounters() local1183 LLVM_DEBUG(dbgs() << CountFromProfile.size() << " counts\n"); in readCounters()1185 for (unsigned I = 0, S = CountFromProfile.size(); I < S; I++) { in readCounters()1186 LLVM_DEBUG(dbgs() << " " << I << ": " << CountFromProfile[I] << "\n"); in readCounters()1187 ValueSum += CountFromProfile[I]; in readCounters()[all …]