Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/profile/
H A DInstrProfilingPlatformDarwin.c30 CountersStart __asm("section$start$__DATA$" INSTR_PROF_CNTS_SECT_NAME);
55 char *__llvm_profile_begin_counters(void) { return &CountersStart; } in __llvm_profile_begin_counters()
H A DInstrProfilingPlatformWindows.c44 char COMPILER_RT_SECTION(".lprfc$A") CountersStart;
59 char *__llvm_profile_begin_counters(void) { return &CountersStart + 1; } in __llvm_profile_begin_counters()
/openbsd-src/gnu/llvm/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp307 uint64_t CountersStart = this->Ctx->CountersSectionStart; in correlateProfileDataImpl() local
309 if (*CounterPtr < CountersStart || *CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
313 << Twine::utohexstr(CountersStart) << ", 0x" in correlateProfileDataImpl()
324 IntPtrT CounterOffset = *CounterPtr - CountersStart; in correlateProfileDataImpl()
H A DInstrProfReader.cpp527 CountersStart = Start + CountersOffset; in readHeader()
528 CountersEnd = CountersStart + CountersSize; in readHeader()
568 if (CounterBaseOffset >= CountersEnd - CountersStart) in readRawCounts()
572 Twine(CountersEnd - CountersStart - 1)) in readRawCounts()
576 (CountersEnd - (CountersStart + CounterBaseOffset)) / in readRawCounts()
589 CountersStart + CounterBaseOffset + I * getCounterTypeSize(); in readRawCounts()
/openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h295 const char *CountersStart; variable