Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Instrumentation/
DPGOInstrumentation.cpp507 void setInstrumentedCounts(const std::vector<uint64_t> &CountFromProfile);
536 const std::vector<uint64_t> &CountFromProfile) { in setInstrumentedCounts() argument
548 uint64_t CountValue = CountFromProfile[I++]; in setInstrumentedCounts()
614 std::vector<uint64_t> &CountFromProfile = ProfileRecord.Counts; in readCounters() local
617 DEBUG(dbgs() << CountFromProfile.size() << " counts\n"); in readCounters()
619 for (unsigned I = 0, S = CountFromProfile.size(); I < S; I++) { in readCounters()
620 DEBUG(dbgs() << " " << I << ": " << CountFromProfile[I] << "\n"); in readCounters()
621 ValueSum += CountFromProfile[I]; in readCounters()
629 setInstrumentedCounts(CountFromProfile); in readCounters()