Lines Matching defs:Abv
714 std::shared_ptr<BitCodeAbbrev> Abv;
717 Abv = std::make_shared<BitCodeAbbrev>();
718 Abv->Add(BitCodeAbbrevOp(serialization::TYPE_EXT_QUAL));
719 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Type
720 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 3)); // Quals
721 TypeExtQualAbbrev = Stream.EmitAbbrev(std::move(Abv));
5124 auto Abv = std::make_shared<llvm::BitCodeAbbrev>();
5125 Abv->Add(llvm::BitCodeAbbrevOp(EXTENSION_METADATA));
5126 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
5127 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
5128 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
5129 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
5130 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
5131 unsigned Abbrev = Stream.EmitAbbrev(std::move(Abv));
6252 auto Abv = std::make_shared<llvm::BitCodeAbbrev>();
6253 Abv->Add(llvm::BitCodeAbbrevOp(RELATED_DECLS_MAP));
6254 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Array));
6255 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
6256 unsigned FunctionToLambdaMapAbbrev = Stream.EmitAbbrev(std::move(Abv));
6287 auto Abv = std::make_shared<llvm::BitCodeAbbrev>();
6288 Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL));
6289 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
6290 unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(std::move(Abv));
6296 Abv = std::make_shared<llvm::BitCodeAbbrev>();
6297 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE));
6298 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
6299 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
6300 UpdateVisibleAbbrev = Stream.EmitAbbrev(std::move(Abv));
6302 Abv = std::make_shared<llvm::BitCodeAbbrev>();
6303 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_MODULE_LOCAL_VISIBLE));
6304 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
6305 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
6306 ModuleLocalUpdateVisibleAbbrev = Stream.EmitAbbrev(std::move(Abv));
6308 Abv = std::make_shared<llvm::BitCodeAbbrev>();
6309 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_TU_LOCAL_VISIBLE));
6310 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
6311 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
6312 TULocalUpdateVisibleAbbrev = Stream.EmitAbbrev(std::move(Abv));
6330 auto Abv = std::make_shared<llvm::BitCodeAbbrev>();
6331 Abv->Add(llvm::BitCodeAbbrevOp(RecordType));
6332 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
6333 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
6334 auto UpdateSpecializationAbbrev = Stream.EmitAbbrev(std::move(Abv));