Home
last modified time | relevance | path

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

/src/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
60 DataBegin, DataEnd, CountersBegin, CountersEnd, BitmapBegin, BitmapEnd, in __llvm_profile_get_size_for_buffer()
195 const char *CountersBegin, const char *CountersEnd, const char *BitmapBegin, in __llvm_profile_get_size_for_buffer_internal() argument
203 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in __llvm_profile_get_size_for_buffer_internal()
246 const char *CountersEnd, const char *BitmapBegin, const char *BitmapEnd, in __llvm_profile_write_buffer_internal() argument
252 &BufferWriter, DataBegin, DataEnd, CountersBegin, CountersEnd, in __llvm_profile_write_buffer_internal()
H A DInstrProfilingInternal.h24 const char *CountersBegin, const char *CountersEnd, const char *BitmapBegin,
41 const char *CountersEnd, const char *BitmapBegin, const char *BitmapEnd,
158 const char *CountersBegin, const char *CountersEnd,
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 DInstrProfilingWriter.c248 const char *CountersEnd = __llvm_profile_end_counters(); in lprofWriteData() local
258 CountersEnd, BitmapBegin, BitmapEnd, VPDataReader, in lprofWriteData()
266 const char *CountersBegin, const char *CountersEnd, in lprofWriteDataImpl() argument
277 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in lprofWriteDataImpl()
279 __llvm_profile_get_num_counters(CountersBegin, CountersEnd); in lprofWriteDataImpl()
H A DInstrProfilingPlatformWindows.c51 char COMPILER_RT_SECTION(".lprfc$Z") CountersEnd;
85 char *__llvm_profile_end_counters(void) { return &CountersEnd; } in __llvm_profile_end_counters()
H A DInstrProfilingPlatformDarwin.c32 extern char CountersEnd __asm("section$end$__DATA$" INSTR_PROF_CNTS_SECT_NAME);
73 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()
236 const char *CountersEnd = __llvm_profile_end_counters(); in mmapForContinuousMode() local
261 lprofReleaseMemoryPagesToOS((uintptr_t)CountersBegin, (uintptr_t)CountersEnd); in mmapForContinuousMode()
/src/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfCorrelator.cpp375 uint64_t CountersEnd = this->Ctx->CountersSectionEnd; in correlateProfileDataImpl() local
376 if (*CounterPtr < CountersStart || *CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
381 *FunctionName, *CounterPtr, CountersStart, CountersEnd); in correlateProfileDataImpl()
454 uint64_t CountersEnd = this->Ctx->CountersSectionEnd; in correlateProfileDataImpl() local
455 if (CounterPtr < CountersStart || CounterPtr >= CountersEnd) { in correlateProfileDataImpl()
460 CounterPtr, CountersStart, CountersEnd, in correlateProfileDataImpl()
H A DInstrProfReader.cpp661 CountersEnd = CountersStart + CountersSize; in readHeader()
699 if (CounterBaseOffset >= CountersEnd - CountersStart) in readRawCounts()
703 Twine(CountersEnd - CountersStart - 1)) in readRawCounts()
707 (CountersEnd - (CountersStart + CounterBaseOffset)) / in readRawCounts()
/src/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h332 const char *CountersEnd; variable