Home | History | Annotate | Download | only in Serialization

Lines Matching refs:Abv

4014   llvm::BitCodeAbbrev *Abv = new llvm::BitCodeAbbrev();
4015 Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL));
4016 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
4017 unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(Abv);
4024 Abv = new llvm::BitCodeAbbrev();
4025 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE));
4026 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4027 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Fixed, 32));
4028 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
4029 UpdateVisibleAbbrev = Stream.EmitAbbrev(Abv);