Home | History | Annotate | Download | only in Reader

Lines Matching full:abbv

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