Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h371 static bool hasFormat(const MemoryBuffer &Buffer);
453 static bool hasFormat(const MemoryBuffer &Buffer);
478 static bool hasFormat(const MemoryBuffer &Buffer);
515 static bool hasFormat(const MemoryBuffer &Buffer);
H A DInstrProfReader.h156 static bool hasFormat(const MemoryBuffer &Buffer);
208 static bool hasFormat(const MemoryBuffer &DataBuffer);
438 static bool hasFormat(const MemoryBuffer &DataBuffer);
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DInstrProfReader.cpp74 if (IndexedInstrProfReader::hasFormat(*Buffer)) in create()
76 else if (RawInstrProfReader64::hasFormat(*Buffer)) in create()
78 else if (RawInstrProfReader32::hasFormat(*Buffer)) in create()
80 else if (TextInstrProfReader::hasFormat(*Buffer)) in create()
121 if (!IndexedInstrProfReader::hasFormat(*Buffer)) in create()
141 bool TextInstrProfReader::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in TextInstrProfReader
293 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() function in RawInstrProfReader
304 if (!hasFormat(*DataBuffer)) in readHeader()
724 bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() function in IndexedInstrProfReader
H A DSampleProfReader.cpp273 bool SampleProfileReaderText::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderText
658 bool SampleProfileReaderRawBinary::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderRawBinary
665 bool SampleProfileReaderCompactBinary::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderCompactBinary
910 bool SampleProfileReaderGCC::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderGCC
1012 if (SampleProfileReaderRawBinary::hasFormat(*B)) in create()
1014 else if (SampleProfileReaderCompactBinary::hasFormat(*B)) in create()
1016 else if (SampleProfileReaderGCC::hasFormat(*B)) in create()
1018 else if (SampleProfileReaderText::hasFormat(*B)) in create()