| //===--- ASTImporter.cpp - Importing ASTs from other Contexts ---*- C++ -*-===// |
| // |
| // The LLVM Compiler Infrastructure |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| // |
| // This file defines the ASTImporter class which imports AST nodes from one |
| // context into another context. |
| // |
| //===----------------------------------------------------------------------===// |
| #include "clang/AST/ASTImporter.h" |
| #include "clang/AST/ASTContext.h" |
| #include "clang/AST/ASTDiagnostic.h" |
| #include "clang/AST/ASTStructuralEquivalence.h" |
| #include "clang/AST/DeclCXX.h" |
| #include "clang/AST/DeclObjC.h" |
| #include "clang/AST/DeclVisitor.h" |
| #include "clang/AST/StmtVisitor.h" |
| #include "clang/AST/TypeVisitor.h" |
| #include "clang/Basic/FileManager.h" |
| #include "clang/Basic/SourceManager.h" |
| #include "llvm/Support/MemoryBuffer.h" |
| #include <deque> |
| |
| namespace clang { |
| class ASTNodeImporter : public TypeVisitor<ASTNodeImporter, QualType>, |
| public DeclVisitor<ASTNodeImporter, Decl *>, |
| public StmtVisitor<ASTNodeImporter, Stmt *> { |
| ASTImporter &Importer; |
| |
| public: |
| explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { } |
| |
| using TypeVisitor<ASTNodeImporter, QualType>::Visit; |
| using DeclVisitor<ASTNodeImporter, Decl *>::Visit; |
| using StmtVisitor<ASTNodeImporter, Stmt *>::Visit; |
| |
| // Importing types |
| QualType VisitType(const Type *T); |
| QualType VisitAtomicType(const AtomicType *T); |
| QualType VisitBuiltinType(const BuiltinType *T); |
| QualType VisitDecayedType(const DecayedType *T); |
| QualType VisitComplexType(const ComplexType *T); |
| QualType VisitPointerType(const PointerType *T); |
| QualType VisitBlockPointerType(const BlockPointerType *T); |
| QualType VisitLValueReferenceType(const LValueReferenceType *T); |
| QualType VisitRValueReferenceType(const RValueReferenceType *T); |
| QualType VisitMemberPointerType(const MemberPointerType *T); |
| QualType VisitConstantArrayType(const ConstantArrayType *T); |
| QualType VisitIncompleteArrayType(const IncompleteArrayType *T); |
| QualType VisitVariableArrayType(const VariableArrayType *T); |
| // FIXME: DependentSizedArrayType |
| // FIXME: DependentSizedExtVectorType |
| QualType VisitVectorType(const VectorType *T); |
| QualType VisitExtVectorType(const ExtVectorType *T); |
| QualType VisitFunctionNoProtoType(const FunctionNoProtoType *T); |
| QualType VisitFunctionProtoType(const FunctionProtoType *T); |
| QualType VisitUnresolvedUsingType(const UnresolvedUsingType *T); |
| QualType VisitParenType(const ParenType *T); |
| QualType VisitTypedefType(const TypedefType *T); |
| QualType VisitTypeOfExprType(const TypeOfExprType *T); |
| // FIXME: DependentTypeOfExprType |
| QualType VisitTypeOfType(const TypeOfType *T); |
| QualType VisitDecltypeType(const DecltypeType *T); |
| QualType VisitUnaryTransformType(const UnaryTransformType *T); |
| QualType VisitAutoType(const AutoType *T); |
| QualType VisitInjectedClassNameType(const InjectedClassNameType *T); |
| // FIXME: DependentDecltypeType |
| QualType VisitRecordType(const RecordType *T); |
| QualType VisitEnumType(const EnumType *T); |
| QualType VisitAttributedType(const AttributedType *T); |
| QualType VisitTemplateTypeParmType(const TemplateTypeParmType *T); |
| QualType VisitSubstTemplateTypeParmType(const SubstTemplateTypeParmType *T); |
| QualType VisitTemplateSpecializationType(const TemplateSpecializationType *T); |
| QualType VisitElaboratedType(const ElaboratedType *T); |
| // FIXME: DependentNameType |
| QualType VisitPackExpansionType(const PackExpansionType *T); |
| // FIXME: DependentTemplateSpecializationType |
| QualType VisitObjCInterfaceType(const ObjCInterfaceType *T); |
| QualType VisitObjCObjectType(const ObjCObjectType *T); |
| QualType VisitObjCObjectPointerType(const ObjCObjectPointerType *T); |
| |
| // Importing declarations |
| bool ImportDeclParts(NamedDecl *D, DeclContext *&DC, |
| DeclContext *&LexicalDC, DeclarationName &Name, |
| NamedDecl *&ToD, SourceLocation &Loc); |
| void ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD = nullptr); |
| void ImportDeclarationNameLoc(const DeclarationNameInfo &From, |
| DeclarationNameInfo& To); |
| void ImportDeclContext(DeclContext *FromDC, bool ForceImport = false); |
| |
| bool ImportCastPath(CastExpr *E, CXXCastPath &Path); |
| |
| typedef DesignatedInitExpr::Designator Designator; |
| Designator ImportDesignator(const Designator &D); |
| |
| |
| /// \brief What we should import from the definition. |
| enum ImportDefinitionKind { |
| /// \brief Import the default subset of the definition, which might be |
| /// nothing (if minimal import is set) or might be everything (if minimal |
| /// import is not set). |
| IDK_Default, |
| /// \brief Import everything. |
| IDK_Everything, |
| /// \brief Import only the bare bones needed to establish a valid |
| /// DeclContext. |
| IDK_Basic |
| }; |
| |
| bool shouldForceImportDeclContext(ImportDefinitionKind IDK) { |
| return IDK == IDK_Everything || |
| (IDK == IDK_Default && !Importer.isMinimalImport()); |
| } |
| |
| bool ImportDefinition(RecordDecl *From, RecordDecl *To, |
| ImportDefinitionKind Kind = IDK_Default); |
| bool ImportDefinition(VarDecl *From, VarDecl *To, |
| ImportDefinitionKind Kind = IDK_Default); |
| bool ImportDefinition(EnumDecl *From, EnumDecl *To, |
| ImportDefinitionKind Kind = IDK_Default); |
| bool ImportDefinition(ObjCInterfaceDecl *From, ObjCInterfaceDecl *To, |
| ImportDefinitionKind Kind = IDK_Default); |
| bool ImportDefinition(ObjCProtocolDecl *From, ObjCProtocolDecl *To, |
| ImportDefinitionKind Kind = IDK_Default); |
| TemplateParameterList *ImportTemplateParameterList( |
| TemplateParameterList *Params); |
| TemplateArgument ImportTemplateArgument(const TemplateArgument &From); |
| Optional<TemplateArgumentLoc> ImportTemplateArgumentLoc( |
| const TemplateArgumentLoc &TALoc); |
| bool ImportTemplateArguments(const TemplateArgument *FromArgs, |
| unsigned NumFromArgs, |
| SmallVectorImpl<TemplateArgument> &ToArgs); |
| template <typename InContainerTy> |
| bool ImportTemplateArgumentListInfo(const InContainerTy &Container, |
| TemplateArgumentListInfo &ToTAInfo); |
| bool IsStructuralMatch(RecordDecl *FromRecord, RecordDecl *ToRecord, |
| bool Complain = true); |
| bool IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar, |
| bool Complain = true); |
| bool IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToRecord); |
| bool IsStructuralMatch(EnumConstantDecl *FromEC, EnumConstantDecl *ToEC); |
| bool IsStructuralMatch(FunctionTemplateDecl *From, |
| FunctionTemplateDecl *To); |
| bool IsStructuralMatch(ClassTemplateDecl *From, ClassTemplateDecl *To); |
| bool IsStructuralMatch(VarTemplateDecl *From, VarTemplateDecl *To); |
| Decl *VisitDecl(Decl *D); |
| Decl *VisitEmptyDecl(EmptyDecl *D); |
| Decl *VisitAccessSpecDecl(AccessSpecDecl *D); |
| Decl *VisitStaticAssertDecl(StaticAssertDecl *D); |
| Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D); |
| Decl *VisitNamespaceDecl(NamespaceDecl *D); |
| Decl *VisitNamespaceAliasDecl(NamespaceAliasDecl *D); |
| Decl *VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias); |
| Decl *VisitTypedefDecl(TypedefDecl *D); |
| Decl *VisitTypeAliasDecl(TypeAliasDecl *D); |
| Decl *VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D); |
| Decl *VisitLabelDecl(LabelDecl *D); |
| Decl *VisitEnumDecl(EnumDecl *D); |
| Decl *VisitRecordDecl(RecordDecl *D); |
| Decl *VisitEnumConstantDecl(EnumConstantDecl *D); |
| Decl *VisitFunctionDecl(FunctionDecl *D); |
| Decl *VisitCXXMethodDecl(CXXMethodDecl *D); |
| Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D); |
| Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D); |
| Decl *VisitCXXConversionDecl(CXXConversionDecl *D); |
| Decl *VisitFieldDecl(FieldDecl *D); |
| Decl *VisitIndirectFieldDecl(IndirectFieldDecl *D); |
| Decl *VisitFriendDecl(FriendDecl *D); |
| Decl *VisitObjCIvarDecl(ObjCIvarDecl *D); |
| Decl *VisitVarDecl(VarDecl *D); |
| Decl *VisitImplicitParamDecl(ImplicitParamDecl *D); |
| Decl *VisitParmVarDecl(ParmVarDecl *D); |
| Decl *VisitObjCMethodDecl(ObjCMethodDecl *D); |
| Decl *VisitObjCTypeParamDecl(ObjCTypeParamDecl *D); |
| Decl *VisitObjCCategoryDecl(ObjCCategoryDecl *D); |
| Decl *VisitObjCProtocolDecl(ObjCProtocolDecl *D); |
| Decl *VisitLinkageSpecDecl(LinkageSpecDecl *D); |
| Decl *VisitUsingDecl(UsingDecl *D); |
| Decl *VisitUsingShadowDecl(UsingShadowDecl *D); |
| Decl *VisitUsingDirectiveDecl(UsingDirectiveDecl *D); |
| Decl *VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D); |
| Decl *VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D); |
| |
| |
| ObjCTypeParamList *ImportObjCTypeParamList(ObjCTypeParamList *list); |
| Decl *VisitObjCInterfaceDecl(ObjCInterfaceDecl *D); |
| Decl *VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); |
| Decl *VisitObjCImplementationDecl(ObjCImplementationDecl *D); |
| Decl *VisitObjCPropertyDecl(ObjCPropertyDecl *D); |
| Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D); |
| Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D); |
| Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D); |
| Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D); |
| Decl *VisitClassTemplateDecl(ClassTemplateDecl *D); |
| Decl *VisitClassTemplateSpecializationDecl( |
| ClassTemplateSpecializationDecl *D); |
| Decl *VisitVarTemplateDecl(VarTemplateDecl *D); |
| Decl *VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D); |
| Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D); |
| |
| // Importing statements |
| DeclGroupRef ImportDeclGroup(DeclGroupRef DG); |
| |
| Stmt *VisitStmt(Stmt *S); |
| Stmt *VisitGCCAsmStmt(GCCAsmStmt *S); |
| Stmt *VisitDeclStmt(DeclStmt *S); |
| Stmt *VisitNullStmt(NullStmt *S); |
| Stmt *VisitCompoundStmt(CompoundStmt *S); |
| Stmt *VisitCaseStmt(CaseStmt *S); |
| Stmt *VisitDefaultStmt(DefaultStmt *S); |
| Stmt *VisitLabelStmt(LabelStmt *S); |
| Stmt *VisitAttributedStmt(AttributedStmt *S); |
| Stmt *VisitIfStmt(IfStmt *S); |
| Stmt *VisitSwitchStmt(SwitchStmt *S); |
| Stmt *VisitWhileStmt(WhileStmt *S); |
| Stmt *VisitDoStmt(DoStmt *S); |
| Stmt *VisitForStmt(ForStmt *S); |
| Stmt *VisitGotoStmt(GotoStmt *S); |
| Stmt *VisitIndirectGotoStmt(IndirectGotoStmt *S); |
| Stmt *VisitContinueStmt(ContinueStmt *S); |
| Stmt *VisitBreakStmt(BreakStmt *S); |
| Stmt *VisitReturnStmt(ReturnStmt *S); |
| // FIXME: MSAsmStmt |
| // FIXME: SEHExceptStmt |
| // FIXME: SEHFinallyStmt |
| // FIXME: SEHTryStmt |
| // FIXME: SEHLeaveStmt |
| // FIXME: CapturedStmt |
| Stmt *VisitCXXCatchStmt(CXXCatchStmt *S); |
| Stmt *VisitCXXTryStmt(CXXTryStmt *S); |
| Stmt *VisitCXXForRangeStmt(CXXForRangeStmt *S); |
| // FIXME: MSDependentExistsStmt |
| Stmt *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S); |
| Stmt *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); |
| Stmt *VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S); |
| Stmt *VisitObjCAtTryStmt(ObjCAtTryStmt *S); |
| Stmt *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S); |
| Stmt *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); |
| Stmt *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S); |
| |
| // Importing expressions |
| Expr *VisitExpr(Expr *E); |
| Expr *VisitVAArgExpr(VAArgExpr *E); |
| Expr *VisitGNUNullExpr(GNUNullExpr *E); |
| Expr *VisitPredefinedExpr(PredefinedExpr *E); |
| Expr *VisitDeclRefExpr(DeclRefExpr *E); |
| Expr *VisitImplicitValueInitExpr(ImplicitValueInitExpr *ILE); |
| Expr *VisitDesignatedInitExpr(DesignatedInitExpr *E); |
| Expr *VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E); |
| Expr *VisitIntegerLiteral(IntegerLiteral *E); |
| Expr *VisitFloatingLiteral(FloatingLiteral *E); |
| Expr *VisitCharacterLiteral(CharacterLiteral *E); |
| Expr *VisitStringLiteral(StringLiteral *E); |
| Expr *VisitCompoundLiteralExpr(CompoundLiteralExpr *E); |
| Expr *VisitAtomicExpr(AtomicExpr *E); |
| Expr *VisitAddrLabelExpr(AddrLabelExpr *E); |
| Expr *VisitParenExpr(ParenExpr *E); |
| Expr *VisitParenListExpr(ParenListExpr *E); |
| Expr *VisitStmtExpr(StmtExpr *E); |
| Expr *VisitUnaryOperator(UnaryOperator *E); |
| Expr *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E); |
| Expr *VisitBinaryOperator(BinaryOperator *E); |
| Expr *VisitConditionalOperator(ConditionalOperator *E); |
| Expr *VisitBinaryConditionalOperator(BinaryConditionalOperator *E); |
| Expr *VisitOpaqueValueExpr(OpaqueValueExpr *E); |
| Expr *VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E); |
| Expr *VisitExpressionTraitExpr(ExpressionTraitExpr *E); |
| Expr *VisitArraySubscriptExpr(ArraySubscriptExpr *E); |
| Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E); |
| Expr *VisitImplicitCastExpr(ImplicitCastExpr *E); |
| Expr *VisitExplicitCastExpr(ExplicitCastExpr *E); |
| Expr *VisitOffsetOfExpr(OffsetOfExpr *OE); |
| Expr *VisitCXXThrowExpr(CXXThrowExpr *E); |
| Expr *VisitCXXNoexceptExpr(CXXNoexceptExpr *E); |
| Expr *VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E); |
| Expr *VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E); |
| Expr *VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E); |
| Expr *VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *CE); |
| Expr *VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E); |
| Expr *VisitPackExpansionExpr(PackExpansionExpr *E); |
| Expr *VisitCXXNewExpr(CXXNewExpr *CE); |
| Expr *VisitCXXDeleteExpr(CXXDeleteExpr *E); |
| Expr *VisitCXXConstructExpr(CXXConstructExpr *E); |
| Expr *VisitCXXMemberCallExpr(CXXMemberCallExpr *E); |
| Expr *VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E); |
| Expr *VisitExprWithCleanups(ExprWithCleanups *EWC); |
| Expr *VisitCXXThisExpr(CXXThisExpr *E); |
| Expr *VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E); |
| Expr *VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E); |
| Expr *VisitMemberExpr(MemberExpr *E); |
| Expr *VisitCallExpr(CallExpr *E); |
| Expr *VisitInitListExpr(InitListExpr *E); |
| Expr *VisitArrayInitLoopExpr(ArrayInitLoopExpr *E); |
| Expr *VisitArrayInitIndexExpr(ArrayInitIndexExpr *E); |
| Expr *VisitCXXDefaultInitExpr(CXXDefaultInitExpr *E); |
| Expr *VisitCXXNamedCastExpr(CXXNamedCastExpr *E); |
| Expr *VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *E); |
| Expr *VisitTypeTraitExpr(TypeTraitExpr *E); |
| |
| |
| template<typename IIter, typename OIter> |
| void ImportArray(IIter Ibegin, IIter Iend, OIter Obegin) { |
| typedef typename std::remove_reference<decltype(*Obegin)>::type ItemT; |
| ASTImporter &ImporterRef = Importer; |
| std::transform(Ibegin, Iend, Obegin, |
| [&ImporterRef](ItemT From) -> ItemT { |
| return ImporterRef.Import(From); |
| }); |
| } |
| |
| template<typename IIter, typename OIter> |
| bool ImportArrayChecked(IIter Ibegin, IIter Iend, OIter Obegin) { |
| typedef typename std::remove_reference<decltype(**Obegin)>::type ItemT; |
| ASTImporter &ImporterRef = Importer; |
| bool Failed = false; |
| std::transform(Ibegin, Iend, Obegin, |
| [&ImporterRef, &Failed](ItemT *From) -> ItemT * { |
| ItemT *To = cast_or_null<ItemT>( |
| ImporterRef.Import(From)); |
| if (!To && From) |
| Failed = true; |
| return To; |
| }); |
| return Failed; |
| } |
| |
| template<typename InContainerTy, typename OutContainerTy> |
| bool ImportContainerChecked(const InContainerTy &InContainer, |
| OutContainerTy &OutContainer) { |
| return ImportArrayChecked(InContainer.begin(), InContainer.end(), |
| OutContainer.begin()); |
| } |
| |
| template<typename InContainerTy, typename OIter> |
| bool ImportArrayChecked(const InContainerTy &InContainer, OIter Obegin) { |
| return ImportArrayChecked(InContainer.begin(), InContainer.end(), Obegin); |
| } |
| |
| // Importing overrides. |
| void ImportOverrides(CXXMethodDecl *ToMethod, CXXMethodDecl *FromMethod); |
| }; |
| } |
| |
| //---------------------------------------------------------------------------- |
| // Import Types |
| //---------------------------------------------------------------------------- |
| |
| using namespace clang; |
| |
| QualType ASTNodeImporter::VisitType(const Type *T) { |
| Importer.FromDiag(SourceLocation(), diag::err_unsupported_ast_node) |
| << T->getTypeClassName(); |
| return QualType(); |
| } |
| |
| QualType ASTNodeImporter::VisitAtomicType(const AtomicType *T){ |
| QualType UnderlyingType = Importer.Import(T->getValueType()); |
| if(UnderlyingType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getAtomicType(UnderlyingType); |
| } |
| |
| QualType ASTNodeImporter::VisitBuiltinType(const BuiltinType *T) { |
| switch (T->getKind()) { |
| #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ |
| case BuiltinType::Id: \ |
| return Importer.getToContext().SingletonId; |
| #include "clang/Basic/OpenCLImageTypes.def" |
| #define SHARED_SINGLETON_TYPE(Expansion) |
| #define BUILTIN_TYPE(Id, SingletonId) \ |
| case BuiltinType::Id: return Importer.getToContext().SingletonId; |
| #include "clang/AST/BuiltinTypes.def" |
| |
| // FIXME: for Char16, Char32, and NullPtr, make sure that the "to" |
| // context supports C++. |
| |
| // FIXME: for ObjCId, ObjCClass, and ObjCSel, make sure that the "to" |
| // context supports ObjC. |
| |
| case BuiltinType::Char_U: |
| // The context we're importing from has an unsigned 'char'. If we're |
| // importing into a context with a signed 'char', translate to |
| // 'unsigned char' instead. |
| if (Importer.getToContext().getLangOpts().CharIsSigned) |
| return Importer.getToContext().UnsignedCharTy; |
| |
| return Importer.getToContext().CharTy; |
| |
| case BuiltinType::Char_S: |
| // The context we're importing from has an unsigned 'char'. If we're |
| // importing into a context with a signed 'char', translate to |
| // 'unsigned char' instead. |
| if (!Importer.getToContext().getLangOpts().CharIsSigned) |
| return Importer.getToContext().SignedCharTy; |
| |
| return Importer.getToContext().CharTy; |
| |
| case BuiltinType::WChar_S: |
| case BuiltinType::WChar_U: |
| // FIXME: If not in C++, shall we translate to the C equivalent of |
| // wchar_t? |
| return Importer.getToContext().WCharTy; |
| } |
| |
| llvm_unreachable("Invalid BuiltinType Kind!"); |
| } |
| |
| QualType ASTNodeImporter::VisitDecayedType(const DecayedType *T) { |
| QualType OrigT = Importer.Import(T->getOriginalType()); |
| if (OrigT.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getDecayedType(OrigT); |
| } |
| |
| QualType ASTNodeImporter::VisitComplexType(const ComplexType *T) { |
| QualType ToElementType = Importer.Import(T->getElementType()); |
| if (ToElementType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getComplexType(ToElementType); |
| } |
| |
| QualType ASTNodeImporter::VisitPointerType(const PointerType *T) { |
| QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| if (ToPointeeType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getPointerType(ToPointeeType); |
| } |
| |
| QualType ASTNodeImporter::VisitBlockPointerType(const BlockPointerType *T) { |
| // FIXME: Check for blocks support in "to" context. |
| QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| if (ToPointeeType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getBlockPointerType(ToPointeeType); |
| } |
| |
| QualType |
| ASTNodeImporter::VisitLValueReferenceType(const LValueReferenceType *T) { |
| // FIXME: Check for C++ support in "to" context. |
| QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); |
| if (ToPointeeType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getLValueReferenceType(ToPointeeType); |
| } |
| |
| QualType |
| ASTNodeImporter::VisitRValueReferenceType(const RValueReferenceType *T) { |
| // FIXME: Check for C++0x support in "to" context. |
| QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); |
| if (ToPointeeType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getRValueReferenceType(ToPointeeType); |
| } |
| |
| QualType ASTNodeImporter::VisitMemberPointerType(const MemberPointerType *T) { |
| // FIXME: Check for C++ support in "to" context. |
| QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| if (ToPointeeType.isNull()) |
| return QualType(); |
| |
| QualType ClassType = Importer.Import(QualType(T->getClass(), 0)); |
| return Importer.getToContext().getMemberPointerType(ToPointeeType, |
| ClassType.getTypePtr()); |
| } |
| |
| QualType ASTNodeImporter::VisitConstantArrayType(const ConstantArrayType *T) { |
| QualType ToElementType = Importer.Import(T->getElementType()); |
| if (ToElementType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getConstantArrayType(ToElementType, |
| T->getSize(), |
| T->getSizeModifier(), |
| T->getIndexTypeCVRQualifiers()); |
| } |
| |
| QualType |
| ASTNodeImporter::VisitIncompleteArrayType(const IncompleteArrayType *T) { |
| QualType ToElementType = Importer.Import(T->getElementType()); |
| if (ToElementType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getIncompleteArrayType(ToElementType, |
| T->getSizeModifier(), |
| T->getIndexTypeCVRQualifiers()); |
| } |
| |
| QualType ASTNodeImporter::VisitVariableArrayType(const VariableArrayType *T) { |
| QualType ToElementType = Importer.Import(T->getElementType()); |
| if (ToElementType.isNull()) |
| return QualType(); |
| |
| Expr *Size = Importer.Import(T->getSizeExpr()); |
| if (!Size) |
| return QualType(); |
| |
| SourceRange Brackets = Importer.Import(T->getBracketsRange()); |
| return Importer.getToContext().getVariableArrayType(ToElementType, Size, |
| T->getSizeModifier(), |
| T->getIndexTypeCVRQualifiers(), |
| Brackets); |
| } |
| |
| QualType ASTNodeImporter::VisitVectorType(const VectorType *T) { |
| QualType ToElementType = Importer.Import(T->getElementType()); |
| if (ToElementType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getVectorType(ToElementType, |
| T->getNumElements(), |
| T->getVectorKind()); |
| } |
| |
| QualType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) { |
| QualType ToElementType = Importer.Import(T->getElementType()); |
| if (ToElementType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getExtVectorType(ToElementType, |
| T->getNumElements()); |
| } |
| |
| QualType |
| ASTNodeImporter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) { |
| // FIXME: What happens if we're importing a function without a prototype |
| // into C++? Should we make it variadic? |
| QualType ToResultType = Importer.Import(T->getReturnType()); |
| if (ToResultType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getFunctionNoProtoType(ToResultType, |
| T->getExtInfo()); |
| } |
| |
| QualType ASTNodeImporter::VisitFunctionProtoType(const FunctionProtoType *T) { |
| QualType ToResultType = Importer.Import(T->getReturnType()); |
| if (ToResultType.isNull()) |
| return QualType(); |
| |
| // Import argument types |
| SmallVector<QualType, 4> ArgTypes; |
| for (const auto &A : T->param_types()) { |
| QualType ArgType = Importer.Import(A); |
| if (ArgType.isNull()) |
| return QualType(); |
| ArgTypes.push_back(ArgType); |
| } |
| |
| // Import exception types |
| SmallVector<QualType, 4> ExceptionTypes; |
| for (const auto &E : T->exceptions()) { |
| QualType ExceptionType = Importer.Import(E); |
| if (ExceptionType.isNull()) |
| return QualType(); |
| ExceptionTypes.push_back(ExceptionType); |
| } |
| |
| FunctionProtoType::ExtProtoInfo FromEPI = T->getExtProtoInfo(); |
| FunctionProtoType::ExtProtoInfo ToEPI; |
| |
| ToEPI.ExtInfo = FromEPI.ExtInfo; |
| ToEPI.Variadic = FromEPI.Variadic; |
| ToEPI.HasTrailingReturn = FromEPI.HasTrailingReturn; |
| ToEPI.TypeQuals = FromEPI.TypeQuals; |
| ToEPI.RefQualifier = FromEPI.RefQualifier; |
| ToEPI.ExceptionSpec.Type = FromEPI.ExceptionSpec.Type; |
| ToEPI.ExceptionSpec.Exceptions = ExceptionTypes; |
| ToEPI.ExceptionSpec.NoexceptExpr = |
| Importer.Import(FromEPI.ExceptionSpec.NoexceptExpr); |
| ToEPI.ExceptionSpec.SourceDecl = cast_or_null<FunctionDecl>( |
| Importer.Import(FromEPI.ExceptionSpec.SourceDecl)); |
| ToEPI.ExceptionSpec.SourceTemplate = cast_or_null<FunctionDecl>( |
| Importer.Import(FromEPI.ExceptionSpec.SourceTemplate)); |
| |
| return Importer.getToContext().getFunctionType(ToResultType, ArgTypes, ToEPI); |
| } |
| |
| QualType ASTNodeImporter::VisitUnresolvedUsingType( |
| const UnresolvedUsingType *T) { |
| UnresolvedUsingTypenameDecl *ToD = cast_or_null<UnresolvedUsingTypenameDecl>( |
| Importer.Import(T->getDecl())); |
| if (!ToD) |
| return QualType(); |
| |
| UnresolvedUsingTypenameDecl *ToPrevD = |
| cast_or_null<UnresolvedUsingTypenameDecl>( |
| Importer.Import(T->getDecl()->getPreviousDecl())); |
| if (!ToPrevD && T->getDecl()->getPreviousDecl()) |
| return QualType(); |
| |
| return Importer.getToContext().getTypeDeclType(ToD, ToPrevD); |
| } |
| |
| QualType ASTNodeImporter::VisitParenType(const ParenType *T) { |
| QualType ToInnerType = Importer.Import(T->getInnerType()); |
| if (ToInnerType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getParenType(ToInnerType); |
| } |
| |
| QualType ASTNodeImporter::VisitTypedefType(const TypedefType *T) { |
| TypedefNameDecl *ToDecl |
| = dyn_cast_or_null<TypedefNameDecl>(Importer.Import(T->getDecl())); |
| if (!ToDecl) |
| return QualType(); |
| |
| return Importer.getToContext().getTypeDeclType(ToDecl); |
| } |
| |
| QualType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) { |
| Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); |
| if (!ToExpr) |
| return QualType(); |
| |
| return Importer.getToContext().getTypeOfExprType(ToExpr); |
| } |
| |
| QualType ASTNodeImporter::VisitTypeOfType(const TypeOfType *T) { |
| QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType()); |
| if (ToUnderlyingType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getTypeOfType(ToUnderlyingType); |
| } |
| |
| QualType ASTNodeImporter::VisitDecltypeType(const DecltypeType *T) { |
| // FIXME: Make sure that the "to" context supports C++0x! |
| Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); |
| if (!ToExpr) |
| return QualType(); |
| |
| QualType UnderlyingType = Importer.Import(T->getUnderlyingType()); |
| if (UnderlyingType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getDecltypeType(ToExpr, UnderlyingType); |
| } |
| |
| QualType ASTNodeImporter::VisitUnaryTransformType(const UnaryTransformType *T) { |
| QualType ToBaseType = Importer.Import(T->getBaseType()); |
| QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType()); |
| if (ToBaseType.isNull() || ToUnderlyingType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getUnaryTransformType(ToBaseType, |
| ToUnderlyingType, |
| T->getUTTKind()); |
| } |
| |
| QualType ASTNodeImporter::VisitAutoType(const AutoType *T) { |
| // FIXME: Make sure that the "to" context supports C++11! |
| QualType FromDeduced = T->getDeducedType(); |
| QualType ToDeduced; |
| if (!FromDeduced.isNull()) { |
| ToDeduced = Importer.Import(FromDeduced); |
| if (ToDeduced.isNull()) |
| return QualType(); |
| } |
| |
| return Importer.getToContext().getAutoType(ToDeduced, T->getKeyword(), |
| /*IsDependent*/false); |
| } |
| |
| QualType ASTNodeImporter::VisitInjectedClassNameType( |
| const InjectedClassNameType *T) { |
| CXXRecordDecl *D = cast_or_null<CXXRecordDecl>(Importer.Import(T->getDecl())); |
| if (!D) |
| return QualType(); |
| |
| QualType InjType = Importer.Import(T->getInjectedSpecializationType()); |
| if (InjType.isNull()) |
| return QualType(); |
| |
| // FIXME: ASTContext::getInjectedClassNameType is not suitable for AST reading |
| // See comments in InjectedClassNameType definition for details |
| // return Importer.getToContext().getInjectedClassNameType(D, InjType); |
| enum { |
| TypeAlignmentInBits = 4, |
| TypeAlignment = 1 << TypeAlignmentInBits |
| }; |
| |
| return QualType(new (Importer.getToContext(), TypeAlignment) |
| InjectedClassNameType(D, InjType), 0); |
| } |
| |
| QualType ASTNodeImporter::VisitRecordType(const RecordType *T) { |
| RecordDecl *ToDecl |
| = dyn_cast_or_null<RecordDecl>(Importer.Import(T->getDecl())); |
| if (!ToDecl) |
| return QualType(); |
| |
| return Importer.getToContext().getTagDeclType(ToDecl); |
| } |
| |
| QualType ASTNodeImporter::VisitEnumType(const EnumType *T) { |
| EnumDecl *ToDecl |
| = dyn_cast_or_null<EnumDecl>(Importer.Import(T->getDecl())); |
| if (!ToDecl) |
| return QualType(); |
| |
| return Importer.getToContext().getTagDeclType(ToDecl); |
| } |
| |
| QualType ASTNodeImporter::VisitAttributedType(const AttributedType *T) { |
| QualType FromModifiedType = T->getModifiedType(); |
| QualType FromEquivalentType = T->getEquivalentType(); |
| QualType ToModifiedType; |
| QualType ToEquivalentType; |
| |
| if (!FromModifiedType.isNull()) { |
| ToModifiedType = Importer.Import(FromModifiedType); |
| if (ToModifiedType.isNull()) |
| return QualType(); |
| } |
| if (!FromEquivalentType.isNull()) { |
| ToEquivalentType = Importer.Import(FromEquivalentType); |
| if (ToEquivalentType.isNull()) |
| return QualType(); |
| } |
| |
| return Importer.getToContext().getAttributedType(T->getAttrKind(), |
| ToModifiedType, ToEquivalentType); |
| } |
| |
| |
| QualType ASTNodeImporter::VisitTemplateTypeParmType( |
| const TemplateTypeParmType *T) { |
| TemplateTypeParmDecl *ParmDecl = |
| cast_or_null<TemplateTypeParmDecl>(Importer.Import(T->getDecl())); |
| if (!ParmDecl && T->getDecl()) |
| return QualType(); |
| |
| return Importer.getToContext().getTemplateTypeParmType( |
| T->getDepth(), T->getIndex(), T->isParameterPack(), ParmDecl); |
| } |
| |
| QualType ASTNodeImporter::VisitSubstTemplateTypeParmType( |
| const SubstTemplateTypeParmType *T) { |
| const TemplateTypeParmType *Replaced = |
| cast_or_null<TemplateTypeParmType>(Importer.Import( |
| QualType(T->getReplacedParameter(), 0)).getTypePtr()); |
| if (!Replaced) |
| return QualType(); |
| |
| QualType Replacement = Importer.Import(T->getReplacementType()); |
| if (Replacement.isNull()) |
| return QualType(); |
| Replacement = Replacement.getCanonicalType(); |
| |
| return Importer.getToContext().getSubstTemplateTypeParmType( |
| Replaced, Replacement); |
| } |
| |
| QualType ASTNodeImporter::VisitTemplateSpecializationType( |
| const TemplateSpecializationType *T) { |
| TemplateName ToTemplate = Importer.Import(T->getTemplateName()); |
| if (ToTemplate.isNull()) |
| return QualType(); |
| |
| SmallVector<TemplateArgument, 2> ToTemplateArgs; |
| if (ImportTemplateArguments(T->getArgs(), T->getNumArgs(), ToTemplateArgs)) |
| return QualType(); |
| |
| QualType ToCanonType; |
| if (!QualType(T, 0).isCanonical()) { |
| QualType FromCanonType |
| = Importer.getFromContext().getCanonicalType(QualType(T, 0)); |
| ToCanonType =Importer.Import(FromCanonType); |
| if (ToCanonType.isNull()) |
| return QualType(); |
| } |
| return Importer.getToContext().getTemplateSpecializationType(ToTemplate, |
| ToTemplateArgs, |
| ToCanonType); |
| } |
| |
| QualType ASTNodeImporter::VisitElaboratedType(const ElaboratedType *T) { |
| NestedNameSpecifier *ToQualifier = nullptr; |
| // Note: the qualifier in an ElaboratedType is optional. |
| if (T->getQualifier()) { |
| ToQualifier = Importer.Import(T->getQualifier()); |
| if (!ToQualifier) |
| return QualType(); |
| } |
| |
| QualType ToNamedType = Importer.Import(T->getNamedType()); |
| if (ToNamedType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getElaboratedType(T->getKeyword(), |
| ToQualifier, ToNamedType); |
| } |
| |
| QualType ASTNodeImporter::VisitPackExpansionType(const PackExpansionType *T) { |
| QualType Pattern = Importer.Import(T->getPattern()); |
| if (Pattern.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getPackExpansionType(Pattern, |
| T->getNumExpansions()); |
| } |
| |
| QualType ASTNodeImporter::VisitObjCInterfaceType(const ObjCInterfaceType *T) { |
| ObjCInterfaceDecl *Class |
| = dyn_cast_or_null<ObjCInterfaceDecl>(Importer.Import(T->getDecl())); |
| if (!Class) |
| return QualType(); |
| |
| return Importer.getToContext().getObjCInterfaceType(Class); |
| } |
| |
| QualType ASTNodeImporter::VisitObjCObjectType(const ObjCObjectType *T) { |
| QualType ToBaseType = Importer.Import(T->getBaseType()); |
| if (ToBaseType.isNull()) |
| return QualType(); |
| |
| SmallVector<QualType, 4> TypeArgs; |
| for (auto TypeArg : T->getTypeArgsAsWritten()) { |
| QualType ImportedTypeArg = Importer.Import(TypeArg); |
| if (ImportedTypeArg.isNull()) |
| return QualType(); |
| |
| TypeArgs.push_back(ImportedTypeArg); |
| } |
| |
| SmallVector<ObjCProtocolDecl *, 4> Protocols; |
| for (auto *P : T->quals()) { |
| ObjCProtocolDecl *Protocol |
| = dyn_cast_or_null<ObjCProtocolDecl>(Importer.Import(P)); |
| if (!Protocol) |
| return QualType(); |
| Protocols.push_back(Protocol); |
| } |
| |
| return Importer.getToContext().getObjCObjectType(ToBaseType, TypeArgs, |
| Protocols, |
| T->isKindOfTypeAsWritten()); |
| } |
| |
| QualType |
| ASTNodeImporter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) { |
| QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| if (ToPointeeType.isNull()) |
| return QualType(); |
| |
| return Importer.getToContext().getObjCObjectPointerType(ToPointeeType); |
| } |
| |
| //---------------------------------------------------------------------------- |
| // Import Declarations |
| //---------------------------------------------------------------------------- |
| bool ASTNodeImporter::ImportDeclParts(NamedDecl *D, DeclContext *&DC, |
| DeclContext *&LexicalDC, |
| DeclarationName &Name, |
| NamedDecl *&ToD, |
| SourceLocation &Loc) { |
| // Import the context of this declaration. |
| DC = Importer.ImportContext(D->getDeclContext()); |
| if (!DC) |
| return true; |
| |
| LexicalDC = DC; |
| if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| if (!LexicalDC) |
| return true; |
| } |
| |
| // Import the name of this declaration. |
| Name = Importer.Import(D->getDeclName()); |
| if (D->getDeclName() && !Name) |
| return true; |
| |
| // Import the location of this declaration. |
| Loc = Importer.Import(D->getLocation()); |
| ToD = cast_or_null<NamedDecl>(Importer.GetAlreadyImportedOrNull(D)); |
| return false; |
| } |
| |
| void ASTNodeImporter::ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD) { |
| if (!FromD) |
| return; |
| |
| if (!ToD) { |
| ToD = Importer.Import(FromD); |
| if (!ToD) |
| return; |
| } |
| |
| if (RecordDecl *FromRecord = dyn_cast<RecordDecl>(FromD)) { |
| if (RecordDecl *ToRecord = cast_or_null<RecordDecl>(ToD)) { |
| if (FromRecord->getDefinition() && FromRecord->isCompleteDefinition() && !ToRecord->getDefinition()) { |
| ImportDefinition(FromRecord, ToRecord); |
| } |
| } |
| return; |
| } |
| |
| if (EnumDecl *FromEnum = dyn_cast<EnumDecl>(FromD)) { |
| if (EnumDecl *ToEnum = cast_or_null<EnumDecl>(ToD)) { |
| if (FromEnum->getDefinition() && !ToEnum->getDefinition()) { |
| ImportDefinition(FromEnum, ToEnum); |
| } |
| } |
| return; |
| } |
| } |
| |
| void |
| ASTNodeImporter::ImportDeclarationNameLoc(const DeclarationNameInfo &From, |
| DeclarationNameInfo& To) { |
| // NOTE: To.Name and To.Loc are already imported. |
| // We only have to import To.LocInfo. |
| switch (To.getName().getNameKind()) { |
| case DeclarationName::Identifier: |
| case DeclarationName::ObjCZeroArgSelector: |
| case DeclarationName::ObjCOneArgSelector: |
| case DeclarationName::ObjCMultiArgSelector: |
| case DeclarationName::CXXUsingDirective: |
| case DeclarationName::CXXDeductionGuideName: |
| return; |
| |
| case DeclarationName::CXXOperatorName: { |
| SourceRange Range = From.getCXXOperatorNameRange(); |
| To.setCXXOperatorNameRange(Importer.Import(Range)); |
| return; |
| } |
| case DeclarationName::CXXLiteralOperatorName: { |
| SourceLocation Loc = From.getCXXLiteralOperatorNameLoc(); |
| To.setCXXLiteralOperatorNameLoc(Importer.Import(Loc)); |
| return; |
| } |
| case DeclarationName::CXXConstructorName: |
| case DeclarationName::CXXDestructorName: |
| case DeclarationName::CXXConversionFunctionName: { |
| TypeSourceInfo *FromTInfo = From.getNamedTypeInfo(); |
| To.setNamedTypeInfo(Importer.Import(FromTInfo)); |
| return; |
| } |
| } |
| llvm_unreachable("Unknown name kind."); |
| } |
| |
| void ASTNodeImporter::ImportDeclContext(DeclContext *FromDC, bool ForceImport) { |
| if (Importer.isMinimalImport() && !ForceImport) { |
| Importer.ImportContext(FromDC); |
| return; |
| } |
| |
| for (auto *From : FromDC->decls()) |
| Importer.Import(From); |
| } |
| |
| bool ASTNodeImporter::ImportDefinition(RecordDecl *From, RecordDecl *To, |
| ImportDefinitionKind Kind) { |
| if (To->getDefinition() || To->isBeingDefined()) { |
| if (Kind == IDK_Everything) |
| ImportDeclContext(From, /*ForceImport=*/true); |
| |
| return false; |
| } |
| |
| To->startDefinition(); |
| |
| // Add base classes. |
| if (CXXRecordDecl *ToCXX = dyn_cast<CXXRecordDecl>(To)) { |
| CXXRecordDecl *FromCXX = cast<CXXRecordDecl>(From); |
| |
| struct CXXRecordDecl::DefinitionData &ToData = ToCXX->data(); |
| struct CXXRecordDecl::DefinitionData &FromData = FromCXX->data(); |
| ToData.UserDeclaredConstructor = FromData.UserDeclaredConstructor; |
| ToData.UserDeclaredSpecialMembers = FromData.UserDeclaredSpecialMembers; |
| ToData.Aggregate = FromData.Aggregate; |
| ToData.PlainOldData = FromData.PlainOldData; |
| ToData.Empty = FromData.Empty; |
| ToData.Polymorphic = FromData.Polymorphic; |
| ToData.Abstract = FromData.Abstract; |
| ToData.IsStandardLayout = FromData.IsStandardLayout; |
| ToData.HasNoNonEmptyBases = FromData.HasNoNonEmptyBases; |
| ToData.HasPrivateFields = FromData.HasPrivateFields; |
| ToData.HasProtectedFields = FromData.HasProtectedFields; |
| ToData.HasPublicFields = FromData.HasPublicFields; |
| ToData.HasMutableFields = FromData.HasMutableFields; |
| ToData.HasVariantMembers = FromData.HasVariantMembers; |
| ToData.HasOnlyCMembers = FromData.HasOnlyCMembers; |
| ToData.HasInClassInitializer = FromData.HasInClassInitializer; |
| ToData.HasUninitializedReferenceMember |
| = FromData.HasUninitializedReferenceMember; |
| ToData.HasUninitializedFields = FromData.HasUninitializedFields; |
| ToData.HasInheritedConstructor = FromData.HasInheritedConstructor; |
| ToData.HasInheritedAssignment = FromData.HasInheritedAssignment; |
| ToData.NeedOverloadResolutionForCopyConstructor |
| = FromData.NeedOverloadResolutionForCopyConstructor; |
| ToData.NeedOverloadResolutionForMoveConstructor |
| = FromData.NeedOverloadResolutionForMoveConstructor; |
| ToData.NeedOverloadResolutionForMoveAssignment |
| = FromData.NeedOverloadResolutionForMoveAssignment; |
| ToData.NeedOverloadResolutionForDestructor |
| = FromData.NeedOverloadResolutionForDestructor; |
| ToData.DefaultedCopyConstructorIsDeleted |
| = FromData.DefaultedCopyConstructorIsDeleted; |
| ToData.DefaultedMoveConstructorIsDeleted |
| = FromData.DefaultedMoveConstructorIsDeleted; |
| ToData.DefaultedMoveAssignmentIsDeleted |
| = FromData.DefaultedMoveAssignmentIsDeleted; |
| ToData.DefaultedDestructorIsDeleted = FromData.DefaultedDestructorIsDeleted; |
| ToData.HasTrivialSpecialMembers = FromData.HasTrivialSpecialMembers; |
| ToData.HasIrrelevantDestructor = FromData.HasIrrelevantDestructor; |
| ToData.HasConstexprNonCopyMoveConstructor |
| = FromData.HasConstexprNonCopyMoveConstructor; |
| ToData.HasDefaultedDefaultConstructor |
| = FromData.HasDefaultedDefaultConstructor; |
| ToData.CanPassInRegisters = FromData.CanPassInRegisters; |
| ToData.DefaultedDefaultConstructorIsConstexpr |
| = FromData.DefaultedDefaultConstructorIsConstexpr; |
| ToData.HasConstexprDefaultConstructor |
| = FromData.HasConstexprDefaultConstructor; |
| ToData.HasNonLiteralTypeFieldsOrBases |
| = FromData.HasNonLiteralTypeFieldsOrBases; |
| // ComputedVisibleConversions not imported. |
| ToData.UserProvidedDefaultConstructor |
| = FromData.UserProvidedDefaultConstructor; |
| ToData.DeclaredSpecialMembers = FromData.DeclaredSpecialMembers; |
| ToData.ImplicitCopyConstructorCanHaveConstParamForVBase |
| = FromData.ImplicitCopyConstructorCanHaveConstParamForVBase; |
| ToData.ImplicitCopyConstructorCanHaveConstParamForNonVBase |
| = FromData.ImplicitCopyConstructorCanHaveConstParamForNonVBase; |
| ToData.ImplicitCopyAssignmentHasConstParam |
| = FromData.ImplicitCopyAssignmentHasConstParam; |
| ToData.HasDeclaredCopyConstructorWithConstParam |
| = FromData.HasDeclaredCopyConstructorWithConstParam; |
| ToData.HasDeclaredCopyAssignmentWithConstParam |
| = FromData.HasDeclaredCopyAssignmentWithConstParam; |
| ToData.IsLambda = FromData.IsLambda; |
| |
| SmallVector<CXXBaseSpecifier *, 4> Bases; |
| for (const auto &Base1 : FromCXX->bases()) { |
| QualType T = Importer.Import(Base1.getType()); |
| if (T.isNull()) |
| return true; |
| |
| SourceLocation EllipsisLoc; |
| if (Base1.isPackExpansion()) |
| EllipsisLoc = Importer.Import(Base1.getEllipsisLoc()); |
| |
| // Ensure that we have a definition for the base. |
| ImportDefinitionIfNeeded(Base1.getType()->getAsCXXRecordDecl()); |
| |
| Bases.push_back( |
| new (Importer.getToContext()) |
| CXXBaseSpecifier(Importer.Import(Base1.getSourceRange()), |
| Base1.isVirtual(), |
| Base1.isBaseOfClass(), |
| Base1.getAccessSpecifierAsWritten(), |
| Importer.Import(Base1.getTypeSourceInfo()), |
| EllipsisLoc)); |
| } |
| if (!Bases.empty()) |
| ToCXX->setBases(Bases.data(), Bases.size()); |
| } |
| |
| if (shouldForceImportDeclContext(Kind)) |
| ImportDeclContext(From, /*ForceImport=*/true); |
| |
| To->completeDefinition(); |
| return false; |
| } |
| |
| bool ASTNodeImporter::ImportDefinition(VarDecl *From, VarDecl *To, |
| ImportDefinitionKind Kind) { |
| if (To->getAnyInitializer()) |
| return false; |
| |
| // FIXME: Can we really import any initializer? Alternatively, we could force |
| // ourselves to import every declaration of a variable and then only use |
| // getInit() here. |
| To->setInit(Importer.Import(const_cast<Expr *>(From->getAnyInitializer()))); |
| |
| // FIXME: Other bits to merge? |
| |
| return false; |
| } |
| |
| bool ASTNodeImporter::ImportDefinition(EnumDecl *From, EnumDecl *To, |
| ImportDefinitionKind Kind) { |
| if (To->getDefinition() || To->isBeingDefined()) { |
| if (Kind == IDK_Everything) |
| ImportDeclContext(From, /*ForceImport=*/true); |
| return false; |
| } |
| |
| To->startDefinition(); |
| |
| QualType T = Importer.Import(Importer.getFromContext().getTypeDeclType(From)); |
| if (T.isNull()) |
| return true; |
| |
| QualType ToPromotionType = Importer.Import(From->getPromotionType()); |
| if (ToPromotionType.isNull()) |
| return true; |
| |
| if (shouldForceImportDeclContext(Kind)) |
| ImportDeclContext(From, /*ForceImport=*/true); |
| |
| // FIXME: we might need to merge the number of positive or negative bits |
| // if the enumerator lists don't match. |
| To->completeDefinition(T, ToPromotionType, |
| From->getNumPositiveBits(), |
| From->getNumNegativeBits()); |
| return false; |
| } |
| |
| TemplateParameterList *ASTNodeImporter::ImportTemplateParameterList( |
| TemplateParameterList *Params) { |
| SmallVector<NamedDecl *, 4> ToParams(Params->size()); |
| if (ImportContainerChecked(*Params, ToParams)) |
| return nullptr; |
| |
| Expr *ToRequiresClause; |
| if (Expr *const R = Params->getRequiresClause()) { |
| ToRequiresClause = Importer.Import(R); |
| if (!ToRequiresClause) |
| return nullptr; |
| } else { |
| ToRequiresClause = nullptr; |
| } |
| |
| return TemplateParameterList::Create(Importer.getToContext(), |
| Importer.Import(Params->getTemplateLoc()), |
| Importer.Import(Params->getLAngleLoc()), |
| ToParams, |
| Importer.Import(Params->getRAngleLoc()), |
| ToRequiresClause); |
| } |
| |
| TemplateArgument |
| ASTNodeImporter::ImportTemplateArgument(const TemplateArgument &From) { |
| switch (From.getKind()) { |
| case TemplateArgument::Null: |
| return TemplateArgument(); |
| |
| case TemplateArgument::Type: { |
| QualType ToType = Importer.Import(From.getAsType()); |
| if (ToType.isNull()) |
| return TemplateArgument(); |
| return TemplateArgument(ToType); |
| } |
| |
| case TemplateArgument::Integral: { |
| QualType ToType = Importer.Import(From.getIntegralType()); |
| if (ToType.isNull()) |
| return TemplateArgument(); |
| return TemplateArgument(From, ToType); |
| } |
| |
| case TemplateArgument::Declaration: { |
| ValueDecl *To = cast_or_null<ValueDecl>(Importer.Import(From.getAsDecl())); |
| QualType ToType = Importer.Import(From.getParamTypeForDecl()); |
| if (!To || ToType.isNull()) |
| return TemplateArgument(); |
| return TemplateArgument(To, ToType); |
| } |
| |
| case TemplateArgument::NullPtr: { |
| QualType ToType = Importer.Import(From.getNullPtrType()); |
| if (ToType.isNull()) |
| return TemplateArgument(); |
| return TemplateArgument(ToType, /*isNullPtr*/true); |
| } |
| |
| case TemplateArgument::Template: { |
| TemplateName ToTemplate = Importer.Import(From.getAsTemplate()); |
| if (ToTemplate.isNull()) |
| return TemplateArgument(); |
| |
| return TemplateArgument(ToTemplate); |
| } |
| |
| case TemplateArgument::TemplateExpansion: { |
| TemplateName ToTemplate |
| = Importer.Import(From.getAsTemplateOrTemplatePattern()); |
| if (ToTemplate.isNull()) |
| return TemplateArgument(); |
| |
| return TemplateArgument(ToTemplate, From.getNumTemplateExpansions()); |
| } |
| |
| case TemplateArgument::Expression: |
| if (Expr *ToExpr = Importer.Import(From.getAsExpr())) |
| return TemplateArgument(ToExpr); |
| return TemplateArgument(); |
| |
| case TemplateArgument::Pack: { |
| SmallVector<TemplateArgument, 2> ToPack; |
| ToPack.reserve(From.pack_size()); |
| if (ImportTemplateArguments(From.pack_begin(), From.pack_size(), ToPack)) |
| return TemplateArgument(); |
| |
| return TemplateArgument( |
| llvm::makeArrayRef(ToPack).copy(Importer.getToContext())); |
| } |
| } |
| |
| llvm_unreachable("Invalid template argument kind"); |
| } |
| |
| Optional<TemplateArgumentLoc> |
| ASTNodeImporter::ImportTemplateArgumentLoc(const TemplateArgumentLoc &TALoc) { |
| TemplateArgument Arg = ImportTemplateArgument(TALoc.getArgument()); |
| TemplateArgumentLocInfo FromInfo = TALoc.getLocInfo(); |
| TemplateArgumentLocInfo ToInfo; |
| if (Arg.getKind() == TemplateArgument::Expression) { |
| Expr *E = Importer.Import(FromInfo.getAsExpr()); |
| ToInfo = TemplateArgumentLocInfo(E); |
| if (!E) |
| return None; |
| } else if (Arg.getKind() == TemplateArgument::Type) { |
| if (TypeSourceInfo *TSI = Importer.Import(FromInfo.getAsTypeSourceInfo())) |
| ToInfo = TemplateArgumentLocInfo(TSI); |
| else |
| return None; |
| } else { |
| ToInfo = TemplateArgumentLocInfo( |
| Importer.Import(FromInfo.getTemplateQualifierLoc()), |
| Importer.Import(FromInfo.getTemplateNameLoc()), |
| Importer.Import(FromInfo.getTemplateEllipsisLoc())); |
| } |
| return TemplateArgumentLoc(Arg, ToInfo); |
| } |
| |
| bool ASTNodeImporter::ImportTemplateArguments(const TemplateArgument *FromArgs, |
| unsigned NumFromArgs, |
| SmallVectorImpl<TemplateArgument> &ToArgs) { |
| for (unsigned I = 0; I != NumFromArgs; ++I) { |
| TemplateArgument To = ImportTemplateArgument(FromArgs[I]); |
| if (To.isNull() && !FromArgs[I].isNull()) |
| return true; |
| |
| ToArgs.push_back(To); |
| } |
| |
| return false; |
| } |
| |
| template <typename InContainerTy> |
| bool ASTNodeImporter::ImportTemplateArgumentListInfo( |
| const InContainerTy &Container, TemplateArgumentListInfo &ToTAInfo) { |
| for (const auto &FromLoc : Container) { |
| if (auto ToLoc = ImportTemplateArgumentLoc(FromLoc)) |
| ToTAInfo.addArgument(*ToLoc); |
| else |
| return true; |
| } |
| return false; |
| } |
| |
| bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord, |
| RecordDecl *ToRecord, bool Complain) { |
| // Eliminate a potential failure point where we attempt to re-import |
| // something we're trying to import while completing ToRecord. |
| Decl *ToOrigin = Importer.GetOriginalDecl(ToRecord); |
| if (ToOrigin) { |
| RecordDecl *ToOriginRecord = dyn_cast<RecordDecl>(ToOrigin); |
| if (ToOriginRecord) |
| ToRecord = ToOriginRecord; |
| } |
| |
| StructuralEquivalenceContext Ctx(Importer.getFromContext(), |
| ToRecord->getASTContext(), |
| Importer.getNonEquivalentDecls(), |
| false, Complain); |
| return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord); |
| } |
| |
| bool ASTNodeImporter::IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar, |
| bool Complain) { |
| StructuralEquivalenceContext Ctx( |
| Importer.getFromContext(), Importer.getToContext(), |
| Importer.getNonEquivalentDecls(), false, Complain); |
| return Ctx.IsStructurallyEquivalent(FromVar, ToVar); |
| } |
| |
| bool ASTNodeImporter::IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToEnum) { |
| StructuralEquivalenceContext Ctx(Importer.getFromContext(), |
| Importer.getToContext(), |
| Importer.getNonEquivalentDecls()); |
| return Ctx.IsStructurallyEquivalent(FromEnum, ToEnum); |
| } |
| |
| bool ASTNodeImporter::IsStructuralMatch(FunctionTemplateDecl *From, |
| FunctionTemplateDecl *To) { |
| StructuralEquivalenceContext Ctx( |
| Importer.getFromContext(), Importer.getToContext(), |
| Importer.getNonEquivalentDecls(), false, false); |
| return Ctx.IsStructurallyEquivalent(From, To); |
| } |
| |
| bool ASTNodeImporter::IsStructuralMatch(EnumConstantDecl *FromEC, |
| EnumConstantDecl *ToEC) |
| { |
| const llvm::APSInt &FromVal = FromEC->getInitVal(); |
| const llvm::APSInt &ToVal = ToEC->getInitVal(); |
| |
| return FromVal.isSigned() == ToVal.isSigned() && |
| FromVal.getBitWidth() == ToVal.getBitWidth() && |
| FromVal == ToVal; |
| } |
| |
| bool ASTNodeImporter::IsStructuralMatch(ClassTemplateDecl *From, |
| ClassTemplateDecl *To) { |
| StructuralEquivalenceContext Ctx(Importer.getFromContext(), |
| Importer.getToContext(), |
| Importer.getNonEquivalentDecls()); |
| return Ctx.IsStructurallyEquivalent(From, To); |
| } |
| |
| bool ASTNodeImporter::IsStructuralMatch(VarTemplateDecl *From, |
| VarTemplateDecl *To) { |
| StructuralEquivalenceContext Ctx(Importer.getFromContext(), |
| Importer.getToContext(), |
| Importer.getNonEquivalentDecls()); |
| return Ctx.IsStructurallyEquivalent(From, To); |
| } |
| |
| Decl *ASTNodeImporter::VisitDecl(Decl *D) { |
| Importer.FromDiag(D->getLocation(), diag::err_unsupported_ast_node) |
| << D->getDeclKindName(); |
| return nullptr; |
| } |
| |
| Decl *ASTNodeImporter::VisitEmptyDecl(EmptyDecl *D) { |
| // Import the context of this declaration. |
| DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| if (!DC) |
| return nullptr; |
| |
| DeclContext *LexicalDC = DC; |
| if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| if (!LexicalDC) |
| return nullptr; |
| } |
| |
| // Import the location of this declaration. |
| SourceLocation Loc = Importer.Import(D->getLocation()); |
| |
| EmptyDecl *ToD = EmptyDecl::Create(Importer.getToContext(), DC, Loc); |
| ToD->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, ToD); |
| LexicalDC->addDeclInternal(ToD); |
| return ToD; |
| } |
| |
| Decl *ASTNodeImporter::VisitTranslationUnitDecl(TranslationUnitDecl *D) { |
| TranslationUnitDecl *ToD = |
| Importer.getToContext().getTranslationUnitDecl(); |
| |
| Importer.Imported(D, ToD); |
| |
| return ToD; |
| } |
| |
| Decl *ASTNodeImporter::VisitAccessSpecDecl(AccessSpecDecl *D) { |
| |
| SourceLocation Loc = Importer.Import(D->getLocation()); |
| SourceLocation ColonLoc = Importer.Import(D->getColonLoc()); |
| |
| // Import the context of this declaration. |
| DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| if (!DC) |
| return nullptr; |
| |
| AccessSpecDecl *accessSpecDecl |
| = AccessSpecDecl::Create(Importer.getToContext(), D->getAccess(), |
| DC, Loc, ColonLoc); |
| |
| if (!accessSpecDecl) |
| return nullptr; |
| |
| // Lexical DeclContext and Semantic DeclContext |
| // is always the same for the accessSpec. |
| accessSpecDecl->setLexicalDeclContext(DC); |
| DC->addDeclInternal(accessSpecDecl); |
| |
| return accessSpecDecl; |
| } |
| |
| Decl *ASTNodeImporter::VisitStaticAssertDecl(StaticAssertDecl *D) { |
| DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| if (!DC) |
| return nullptr; |
| |
| DeclContext *LexicalDC = DC; |
| |
| // Import the location of this declaration. |
| SourceLocation Loc = Importer.Import(D->getLocation()); |
| |
| Expr *AssertExpr = Importer.Import(D->getAssertExpr()); |
| if (!AssertExpr) |
| return nullptr; |
| |
| StringLiteral *FromMsg = D->getMessage(); |
| StringLiteral *ToMsg = cast_or_null<StringLiteral>(Importer.Import(FromMsg)); |
| if (!ToMsg && FromMsg) |
| return nullptr; |
| |
| StaticAssertDecl *ToD = StaticAssertDecl::Create( |
| Importer.getToContext(), DC, Loc, AssertExpr, ToMsg, |
| Importer.Import(D->getRParenLoc()), D->isFailed()); |
| |
| ToD->setLexicalDeclContext(LexicalDC); |
| LexicalDC->addDeclInternal(ToD); |
| Importer.Imported(D, ToD); |
| return ToD; |
| } |
| |
| Decl *ASTNodeImporter::VisitNamespaceDecl(NamespaceDecl *D) { |
| // Import the major distinguishing characteristics of this namespace. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| NamespaceDecl *MergeWithNamespace = nullptr; |
| if (!Name) { |
| // This is an anonymous namespace. Adopt an existing anonymous |
| // namespace if we can. |
| // FIXME: Not testable. |
| if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC)) |
| MergeWithNamespace = TU->getAnonymousNamespace(); |
| else |
| MergeWithNamespace = cast<NamespaceDecl>(DC)->getAnonymousNamespace(); |
| } else { |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Namespace)) |
| continue; |
| |
| if (NamespaceDecl *FoundNS = dyn_cast<NamespaceDecl>(FoundDecls[I])) { |
| MergeWithNamespace = FoundNS; |
| ConflictingDecls.clear(); |
| break; |
| } |
| |
| ConflictingDecls.push_back(FoundDecls[I]); |
| } |
| |
| if (!ConflictingDecls.empty()) { |
| Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Namespace, |
| ConflictingDecls.data(), |
| ConflictingDecls.size()); |
| } |
| } |
| |
| // Create the "to" namespace, if needed. |
| NamespaceDecl *ToNamespace = MergeWithNamespace; |
| if (!ToNamespace) { |
| ToNamespace = NamespaceDecl::Create(Importer.getToContext(), DC, |
| D->isInline(), |
| Importer.Import(D->getLocStart()), |
| Loc, Name.getAsIdentifierInfo(), |
| /*PrevDecl=*/nullptr); |
| ToNamespace->setLexicalDeclContext(LexicalDC); |
| LexicalDC->addDeclInternal(ToNamespace); |
| |
| // If this is an anonymous namespace, register it as the anonymous |
| // namespace within its context. |
| if (!Name) { |
| if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC)) |
| TU->setAnonymousNamespace(ToNamespace); |
| else |
| cast<NamespaceDecl>(DC)->setAnonymousNamespace(ToNamespace); |
| } |
| } |
| Importer.Imported(D, ToNamespace); |
| |
| ImportDeclContext(D); |
| |
| return ToNamespace; |
| } |
| |
| Decl *ASTNodeImporter::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) { |
| // Import the major distinguishing characteristics of this namespace. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *LookupD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, LookupD, Loc)) |
| return nullptr; |
| if (LookupD) |
| return LookupD; |
| |
| // NOTE: No conflict resolution is done for namespace aliases now. |
| |
| NamespaceDecl *TargetDecl = cast_or_null<NamespaceDecl>( |
| Importer.Import(D->getNamespace())); |
| if (!TargetDecl) |
| return nullptr; |
| |
| IdentifierInfo *ToII = Importer.Import(D->getIdentifier()); |
| if (!ToII) |
| return nullptr; |
| |
| NestedNameSpecifierLoc ToQLoc = Importer.Import(D->getQualifierLoc()); |
| if (D->getQualifierLoc() && !ToQLoc) |
| return nullptr; |
| |
| NamespaceAliasDecl *ToD = NamespaceAliasDecl::Create( |
| Importer.getToContext(), DC, Importer.Import(D->getNamespaceLoc()), |
| Importer.Import(D->getAliasLoc()), ToII, ToQLoc, |
| Importer.Import(D->getTargetNameLoc()), TargetDecl); |
| |
| ToD->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, ToD); |
| LexicalDC->addDeclInternal(ToD); |
| |
| return ToD; |
| } |
| |
| Decl *ASTNodeImporter::VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias) { |
| // Import the major distinguishing characteristics of this typedef. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // If this typedef is not in block scope, determine whether we've |
| // seen a typedef with the same name (that we can merge with) or any |
| // other entity by that name (which name lookup could conflict with). |
| if (!DC->isFunctionOrMethod()) { |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| unsigned IDNS = Decl::IDNS_Ordinary; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
| continue; |
| if (TypedefNameDecl *FoundTypedef = |
| dyn_cast<TypedefNameDecl>(FoundDecls[I])) { |
| if (Importer.IsStructurallyEquivalent(D->getUnderlyingType(), |
| FoundTypedef->getUnderlyingType())) |
| return Importer.Imported(D, FoundTypedef); |
| } |
| |
| ConflictingDecls.push_back(FoundDecls[I]); |
| } |
| |
| if (!ConflictingDecls.empty()) { |
| Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| ConflictingDecls.data(), |
| ConflictingDecls.size()); |
| if (!Name) |
| return nullptr; |
| } |
| } |
| |
| // Import the underlying type of this typedef; |
| QualType T = Importer.Import(D->getUnderlyingType()); |
| if (T.isNull()) |
| return nullptr; |
| |
| // Create the new typedef node. |
| TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| SourceLocation StartL = Importer.Import(D->getLocStart()); |
| TypedefNameDecl *ToTypedef; |
| if (IsAlias) |
| ToTypedef = TypeAliasDecl::Create(Importer.getToContext(), DC, |
| StartL, Loc, |
| Name.getAsIdentifierInfo(), |
| TInfo); |
| else |
| ToTypedef = TypedefDecl::Create(Importer.getToContext(), DC, |
| StartL, Loc, |
| Name.getAsIdentifierInfo(), |
| TInfo); |
| |
| ToTypedef->setAccess(D->getAccess()); |
| ToTypedef->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, ToTypedef); |
| LexicalDC->addDeclInternal(ToTypedef); |
| |
| return ToTypedef; |
| } |
| |
| Decl *ASTNodeImporter::VisitTypedefDecl(TypedefDecl *D) { |
| return VisitTypedefNameDecl(D, /*IsAlias=*/false); |
| } |
| |
| Decl *ASTNodeImporter::VisitTypeAliasDecl(TypeAliasDecl *D) { |
| return VisitTypedefNameDecl(D, /*IsAlias=*/true); |
| } |
| |
| Decl *ASTNodeImporter::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) { |
| // Import the major distinguishing characteristics of this typedef. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // If this typedef is not in block scope, determine whether we've |
| // seen a typedef with the same name (that we can merge with) or any |
| // other entity by that name (which name lookup could conflict with). |
| if (!DC->isFunctionOrMethod()) { |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| unsigned IDNS = Decl::IDNS_Ordinary; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
| continue; |
| if (auto *FoundAlias = |
| dyn_cast<TypeAliasTemplateDecl>(FoundDecls[I])) |
| return Importer.Imported(D, FoundAlias); |
| ConflictingDecls.push_back(FoundDecls[I]); |
| } |
| |
| if (!ConflictingDecls.empty()) { |
| Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| ConflictingDecls.data(), |
| ConflictingDecls.size()); |
| if (!Name) |
| return nullptr; |
| } |
| } |
| |
| TemplateParameterList *Params = ImportTemplateParameterList( |
| D->getTemplateParameters()); |
| if (!Params) |
| return nullptr; |
| |
| NamedDecl *TemplDecl = cast_or_null<NamedDecl>( |
| Importer.Import(D->getTemplatedDecl())); |
| if (!TemplDecl) |
| return nullptr; |
| |
| TypeAliasTemplateDecl *ToAlias = TypeAliasTemplateDecl::Create( |
| Importer.getToContext(), DC, Loc, Name, Params, TemplDecl); |
| |
| ToAlias->setAccess(D->getAccess()); |
| ToAlias->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, ToAlias); |
| LexicalDC->addDeclInternal(ToAlias); |
| return ToD; |
| } |
| |
| Decl *ASTNodeImporter::VisitLabelDecl(LabelDecl *D) { |
| // Import the major distinguishing characteristics of this label. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| assert(LexicalDC->isFunctionOrMethod()); |
| |
| LabelDecl *ToLabel = D->isGnuLocal() |
| ? LabelDecl::Create(Importer.getToContext(), |
| DC, Importer.Import(D->getLocation()), |
| Name.getAsIdentifierInfo(), |
| Importer.Import(D->getLocStart())) |
| : LabelDecl::Create(Importer.getToContext(), |
| DC, Importer.Import(D->getLocation()), |
| Name.getAsIdentifierInfo()); |
| Importer.Imported(D, ToLabel); |
| |
| LabelStmt *Label = cast_or_null<LabelStmt>(Importer.Import(D->getStmt())); |
| if (!Label) |
| return nullptr; |
| |
| ToLabel->setStmt(Label); |
| ToLabel->setLexicalDeclContext(LexicalDC); |
| LexicalDC->addDeclInternal(ToLabel); |
| return ToLabel; |
| } |
| |
| Decl *ASTNodeImporter::VisitEnumDecl(EnumDecl *D) { |
| // Import the major distinguishing characteristics of this enum. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // Figure out what enum name we're looking for. |
| unsigned IDNS = Decl::IDNS_Tag; |
| DeclarationName SearchName = Name; |
| if (!SearchName && D->getTypedefNameForAnonDecl()) { |
| SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName()); |
| IDNS = Decl::IDNS_Ordinary; |
| } else if (Importer.getToContext().getLangOpts().CPlusPlus) |
| IDNS |= Decl::IDNS_Ordinary; |
| |
| // We may already have an enum of the same name; try to find and match it. |
| if (!DC->isFunctionOrMethod() && SearchName) { |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(SearchName, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
| continue; |
| |
| Decl *Found = FoundDecls[I]; |
| if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { |
| if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) |
| Found = Tag->getDecl(); |
| } |
| |
| if (EnumDecl *FoundEnum = dyn_cast<EnumDecl>(Found)) { |
| if (IsStructuralMatch(D, FoundEnum)) |
| return Importer.Imported(D, FoundEnum); |
| } |
| |
| ConflictingDecls.push_back(FoundDecls[I]); |
| } |
| |
| if (!ConflictingDecls.empty()) { |
| Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| ConflictingDecls.data(), |
| ConflictingDecls.size()); |
| } |
| } |
| |
| // Create the enum declaration. |
| EnumDecl *D2 = EnumDecl::Create(Importer.getToContext(), DC, |
| Importer.Import(D->getLocStart()), |
| Loc, Name.getAsIdentifierInfo(), nullptr, |
| D->isScoped(), D->isScopedUsingClassTag(), |
| D->isFixed()); |
| // Import the qualifier, if any. |
| D2->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
| D2->setAccess(D->getAccess()); |
| D2->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, D2); |
| LexicalDC->addDeclInternal(D2); |
| |
| // Import the integer type. |
| QualType ToIntegerType = Importer.Import(D->getIntegerType()); |
| if (ToIntegerType.isNull()) |
| return nullptr; |
| D2->setIntegerType(ToIntegerType); |
| |
| // Import the definition |
| if (D->isCompleteDefinition() && ImportDefinition(D, D2)) |
| return nullptr; |
| |
| return D2; |
| } |
| |
| Decl *ASTNodeImporter::VisitRecordDecl(RecordDecl *D) { |
| // If this record has a definition in the translation unit we're coming from, |
| // but this particular declaration is not that definition, import the |
| // definition and map to that. |
| TagDecl *Definition = D->getDefinition(); |
| if (Definition && Definition != D) { |
| Decl *ImportedDef = Importer.Import(Definition); |
| if (!ImportedDef) |
| return nullptr; |
| |
| return Importer.Imported(D, ImportedDef); |
| } |
| |
| // Import the major distinguishing characteristics of this record. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // Figure out what structure name we're looking for. |
| unsigned IDNS = Decl::IDNS_Tag; |
| DeclarationName SearchName = Name; |
| if (!SearchName && D->getTypedefNameForAnonDecl()) { |
| SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName()); |
| IDNS = Decl::IDNS_Ordinary; |
| } else if (Importer.getToContext().getLangOpts().CPlusPlus) |
| IDNS |= Decl::IDNS_Ordinary; |
| |
| // We may already have a record of the same name; try to find and match it. |
| RecordDecl *AdoptDecl = nullptr; |
| RecordDecl *PrevDecl = nullptr; |
| if (!DC->isFunctionOrMethod()) { |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(SearchName, FoundDecls); |
| |
| if (!FoundDecls.empty()) { |
| // We're going to have to compare D against potentially conflicting Decls, so complete it. |
| if (D->hasExternalLexicalStorage() && !D->isCompleteDefinition()) |
| D->getASTContext().getExternalSource()->CompleteType(D); |
| } |
| |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
| continue; |
| |
| Decl *Found = FoundDecls[I]; |
| if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { |
| if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) |
| Found = Tag->getDecl(); |
| } |
| |
| if (RecordDecl *FoundRecord = dyn_cast<RecordDecl>(Found)) { |
| if (D->isAnonymousStructOrUnion() && |
| FoundRecord->isAnonymousStructOrUnion()) { |
| // If both anonymous structs/unions are in a record context, make sure |
| // they occur in the same location in the context records. |
| if (Optional<unsigned> Index1 = |
| StructuralEquivalenceContext::findUntaggedStructOrUnionIndex( |
| D)) { |
| if (Optional<unsigned> Index2 = StructuralEquivalenceContext:: |
| findUntaggedStructOrUnionIndex(FoundRecord)) { |
| if (*Index1 != *Index2) |
| continue; |
| } |
| } |
| } |
| |
| PrevDecl = FoundRecord; |
| |
| if (RecordDecl *FoundDef = FoundRecord->getDefinition()) { |
| if ((SearchName && !D->isCompleteDefinition()) |
| || (D->isCompleteDefinition() && |
| D->isAnonymousStructOrUnion() |
| == FoundDef->isAnonymousStructOrUnion() && |
| IsStructuralMatch(D, FoundDef))) { |
| // The record types structurally match, or the "from" translation |
| // unit only had a forward declaration anyway; call it the same |
| // function. |
| // FIXME: For C++, we should also merge methods here. |
| return Importer.Imported(D, FoundDef); |
| } |
| } else if (!D->isCompleteDefinition()) { |
| // We have a forward declaration of this type, so adopt that forward |
| // declaration rather than building a new one. |
| |
| // If one or both can be completed from external storage then try one |
| // last time to complete and compare them before doing this. |
| |
| if (FoundRecord->hasExternalLexicalStorage() && |
| !FoundRecord->isCompleteDefinition()) |
| FoundRecord->getASTContext().getExternalSource()->CompleteType(FoundRecord); |
| if (D->hasExternalLexicalStorage()) |
| D->getASTContext().getExternalSource()->CompleteType(D); |
| |
| if (FoundRecord->isCompleteDefinition() && |
| D->isCompleteDefinition() && |
| !IsStructuralMatch(D, FoundRecord)) |
| continue; |
| |
| AdoptDecl = FoundRecord; |
| continue; |
| } else if (!SearchName) { |
| continue; |
| } |
| } |
| |
| ConflictingDecls.push_back(FoundDecls[I]); |
| } |
| |
| if (!ConflictingDecls.empty() && SearchName) { |
| Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| ConflictingDecls.data(), |
| ConflictingDecls.size()); |
| } |
| } |
| |
| // Create the record declaration. |
| RecordDecl *D2 = AdoptDecl; |
| SourceLocation StartLoc = Importer.Import(D->getLocStart()); |
| if (!D2) { |
| CXXRecordDecl *D2CXX = nullptr; |
| if (CXXRecordDecl *DCXX = llvm::dyn_cast<CXXRecordDecl>(D)) { |
| if (DCXX->isLambda()) { |
| TypeSourceInfo *TInfo = Importer.Import(DCXX->getLambdaTypeInfo()); |
| D2CXX = CXXRecordDecl::CreateLambda(Importer.getToContext(), |
| DC, TInfo, Loc, |
| DCXX->isDependentLambda(), |
| DCXX->isGenericLambda(), |
| DCXX->getLambdaCaptureDefault()); |
| Decl *CDecl = Importer.Import(DCXX->getLambdaContextDecl()); |
| if (DCXX->getLambdaContextDecl() && !CDecl) |
| return nullptr; |
| D2CXX->setLambdaMangling(DCXX->getLambdaManglingNumber(), CDecl); |
| } else if (DCXX->isInjectedClassName()) { |
| // We have to be careful to do a similar dance to the one in |
| // Sema::ActOnStartCXXMemberDeclarations |
| CXXRecordDecl *const PrevDecl = nullptr; |
| const bool DelayTypeCreation = true; |
| D2CXX = CXXRecordDecl::Create( |
| Importer.getToContext(), D->getTagKind(), DC, StartLoc, Loc, |
| Name.getAsIdentifierInfo(), PrevDecl, DelayTypeCreation); |
| Importer.getToContext().getTypeDeclType( |
| D2CXX, llvm::dyn_cast<CXXRecordDecl>(DC)); |
| } else { |
| D2CXX = CXXRecordDecl::Create(Importer.getToContext(), |
| D->getTagKind(), |
| DC, StartLoc, Loc, |
| Name.getAsIdentifierInfo()); |
| } |
| D2 = D2CXX; |
| D2->setAccess(D->getAccess()); |
| |
| Importer.Imported(D, D2); |
| |
| if (ClassTemplateDecl *FromDescribed = |
| DCXX->getDescribedClassTemplate()) { |
| ClassTemplateDecl *ToDescribed = cast_or_null<ClassTemplateDecl>( |
| Importer.Import(FromDescribed)); |
| if (!ToDescribed) |
| return nullptr; |
| D2CXX->setDescribedClassTemplate(ToDescribed); |
| |
| } else if (MemberSpecializationInfo *MemberInfo = |
| DCXX->getMemberSpecializationInfo()) { |
| TemplateSpecializationKind SK = |
| MemberInfo->getTemplateSpecializationKind(); |
| CXXRecordDecl *FromInst = DCXX->getInstantiatedFromMemberClass(); |
| CXXRecordDecl *ToInst = |
| cast_or_null<CXXRecordDecl>(Importer.Import(FromInst)); |
| if (FromInst && !ToInst) |
| return nullptr; |
| D2CXX->setInstantiationOfMemberClass(ToInst, SK); |
| D2CXX->getMemberSpecializationInfo()->setPointOfInstantiation( |
| Importer.Import(MemberInfo->getPointOfInstantiation())); |
| } |
| |
| } else { |
| D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(), |
| DC, StartLoc, Loc, Name.getAsIdentifierInfo()); |
| } |
| |
| D2->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
| D2->setLexicalDeclContext(LexicalDC); |
| LexicalDC->addDeclInternal(D2); |
| if (D->isAnonymousStructOrUnion()) |
| D2->setAnonymousStructOrUnion(true); |
| if (PrevDecl) { |
| // FIXME: do this for all Redeclarables, not just RecordDecls. |
| D2->setPreviousDecl(PrevDecl); |
| } |
| } |
| |
| Importer.Imported(D, D2); |
| |
| if (D->isCompleteDefinition() && ImportDefinition(D, D2, IDK_Default)) |
| return nullptr; |
| |
| return D2; |
| } |
| |
| Decl *ASTNodeImporter::VisitEnumConstantDecl(EnumConstantDecl *D) { |
| // Import the major distinguishing characteristics of this enumerator. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| QualType T = Importer.Import(D->getType()); |
| if (T.isNull()) |
| return nullptr; |
| |
| // Determine whether there are any other declarations with the same name and |
| // in the same context. |
| if (!LexicalDC->isFunctionOrMethod()) { |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| unsigned IDNS = Decl::IDNS_Ordinary; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
| continue; |
| |
| if (EnumConstantDecl *FoundEnumConstant |
| = dyn_cast<EnumConstantDecl>(FoundDecls[I])) { |
| if (IsStructuralMatch(D, FoundEnumConstant)) |
| return Importer.Imported(D, FoundEnumConstant); |
| } |
| |
| ConflictingDecls.push_back(FoundDecls[I]); |
| } |
| |
| if (!ConflictingDecls.empty()) { |
| Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| ConflictingDecls.data(), |
| ConflictingDecls.size()); |
| if (!Name) |
| return nullptr; |
| } |
| } |
| |
| Expr *Init = Importer.Import(D->getInitExpr()); |
| if (D->getInitExpr() && !Init) |
| return nullptr; |
| |
| EnumConstantDecl *ToEnumerator |
| = EnumConstantDecl::Create(Importer.getToContext(), cast<EnumDecl>(DC), Loc, |
| Name.getAsIdentifierInfo(), T, |
| Init, D->getInitVal()); |
| ToEnumerator->setAccess(D->getAccess()); |
| ToEnumerator->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, ToEnumerator); |
| LexicalDC->addDeclInternal(ToEnumerator); |
| return ToEnumerator; |
| } |
| |
| Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) { |
| // Import the major distinguishing characteristics of this function. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| const FunctionDecl *FoundWithoutBody = nullptr; |
| |
| // Try to find a function in our own ("to") context with the same name, same |
| // type, and in the same context as the function we're importing. |
| if (!LexicalDC->isFunctionOrMethod()) { |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| unsigned IDNS = Decl::IDNS_Ordinary; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
| continue; |
| |
| if (FunctionDecl *FoundFunction = dyn_cast<FunctionDecl>(FoundDecls[I])) { |
| if (FoundFunction->hasExternalFormalLinkage() && |
| D->hasExternalFormalLinkage()) { |
| if (Importer.IsStructurallyEquivalent(D->getType(), |
| FoundFunction->getType())) { |
| // FIXME: Actually try to merge the body and other attributes. |
| const FunctionDecl *FromBodyDecl = nullptr; |
| D->hasBody(FromBodyDecl); |
| if (D == FromBodyDecl && !FoundFunction->hasBody()) { |
| // This function is needed to merge completely. |
| FoundWithoutBody = FoundFunction; |
| break; |
| } |
| return Importer.Imported(D, FoundFunction); |
| } |
| |
| // FIXME: Check for overloading more carefully, e.g., by boosting |
| // Sema::IsOverload out to the AST library. |
| |
| // Function overloading is okay in C++. |
| if (Importer.getToContext().getLangOpts().CPlusPlus) |
| continue; |
| |
| // Complain about inconsistent function types. |
| Importer.ToDiag(Loc, diag::err_odr_function_type_inconsistent) |
| << Name << D->getType() << FoundFunction->getType(); |
| Importer.ToDiag(FoundFunction->getLocation(), |
| diag::note_odr_value_here) |
| << FoundFunction->getType(); |
| } |
| } |
| |
| ConflictingDecls.push_back(FoundDecls[I]); |
| } |
| |
| if (!ConflictingDecls.empty()) { |
| Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| ConflictingDecls.data(), |
| ConflictingDecls.size()); |
| if (!Name) |
| return nullptr; |
| } |
| } |
| |
| DeclarationNameInfo NameInfo(Name, Loc); |
| // Import additional name location/type info. |
| ImportDeclarationNameLoc(D->getNameInfo(), NameInfo); |
| |
| QualType FromTy = D->getType(); |
| bool usedDifferentExceptionSpec = false; |
| |
| if (const FunctionProtoType * |
| FromFPT = D->getType()->getAs<FunctionProtoType>()) { |
| FunctionProtoType::ExtProtoInfo FromEPI = FromFPT->getExtProtoInfo(); |
| // FunctionProtoType::ExtProtoInfo's ExceptionSpecDecl can point to the |
| // FunctionDecl that we are importing the FunctionProtoType for. |
| // To avoid an infinite recursion when importing, create the FunctionDecl |
| // with a simplified function type and update it afterwards. |
| if (FromEPI.ExceptionSpec.SourceDecl || |
| FromEPI.ExceptionSpec.SourceTemplate || |
| FromEPI.ExceptionSpec.NoexceptExpr) { |
| FunctionProtoType::ExtProtoInfo DefaultEPI; |
| FromTy = Importer.getFromContext().getFunctionType( |
| FromFPT->getReturnType(), FromFPT->getParamTypes(), DefaultEPI); |
| usedDifferentExceptionSpec = true; |
| } |
| } |
| |
| // Import the type. |
| QualType T = Importer.Import(FromTy); |
| if (T.isNull()) |
| return nullptr; |
| |
| // Import the function parameters. |
| SmallVector<ParmVarDecl *, 8> Parameters; |
| for (auto P : D->parameters()) { |
| ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(P)); |
| if (!ToP) |
| return nullptr; |
| |
| Parameters.push_back(ToP); |
| } |
| |
| // Create the imported function. |
| TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| FunctionDecl *ToFunction = nullptr; |
| SourceLocation InnerLocStart = Importer.Import(D->getInnerLocStart()); |
| if (CXXConstructorDecl *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) { |
| ToFunction = CXXConstructorDecl::Create(Importer.getToContext(), |
| cast<CXXRecordDecl>(DC), |
| InnerLocStart, |
| NameInfo, T, TInfo, |
| FromConstructor->isExplicit(), |
| D->isInlineSpecified(), |
| D->isImplicit(), |
| D->isConstexpr()); |
| if (unsigned NumInitializers = FromConstructor->getNumCtorInitializers()) { |
| SmallVector<CXXCtorInitializer *, 4> CtorInitializers; |
| for (CXXCtorInitializer *I : FromConstructor->inits()) { |
| CXXCtorInitializer *ToI = |
| cast_or_null<CXXCtorInitializer>(Importer.Import(I)); |
| if (!ToI && I) |
| return nullptr; |
| CtorInitializers.push_back(ToI); |
| } |
| CXXCtorInitializer **Memory = |
| new (Importer.getToContext()) CXXCtorInitializer *[NumInitializers]; |
| std::copy(CtorInitializers.begin(), CtorInitializers.end(), Memory); |
| CXXConstructorDecl *ToCtor = llvm::cast<CXXConstructorDecl>(ToFunction); |
| ToCtor->setCtorInitializers(Memory); |
| ToCtor->setNumCtorInitializers(NumInitializers); |
| } |
| } else if (isa<CXXDestructorDecl>(D)) { |
| ToFunction = CXXDestructorDecl::Create(Importer.getToContext(), |
| cast<CXXRecordDecl>(DC), |
| InnerLocStart, |
| NameInfo, T, TInfo, |
| D->isInlineSpecified(), |
| D->isImplicit()); |
| } else if (CXXConversionDecl *FromConversion |
| = dyn_cast<CXXConversionDecl>(D)) { |
| ToFunction = CXXConversionDecl::Create(Importer.getToContext(), |
| cast<CXXRecordDecl>(DC), |
| InnerLocStart, |
| NameInfo, T, TInfo, |
| D->isInlineSpecified(), |
| FromConversion->isExplicit(), |
| D->isConstexpr(), |
| Importer.Import(D->getLocEnd())); |
| } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| ToFunction = CXXMethodDecl::Create(Importer.getToContext(), |
| cast<CXXRecordDecl>(DC), |
| InnerLocStart, |
| NameInfo, T, TInfo, |
| Method->getStorageClass(), |
| Method->isInlineSpecified(), |
| D->isConstexpr(), |
| Importer.Import(D->getLocEnd())); |
| } else { |
| ToFunction = FunctionDecl::Create(Importer.getToContext(), DC, |
| InnerLocStart, |
| NameInfo, T, TInfo, D->getStorageClass(), |
| D->isInlineSpecified(), |
| D->hasWrittenPrototype(), |
| D->isConstexpr()); |
| } |
| |
| // Import the qualifier, if any. |
| ToFunction->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
| ToFunction->setAccess(D->getAccess()); |
| ToFunction->setLexicalDeclContext(LexicalDC); |
| ToFunction->setVirtualAsWritten(D->isVirtualAsWritten()); |
| ToFunction->setTrivial(D->isTrivial()); |
| ToFunction->setPure(D->isPure()); |
| Importer.Imported(D, ToFunction); |
| |
| // Set the parameters. |
| for (unsigned I = 0, N = Parameters.size(); I != N; ++I) { |
| Parameters[I]->setOwningFunction(ToFunction); |
| ToFunction->addDeclInternal(Parameters[I]); |
| } |
| ToFunction->setParams(Parameters); |
| |
| if (FoundWithoutBody) { |
| auto *Recent = const_cast<FunctionDecl *>( |
| FoundWithoutBody->getMostRecentDecl()); |
| ToFunction->setPreviousDecl(Recent); |
| } |
| |
| if (usedDifferentExceptionSpec) { |
| // Update FunctionProtoType::ExtProtoInfo. |
| QualType T = Importer.Import(D->getType()); |
| if (T.isNull()) |
| return nullptr; |
| ToFunction->setType(T); |
| } |
| |
| // Import the body, if any. |
| if (Stmt *FromBody = D->getBody()) { |
| if (Stmt *ToBody = Importer.Import(FromBody)) { |
| ToFunction->setBody(ToBody); |
| } |
| } |
| |
| // FIXME: Other bits to merge? |
| |
| // Add this function to the lexical context. |
| LexicalDC->addDeclInternal(ToFunction); |
| |
| if (auto *FromCXXMethod = dyn_cast<CXXMethodDecl>(D)) |
| ImportOverrides(cast<CXXMethodDecl>(ToFunction), FromCXXMethod); |
| |
| return ToFunction; |
| } |
| |
| Decl *ASTNodeImporter::VisitCXXMethodDecl(CXXMethodDecl *D) { |
| return VisitFunctionDecl(D); |
| } |
| |
| Decl *ASTNodeImporter::VisitCXXConstructorDecl(CXXConstructorDecl *D) { |
| return VisitCXXMethodDecl(D); |
| } |
| |
| Decl *ASTNodeImporter::VisitCXXDestructorDecl(CXXDestructorDecl *D) { |
| return VisitCXXMethodDecl(D); |
| } |
| |
| Decl *ASTNodeImporter::VisitCXXConversionDecl(CXXConversionDecl *D) { |
| return VisitCXXMethodDecl(D); |
| } |
| |
| static unsigned getFieldIndex(Decl *F) { |
| RecordDecl *Owner = dyn_cast<RecordDecl>(F->getDeclContext()); |
| if (!Owner) |
| return 0; |
| |
| unsigned Index = 1; |
| for (const auto *D : Owner->noload_decls()) { |
| if (D == F) |
| return Index; |
| |
| if (isa<FieldDecl>(*D) || isa<IndirectFieldDecl>(*D)) |
| ++Index; |
| } |
| |
| return Index; |
| } |
| |
| Decl *ASTNodeImporter::VisitFieldDecl(FieldDecl *D) { |
| // Import the major distinguishing characteristics of a variable. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // Determine whether we've already imported this field. |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (FieldDecl *FoundField = dyn_cast<FieldDecl>(FoundDecls[I])) { |
| // For anonymous fields, match up by index. |
| if (!Name && getFieldIndex(D) != getFieldIndex(FoundField)) |
| continue; |
| |
| if (Importer.IsStructurallyEquivalent(D->getType(), |
| FoundField->getType())) { |
| Importer.Imported(D, FoundField); |
| return FoundField; |
| } |
| |
| Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent) |
| << Name << D->getType() << FoundField->getType(); |
| Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here) |
| << FoundField->getType(); |
| return nullptr; |
| } |
| } |
| |
| // Import the type. |
| QualType T = Importer.Import(D->getType()); |
| if (T.isNull()) |
| return nullptr; |
| |
| TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| Expr *BitWidth = Importer.Import(D->getBitWidth()); |
| if (!BitWidth && D->getBitWidth()) |
| return nullptr; |
| |
| FieldDecl *ToField = FieldDecl::Create(Importer.getToContext(), DC, |
| Importer.Import(D->getInnerLocStart()), |
| Loc, Name.getAsIdentifierInfo(), |
| T, TInfo, BitWidth, D->isMutable(), |
| D->getInClassInitStyle()); |
| ToField->setAccess(D->getAccess()); |
| ToField->setLexicalDeclContext(LexicalDC); |
| if (Expr *FromInitializer = D->getInClassInitializer()) { |
| Expr *ToInitializer = Importer.Import(FromInitializer); |
| if (ToInitializer) |
| ToField->setInClassInitializer(ToInitializer); |
| else |
| return nullptr; |
| } |
| ToField->setImplicit(D->isImplicit()); |
| Importer.Imported(D, ToField); |
| LexicalDC->addDeclInternal(ToField); |
| return ToField; |
| } |
| |
| Decl *ASTNodeImporter::VisitIndirectFieldDecl(IndirectFieldDecl *D) { |
| // Import the major distinguishing characteristics of a variable. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // Determine whether we've already imported this field. |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (IndirectFieldDecl *FoundField |
| = dyn_cast<IndirectFieldDecl>(FoundDecls[I])) { |
| // For anonymous indirect fields, match up by index. |
| if (!Name && getFieldIndex(D) != getFieldIndex(FoundField)) |
| continue; |
| |
| if (Importer.IsStructurallyEquivalent(D->getType(), |
| FoundField->getType(), |
| !Name.isEmpty())) { |
| Importer.Imported(D, FoundField); |
| return FoundField; |
| } |
| |
| // If there are more anonymous fields to check, continue. |
| if (!Name && I < N-1) |
| continue; |
| |
| Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent) |
| << Name << D->getType() << FoundField->getType(); |
| Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here) |
| << FoundField->getType(); |
| return nullptr; |
| } |
| } |
| |
| // Import the type. |
| QualType T = Importer.Import(D->getType()); |
| if (T.isNull()) |
| return nullptr; |
| |
| NamedDecl **NamedChain = |
| new (Importer.getToContext())NamedDecl*[D->getChainingSize()]; |
| |
| unsigned i = 0; |
| for (auto *PI : D->chain()) { |
| Decl *D = Importer.Import(PI); |
| if (!D) |
| return nullptr; |
| NamedChain[i++] = cast<NamedDecl>(D); |
| } |
| |
| IndirectFieldDecl *ToIndirectField = IndirectFieldDecl::Create( |
| Importer.getToContext(), DC, Loc, Name.getAsIdentifierInfo(), T, |
| {NamedChain, D->getChainingSize()}); |
| |
| for (const auto *Attr : D->attrs()) |
| ToIndirectField->addAttr(Attr->clone(Importer.getToContext())); |
| |
| ToIndirectField->setAccess(D->getAccess()); |
| ToIndirectField->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, ToIndirectField); |
| LexicalDC->addDeclInternal(ToIndirectField); |
| return ToIndirectField; |
| } |
| |
| Decl *ASTNodeImporter::VisitFriendDecl(FriendDecl *D) { |
| // Import the major distinguishing characteristics of a declaration. |
| DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| DeclContext *LexicalDC = D->getDeclContext() == D->getLexicalDeclContext() |
| ? DC : Importer.ImportContext(D->getLexicalDeclContext()); |
| if (!DC || !LexicalDC) |
| return nullptr; |
| |
| // Determine whether we've already imported this decl. |
| // FriendDecl is not a NamedDecl so we cannot use localUncachedLookup. |
| auto *RD = cast<CXXRecordDecl>(DC); |
| FriendDecl *ImportedFriend = RD->getFirstFriend(); |
| StructuralEquivalenceContext Context( |
| Importer.getFromContext(), Importer.getToContext(), |
| Importer.getNonEquivalentDecls(), false, false); |
| |
| while (ImportedFriend) { |
| if (D->getFriendDecl() && ImportedFriend->getFriendDecl()) { |
| if (Context.IsStructurallyEquivalent(D->getFriendDecl(), |
| ImportedFriend->getFriendDecl())) |
| return Importer.Imported(D, ImportedFriend); |
| |
| } else if (D->getFriendType() && ImportedFriend->getFriendType()) { |
| if (Importer.IsStructurallyEquivalent( |
| D->getFriendType()->getType(), |
| ImportedFriend->getFriendType()->getType(), true)) |
| return Importer.Imported(D, ImportedFriend); |
| } |
| ImportedFriend = ImportedFriend->getNextFriend(); |
| } |
| |
| // Not found. Create it. |
| FriendDecl::FriendUnion ToFU; |
| if (NamedDecl *FriendD = D->getFriendDecl()) |
| ToFU = cast_or_null<NamedDecl>(Importer.Import(FriendD)); |
| else |
| ToFU = Importer.Import(D->getFriendType()); |
| if (!ToFU) |
| return nullptr; |
| |
| SmallVector<TemplateParameterList *, 1> ToTPLists(D->NumTPLists); |
| TemplateParameterList **FromTPLists = |
| D->getTrailingObjects<TemplateParameterList *>(); |
| for (unsigned I = 0; I < D->NumTPLists; I++) { |
| TemplateParameterList *List = ImportTemplateParameterList(FromTPLists[I]); |
| if (!List) |
| return nullptr; |
| ToTPLists[I] = List; |
| } |
| |
| FriendDecl *FrD = FriendDecl::Create(Importer.getToContext(), DC, |
| Importer.Import(D->getLocation()), |
| ToFU, Importer.Import(D->getFriendLoc()), |
| ToTPLists); |
| |
| Importer.Imported(D, FrD); |
| RD->pushFriendDecl(FrD); |
| |
| FrD->setAccess(D->getAccess()); |
| FrD->setLexicalDeclContext(LexicalDC); |
| LexicalDC->addDeclInternal(FrD); |
| return FrD; |
| } |
| |
| Decl *ASTNodeImporter::VisitObjCIvarDecl(ObjCIvarDecl *D) { |
| // Import the major distinguishing characteristics of an ivar. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // Determine whether we've already imported this ivar |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (ObjCIvarDecl *FoundIvar = dyn_cast<ObjCIvarDecl>(FoundDecls[I])) { |
| if (Importer.IsStructurallyEquivalent(D->getType(), |
| FoundIvar->getType())) { |
| Importer.Imported(D, FoundIvar); |
| return FoundIvar; |
| } |
| |
| Importer.ToDiag(Loc, diag::err_odr_ivar_type_inconsistent) |
| << Name << D->getType() << FoundIvar->getType(); |
| Importer.ToDiag(FoundIvar->getLocation(), diag::note_odr_value_here) |
| << FoundIvar->getType(); |
| return nullptr; |
| } |
| } |
| |
| // Import the type. |
| QualType T = Importer.Import(D->getType()); |
| if (T.isNull()) |
| return nullptr; |
| |
| TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| Expr *BitWidth = Importer.Import(D->getBitWidth()); |
| if (!BitWidth && D->getBitWidth()) |
| return nullptr; |
| |
| ObjCIvarDecl *ToIvar = ObjCIvarDecl::Create(Importer.getToContext(), |
| cast<ObjCContainerDecl>(DC), |
| Importer.Import(D->getInnerLocStart()), |
| Loc, Name.getAsIdentifierInfo(), |
| T, TInfo, D->getAccessControl(), |
| BitWidth, D->getSynthesize()); |
| ToIvar->setLexicalDeclContext(LexicalDC); |
| Importer.Imported(D, ToIvar); |
| LexicalDC->addDeclInternal(ToIvar); |
| return ToIvar; |
| |
| } |
| |
| Decl *ASTNodeImporter::VisitVarDecl(VarDecl *D) { |
| // Import the major distinguishing characteristics of a variable. |
| DeclContext *DC, *LexicalDC; |
| DeclarationName Name; |
| SourceLocation Loc; |
| NamedDecl *ToD; |
| if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc)) |
| return nullptr; |
| if (ToD) |
| return ToD; |
| |
| // Try to find a variable in our own ("to") context with the same name and |
| // in the same context as the variable we're importing. |
| if (D->isFileVarDecl()) { |
| VarDecl *MergeWithVar = nullptr; |
| SmallVector<NamedDecl *, 4> ConflictingDecls; |
| unsigned IDNS = Decl::IDNS_Ordinary; |
| SmallVector<NamedDecl *, 2> FoundDecls; |
| DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls); |
| for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
| continue; |
| |
| if (VarDecl *FoundVar = dyn_cast<VarDecl>(FoundDecls[I])) { |
| // We have found a variable that we may need to merge with. Check it. |
| if (FoundVar->hasExternalFormalLinkage() && |
| D->hasExternalFormalLinkage()) { |
| if (Importer.IsStructurallyEquivalent(D->getType(), |
| FoundVar->getType())) { |
| MergeWithVar = FoundVar; |
| break; |
| } |
| |
| const ArrayType *FoundArray |
| = Importer.getToContext().getAsArrayType(FoundVar->getType()); |
| const ArrayType *TArray |
| = |