Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp376 uint64_t CountersStart = this->Ctx->CountersSectionStart; in correlateProfileDataImpl() local
378 if (*CounterPtr < CountersStart || *CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
383 *FunctionName, *CounterPtr, CountersStart, CountersEnd); in correlateProfileDataImpl()
395 IntPtrT CounterOffset = *CounterPtr - CountersStart; in correlateProfileDataImpl()
455 uint64_t CountersStart = this->Ctx->CountersSectionStart; in correlateProfileDataImpl() local
457 if (CounterPtr < CountersStart || CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
462 CounterPtr, CountersStart, CountersEnd, in correlateProfileDataImpl()
468 IntPtrT CounterOffset = CounterPtr - CountersStart; in correlateProfileDataImpl()
H A DInstrProfReader.cpp621 CountersStart = Start + CountersOffset; in readHeader()
622 CountersEnd = CountersStart + CountersSize; in readHeader()
660 if (CounterBaseOffset >= CountersEnd - CountersStart) in readRawCounts()
664 Twine(CountersEnd - CountersStart - 1)) in readRawCounts()
668 (CountersEnd - (CountersStart + CounterBaseOffset)) / in readRawCounts()
681 CountersStart + CounterBaseOffset + I * getCounterTypeSize(); in readRawCounts()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPlatformDarwin.c30 CountersStart __asm("section$start$__DATA$" INSTR_PROF_CNTS_SECT_NAME);
60 char *__llvm_profile_begin_counters(void) { return &CountersStart; } in __llvm_profile_begin_counters()
H A DInstrProfilingPlatformWindows.c48 char COMPILER_RT_SECTION(".lprfc$A") CountersStart;
65 char *__llvm_profile_begin_counters(void) { return &CountersStart + 1; } in __llvm_profile_begin_counters()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h329 const char *CountersStart; variable