Home
last modified time | relevance | path

Searched refs:CountFromProfile (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1119 bool setInstrumentedCounts(const std::vector<uint64_t> &CountFromProfile);
1144 const std::vector<uint64_t> &CountFromProfile) { in setInstrumentedCounts() argument
1152 if (NumCounters != CountFromProfile.size()) { in setInstrumentedCounts()
1160 uint64_t CountValue = CountFromProfile[I++]; in setInstrumentedCounts()
1169 ProfileCountSize = CountFromProfile.size(); in setInstrumentedCounts()
1550 std::vector<uint64_t> &CountFromProfile = ProfileRecord.Counts; in readCounters() local
1553 LLVM_DEBUG(dbgs() << CountFromProfile.size() << " counts\n"); in readCounters()
1556 for (unsigned I = 0, S = CountFromProfile.size(); I < S; I++) { in readCounters()
1557 LLVM_DEBUG(dbgs() << " " << I << ": " << CountFromProfile[I] << "\n"); in readCounters()
1558 ValueSum += CountFromProfile[I]; in readCounters()
[all …]