Home
last modified time | relevance | path

Searched refs:CountersEnd (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c49 const char *CountersEnd = __llvm_profile_end_counters(); in __llvm_profile_get_size_for_buffer() local
56 DataBegin, DataEnd, CountersBegin, CountersEnd, BitmapBegin, BitmapEnd, in __llvm_profile_get_size_for_buffer()
150 const char *CountersBegin, const char *CountersEnd, const char *BitmapBegin, in __llvm_profile_get_size_for_buffer_internal() argument
156 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in __llvm_profile_get_size_for_buffer_internal()
190 const char *CountersEnd, const char *BitmapBegin, const char *BitmapEnd, in __llvm_profile_write_buffer_internal() argument
195 CountersEnd, BitmapBegin, BitmapEnd, 0, NamesBegin, in __llvm_profile_write_buffer_internal()
H A DInstrProfilingInternal.h24 const char *CountersBegin, const char *CountersEnd, const char *BitmapBegin,
39 const char *CountersEnd, const char *BitmapBegin, const char *BitmapEnd,
156 const char *CountersBegin, const char *CountersEnd,
H A DInstrProfilingWriter.c248 const char *CountersEnd = __llvm_profile_end_counters(); in lprofWriteData() local
254 CountersEnd, BitmapBegin, BitmapEnd, VPDataReader, in lprofWriteData()
261 const char *CountersBegin, const char *CountersEnd, in lprofWriteDataImpl() argument
270 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in lprofWriteDataImpl()
272 __llvm_profile_get_num_counters(CountersBegin, CountersEnd); in lprofWriteDataImpl()
H A DInstrProfilingPlatformFuchsia.c120 const char *CountersEnd = __llvm_profile_end_counters(); in __llvm_profile_initialize() local
125 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in __llvm_profile_initialize()
187 lprofReleaseMemoryPagesToOS((uintptr_t)CountersBegin, (uintptr_t)CountersEnd); in __llvm_profile_initialize()
H A DInstrProfilingPlatformDarwin.c32 extern char CountersEnd __asm("section$end$__DATA$" INSTR_PROF_CNTS_SECT_NAME);
62 char *__llvm_profile_end_counters(void) { return &CountersEnd; } in __llvm_profile_end_counters()
H A DInstrProfilingPlatformWindows.c49 char COMPILER_RT_SECTION(".lprfc$Z") CountersEnd;
66 char *__llvm_profile_end_counters(void) { return &CountersEnd; } in __llvm_profile_end_counters()
H A DInstrProfilingFile.c110 const char *CountersEnd = __llvm_profile_end_counters(); in mmapForContinuousMode() local
118 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in mmapForContinuousMode()
234 const char *CountersEnd = __llvm_profile_end_counters(); in mmapForContinuousMode() local
257 lprofReleaseMemoryPagesToOS((uintptr_t)CountersBegin, (uintptr_t)CountersEnd); in mmapForContinuousMode()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp377 uint64_t CountersEnd = this->Ctx->CountersSectionEnd; in correlateProfileDataImpl() local
378 if (*CounterPtr < CountersStart || *CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
383 *FunctionName, *CounterPtr, CountersStart, CountersEnd); in correlateProfileDataImpl()
456 uint64_t CountersEnd = this->Ctx->CountersSectionEnd; in correlateProfileDataImpl() local
457 if (CounterPtr < CountersStart || CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
462 CounterPtr, CountersStart, CountersEnd, in correlateProfileDataImpl()
H A DInstrProfReader.cpp622 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()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h330 const char *CountersEnd; variable