Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPlatformWindows.c51 char COMPILER_RT_SECTION(".lprfb$A") BitmapStart;
84 char *__llvm_profile_begin_bitmap(void) { return &BitmapStart + 1; } in __llvm_profile_begin_bitmap()
H A DInstrProfilingPlatformDarwin.c35 BitmapStart __asm("section$start$__DATA$" INSTR_PROF_BITS_SECT_NAME);
73 char *__llvm_profile_begin_bitmap(void) { return &BitmapStart; } in __llvm_profile_begin_bitmap()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp695 BitmapStart = Start + BitmapOffset; in readHeader()
696 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()
823 const char *Ptr = BitmapStart + BitmapOffset + I; in readRawBitmapBytes()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h359 const char *BitmapStart; variable