Searched refs:CountersEnd (Results 1 – 10 of 10) sorted by relevance
/openbsd/gnu/llvm/compiler-rt/lib/profile/ |
H A D | InstrProfilingBuffer.c | 45 const char *CountersEnd = __llvm_profile_end_counters(); in __llvm_profile_get_size_for_buffer() local 50 DataBegin, DataEnd, CountersBegin, CountersEnd, NamesBegin, NamesEnd); in __llvm_profile_get_size_for_buffer() 126 const char *CountersBegin, const char *CountersEnd, const char *NamesBegin, in __llvm_profile_get_size_for_buffer_internal() argument 132 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in __llvm_profile_get_size_for_buffer_internal() 162 const char *CountersEnd, const char *NamesBegin, const char *NamesEnd) { in __llvm_profile_write_buffer_internal() argument 166 CountersEnd, 0, NamesBegin, NamesEnd, 0); in __llvm_profile_write_buffer_internal()
|
H A D | InstrProfilingInternal.h | 24 const char *CountersBegin, const char *CountersEnd, const char *NamesBegin, 39 const char *CountersEnd, const char *NamesBegin, const char *NamesEnd); 155 const char *CountersBegin, const char *CountersEnd,
|
H A D | InstrProfilingWriter.c | 248 const char *CountersEnd = __llvm_profile_end_counters(); in lprofWriteData() local 252 CountersEnd, VPDataReader, NamesBegin, NamesEnd, in lprofWriteData() 259 const char *CountersBegin, const char *CountersEnd, in lprofWriteDataImpl() argument 271 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in lprofWriteDataImpl() 273 __llvm_profile_get_num_counters(CountersBegin, CountersEnd); in lprofWriteDataImpl()
|
H A D | InstrProfilingPlatformFuchsia.c | 120 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 D | InstrProfilingPlatformDarwin.c | 32 extern char CountersEnd __asm("section$end$__DATA$" INSTR_PROF_CNTS_SECT_NAME); 57 char *__llvm_profile_end_counters(void) { return &CountersEnd; } in __llvm_profile_end_counters()
|
H A D | InstrProfilingPlatformWindows.c | 45 char COMPILER_RT_SECTION(".lprfc$Z") CountersEnd; 60 char *__llvm_profile_end_counters(void) { return &CountersEnd; } in __llvm_profile_end_counters()
|
H A D | InstrProfilingFile.c | 110 const char *CountersEnd = __llvm_profile_end_counters(); in mmapForContinuousMode() local 116 __llvm_profile_get_counters_size(CountersBegin, CountersEnd); in mmapForContinuousMode() 199 const char *CountersEnd = __llvm_profile_end_counters(); in mmapForContinuousMode() local 220 lprofReleaseMemoryPagesToOS((uintptr_t)CountersBegin, (uintptr_t)CountersEnd); in mmapForContinuousMode()
|
/openbsd/gnu/llvm/llvm/lib/ProfileData/ |
H A D | InstrProfCorrelator.cpp | 308 uint64_t CountersEnd = this->Ctx->CountersSectionEnd; in correlateProfileDataImpl() local 309 if (*CounterPtr < CountersStart || *CounterPtr >= CountersEnd) { in correlateProfileDataImpl() 314 << Twine::utohexstr(CountersEnd) << ")\n\tActual: 0x" in correlateProfileDataImpl()
|
H A D | InstrProfReader.cpp | 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()
|
/openbsd/gnu/llvm/llvm/include/llvm/ProfileData/ |
H A D | InstrProfReader.h | 296 const char *CountersEnd; variable
|