Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c45 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 DInstrProfilingInternal.h24 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 DInstrProfilingWriter.c248 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 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);
57 char *__llvm_profile_end_counters(void) { return &CountersEnd; } in __llvm_profile_end_counters()
H A DInstrProfilingPlatformWindows.c45 char COMPILER_RT_SECTION(".lprfc$Z") CountersEnd;
60 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
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 DInstrProfCorrelator.cpp308 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 DInstrProfReader.cpp528 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 DInstrProfReader.h296 const char *CountersEnd; variable