Home
last modified time | relevance | path

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

/freebsd-14.2/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
56 DataBegin, DataEnd, CountersBegin, CountersEnd, BitmapBegin, BitmapEnd, in __llvm_profile_get_size_for_buffer()
151 const char *BitmapEnd, const char *NamesBegin, const char *NamesEnd) { in __llvm_profile_get_size_for_buffer_internal() argument
158 __llvm_profile_get_num_bitmap_bytes(BitmapBegin, BitmapEnd); 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.h25 const char *BitmapEnd, const char *NamesBegin, const char *NamesEnd);
39 const char *CountersEnd, const char *BitmapBegin, const char *BitmapEnd,
157 const char *BitmapBegin, const char *BitmapEnd,
H A DInstrProfilingPlatformDarwin.c37 extern char BitmapEnd __asm("section$end$__DATA$" INSTR_PROF_BITS_SECT_NAME);
66 char *__llvm_profile_end_bitmap(void) { return &BitmapEnd; } in __llvm_profile_end_bitmap()
H A DInstrProfilingPlatformWindows.c51 char COMPILER_RT_SECTION(".lprfb$Z") BitmapEnd;
68 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
254 CountersEnd, BitmapBegin, BitmapEnd, VPDataReader, in lprofWriteData()
262 const char *BitmapBegin, const char *BitmapEnd, in lprofWriteDataImpl() argument
274 __llvm_profile_get_num_bitmap_bytes(BitmapBegin, BitmapEnd); in lprofWriteDataImpl()
H A DInstrProfilingFile.c112 const char *BitmapEnd = __llvm_profile_end_bitmap(); in mmapForContinuousMode() local
120 __llvm_profile_get_num_bitmap_bytes(BitmapBegin, BitmapEnd); in mmapForContinuousMode()
236 const char *BitmapEnd = __llvm_profile_end_bitmap(); in mmapForContinuousMode() local
262 lprofReleaseMemoryPagesToOS((uintptr_t)BitmapBegin, (uintptr_t)BitmapEnd); in mmapForContinuousMode()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp624 BitmapEnd = BitmapStart + NumBitmapBytes; in readHeader()
734 if (BitmapOffset >= BitmapEnd - BitmapStart) in readRawBitmapBytes()
738 Twine(BitmapEnd - BitmapStart - 1)) in readRawBitmapBytes()
742 (BitmapEnd - (BitmapStart + BitmapOffset)) / sizeof(uint8_t); in readRawBitmapBytes()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h332 const char *BitmapEnd; variable