reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Bitcode/Reader/BitcodeReader.cpp
 6333     uint64_t BCBegin = Stream.getCurrentByteNo();
 6338     if (BCBegin + 8 >= Stream.getBitcodeBytes().size())
 6341     Expected<llvm::BitstreamEntry> MaybeEntry = Stream.advance();
 6354         IdentificationBit = Stream.GetCurrentBitNo() - BCBegin * 8;
 6355         if (Error Err = Stream.SkipBlock())
 6359           Expected<llvm::BitstreamEntry> MaybeEntry = Stream.advance();
 6371         uint64_t ModuleBit = Stream.GetCurrentBitNo() - BCBegin * 8;
 6372         if (Error Err = Stream.SkipBlock())
 6375         F.Mods.push_back({Stream.getBitcodeBytes().slice(
 6376                               BCBegin, Stream.getCurrentByteNo() - BCBegin),
 6384             readBlobInRecord(Stream, bitc::STRTAB_BLOCK_ID, bitc::STRTAB_BLOB);
 6406             readBlobInRecord(Stream, bitc::SYMTAB_BLOCK_ID, bitc::SYMTAB_BLOB);
 6421       if (Error Err = Stream.SkipBlock())
 6426       if (Expected<unsigned> StreamFailed = Stream.skipRecord(Entry.ID))