Home
last modified time | relevance | path

Searched refs:BitmapStart (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPlatformDarwin.c35 BitmapStart __asm("section$start$__DATA$" INSTR_PROF_BITS_SECT_NAME);
64 char *__llvm_profile_begin_bitmap(void) { return &BitmapStart; } in __llvm_profile_begin_bitmap()
H A DInstrProfilingPlatformWindows.c50 char COMPILER_RT_SECTION(".lprfb$A") BitmapStart;
67 char *__llvm_profile_begin_bitmap(void) { return &BitmapStart + 1; } in __llvm_profile_begin_bitmap()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp623 BitmapStart = Start + BitmapOffset; in readHeader()
624 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()
751 const char *Ptr = BitmapStart + BitmapOffset + I; in readRawBitmapBytes()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h331 const char *BitmapStart; variable