Lines Matching refs:Abbv
112 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID); in skipRecord() local
114 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) { in skipRecord()
115 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); in skipRecord()
131 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i); in skipRecord()
187 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID); in readRecord() local
190 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?"); in readRecord()
191 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0); in readRecord()
202 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) { in readRecord()
203 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); in readRecord()
222 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i); in readRecord()
284 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); in ReadAbbrevRecord() local
289 Abbv->Add(BitCodeAbbrevOp(ReadVBR64(8))); in ReadAbbrevRecord()
302 Abbv->Add(BitCodeAbbrevOp(0)); in ReadAbbrevRecord()
311 Abbv->Add(BitCodeAbbrevOp(E, Data)); in ReadAbbrevRecord()
313 Abbv->Add(BitCodeAbbrevOp(E)); in ReadAbbrevRecord()
316 if (Abbv->getNumOperandInfos() == 0) in ReadAbbrevRecord()
318 CurAbbrevs.push_back(Abbv); in ReadAbbrevRecord()