1 //===- BitstreamReader.cpp - BitstreamReader implementation ---------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/Bitcode/BitstreamReader.h"
14 //===----------------------------------------------------------------------===//
15 // BitstreamCursor implementation
16 //===----------------------------------------------------------------------===//
18 void BitstreamCursor::freeState() {
19 // Free all the Abbrevs.
22 // Free all the Abbrevs in the block scope.
26 /// EnterSubBlock - Having read the ENTER_SUBBLOCK abbrevid, enter
27 /// the block, and return true if the block has an error.
28 bool BitstreamCursor::EnterSubBlock(unsigned BlockID, unsigned *NumWordsP) {
29 // Save the current block's state on BlockScope.
30 BlockScope.push_back(Block(CurCodeSize));
31 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
33 // Add the abbrevs specific to this block to the CurAbbrevs list.
34 if (const BitstreamReader::BlockInfo *Info =
35 BitStream->getBlockInfo(BlockID)) {
36 CurAbbrevs.insert(CurAbbrevs.end(), Info->Abbrevs.begin(),
40 // Get the codesize of this block.
41 CurCodeSize = ReadVBR(bitc::CodeLenWidth);
42 // We can't read more than MaxChunkSize at a time
43 if (CurCodeSize > MaxChunkSize)
46 SkipToFourByteBoundary();
47 unsigned NumWords = Read(bitc::BlockSizeWidth);
48 if (NumWordsP) *NumWordsP = NumWords;
50 // Validate that this block is sane.
51 return CurCodeSize == 0 || AtEndOfStream();
54 static uint64_t readAbbreviatedField(BitstreamCursor &Cursor,
55 const BitCodeAbbrevOp &Op) {
56 assert(!Op.isLiteral() && "Not to be used with literals!");
58 // Decode the value as we are commanded.
59 switch (Op.getEncoding()) {
60 case BitCodeAbbrevOp::Array:
61 case BitCodeAbbrevOp::Blob:
62 llvm_unreachable("Should not reach here");
63 case BitCodeAbbrevOp::Fixed:
64 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
65 return Cursor.Read((unsigned)Op.getEncodingData());
66 case BitCodeAbbrevOp::VBR:
67 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
68 return Cursor.ReadVBR64((unsigned)Op.getEncodingData());
69 case BitCodeAbbrevOp::Char6:
70 return BitCodeAbbrevOp::DecodeChar6(Cursor.Read(6));
72 llvm_unreachable("invalid abbreviation encoding");
75 static void skipAbbreviatedField(BitstreamCursor &Cursor,
76 const BitCodeAbbrevOp &Op) {
77 assert(!Op.isLiteral() && "Not to be used with literals!");
79 // Decode the value as we are commanded.
80 switch (Op.getEncoding()) {
81 case BitCodeAbbrevOp::Array:
82 case BitCodeAbbrevOp::Blob:
83 llvm_unreachable("Should not reach here");
84 case BitCodeAbbrevOp::Fixed:
85 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
86 Cursor.Read((unsigned)Op.getEncodingData());
88 case BitCodeAbbrevOp::VBR:
89 assert((unsigned)Op.getEncodingData() <= Cursor.MaxChunkSize);
90 Cursor.ReadVBR64((unsigned)Op.getEncodingData());
92 case BitCodeAbbrevOp::Char6:
100 /// skipRecord - Read the current record and discard it.
101 void BitstreamCursor::skipRecord(unsigned AbbrevID) {
102 // Skip unabbreviated records by reading past their entries.
103 if (AbbrevID == bitc::UNABBREV_RECORD) {
104 unsigned Code = ReadVBR(6);
106 unsigned NumElts = ReadVBR(6);
107 for (unsigned i = 0; i != NumElts; ++i)
112 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
114 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
115 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
119 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
120 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
121 skipAbbreviatedField(*this, Op);
125 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
126 // Array case. Read the number of elements as a vbr6.
127 unsigned NumElts = ReadVBR(6);
129 // Get the element encoding.
130 assert(i+2 == e && "array op not second to last?");
131 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
133 // Read all the elements.
134 for (; NumElts; --NumElts)
135 skipAbbreviatedField(*this, EltEnc);
139 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob);
140 // Blob case. Read the number of bytes as a vbr6.
141 unsigned NumElts = ReadVBR(6);
142 SkipToFourByteBoundary(); // 32-bit alignment
144 // Figure out where the end of this blob will be including tail padding.
145 size_t NewEnd = GetCurrentBitNo()+((NumElts+3)&~3)*8;
147 // If this would read off the end of the bitcode file, just set the
148 // record to empty and return.
149 if (!canSkipToPos(NewEnd/8)) {
150 NextChar = BitStream->getBitcodeBytes().getExtent();
154 // Skip over the blob.
159 unsigned BitstreamCursor::readRecord(unsigned AbbrevID,
160 SmallVectorImpl<uint64_t> &Vals,
162 if (AbbrevID == bitc::UNABBREV_RECORD) {
163 unsigned Code = ReadVBR(6);
164 unsigned NumElts = ReadVBR(6);
165 for (unsigned i = 0; i != NumElts; ++i)
166 Vals.push_back(ReadVBR64(6));
170 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
172 // Read the record code first.
173 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?");
174 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0);
176 if (CodeOp.isLiteral())
177 Code = CodeOp.getLiteralValue();
179 if (CodeOp.getEncoding() == BitCodeAbbrevOp::Array ||
180 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob)
181 report_fatal_error("Abbreviation starts with an Array or a Blob");
182 Code = readAbbreviatedField(*this, CodeOp);
185 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
186 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
187 if (Op.isLiteral()) {
188 Vals.push_back(Op.getLiteralValue());
192 if (Op.getEncoding() != BitCodeAbbrevOp::Array &&
193 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
194 Vals.push_back(readAbbreviatedField(*this, Op));
198 if (Op.getEncoding() == BitCodeAbbrevOp::Array) {
199 // Array case. Read the number of elements as a vbr6.
200 unsigned NumElts = ReadVBR(6);
202 // Get the element encoding.
204 report_fatal_error("Array op not second to last");
205 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
206 if (!EltEnc.isEncoding())
208 "Array element type has to be an encoding of a type");
209 if (EltEnc.getEncoding() == BitCodeAbbrevOp::Array ||
210 EltEnc.getEncoding() == BitCodeAbbrevOp::Blob)
211 report_fatal_error("Array element type can't be an Array or a Blob");
213 // Read all the elements.
214 for (; NumElts; --NumElts)
215 Vals.push_back(readAbbreviatedField(*this, EltEnc));
219 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob);
220 // Blob case. Read the number of bytes as a vbr6.
221 unsigned NumElts = ReadVBR(6);
222 SkipToFourByteBoundary(); // 32-bit alignment
224 // Figure out where the end of this blob will be including tail padding.
225 size_t CurBitPos = GetCurrentBitNo();
226 size_t NewEnd = CurBitPos+((NumElts+3)&~3)*8;
228 // If this would read off the end of the bitcode file, just set the
229 // record to empty and return.
230 if (!canSkipToPos(NewEnd/8)) {
231 Vals.append(NumElts, 0);
232 NextChar = BitStream->getBitcodeBytes().getExtent();
236 // Otherwise, inform the streamer that we need these bytes in memory.
237 const char *Ptr = (const char*)
238 BitStream->getBitcodeBytes().getPointer(CurBitPos/8, NumElts);
240 // If we can return a reference to the data, do so to avoid copying it.
242 *Blob = StringRef(Ptr, NumElts);
244 // Otherwise, unpack into Vals with zero extension.
245 for (; NumElts; --NumElts)
246 Vals.push_back((unsigned char)*Ptr++);
248 // Skip over tail padding.
256 void BitstreamCursor::ReadAbbrevRecord() {
257 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
258 unsigned NumOpInfo = ReadVBR(5);
259 for (unsigned i = 0; i != NumOpInfo; ++i) {
260 bool IsLiteral = Read(1);
262 Abbv->Add(BitCodeAbbrevOp(ReadVBR64(8)));
266 BitCodeAbbrevOp::Encoding E = (BitCodeAbbrevOp::Encoding)Read(3);
267 if (BitCodeAbbrevOp::hasEncodingData(E)) {
268 uint64_t Data = ReadVBR64(5);
270 // As a special case, handle fixed(0) (i.e., a fixed field with zero bits)
271 // and vbr(0) as a literal zero. This is decoded the same way, and avoids
272 // a slow path in Read() to have to handle reading zero bits.
273 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
275 Abbv->Add(BitCodeAbbrevOp(0));
279 if ((E == BitCodeAbbrevOp::Fixed || E == BitCodeAbbrevOp::VBR) &&
282 "Fixed or VBR abbrev record with size > MaxChunkData");
284 Abbv->Add(BitCodeAbbrevOp(E, Data));
286 Abbv->Add(BitCodeAbbrevOp(E));
289 if (Abbv->getNumOperandInfos() == 0)
290 report_fatal_error("Abbrev record with no operands");
291 CurAbbrevs.push_back(Abbv);
294 bool BitstreamCursor::ReadBlockInfoBlock() {
295 // If this is the second stream to get to the block info block, skip it.
296 if (BitStream->hasBlockInfoRecords())
299 if (EnterSubBlock(bitc::BLOCKINFO_BLOCK_ID)) return true;
301 SmallVector<uint64_t, 64> Record;
302 BitstreamReader::BlockInfo *CurBlockInfo = nullptr;
304 // Read all the records for this module.
306 BitstreamEntry Entry = advanceSkippingSubblocks(AF_DontAutoprocessAbbrevs);
308 switch (Entry.Kind) {
309 case llvm::BitstreamEntry::SubBlock: // Handled for us already.
310 case llvm::BitstreamEntry::Error:
312 case llvm::BitstreamEntry::EndBlock:
314 case llvm::BitstreamEntry::Record:
315 // The interesting case.
319 // Read abbrev records, associate them with CurBID.
320 if (Entry.ID == bitc::DEFINE_ABBREV) {
321 if (!CurBlockInfo) return true;
324 // ReadAbbrevRecord installs the abbrev in CurAbbrevs. Move it to the
325 // appropriate BlockInfo.
326 CurBlockInfo->Abbrevs.push_back(std::move(CurAbbrevs.back()));
327 CurAbbrevs.pop_back();
333 switch (readRecord(Entry.ID, Record)) {
334 default: break; // Default behavior, ignore unknown content.
335 case bitc::BLOCKINFO_CODE_SETBID:
336 if (Record.size() < 1) return true;
337 CurBlockInfo = &BitStream->getOrCreateBlockInfo((unsigned)Record[0]);
339 case bitc::BLOCKINFO_CODE_BLOCKNAME: {
340 if (!CurBlockInfo) return true;
341 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name.
343 for (unsigned i = 0, e = Record.size(); i != e; ++i)
344 Name += (char)Record[i];
345 CurBlockInfo->Name = Name;
348 case bitc::BLOCKINFO_CODE_SETRECORDNAME: {
349 if (!CurBlockInfo) return true;
350 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name.
352 for (unsigned i = 1, e = Record.size(); i != e; ++i)
353 Name += (char)Record[i];
354 CurBlockInfo->RecordNames.push_back(std::make_pair((unsigned)Record[0],