Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h80 class SimpleBitstreamCursor {
100 SimpleBitstreamCursor() = default;
101 explicit SimpleBitstreamCursor(ArrayRef<uint8_t> BitcodeBytes) in SimpleBitstreamCursor() function
103 explicit SimpleBitstreamCursor(StringRef BitcodeBytes) in SimpleBitstreamCursor() function
105 explicit SimpleBitstreamCursor(MemoryBufferRef BitcodeBytes) in SimpleBitstreamCursor() function
106 : SimpleBitstreamCursor(BitcodeBytes.getBuffer()) {} in SimpleBitstreamCursor()
358 class BitstreamCursor : SimpleBitstreamCursor {
383 : SimpleBitstreamCursor(BitcodeBytes) {} in BitstreamCursor()
385 : SimpleBitstreamCursor(BitcodeBytes) {} in BitstreamCursor()
387 : SimpleBitstreamCursor(BitcodeBytes) {} in BitstreamCursor()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp303 if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = in readRecord()
319 if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = Read(6)) in readRecord()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticReader.cpp43 if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) { in readDiagnostics()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp270 if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Cursor.Read(8)) { in readIndex()
533 if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = InStream.Read(8)) { in loadModuleFile()
H A DASTReader.cpp4975 if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) { in doesntStartWithASTFileMagic()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp436 if (Expected<SimpleBitstreamCursor::word_t> MaybeWord = Stream.Read(size)) in ReadSignature()
544 SimpleBitstreamCursor R(Lengths); in decodeMetadataStringsBlob()
H A DMetadataLoader.cpp2423 SimpleBitstreamCursor R(Lengths); in parseMetadataStrings()
H A DBitcodeReader.cpp122 if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) { in hasInvalidBitcodeHeader()
129 if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(4)) { in hasInvalidBitcodeHeader()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesReader.cpp1865 if (llvm::Expected<llvm::SimpleBitstreamCursor::word_t> maybeRead = in APINotesReader()