Home
last modified time | relevance | path

Searched refs:BitmapEnd (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingBuffer.c51 const char *BitmapEnd = __llvm_profile_end_bitmap(); in __llvm_profile_get_size_for_buffer() local
60 DataBegin, DataEnd, CountersBegin, CountersEnd, BitmapBegin, BitmapEnd, in __llvm_profile_get_size_for_buffer()
196 const char *BitmapEnd, const char *NamesBegin, const char *NamesEnd, in __llvm_profile_get_size_for_buffer_internal() argument
205 __llvm_profile_get_num_bitmap_bytes(BitmapBegin, BitmapEnd); 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
253 BitmapBegin, BitmapEnd, /*VPDataReader=*/0, NamesBegin, NamesEnd, in __llvm_profile_write_buffer_internal()
H A DInstrProfilingInternal.h25 const char *BitmapEnd, const char *NamesBegin, const char *NamesEnd,
41 const char *CountersEnd, const char *BitmapBegin, const char *BitmapEnd,
159 const char *BitmapBegin, const char *BitmapEnd,
H A DInstrProfilingPlatformWindows.c52 char COMPILER_RT_SECTION(".lprfb$Z") BitmapEnd;
85 char *__llvm_profile_end_bitmap(void) { return &BitmapEnd; } in __llvm_profile_end_bitmap()
H A DInstrProfilingPlatformDarwin.c37 extern char BitmapEnd __asm("section$end$__DATA$" INSTR_PROF_BITS_SECT_NAME);
75 char *__llvm_profile_end_bitmap(void) { return &BitmapEnd; } in __llvm_profile_end_bitmap()
H A DInstrProfilingWriter.c250 const char *BitmapEnd = __llvm_profile_end_bitmap(); in lprofWriteData() local
259 CountersEnd, BitmapBegin, BitmapEnd, VPDataReader, in lprofWriteData()
267 const char *CountersEnd, const char *BitmapBegin, const char *BitmapEnd, in lprofWriteDataImpl() argument
281 __llvm_profile_get_num_bitmap_bytes(BitmapBegin, BitmapEnd); in lprofWriteDataImpl()
H A DInstrProfilingFile.c115 const char *BitmapEnd = __llvm_profile_end_bitmap(); in mmapForContinuousMode() local
123 __llvm_profile_get_num_bitmap_bytes(BitmapBegin, BitmapEnd); in mmapForContinuousMode()
255 const char *BitmapEnd = __llvm_profile_end_bitmap(); in mmapForContinuousMode() local
260 __llvm_profile_get_num_bitmap_bytes(BitmapBegin, BitmapEnd); in mmapForContinuousMode()
299 lprofReleaseMemoryPagesToOS((uintptr_t)BitmapBegin, (uintptr_t)BitmapEnd); in mmapForContinuousMode()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp696 BitmapEnd = BitmapStart + NumBitmapBytes; in readHeader()
806 if (BitmapOffset >= BitmapEnd - BitmapStart) in readRawBitmapBytes()
810 Twine(BitmapEnd - BitmapStart - 1)) in readRawBitmapBytes()
814 (BitmapEnd - (BitmapStart + BitmapOffset)) / sizeof(uint8_t); in readRawBitmapBytes()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h360 const char *BitmapEnd; variable