Home | History | Annotate | Download | only in Reader

Lines Matching defs:Abbv

147   const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
149 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) {
150 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
166 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
205 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID);
208 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?");
209 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0);
216 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) {
217 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i);
235 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i);
281 BitCodeAbbrev *Abbv = new BitCodeAbbrev();
286 Abbv->Add(BitCodeAbbrevOp(ReadVBR64(8)));
299 Abbv->Add(BitCodeAbbrevOp(0));
303 Abbv->Add(BitCodeAbbrevOp(E, Data));
305 Abbv->Add(BitCodeAbbrevOp(E));
307 CurAbbrevs.push_back(Abbv);
342 BitCodeAbbrev *Abbv = CurAbbrevs.back();
344 CurBlockInfo->Abbrevs.push_back(Abbv);