Lines Matching refs:Abbv
107 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID); in skipRecord() local
109 for (unsigned i = 0, e = Abbv->getNumOperandInfos(); i != e; ++i) { in skipRecord()
110 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); in skipRecord()
126 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i); in skipRecord()
165 const BitCodeAbbrev *Abbv = getAbbrev(AbbrevID); in readRecord() local
168 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?"); in readRecord()
169 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0); in readRecord()
180 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) { in readRecord()
181 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); in readRecord()
199 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i); in readRecord()
245 BitCodeAbbrev *Abbv = new BitCodeAbbrev(); in ReadAbbrevRecord() local
250 Abbv->Add(BitCodeAbbrevOp(ReadVBR64(8))); in ReadAbbrevRecord()
263 Abbv->Add(BitCodeAbbrevOp(0)); in ReadAbbrevRecord()
267 Abbv->Add(BitCodeAbbrevOp(E, Data)); in ReadAbbrevRecord()
269 Abbv->Add(BitCodeAbbrevOp(E)); in ReadAbbrevRecord()
271 CurAbbrevs.push_back(Abbv); in ReadAbbrevRecord()