Searched defs:CountFromProfile (Results 1 - 1 of 1) sorted by relevance

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

Completed in 104 milliseconds