Lines Matching defs:CounterPtr
292 // In this mode, CounterPtr actually stores the section relative address
360 std::optional<uint64_t> CounterPtr = getLocation(Die);
388 if (!FunctionName || !CFGHash || !CounterPtr || !NumCounters) {
392 << ": CFGHash=" << CFGHash << " CounterPtr=" << CounterPtr
400 if (*CounterPtr < CountersStart || *CounterPtr >= CountersEnd) {
403 << format("CounterPtr out of range for function %s: Actual=0x%x "
405 *FunctionName, *CounterPtr, CountersStart, CountersEnd);
415 // In debug info correlation mode, the CounterPtr is an absolute address of
417 IntPtrT CounterOffset = *CounterPtr - CountersStart;
476 uint64_t CounterPtr = this->template maybeSwap<IntPtrT>(I->CounterPtr);
479 if (CounterPtr < CountersStart || CounterPtr >= CountersEnd) {
482 << format("CounterPtr out of range for function: Actual=0x%x "
484 CounterPtr, CountersStart, CountersEnd,
488 // In binary correlation mode, the CounterPtr is an absolute address of the
490 IntPtrT CounterOffset = CounterPtr - CountersStart;