Searched refs:CountersDelta (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingMerge.c127 uintptr_t CountersDelta = Header->CountersDelta; local
178 // The initial CountersDelta is the in-memory address difference
180 // CountersDelta computes the offset into the in-buffer counter section.
182 // On WIN64, CountersDelta is truncated as well, so no need for signext.
184 SrcCountersStart + ((uintptr_t)SrcData->CounterPtr - CountersDelta);
185 // CountersDelta needs to be decreased as we advance to the next data
187 CountersDelta -= sizeof(*SrcData);
H A DInstrProfilingWriter.c296 * CountersDelta to match. */
298 Header.CountersDelta = (uint32_t)Header.CountersDelta;
304 Header.CountersDelta = 0;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h324 uint64_t CountersDelta; member in class:llvm::RawInstrProfReader
437 // `CountersDelta` is a constant zero when using debug info correlation.
439 // The initial CountersDelta is the in-memory address difference between
442 // As we advance to the next record, we maintain the correct CountersDelta
444 CountersDelta -= sizeof(*Data);
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp575 CountersDelta = swap(Header.CountersDelta);
606 if (!(DataSize == 0 && NamesSize == 0 && CountersDelta == 0 &&
654 ptrdiff_t CounterBaseOffset = swap(Data->CounterPtr) - CountersDelta;

Completed in 72 milliseconds