Lines Matching refs:Abbv
119 const BitCodeAbbrev *Abbv = MaybeAbbv.get(); in skipRecord() local
120 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0); in skipRecord()
136 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i < e; ++i) { in skipRecord()
137 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); in skipRecord()
158 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i); in skipRecord()
243 const BitCodeAbbrev *Abbv = MaybeAbbv.get(); in readRecord() local
246 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?"); in readRecord()
247 const BitCodeAbbrevOp &CodeOp = Abbv->getOperandInfo(0); in readRecord()
261 for (unsigned i = 1, e = Abbv->getNumOperandInfos(); i != e; ++i) { in readRecord()
262 const BitCodeAbbrevOp &Op = Abbv->getOperandInfo(i); in readRecord()
292 const BitCodeAbbrevOp &EltEnc = Abbv->getOperandInfo(++i); in readRecord()
364 auto Abbv = std::make_shared<BitCodeAbbrev>(); in ReadAbbrevRecord() local
378 Abbv->Add(BitCodeAbbrevOp(MaybeOp.get())); in ReadAbbrevRecord()
401 Abbv->Add(BitCodeAbbrevOp(0)); in ReadAbbrevRecord()
409 Abbv->Add(BitCodeAbbrevOp(E, Data)); in ReadAbbrevRecord()
411 Abbv->Add(BitCodeAbbrevOp(E)); in ReadAbbrevRecord()
414 if (Abbv->getNumOperandInfos() == 0) in ReadAbbrevRecord()
416 CurAbbrevs.push_back(std::move(Abbv)); in ReadAbbrevRecord()