Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp398 uint64_t CountersStart = this->Ctx->CountersSectionStart; in correlateProfileDataImpl() local
400 if (*CounterPtr < CountersStart || *CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
405 *FunctionName, *CounterPtr, CountersStart, CountersEnd); in correlateProfileDataImpl()
417 IntPtrT CounterOffset = *CounterPtr - CountersStart; in correlateProfileDataImpl()
477 uint64_t CountersStart = this->Ctx->CountersSectionStart; in correlateProfileDataImpl() local
479 if (CounterPtr < CountersStart || CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
484 CounterPtr, CountersStart, CountersEnd, in correlateProfileDataImpl()
490 IntPtrT CounterOffset = CounterPtr - CountersStart; in correlateProfileDataImpl()
H A DInstrProfReader.cpp693 CountersStart = Start + CountersOffset; in readHeader()
694 CountersEnd = CountersStart + CountersSize; in readHeader()
732 if (CounterBaseOffset >= CountersEnd - CountersStart) in readRawCounts()
736 Twine(CountersEnd - CountersStart - 1)) in readRawCounts()
740 (CountersEnd - (CountersStart + CounterBaseOffset)) / in readRawCounts()
753 CountersStart + CounterBaseOffset + I * getCounterTypeSize(); in readRawCounts()
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPlatformWindows.c49 char COMPILER_RT_SECTION(".lprfc$A") CountersStart;
82 char *__llvm_profile_begin_counters(void) { return &CountersStart + 1; } in __llvm_profile_begin_counters()
H A DInstrProfilingPlatformDarwin.c30 CountersStart __asm("section$start$__DATA$" INSTR_PROF_CNTS_SECT_NAME);
69 char *__llvm_profile_begin_counters(void) { return &CountersStart; } in __llvm_profile_begin_counters()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h357 const char *CountersStart; variable