Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CGData/
H A DCodeGenDataReader.cpp138 if (IndexedCodeGenDataReader::hasFormat(*Buffer)) in create()
140 else if (TextCodeGenDataReader::hasFormat(*Buffer)) in create()
152 bool IndexedCodeGenDataReader::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() function in llvm::IndexedCodeGenDataReader
163 bool TextCodeGenDataReader::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in llvm::TextCodeGenDataReader
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProfReader.h120 static bool hasFormat(const MemoryBuffer &DataBuffer);
123 static bool hasFormat(const StringRef Path);
220 LLVM_ABI static bool hasFormat(const MemoryBuffer &DataBuffer);
223 LLVM_ABI static bool hasFormat(const StringRef Path);
H A DSampleProfReader.h625 static bool hasFormat(const MemoryBuffer &Buffer);
745 static bool hasFormat(const MemoryBuffer &Buffer);
867 static bool hasFormat(const MemoryBuffer &Buffer);
898 static bool hasFormat(const MemoryBuffer &Buffer);
H A DInstrProfReader.h266 static bool hasFormat(const MemoryBuffer &Buffer);
393 static bool hasFormat(const MemoryBuffer &DataBuffer);
813 static bool hasFormat(const MemoryBuffer &DataBuffer);
/freebsd/contrib/llvm-project/llvm/include/llvm/CGData/
H A DCodeGenDataReader.h116 static bool hasFormat(const MemoryBuffer &Buffer);
158 static bool hasFormat(const MemoryBuffer &Buffer);
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProfReader.cpp57 if (!RawMemProfReader::hasFormat(Buffer)) in checkBuffer()
291 bool RawMemProfReader::hasFormat(const StringRef Path) { in hasFormat() function in llvm::memprof::RawMemProfReader
297 return hasFormat(*Buffer); in hasFormat()
300 bool RawMemProfReader::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in llvm::memprof::RawMemProfReader
786 bool YAMLMemProfReader::hasFormat(const StringRef Path) { in hasFormat() function in llvm::memprof::YAMLMemProfReader
792 return hasFormat(*Buffer); in hasFormat()
795 bool YAMLMemProfReader::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in llvm::memprof::YAMLMemProfReader
H A DInstrProfReader.cpp180 if (IndexedInstrProfReader::hasFormat(*Buffer)) in create()
182 else if (RawInstrProfReader64::hasFormat(*Buffer)) in create()
186 else if (RawInstrProfReader32::hasFormat(*Buffer)) in create()
190 else if (TextInstrProfReader::hasFormat(*Buffer)) in create()
228 if (!IndexedInstrProfReader::hasFormat(*Buffer)) in create()
240 bool TextInstrProfReader::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in TextInstrProfReader
502 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() function in RawInstrProfReader
513 if (!hasFormat(*DataBuffer)) in readHeader()
1169 bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() function in IndexedInstrProfReader
H A DSampleProfReader.cpp474 bool SampleProfileReaderText::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderText
1587 bool SampleProfileReaderRawBinary::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderRawBinary
1594 bool SampleProfileReaderExtBinary::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderExtBinary
1841 bool SampleProfileReaderGCC::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderGCC
1985 if (SampleProfileReaderRawBinary::hasFormat(*B)) in create()
1987 else if (SampleProfileReaderExtBinary::hasFormat(*B)) in create()
1989 else if (SampleProfileReaderGCC::hasFormat(*B)) in create()
1991 else if (SampleProfileReaderText::hasFormat(*B)) in create()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp707 if (RawMemProfReader::hasFormat(Input.Filename)) { in loadInput()
736 if (YAMLMemProfReader::hasFormat(Input.Filename)) { in loadInput()
3294 if (memprof::RawMemProfReader::hasFormat(Filename)) { in showMemProfProfile()