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.c52 char COMPILER_RT_SECTION(".lprfb$A") BitmapStart;
86 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);
75 char *__llvm_profile_begin_bitmap(void) { return &BitmapStart; } in __llvm_profile_begin_bitmap()
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp662 BitmapStart = Start + BitmapOffset; in readHeader()
663 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()
790 const char *Ptr = BitmapStart + BitmapOffset + I; in readRawBitmapBytes()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h333 const char *BitmapStart; variable