Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp418 void setInstrumentedCounts(const std::vector<uint64_t> &CountFromProfile);
461 const std::vector<uint64_t> &CountFromProfile) { in setInstrumentedCounts() argument
473 uint64_t CountValue = CountFromProfile[I++]; in setInstrumentedCounts()
528 std::vector<uint64_t> &CountFromProfile = Result.get().Counts; in readCounters() local
531 DEBUG(dbgs() << CountFromProfile.size() << " counts\n"); in readCounters()
533 for (unsigned I = 0, S = CountFromProfile.size(); I < S; I++) { in readCounters()
534 DEBUG(dbgs() << " " << I << ": " << CountFromProfile[I] << "\n"); in readCounters()
535 ValueSum += CountFromProfile[I]; in readCounters()
543 setInstrumentedCounts(CountFromProfile); in readCounters()