Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DInstrProfReader.cpp1042 uint64_t ValueSum = 0; in getInstrProfRecord() local
1048 if (std::numeric_limits<uint64_t>::max() - CountValue <= ValueSum) in getInstrProfRecord()
1050 ValueSum += CountValue; in getInstrProfRecord()
1052 return ValueSum; in getInstrProfRecord()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1273 uint64_t ValueSum = 0; in readCounters() local
1276 ValueSum += CountFromProfile[I]; in readCounters()
1280 AllZeros = (ValueSum == 0); in readCounters()
1282 LLVM_DEBUG(dbgs() << "SUM = " << ValueSum << "\n"); in readCounters()