Home | History | Annotate | Download | only in Bitcode

Lines Matching defs:Abbrevs

33     std::vector<BitCodeAbbrev*> Abbrevs;
72 for (unsigned i = 0, e = static_cast<unsigned>(Info.Abbrevs.size());
74 Info.Abbrevs[i]->dropRef();
139 /// CurAbbrevs - Abbrevs installed at in this block.
200 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
201 for (unsigned i = 0, e = static_cast<unsigned>(Abbrevs.size());
203 Abbrevs[i]->addRef();
208 // Free all the Abbrevs.
214 // Free all the Abbrevs in the block scope.
217 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
218 for (unsigned i = 0, e = static_cast<unsigned>(Abbrevs.size());
220 Abbrevs[i]->dropRef();
395 // Add the abbrevs specific to this block to the CurAbbrevs list.
398 for (unsigned i = 0, e = static_cast<unsigned>(Info->Abbrevs.size());
400 CurAbbrevs.push_back(Info->Abbrevs[i]);
434 // Delete abbrevs from popped scope.
607 CurBlockInfo->Abbrevs.push_back(Abbv);