Lines Matching defs:Abv
670 std::shared_ptr<BitCodeAbbrev> Abv;
673 Abv = std::make_shared<BitCodeAbbrev>();
674 Abv->Add(BitCodeAbbrevOp(serialization::TYPE_EXT_QUAL));
675 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Type
676 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 3)); // Quals
677 TypeExtQualAbbrev = Stream.EmitAbbrev(std::move(Abv));
4644 auto Abv = std::make_shared<llvm::BitCodeAbbrev>();
4645 Abv->Add(llvm::BitCodeAbbrevOp(EXTENSION_METADATA));
4646 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4647 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4648 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4649 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4650 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
4651 unsigned Abbrev = Stream.EmitAbbrev(std::move(Abv));
5718 auto Abv = std::make_shared<llvm::BitCodeAbbrev>();
5719 Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL));
5720 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
5721 unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(std::move(Abv));
5727 Abv = std::make_shared<llvm::BitCodeAbbrev>();
5728 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE));
5729 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
5730 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
5731 UpdateVisibleAbbrev = Stream.EmitAbbrev(std::move(Abv));