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.c53 char COMPILER_RT_SECTION(".lprfb$Z") BitmapEnd;
87 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);
77 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
258 CountersEnd, BitmapBegin, BitmapEnd, VPDataReader, in lprofWriteData()
267 const char *BitmapBegin, const char *BitmapEnd, in lprofWriteDataImpl() argument
281 __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()
238 const char *BitmapEnd = __llvm_profile_end_bitmap(); in mmapForContinuousMode() local
266 lprofReleaseMemoryPagesToOS((uintptr_t)BitmapBegin, (uintptr_t)BitmapEnd); in mmapForContinuousMode()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp663 BitmapEnd = BitmapStart + NumBitmapBytes; in readHeader()
773 if (BitmapOffset >= BitmapEnd - BitmapStart) in readRawBitmapBytes()
777 Twine(BitmapEnd - BitmapStart - 1)) in readRawBitmapBytes()
781 (BitmapEnd - (BitmapStart + BitmapOffset)) / sizeof(uint8_t); in readRawBitmapBytes()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h334 const char *BitmapEnd; variable