Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1 | //===--- ASTImporter.cpp - Importing ASTs from other Contexts ---*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the ASTImporter class which imports AST nodes from one |
| 11 | // context into another context. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | #include "clang/AST/ASTImporter.h" |
| 15 | |
| 16 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTDiagnostic.h" |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclCXX.h" |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclVisitor.h" |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 21 | #include "clang/AST/StmtVisitor.h" |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 22 | #include "clang/AST/TypeVisitor.h" |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 23 | #include "clang/Basic/FileManager.h" |
| 24 | #include "clang/Basic/SourceManager.h" |
| 25 | #include "llvm/Support/MemoryBuffer.h" |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 26 | #include <deque> |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 27 | |
Douglas Gregor | 27c72d8 | 2011-11-03 18:07:07 +0000 | [diff] [blame] | 28 | namespace clang { |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 29 | class ASTNodeImporter : public TypeVisitor<ASTNodeImporter, QualType>, |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 30 | public DeclVisitor<ASTNodeImporter, Decl *>, |
| 31 | public StmtVisitor<ASTNodeImporter, Stmt *> { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 32 | ASTImporter &Importer; |
| 33 | |
| 34 | public: |
| 35 | explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { } |
| 36 | |
| 37 | using TypeVisitor<ASTNodeImporter, QualType>::Visit; |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 38 | using DeclVisitor<ASTNodeImporter, Decl *>::Visit; |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 39 | using StmtVisitor<ASTNodeImporter, Stmt *>::Visit; |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 40 | |
| 41 | // Importing types |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 42 | QualType VisitType(const Type *T); |
| 43 | QualType VisitBuiltinType(const BuiltinType *T); |
| 44 | QualType VisitComplexType(const ComplexType *T); |
| 45 | QualType VisitPointerType(const PointerType *T); |
| 46 | QualType VisitBlockPointerType(const BlockPointerType *T); |
| 47 | QualType VisitLValueReferenceType(const LValueReferenceType *T); |
| 48 | QualType VisitRValueReferenceType(const RValueReferenceType *T); |
| 49 | QualType VisitMemberPointerType(const MemberPointerType *T); |
| 50 | QualType VisitConstantArrayType(const ConstantArrayType *T); |
| 51 | QualType VisitIncompleteArrayType(const IncompleteArrayType *T); |
| 52 | QualType VisitVariableArrayType(const VariableArrayType *T); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 53 | // FIXME: DependentSizedArrayType |
| 54 | // FIXME: DependentSizedExtVectorType |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 55 | QualType VisitVectorType(const VectorType *T); |
| 56 | QualType VisitExtVectorType(const ExtVectorType *T); |
| 57 | QualType VisitFunctionNoProtoType(const FunctionNoProtoType *T); |
| 58 | QualType VisitFunctionProtoType(const FunctionProtoType *T); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 59 | // FIXME: UnresolvedUsingType |
Sean Callanan | 0aeb289 | 2011-08-11 16:56:07 +0000 | [diff] [blame] | 60 | QualType VisitParenType(const ParenType *T); |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 61 | QualType VisitTypedefType(const TypedefType *T); |
| 62 | QualType VisitTypeOfExprType(const TypeOfExprType *T); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 63 | // FIXME: DependentTypeOfExprType |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 64 | QualType VisitTypeOfType(const TypeOfType *T); |
| 65 | QualType VisitDecltypeType(const DecltypeType *T); |
Sean Hunt | ca63c20 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 66 | QualType VisitUnaryTransformType(const UnaryTransformType *T); |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 67 | QualType VisitAutoType(const AutoType *T); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 68 | // FIXME: DependentDecltypeType |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 69 | QualType VisitRecordType(const RecordType *T); |
| 70 | QualType VisitEnumType(const EnumType *T); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 71 | // FIXME: TemplateTypeParmType |
| 72 | // FIXME: SubstTemplateTypeParmType |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 73 | QualType VisitTemplateSpecializationType(const TemplateSpecializationType *T); |
| 74 | QualType VisitElaboratedType(const ElaboratedType *T); |
Douglas Gregor | 4714c12 | 2010-03-31 17:34:00 +0000 | [diff] [blame] | 75 | // FIXME: DependentNameType |
John McCall | 3350095 | 2010-06-11 00:33:02 +0000 | [diff] [blame] | 76 | // FIXME: DependentTemplateSpecializationType |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 77 | QualType VisitObjCInterfaceType(const ObjCInterfaceType *T); |
| 78 | QualType VisitObjCObjectType(const ObjCObjectType *T); |
| 79 | QualType VisitObjCObjectPointerType(const ObjCObjectPointerType *T); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 80 | |
| 81 | // Importing declarations |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 82 | bool ImportDeclParts(NamedDecl *D, DeclContext *&DC, |
| 83 | DeclContext *&LexicalDC, DeclarationName &Name, |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 84 | SourceLocation &Loc); |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 85 | void ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD = 0); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 86 | void ImportDeclarationNameLoc(const DeclarationNameInfo &From, |
| 87 | DeclarationNameInfo& To); |
Douglas Gregor | d8868a6 | 2011-01-18 03:11:38 +0000 | [diff] [blame] | 88 | void ImportDeclContext(DeclContext *FromDC, bool ForceImport = false); |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 89 | bool ImportDefinition(RecordDecl *From, RecordDecl *To, |
| 90 | bool ForceImport = false); |
| 91 | bool ImportDefinition(EnumDecl *From, EnumDecl *To, |
| 92 | bool ForceImport = false); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 93 | TemplateParameterList *ImportTemplateParameterList( |
| 94 | TemplateParameterList *Params); |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 95 | TemplateArgument ImportTemplateArgument(const TemplateArgument &From); |
| 96 | bool ImportTemplateArguments(const TemplateArgument *FromArgs, |
| 97 | unsigned NumFromArgs, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 98 | SmallVectorImpl<TemplateArgument> &ToArgs); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 99 | bool IsStructuralMatch(RecordDecl *FromRecord, RecordDecl *ToRecord); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 100 | bool IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToRecord); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 101 | bool IsStructuralMatch(ClassTemplateDecl *From, ClassTemplateDecl *To); |
Douglas Gregor | 89cc9d6 | 2010-02-09 22:48:33 +0000 | [diff] [blame] | 102 | Decl *VisitDecl(Decl *D); |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 103 | Decl *VisitNamespaceDecl(NamespaceDecl *D); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 104 | Decl *VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias); |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 105 | Decl *VisitTypedefDecl(TypedefDecl *D); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 106 | Decl *VisitTypeAliasDecl(TypeAliasDecl *D); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 107 | Decl *VisitEnumDecl(EnumDecl *D); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 108 | Decl *VisitRecordDecl(RecordDecl *D); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 109 | Decl *VisitEnumConstantDecl(EnumConstantDecl *D); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 110 | Decl *VisitFunctionDecl(FunctionDecl *D); |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 111 | Decl *VisitCXXMethodDecl(CXXMethodDecl *D); |
| 112 | Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D); |
| 113 | Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D); |
| 114 | Decl *VisitCXXConversionDecl(CXXConversionDecl *D); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 115 | Decl *VisitFieldDecl(FieldDecl *D); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 116 | Decl *VisitIndirectFieldDecl(IndirectFieldDecl *D); |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 117 | Decl *VisitObjCIvarDecl(ObjCIvarDecl *D); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 118 | Decl *VisitVarDecl(VarDecl *D); |
Douglas Gregor | 2cd0093 | 2010-02-17 21:22:52 +0000 | [diff] [blame] | 119 | Decl *VisitImplicitParamDecl(ImplicitParamDecl *D); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 120 | Decl *VisitParmVarDecl(ParmVarDecl *D); |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 121 | Decl *VisitObjCMethodDecl(ObjCMethodDecl *D); |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 122 | Decl *VisitObjCCategoryDecl(ObjCCategoryDecl *D); |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 123 | Decl *VisitObjCProtocolDecl(ObjCProtocolDecl *D); |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 124 | Decl *VisitObjCInterfaceDecl(ObjCInterfaceDecl *D); |
Douglas Gregor | 3daef29 | 2010-12-07 15:32:12 +0000 | [diff] [blame] | 125 | Decl *VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); |
Douglas Gregor | dd182ff | 2010-12-07 01:26:03 +0000 | [diff] [blame] | 126 | Decl *VisitObjCImplementationDecl(ObjCImplementationDecl *D); |
Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 127 | Decl *VisitObjCPropertyDecl(ObjCPropertyDecl *D); |
Douglas Gregor | 954e0c7 | 2010-12-07 18:32:03 +0000 | [diff] [blame] | 128 | Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D); |
Douglas Gregor | 2b78502 | 2010-02-18 02:12:22 +0000 | [diff] [blame] | 129 | Decl *VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D); |
Douglas Gregor | a2bc15b | 2010-02-18 02:04:09 +0000 | [diff] [blame] | 130 | Decl *VisitObjCClassDecl(ObjCClassDecl *D); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 131 | Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D); |
| 132 | Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D); |
| 133 | Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D); |
| 134 | Decl *VisitClassTemplateDecl(ClassTemplateDecl *D); |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 135 | Decl *VisitClassTemplateSpecializationDecl( |
| 136 | ClassTemplateSpecializationDecl *D); |
Douglas Gregor | a2bc15b | 2010-02-18 02:04:09 +0000 | [diff] [blame] | 137 | |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 138 | // Importing statements |
| 139 | Stmt *VisitStmt(Stmt *S); |
| 140 | |
| 141 | // Importing expressions |
| 142 | Expr *VisitExpr(Expr *E); |
Douglas Gregor | 4408063 | 2010-02-19 01:17:02 +0000 | [diff] [blame] | 143 | Expr *VisitDeclRefExpr(DeclRefExpr *E); |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 144 | Expr *VisitIntegerLiteral(IntegerLiteral *E); |
Douglas Gregor | b2e400a | 2010-02-18 02:21:22 +0000 | [diff] [blame] | 145 | Expr *VisitCharacterLiteral(CharacterLiteral *E); |
Douglas Gregor | f638f95 | 2010-02-19 01:07:06 +0000 | [diff] [blame] | 146 | Expr *VisitParenExpr(ParenExpr *E); |
| 147 | Expr *VisitUnaryOperator(UnaryOperator *E); |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 148 | Expr *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E); |
Douglas Gregor | f638f95 | 2010-02-19 01:07:06 +0000 | [diff] [blame] | 149 | Expr *VisitBinaryOperator(BinaryOperator *E); |
| 150 | Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 151 | Expr *VisitImplicitCastExpr(ImplicitCastExpr *E); |
Douglas Gregor | 008847a | 2010-02-19 01:32:14 +0000 | [diff] [blame] | 152 | Expr *VisitCStyleCastExpr(CStyleCastExpr *E); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 153 | }; |
| 154 | } |
Douglas Gregor | 27c72d8 | 2011-11-03 18:07:07 +0000 | [diff] [blame] | 155 | using namespace clang; |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 156 | |
| 157 | //---------------------------------------------------------------------------- |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 158 | // Structural Equivalence |
| 159 | //---------------------------------------------------------------------------- |
| 160 | |
| 161 | namespace { |
| 162 | struct StructuralEquivalenceContext { |
| 163 | /// \brief AST contexts for which we are checking structural equivalence. |
| 164 | ASTContext &C1, &C2; |
| 165 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 166 | /// \brief The set of "tentative" equivalences between two canonical |
| 167 | /// declarations, mapping from a declaration in the first context to the |
| 168 | /// declaration in the second context that we believe to be equivalent. |
| 169 | llvm::DenseMap<Decl *, Decl *> TentativeEquivalences; |
| 170 | |
| 171 | /// \brief Queue of declarations in the first context whose equivalence |
| 172 | /// with a declaration in the second context still needs to be verified. |
| 173 | std::deque<Decl *> DeclsToCheck; |
| 174 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 175 | /// \brief Declaration (from, to) pairs that are known not to be equivalent |
| 176 | /// (which we have already complained about). |
| 177 | llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls; |
| 178 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 179 | /// \brief Whether we're being strict about the spelling of types when |
| 180 | /// unifying two types. |
| 181 | bool StrictTypeSpelling; |
| 182 | |
| 183 | StructuralEquivalenceContext(ASTContext &C1, ASTContext &C2, |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 184 | llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls, |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 185 | bool StrictTypeSpelling = false) |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 186 | : C1(C1), C2(C2), NonEquivalentDecls(NonEquivalentDecls), |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 187 | StrictTypeSpelling(StrictTypeSpelling) { } |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 188 | |
| 189 | /// \brief Determine whether the two declarations are structurally |
| 190 | /// equivalent. |
| 191 | bool IsStructurallyEquivalent(Decl *D1, Decl *D2); |
| 192 | |
| 193 | /// \brief Determine whether the two types are structurally equivalent. |
| 194 | bool IsStructurallyEquivalent(QualType T1, QualType T2); |
| 195 | |
| 196 | private: |
| 197 | /// \brief Finish checking all of the structural equivalences. |
| 198 | /// |
| 199 | /// \returns true if an error occurred, false otherwise. |
| 200 | bool Finish(); |
| 201 | |
| 202 | public: |
| 203 | DiagnosticBuilder Diag1(SourceLocation Loc, unsigned DiagID) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 204 | return C1.getDiagnostics().Report(Loc, DiagID); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | DiagnosticBuilder Diag2(SourceLocation Loc, unsigned DiagID) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 208 | return C2.getDiagnostics().Report(Loc, DiagID); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 209 | } |
| 210 | }; |
| 211 | } |
| 212 | |
| 213 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 214 | QualType T1, QualType T2); |
| 215 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 216 | Decl *D1, Decl *D2); |
| 217 | |
| 218 | /// \brief Determine if two APInts have the same value, after zero-extending |
| 219 | /// one of them (if needed!) to ensure that the bit-widths match. |
| 220 | static bool IsSameValue(const llvm::APInt &I1, const llvm::APInt &I2) { |
| 221 | if (I1.getBitWidth() == I2.getBitWidth()) |
| 222 | return I1 == I2; |
| 223 | |
| 224 | if (I1.getBitWidth() > I2.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 225 | return I1 == I2.zext(I1.getBitWidth()); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 226 | |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 227 | return I1.zext(I2.getBitWidth()) == I2; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | /// \brief Determine if two APSInts have the same value, zero- or sign-extending |
| 231 | /// as needed. |
| 232 | static bool IsSameValue(const llvm::APSInt &I1, const llvm::APSInt &I2) { |
| 233 | if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()) |
| 234 | return I1 == I2; |
| 235 | |
| 236 | // Check for a bit-width mismatch. |
| 237 | if (I1.getBitWidth() > I2.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 238 | return IsSameValue(I1, I2.extend(I1.getBitWidth())); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 239 | else if (I2.getBitWidth() > I1.getBitWidth()) |
Jay Foad | 9f71a8f | 2010-12-07 08:25:34 +0000 | [diff] [blame] | 240 | return IsSameValue(I1.extend(I2.getBitWidth()), I2); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 241 | |
| 242 | // We have a signedness mismatch. Turn the signed value into an unsigned |
| 243 | // value. |
| 244 | if (I1.isSigned()) { |
| 245 | if (I1.isNegative()) |
| 246 | return false; |
| 247 | |
| 248 | return llvm::APSInt(I1, true) == I2; |
| 249 | } |
| 250 | |
| 251 | if (I2.isNegative()) |
| 252 | return false; |
| 253 | |
| 254 | return I1 == llvm::APSInt(I2, true); |
| 255 | } |
| 256 | |
| 257 | /// \brief Determine structural equivalence of two expressions. |
| 258 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 259 | Expr *E1, Expr *E2) { |
| 260 | if (!E1 || !E2) |
| 261 | return E1 == E2; |
| 262 | |
| 263 | // FIXME: Actually perform a structural comparison! |
| 264 | return true; |
| 265 | } |
| 266 | |
| 267 | /// \brief Determine whether two identifiers are equivalent. |
| 268 | static bool IsStructurallyEquivalent(const IdentifierInfo *Name1, |
| 269 | const IdentifierInfo *Name2) { |
| 270 | if (!Name1 || !Name2) |
| 271 | return Name1 == Name2; |
| 272 | |
| 273 | return Name1->getName() == Name2->getName(); |
| 274 | } |
| 275 | |
| 276 | /// \brief Determine whether two nested-name-specifiers are equivalent. |
| 277 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 278 | NestedNameSpecifier *NNS1, |
| 279 | NestedNameSpecifier *NNS2) { |
| 280 | // FIXME: Implement! |
| 281 | return true; |
| 282 | } |
| 283 | |
| 284 | /// \brief Determine whether two template arguments are equivalent. |
| 285 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 286 | const TemplateArgument &Arg1, |
| 287 | const TemplateArgument &Arg2) { |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 288 | if (Arg1.getKind() != Arg2.getKind()) |
| 289 | return false; |
| 290 | |
| 291 | switch (Arg1.getKind()) { |
| 292 | case TemplateArgument::Null: |
| 293 | return true; |
| 294 | |
| 295 | case TemplateArgument::Type: |
| 296 | return Context.IsStructurallyEquivalent(Arg1.getAsType(), Arg2.getAsType()); |
| 297 | |
| 298 | case TemplateArgument::Integral: |
| 299 | if (!Context.IsStructurallyEquivalent(Arg1.getIntegralType(), |
| 300 | Arg2.getIntegralType())) |
| 301 | return false; |
| 302 | |
| 303 | return IsSameValue(*Arg1.getAsIntegral(), *Arg2.getAsIntegral()); |
| 304 | |
| 305 | case TemplateArgument::Declaration: |
| 306 | return Context.IsStructurallyEquivalent(Arg1.getAsDecl(), Arg2.getAsDecl()); |
| 307 | |
| 308 | case TemplateArgument::Template: |
| 309 | return IsStructurallyEquivalent(Context, |
| 310 | Arg1.getAsTemplate(), |
| 311 | Arg2.getAsTemplate()); |
Douglas Gregor | a7fc901 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 312 | |
| 313 | case TemplateArgument::TemplateExpansion: |
| 314 | return IsStructurallyEquivalent(Context, |
| 315 | Arg1.getAsTemplateOrTemplatePattern(), |
| 316 | Arg2.getAsTemplateOrTemplatePattern()); |
| 317 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 318 | case TemplateArgument::Expression: |
| 319 | return IsStructurallyEquivalent(Context, |
| 320 | Arg1.getAsExpr(), Arg2.getAsExpr()); |
| 321 | |
| 322 | case TemplateArgument::Pack: |
| 323 | if (Arg1.pack_size() != Arg2.pack_size()) |
| 324 | return false; |
| 325 | |
| 326 | for (unsigned I = 0, N = Arg1.pack_size(); I != N; ++I) |
| 327 | if (!IsStructurallyEquivalent(Context, |
| 328 | Arg1.pack_begin()[I], |
| 329 | Arg2.pack_begin()[I])) |
| 330 | return false; |
| 331 | |
| 332 | return true; |
| 333 | } |
| 334 | |
| 335 | llvm_unreachable("Invalid template argument kind"); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 336 | return true; |
| 337 | } |
| 338 | |
| 339 | /// \brief Determine structural equivalence for the common part of array |
| 340 | /// types. |
| 341 | static bool IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 342 | const ArrayType *Array1, |
| 343 | const ArrayType *Array2) { |
| 344 | if (!IsStructurallyEquivalent(Context, |
| 345 | Array1->getElementType(), |
| 346 | Array2->getElementType())) |
| 347 | return false; |
| 348 | if (Array1->getSizeModifier() != Array2->getSizeModifier()) |
| 349 | return false; |
| 350 | if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers()) |
| 351 | return false; |
| 352 | |
| 353 | return true; |
| 354 | } |
| 355 | |
| 356 | /// \brief Determine structural equivalence of two types. |
| 357 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 358 | QualType T1, QualType T2) { |
| 359 | if (T1.isNull() || T2.isNull()) |
| 360 | return T1.isNull() && T2.isNull(); |
| 361 | |
| 362 | if (!Context.StrictTypeSpelling) { |
| 363 | // We aren't being strict about token-to-token equivalence of types, |
| 364 | // so map down to the canonical type. |
| 365 | T1 = Context.C1.getCanonicalType(T1); |
| 366 | T2 = Context.C2.getCanonicalType(T2); |
| 367 | } |
| 368 | |
| 369 | if (T1.getQualifiers() != T2.getQualifiers()) |
| 370 | return false; |
| 371 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 372 | Type::TypeClass TC = T1->getTypeClass(); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 373 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 374 | if (T1->getTypeClass() != T2->getTypeClass()) { |
| 375 | // Compare function types with prototypes vs. without prototypes as if |
| 376 | // both did not have prototypes. |
| 377 | if (T1->getTypeClass() == Type::FunctionProto && |
| 378 | T2->getTypeClass() == Type::FunctionNoProto) |
| 379 | TC = Type::FunctionNoProto; |
| 380 | else if (T1->getTypeClass() == Type::FunctionNoProto && |
| 381 | T2->getTypeClass() == Type::FunctionProto) |
| 382 | TC = Type::FunctionNoProto; |
| 383 | else |
| 384 | return false; |
| 385 | } |
| 386 | |
| 387 | switch (TC) { |
| 388 | case Type::Builtin: |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 389 | // FIXME: Deal with Char_S/Char_U. |
| 390 | if (cast<BuiltinType>(T1)->getKind() != cast<BuiltinType>(T2)->getKind()) |
| 391 | return false; |
| 392 | break; |
| 393 | |
| 394 | case Type::Complex: |
| 395 | if (!IsStructurallyEquivalent(Context, |
| 396 | cast<ComplexType>(T1)->getElementType(), |
| 397 | cast<ComplexType>(T2)->getElementType())) |
| 398 | return false; |
| 399 | break; |
| 400 | |
| 401 | case Type::Pointer: |
| 402 | if (!IsStructurallyEquivalent(Context, |
| 403 | cast<PointerType>(T1)->getPointeeType(), |
| 404 | cast<PointerType>(T2)->getPointeeType())) |
| 405 | return false; |
| 406 | break; |
| 407 | |
| 408 | case Type::BlockPointer: |
| 409 | if (!IsStructurallyEquivalent(Context, |
| 410 | cast<BlockPointerType>(T1)->getPointeeType(), |
| 411 | cast<BlockPointerType>(T2)->getPointeeType())) |
| 412 | return false; |
| 413 | break; |
| 414 | |
| 415 | case Type::LValueReference: |
| 416 | case Type::RValueReference: { |
| 417 | const ReferenceType *Ref1 = cast<ReferenceType>(T1); |
| 418 | const ReferenceType *Ref2 = cast<ReferenceType>(T2); |
| 419 | if (Ref1->isSpelledAsLValue() != Ref2->isSpelledAsLValue()) |
| 420 | return false; |
| 421 | if (Ref1->isInnerRef() != Ref2->isInnerRef()) |
| 422 | return false; |
| 423 | if (!IsStructurallyEquivalent(Context, |
| 424 | Ref1->getPointeeTypeAsWritten(), |
| 425 | Ref2->getPointeeTypeAsWritten())) |
| 426 | return false; |
| 427 | break; |
| 428 | } |
| 429 | |
| 430 | case Type::MemberPointer: { |
| 431 | const MemberPointerType *MemPtr1 = cast<MemberPointerType>(T1); |
| 432 | const MemberPointerType *MemPtr2 = cast<MemberPointerType>(T2); |
| 433 | if (!IsStructurallyEquivalent(Context, |
| 434 | MemPtr1->getPointeeType(), |
| 435 | MemPtr2->getPointeeType())) |
| 436 | return false; |
| 437 | if (!IsStructurallyEquivalent(Context, |
| 438 | QualType(MemPtr1->getClass(), 0), |
| 439 | QualType(MemPtr2->getClass(), 0))) |
| 440 | return false; |
| 441 | break; |
| 442 | } |
| 443 | |
| 444 | case Type::ConstantArray: { |
| 445 | const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1); |
| 446 | const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2); |
| 447 | if (!IsSameValue(Array1->getSize(), Array2->getSize())) |
| 448 | return false; |
| 449 | |
| 450 | if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) |
| 451 | return false; |
| 452 | break; |
| 453 | } |
| 454 | |
| 455 | case Type::IncompleteArray: |
| 456 | if (!IsArrayStructurallyEquivalent(Context, |
| 457 | cast<ArrayType>(T1), |
| 458 | cast<ArrayType>(T2))) |
| 459 | return false; |
| 460 | break; |
| 461 | |
| 462 | case Type::VariableArray: { |
| 463 | const VariableArrayType *Array1 = cast<VariableArrayType>(T1); |
| 464 | const VariableArrayType *Array2 = cast<VariableArrayType>(T2); |
| 465 | if (!IsStructurallyEquivalent(Context, |
| 466 | Array1->getSizeExpr(), Array2->getSizeExpr())) |
| 467 | return false; |
| 468 | |
| 469 | if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) |
| 470 | return false; |
| 471 | |
| 472 | break; |
| 473 | } |
| 474 | |
| 475 | case Type::DependentSizedArray: { |
| 476 | const DependentSizedArrayType *Array1 = cast<DependentSizedArrayType>(T1); |
| 477 | const DependentSizedArrayType *Array2 = cast<DependentSizedArrayType>(T2); |
| 478 | if (!IsStructurallyEquivalent(Context, |
| 479 | Array1->getSizeExpr(), Array2->getSizeExpr())) |
| 480 | return false; |
| 481 | |
| 482 | if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) |
| 483 | return false; |
| 484 | |
| 485 | break; |
| 486 | } |
| 487 | |
| 488 | case Type::DependentSizedExtVector: { |
| 489 | const DependentSizedExtVectorType *Vec1 |
| 490 | = cast<DependentSizedExtVectorType>(T1); |
| 491 | const DependentSizedExtVectorType *Vec2 |
| 492 | = cast<DependentSizedExtVectorType>(T2); |
| 493 | if (!IsStructurallyEquivalent(Context, |
| 494 | Vec1->getSizeExpr(), Vec2->getSizeExpr())) |
| 495 | return false; |
| 496 | if (!IsStructurallyEquivalent(Context, |
| 497 | Vec1->getElementType(), |
| 498 | Vec2->getElementType())) |
| 499 | return false; |
| 500 | break; |
| 501 | } |
| 502 | |
| 503 | case Type::Vector: |
| 504 | case Type::ExtVector: { |
| 505 | const VectorType *Vec1 = cast<VectorType>(T1); |
| 506 | const VectorType *Vec2 = cast<VectorType>(T2); |
| 507 | if (!IsStructurallyEquivalent(Context, |
| 508 | Vec1->getElementType(), |
| 509 | Vec2->getElementType())) |
| 510 | return false; |
| 511 | if (Vec1->getNumElements() != Vec2->getNumElements()) |
| 512 | return false; |
Bob Wilson | e86d78c | 2010-11-10 21:56:12 +0000 | [diff] [blame] | 513 | if (Vec1->getVectorKind() != Vec2->getVectorKind()) |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 514 | return false; |
Douglas Gregor | 0e12b44 | 2010-02-19 01:36:36 +0000 | [diff] [blame] | 515 | break; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | case Type::FunctionProto: { |
| 519 | const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1); |
| 520 | const FunctionProtoType *Proto2 = cast<FunctionProtoType>(T2); |
| 521 | if (Proto1->getNumArgs() != Proto2->getNumArgs()) |
| 522 | return false; |
| 523 | for (unsigned I = 0, N = Proto1->getNumArgs(); I != N; ++I) { |
| 524 | if (!IsStructurallyEquivalent(Context, |
| 525 | Proto1->getArgType(I), |
| 526 | Proto2->getArgType(I))) |
| 527 | return false; |
| 528 | } |
| 529 | if (Proto1->isVariadic() != Proto2->isVariadic()) |
| 530 | return false; |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 531 | if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType()) |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 532 | return false; |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 533 | if (Proto1->getExceptionSpecType() == EST_Dynamic) { |
| 534 | if (Proto1->getNumExceptions() != Proto2->getNumExceptions()) |
| 535 | return false; |
| 536 | for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) { |
| 537 | if (!IsStructurallyEquivalent(Context, |
| 538 | Proto1->getExceptionType(I), |
| 539 | Proto2->getExceptionType(I))) |
| 540 | return false; |
| 541 | } |
| 542 | } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) { |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 543 | if (!IsStructurallyEquivalent(Context, |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 544 | Proto1->getNoexceptExpr(), |
| 545 | Proto2->getNoexceptExpr())) |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 546 | return false; |
| 547 | } |
| 548 | if (Proto1->getTypeQuals() != Proto2->getTypeQuals()) |
| 549 | return false; |
| 550 | |
| 551 | // Fall through to check the bits common with FunctionNoProtoType. |
| 552 | } |
| 553 | |
| 554 | case Type::FunctionNoProto: { |
| 555 | const FunctionType *Function1 = cast<FunctionType>(T1); |
| 556 | const FunctionType *Function2 = cast<FunctionType>(T2); |
| 557 | if (!IsStructurallyEquivalent(Context, |
| 558 | Function1->getResultType(), |
| 559 | Function2->getResultType())) |
| 560 | return false; |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 561 | if (Function1->getExtInfo() != Function2->getExtInfo()) |
| 562 | return false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 563 | break; |
| 564 | } |
| 565 | |
| 566 | case Type::UnresolvedUsing: |
| 567 | if (!IsStructurallyEquivalent(Context, |
| 568 | cast<UnresolvedUsingType>(T1)->getDecl(), |
| 569 | cast<UnresolvedUsingType>(T2)->getDecl())) |
| 570 | return false; |
| 571 | |
| 572 | break; |
John McCall | 9d156a7 | 2011-01-06 01:58:22 +0000 | [diff] [blame] | 573 | |
| 574 | case Type::Attributed: |
| 575 | if (!IsStructurallyEquivalent(Context, |
| 576 | cast<AttributedType>(T1)->getModifiedType(), |
| 577 | cast<AttributedType>(T2)->getModifiedType())) |
| 578 | return false; |
| 579 | if (!IsStructurallyEquivalent(Context, |
| 580 | cast<AttributedType>(T1)->getEquivalentType(), |
| 581 | cast<AttributedType>(T2)->getEquivalentType())) |
| 582 | return false; |
| 583 | break; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 584 | |
Abramo Bagnara | 075f8f1 | 2010-12-10 16:29:40 +0000 | [diff] [blame] | 585 | case Type::Paren: |
| 586 | if (!IsStructurallyEquivalent(Context, |
| 587 | cast<ParenType>(T1)->getInnerType(), |
| 588 | cast<ParenType>(T2)->getInnerType())) |
| 589 | return false; |
| 590 | break; |
| 591 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 592 | case Type::Typedef: |
| 593 | if (!IsStructurallyEquivalent(Context, |
| 594 | cast<TypedefType>(T1)->getDecl(), |
| 595 | cast<TypedefType>(T2)->getDecl())) |
| 596 | return false; |
| 597 | break; |
| 598 | |
| 599 | case Type::TypeOfExpr: |
| 600 | if (!IsStructurallyEquivalent(Context, |
| 601 | cast<TypeOfExprType>(T1)->getUnderlyingExpr(), |
| 602 | cast<TypeOfExprType>(T2)->getUnderlyingExpr())) |
| 603 | return false; |
| 604 | break; |
| 605 | |
| 606 | case Type::TypeOf: |
| 607 | if (!IsStructurallyEquivalent(Context, |
| 608 | cast<TypeOfType>(T1)->getUnderlyingType(), |
| 609 | cast<TypeOfType>(T2)->getUnderlyingType())) |
| 610 | return false; |
| 611 | break; |
Sean Hunt | ca63c20 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 612 | |
| 613 | case Type::UnaryTransform: |
| 614 | if (!IsStructurallyEquivalent(Context, |
| 615 | cast<UnaryTransformType>(T1)->getUnderlyingType(), |
| 616 | cast<UnaryTransformType>(T1)->getUnderlyingType())) |
| 617 | return false; |
| 618 | break; |
| 619 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 620 | case Type::Decltype: |
| 621 | if (!IsStructurallyEquivalent(Context, |
| 622 | cast<DecltypeType>(T1)->getUnderlyingExpr(), |
| 623 | cast<DecltypeType>(T2)->getUnderlyingExpr())) |
| 624 | return false; |
| 625 | break; |
| 626 | |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 627 | case Type::Auto: |
| 628 | if (!IsStructurallyEquivalent(Context, |
| 629 | cast<AutoType>(T1)->getDeducedType(), |
| 630 | cast<AutoType>(T2)->getDeducedType())) |
| 631 | return false; |
| 632 | break; |
| 633 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 634 | case Type::Record: |
| 635 | case Type::Enum: |
| 636 | if (!IsStructurallyEquivalent(Context, |
| 637 | cast<TagType>(T1)->getDecl(), |
| 638 | cast<TagType>(T2)->getDecl())) |
| 639 | return false; |
| 640 | break; |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 641 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 642 | case Type::TemplateTypeParm: { |
| 643 | const TemplateTypeParmType *Parm1 = cast<TemplateTypeParmType>(T1); |
| 644 | const TemplateTypeParmType *Parm2 = cast<TemplateTypeParmType>(T2); |
| 645 | if (Parm1->getDepth() != Parm2->getDepth()) |
| 646 | return false; |
| 647 | if (Parm1->getIndex() != Parm2->getIndex()) |
| 648 | return false; |
| 649 | if (Parm1->isParameterPack() != Parm2->isParameterPack()) |
| 650 | return false; |
| 651 | |
| 652 | // Names of template type parameters are never significant. |
| 653 | break; |
| 654 | } |
| 655 | |
| 656 | case Type::SubstTemplateTypeParm: { |
| 657 | const SubstTemplateTypeParmType *Subst1 |
| 658 | = cast<SubstTemplateTypeParmType>(T1); |
| 659 | const SubstTemplateTypeParmType *Subst2 |
| 660 | = cast<SubstTemplateTypeParmType>(T2); |
| 661 | if (!IsStructurallyEquivalent(Context, |
| 662 | QualType(Subst1->getReplacedParameter(), 0), |
| 663 | QualType(Subst2->getReplacedParameter(), 0))) |
| 664 | return false; |
| 665 | if (!IsStructurallyEquivalent(Context, |
| 666 | Subst1->getReplacementType(), |
| 667 | Subst2->getReplacementType())) |
| 668 | return false; |
| 669 | break; |
| 670 | } |
| 671 | |
Douglas Gregor | 0bc15d9 | 2011-01-14 05:11:40 +0000 | [diff] [blame] | 672 | case Type::SubstTemplateTypeParmPack: { |
| 673 | const SubstTemplateTypeParmPackType *Subst1 |
| 674 | = cast<SubstTemplateTypeParmPackType>(T1); |
| 675 | const SubstTemplateTypeParmPackType *Subst2 |
| 676 | = cast<SubstTemplateTypeParmPackType>(T2); |
| 677 | if (!IsStructurallyEquivalent(Context, |
| 678 | QualType(Subst1->getReplacedParameter(), 0), |
| 679 | QualType(Subst2->getReplacedParameter(), 0))) |
| 680 | return false; |
| 681 | if (!IsStructurallyEquivalent(Context, |
| 682 | Subst1->getArgumentPack(), |
| 683 | Subst2->getArgumentPack())) |
| 684 | return false; |
| 685 | break; |
| 686 | } |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 687 | case Type::TemplateSpecialization: { |
| 688 | const TemplateSpecializationType *Spec1 |
| 689 | = cast<TemplateSpecializationType>(T1); |
| 690 | const TemplateSpecializationType *Spec2 |
| 691 | = cast<TemplateSpecializationType>(T2); |
| 692 | if (!IsStructurallyEquivalent(Context, |
| 693 | Spec1->getTemplateName(), |
| 694 | Spec2->getTemplateName())) |
| 695 | return false; |
| 696 | if (Spec1->getNumArgs() != Spec2->getNumArgs()) |
| 697 | return false; |
| 698 | for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) { |
| 699 | if (!IsStructurallyEquivalent(Context, |
| 700 | Spec1->getArg(I), Spec2->getArg(I))) |
| 701 | return false; |
| 702 | } |
| 703 | break; |
| 704 | } |
| 705 | |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 706 | case Type::Elaborated: { |
| 707 | const ElaboratedType *Elab1 = cast<ElaboratedType>(T1); |
| 708 | const ElaboratedType *Elab2 = cast<ElaboratedType>(T2); |
| 709 | // CHECKME: what if a keyword is ETK_None or ETK_typename ? |
| 710 | if (Elab1->getKeyword() != Elab2->getKeyword()) |
| 711 | return false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 712 | if (!IsStructurallyEquivalent(Context, |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 713 | Elab1->getQualifier(), |
| 714 | Elab2->getQualifier())) |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 715 | return false; |
| 716 | if (!IsStructurallyEquivalent(Context, |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 717 | Elab1->getNamedType(), |
| 718 | Elab2->getNamedType())) |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 719 | return false; |
| 720 | break; |
| 721 | } |
| 722 | |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 723 | case Type::InjectedClassName: { |
| 724 | const InjectedClassNameType *Inj1 = cast<InjectedClassNameType>(T1); |
| 725 | const InjectedClassNameType *Inj2 = cast<InjectedClassNameType>(T2); |
| 726 | if (!IsStructurallyEquivalent(Context, |
John McCall | 31f17ec | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 727 | Inj1->getInjectedSpecializationType(), |
| 728 | Inj2->getInjectedSpecializationType())) |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 729 | return false; |
| 730 | break; |
| 731 | } |
| 732 | |
Douglas Gregor | 4714c12 | 2010-03-31 17:34:00 +0000 | [diff] [blame] | 733 | case Type::DependentName: { |
| 734 | const DependentNameType *Typename1 = cast<DependentNameType>(T1); |
| 735 | const DependentNameType *Typename2 = cast<DependentNameType>(T2); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 736 | if (!IsStructurallyEquivalent(Context, |
| 737 | Typename1->getQualifier(), |
| 738 | Typename2->getQualifier())) |
| 739 | return false; |
| 740 | if (!IsStructurallyEquivalent(Typename1->getIdentifier(), |
| 741 | Typename2->getIdentifier())) |
| 742 | return false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 743 | |
| 744 | break; |
| 745 | } |
| 746 | |
John McCall | 3350095 | 2010-06-11 00:33:02 +0000 | [diff] [blame] | 747 | case Type::DependentTemplateSpecialization: { |
| 748 | const DependentTemplateSpecializationType *Spec1 = |
| 749 | cast<DependentTemplateSpecializationType>(T1); |
| 750 | const DependentTemplateSpecializationType *Spec2 = |
| 751 | cast<DependentTemplateSpecializationType>(T2); |
| 752 | if (!IsStructurallyEquivalent(Context, |
| 753 | Spec1->getQualifier(), |
| 754 | Spec2->getQualifier())) |
| 755 | return false; |
| 756 | if (!IsStructurallyEquivalent(Spec1->getIdentifier(), |
| 757 | Spec2->getIdentifier())) |
| 758 | return false; |
| 759 | if (Spec1->getNumArgs() != Spec2->getNumArgs()) |
| 760 | return false; |
| 761 | for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) { |
| 762 | if (!IsStructurallyEquivalent(Context, |
| 763 | Spec1->getArg(I), Spec2->getArg(I))) |
| 764 | return false; |
| 765 | } |
| 766 | break; |
| 767 | } |
Douglas Gregor | 7536dd5 | 2010-12-20 02:24:11 +0000 | [diff] [blame] | 768 | |
| 769 | case Type::PackExpansion: |
| 770 | if (!IsStructurallyEquivalent(Context, |
| 771 | cast<PackExpansionType>(T1)->getPattern(), |
| 772 | cast<PackExpansionType>(T2)->getPattern())) |
| 773 | return false; |
| 774 | break; |
| 775 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 776 | case Type::ObjCInterface: { |
| 777 | const ObjCInterfaceType *Iface1 = cast<ObjCInterfaceType>(T1); |
| 778 | const ObjCInterfaceType *Iface2 = cast<ObjCInterfaceType>(T2); |
| 779 | if (!IsStructurallyEquivalent(Context, |
| 780 | Iface1->getDecl(), Iface2->getDecl())) |
| 781 | return false; |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 782 | break; |
| 783 | } |
| 784 | |
| 785 | case Type::ObjCObject: { |
| 786 | const ObjCObjectType *Obj1 = cast<ObjCObjectType>(T1); |
| 787 | const ObjCObjectType *Obj2 = cast<ObjCObjectType>(T2); |
| 788 | if (!IsStructurallyEquivalent(Context, |
| 789 | Obj1->getBaseType(), |
| 790 | Obj2->getBaseType())) |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 791 | return false; |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 792 | if (Obj1->getNumProtocols() != Obj2->getNumProtocols()) |
| 793 | return false; |
| 794 | for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) { |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 795 | if (!IsStructurallyEquivalent(Context, |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 796 | Obj1->getProtocol(I), |
| 797 | Obj2->getProtocol(I))) |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 798 | return false; |
| 799 | } |
| 800 | break; |
| 801 | } |
| 802 | |
| 803 | case Type::ObjCObjectPointer: { |
| 804 | const ObjCObjectPointerType *Ptr1 = cast<ObjCObjectPointerType>(T1); |
| 805 | const ObjCObjectPointerType *Ptr2 = cast<ObjCObjectPointerType>(T2); |
| 806 | if (!IsStructurallyEquivalent(Context, |
| 807 | Ptr1->getPointeeType(), |
| 808 | Ptr2->getPointeeType())) |
| 809 | return false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 810 | break; |
| 811 | } |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 812 | |
| 813 | case Type::Atomic: { |
| 814 | if (!IsStructurallyEquivalent(Context, |
| 815 | cast<AtomicType>(T1)->getValueType(), |
| 816 | cast<AtomicType>(T2)->getValueType())) |
| 817 | return false; |
| 818 | break; |
| 819 | } |
| 820 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 821 | } // end switch |
| 822 | |
| 823 | return true; |
| 824 | } |
| 825 | |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 826 | /// \brief Determine structural equivalence of two fields. |
| 827 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 828 | FieldDecl *Field1, FieldDecl *Field2) { |
| 829 | RecordDecl *Owner2 = cast<RecordDecl>(Field2->getDeclContext()); |
| 830 | |
| 831 | if (!IsStructurallyEquivalent(Context, |
| 832 | Field1->getType(), Field2->getType())) { |
| 833 | Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 834 | << Context.C2.getTypeDeclType(Owner2); |
| 835 | Context.Diag2(Field2->getLocation(), diag::note_odr_field) |
| 836 | << Field2->getDeclName() << Field2->getType(); |
| 837 | Context.Diag1(Field1->getLocation(), diag::note_odr_field) |
| 838 | << Field1->getDeclName() << Field1->getType(); |
| 839 | return false; |
| 840 | } |
| 841 | |
| 842 | if (Field1->isBitField() != Field2->isBitField()) { |
| 843 | Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 844 | << Context.C2.getTypeDeclType(Owner2); |
| 845 | if (Field1->isBitField()) { |
| 846 | Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field) |
| 847 | << Field1->getDeclName() << Field1->getType() |
| 848 | << Field1->getBitWidthValue(Context.C1); |
| 849 | Context.Diag2(Field2->getLocation(), diag::note_odr_not_bit_field) |
| 850 | << Field2->getDeclName(); |
| 851 | } else { |
| 852 | Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field) |
| 853 | << Field2->getDeclName() << Field2->getType() |
| 854 | << Field2->getBitWidthValue(Context.C2); |
| 855 | Context.Diag1(Field1->getLocation(), diag::note_odr_not_bit_field) |
| 856 | << Field1->getDeclName(); |
| 857 | } |
| 858 | return false; |
| 859 | } |
| 860 | |
| 861 | if (Field1->isBitField()) { |
| 862 | // Make sure that the bit-fields are the same length. |
| 863 | unsigned Bits1 = Field1->getBitWidthValue(Context.C1); |
| 864 | unsigned Bits2 = Field2->getBitWidthValue(Context.C2); |
| 865 | |
| 866 | if (Bits1 != Bits2) { |
| 867 | Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 868 | << Context.C2.getTypeDeclType(Owner2); |
| 869 | Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field) |
| 870 | << Field2->getDeclName() << Field2->getType() << Bits2; |
| 871 | Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field) |
| 872 | << Field1->getDeclName() << Field1->getType() << Bits1; |
| 873 | return false; |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | return true; |
| 878 | } |
| 879 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 880 | /// \brief Determine structural equivalence of two records. |
| 881 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 882 | RecordDecl *D1, RecordDecl *D2) { |
| 883 | if (D1->isUnion() != D2->isUnion()) { |
| 884 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 885 | << Context.C2.getTypeDeclType(D2); |
| 886 | Context.Diag1(D1->getLocation(), diag::note_odr_tag_kind_here) |
| 887 | << D1->getDeclName() << (unsigned)D1->getTagKind(); |
| 888 | return false; |
| 889 | } |
| 890 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 891 | // If both declarations are class template specializations, we know |
| 892 | // the ODR applies, so check the template and template arguments. |
| 893 | ClassTemplateSpecializationDecl *Spec1 |
| 894 | = dyn_cast<ClassTemplateSpecializationDecl>(D1); |
| 895 | ClassTemplateSpecializationDecl *Spec2 |
| 896 | = dyn_cast<ClassTemplateSpecializationDecl>(D2); |
| 897 | if (Spec1 && Spec2) { |
| 898 | // Check that the specialized templates are the same. |
| 899 | if (!IsStructurallyEquivalent(Context, Spec1->getSpecializedTemplate(), |
| 900 | Spec2->getSpecializedTemplate())) |
| 901 | return false; |
| 902 | |
| 903 | // Check that the template arguments are the same. |
| 904 | if (Spec1->getTemplateArgs().size() != Spec2->getTemplateArgs().size()) |
| 905 | return false; |
| 906 | |
| 907 | for (unsigned I = 0, N = Spec1->getTemplateArgs().size(); I != N; ++I) |
| 908 | if (!IsStructurallyEquivalent(Context, |
| 909 | Spec1->getTemplateArgs().get(I), |
| 910 | Spec2->getTemplateArgs().get(I))) |
| 911 | return false; |
| 912 | } |
| 913 | // If one is a class template specialization and the other is not, these |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 914 | // structures are different. |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 915 | else if (Spec1 || Spec2) |
| 916 | return false; |
| 917 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 918 | // Compare the definitions of these two records. If either or both are |
| 919 | // incomplete, we assume that they are equivalent. |
| 920 | D1 = D1->getDefinition(); |
| 921 | D2 = D2->getDefinition(); |
| 922 | if (!D1 || !D2) |
| 923 | return true; |
| 924 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 925 | if (CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(D1)) { |
| 926 | if (CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(D2)) { |
| 927 | if (D1CXX->getNumBases() != D2CXX->getNumBases()) { |
| 928 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 929 | << Context.C2.getTypeDeclType(D2); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 930 | Context.Diag2(D2->getLocation(), diag::note_odr_number_of_bases) |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 931 | << D2CXX->getNumBases(); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 932 | Context.Diag1(D1->getLocation(), diag::note_odr_number_of_bases) |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 933 | << D1CXX->getNumBases(); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 934 | return false; |
| 935 | } |
| 936 | |
| 937 | // Check the base classes. |
| 938 | for (CXXRecordDecl::base_class_iterator Base1 = D1CXX->bases_begin(), |
| 939 | BaseEnd1 = D1CXX->bases_end(), |
| 940 | Base2 = D2CXX->bases_begin(); |
| 941 | Base1 != BaseEnd1; |
| 942 | ++Base1, ++Base2) { |
| 943 | if (!IsStructurallyEquivalent(Context, |
| 944 | Base1->getType(), Base2->getType())) { |
| 945 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 946 | << Context.C2.getTypeDeclType(D2); |
| 947 | Context.Diag2(Base2->getSourceRange().getBegin(), diag::note_odr_base) |
| 948 | << Base2->getType() |
| 949 | << Base2->getSourceRange(); |
| 950 | Context.Diag1(Base1->getSourceRange().getBegin(), diag::note_odr_base) |
| 951 | << Base1->getType() |
| 952 | << Base1->getSourceRange(); |
| 953 | return false; |
| 954 | } |
| 955 | |
| 956 | // Check virtual vs. non-virtual inheritance mismatch. |
| 957 | if (Base1->isVirtual() != Base2->isVirtual()) { |
| 958 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 959 | << Context.C2.getTypeDeclType(D2); |
| 960 | Context.Diag2(Base2->getSourceRange().getBegin(), |
| 961 | diag::note_odr_virtual_base) |
| 962 | << Base2->isVirtual() << Base2->getSourceRange(); |
| 963 | Context.Diag1(Base1->getSourceRange().getBegin(), diag::note_odr_base) |
| 964 | << Base1->isVirtual() |
| 965 | << Base1->getSourceRange(); |
| 966 | return false; |
| 967 | } |
| 968 | } |
| 969 | } else if (D1CXX->getNumBases() > 0) { |
| 970 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 971 | << Context.C2.getTypeDeclType(D2); |
| 972 | const CXXBaseSpecifier *Base1 = D1CXX->bases_begin(); |
| 973 | Context.Diag1(Base1->getSourceRange().getBegin(), diag::note_odr_base) |
| 974 | << Base1->getType() |
| 975 | << Base1->getSourceRange(); |
| 976 | Context.Diag2(D2->getLocation(), diag::note_odr_missing_base); |
| 977 | return false; |
| 978 | } |
| 979 | } |
| 980 | |
| 981 | // Check the fields for consistency. |
| 982 | CXXRecordDecl::field_iterator Field2 = D2->field_begin(), |
| 983 | Field2End = D2->field_end(); |
| 984 | for (CXXRecordDecl::field_iterator Field1 = D1->field_begin(), |
| 985 | Field1End = D1->field_end(); |
| 986 | Field1 != Field1End; |
| 987 | ++Field1, ++Field2) { |
| 988 | if (Field2 == Field2End) { |
| 989 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 990 | << Context.C2.getTypeDeclType(D2); |
| 991 | Context.Diag1(Field1->getLocation(), diag::note_odr_field) |
| 992 | << Field1->getDeclName() << Field1->getType(); |
| 993 | Context.Diag2(D2->getLocation(), diag::note_odr_missing_field); |
| 994 | return false; |
| 995 | } |
| 996 | |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 997 | if (!IsStructurallyEquivalent(Context, *Field1, *Field2)) |
| 998 | return false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 999 | } |
| 1000 | |
| 1001 | if (Field2 != Field2End) { |
| 1002 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 1003 | << Context.C2.getTypeDeclType(D2); |
| 1004 | Context.Diag2(Field2->getLocation(), diag::note_odr_field) |
| 1005 | << Field2->getDeclName() << Field2->getType(); |
| 1006 | Context.Diag1(D1->getLocation(), diag::note_odr_missing_field); |
| 1007 | return false; |
| 1008 | } |
| 1009 | |
| 1010 | return true; |
| 1011 | } |
| 1012 | |
| 1013 | /// \brief Determine structural equivalence of two enums. |
| 1014 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 1015 | EnumDecl *D1, EnumDecl *D2) { |
| 1016 | EnumDecl::enumerator_iterator EC2 = D2->enumerator_begin(), |
| 1017 | EC2End = D2->enumerator_end(); |
| 1018 | for (EnumDecl::enumerator_iterator EC1 = D1->enumerator_begin(), |
| 1019 | EC1End = D1->enumerator_end(); |
| 1020 | EC1 != EC1End; ++EC1, ++EC2) { |
| 1021 | if (EC2 == EC2End) { |
| 1022 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 1023 | << Context.C2.getTypeDeclType(D2); |
| 1024 | Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator) |
| 1025 | << EC1->getDeclName() |
| 1026 | << EC1->getInitVal().toString(10); |
| 1027 | Context.Diag2(D2->getLocation(), diag::note_odr_missing_enumerator); |
| 1028 | return false; |
| 1029 | } |
| 1030 | |
| 1031 | llvm::APSInt Val1 = EC1->getInitVal(); |
| 1032 | llvm::APSInt Val2 = EC2->getInitVal(); |
| 1033 | if (!IsSameValue(Val1, Val2) || |
| 1034 | !IsStructurallyEquivalent(EC1->getIdentifier(), EC2->getIdentifier())) { |
| 1035 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 1036 | << Context.C2.getTypeDeclType(D2); |
| 1037 | Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator) |
| 1038 | << EC2->getDeclName() |
| 1039 | << EC2->getInitVal().toString(10); |
| 1040 | Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator) |
| 1041 | << EC1->getDeclName() |
| 1042 | << EC1->getInitVal().toString(10); |
| 1043 | return false; |
| 1044 | } |
| 1045 | } |
| 1046 | |
| 1047 | if (EC2 != EC2End) { |
| 1048 | Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent) |
| 1049 | << Context.C2.getTypeDeclType(D2); |
| 1050 | Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator) |
| 1051 | << EC2->getDeclName() |
| 1052 | << EC2->getInitVal().toString(10); |
| 1053 | Context.Diag1(D1->getLocation(), diag::note_odr_missing_enumerator); |
| 1054 | return false; |
| 1055 | } |
| 1056 | |
| 1057 | return true; |
| 1058 | } |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 1059 | |
| 1060 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 1061 | TemplateParameterList *Params1, |
| 1062 | TemplateParameterList *Params2) { |
| 1063 | if (Params1->size() != Params2->size()) { |
| 1064 | Context.Diag2(Params2->getTemplateLoc(), |
| 1065 | diag::err_odr_different_num_template_parameters) |
| 1066 | << Params1->size() << Params2->size(); |
| 1067 | Context.Diag1(Params1->getTemplateLoc(), |
| 1068 | diag::note_odr_template_parameter_list); |
| 1069 | return false; |
| 1070 | } |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1071 | |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 1072 | for (unsigned I = 0, N = Params1->size(); I != N; ++I) { |
| 1073 | if (Params1->getParam(I)->getKind() != Params2->getParam(I)->getKind()) { |
| 1074 | Context.Diag2(Params2->getParam(I)->getLocation(), |
| 1075 | diag::err_odr_different_template_parameter_kind); |
| 1076 | Context.Diag1(Params1->getParam(I)->getLocation(), |
| 1077 | diag::note_odr_template_parameter_here); |
| 1078 | return false; |
| 1079 | } |
| 1080 | |
| 1081 | if (!Context.IsStructurallyEquivalent(Params1->getParam(I), |
| 1082 | Params2->getParam(I))) { |
| 1083 | |
| 1084 | return false; |
| 1085 | } |
| 1086 | } |
| 1087 | |
| 1088 | return true; |
| 1089 | } |
| 1090 | |
| 1091 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 1092 | TemplateTypeParmDecl *D1, |
| 1093 | TemplateTypeParmDecl *D2) { |
| 1094 | if (D1->isParameterPack() != D2->isParameterPack()) { |
| 1095 | Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack) |
| 1096 | << D2->isParameterPack(); |
| 1097 | Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack) |
| 1098 | << D1->isParameterPack(); |
| 1099 | return false; |
| 1100 | } |
| 1101 | |
| 1102 | return true; |
| 1103 | } |
| 1104 | |
| 1105 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 1106 | NonTypeTemplateParmDecl *D1, |
| 1107 | NonTypeTemplateParmDecl *D2) { |
| 1108 | // FIXME: Enable once we have variadic templates. |
| 1109 | #if 0 |
| 1110 | if (D1->isParameterPack() != D2->isParameterPack()) { |
| 1111 | Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack) |
| 1112 | << D2->isParameterPack(); |
| 1113 | Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack) |
| 1114 | << D1->isParameterPack(); |
| 1115 | return false; |
| 1116 | } |
| 1117 | #endif |
| 1118 | |
| 1119 | // Check types. |
| 1120 | if (!Context.IsStructurallyEquivalent(D1->getType(), D2->getType())) { |
| 1121 | Context.Diag2(D2->getLocation(), |
| 1122 | diag::err_odr_non_type_parameter_type_inconsistent) |
| 1123 | << D2->getType() << D1->getType(); |
| 1124 | Context.Diag1(D1->getLocation(), diag::note_odr_value_here) |
| 1125 | << D1->getType(); |
| 1126 | return false; |
| 1127 | } |
| 1128 | |
| 1129 | return true; |
| 1130 | } |
| 1131 | |
| 1132 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 1133 | TemplateTemplateParmDecl *D1, |
| 1134 | TemplateTemplateParmDecl *D2) { |
| 1135 | // FIXME: Enable once we have variadic templates. |
| 1136 | #if 0 |
| 1137 | if (D1->isParameterPack() != D2->isParameterPack()) { |
| 1138 | Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack) |
| 1139 | << D2->isParameterPack(); |
| 1140 | Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack) |
| 1141 | << D1->isParameterPack(); |
| 1142 | return false; |
| 1143 | } |
| 1144 | #endif |
| 1145 | |
| 1146 | // Check template parameter lists. |
| 1147 | return IsStructurallyEquivalent(Context, D1->getTemplateParameters(), |
| 1148 | D2->getTemplateParameters()); |
| 1149 | } |
| 1150 | |
| 1151 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 1152 | ClassTemplateDecl *D1, |
| 1153 | ClassTemplateDecl *D2) { |
| 1154 | // Check template parameters. |
| 1155 | if (!IsStructurallyEquivalent(Context, |
| 1156 | D1->getTemplateParameters(), |
| 1157 | D2->getTemplateParameters())) |
| 1158 | return false; |
| 1159 | |
| 1160 | // Check the templated declaration. |
| 1161 | return Context.IsStructurallyEquivalent(D1->getTemplatedDecl(), |
| 1162 | D2->getTemplatedDecl()); |
| 1163 | } |
| 1164 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1165 | /// \brief Determine structural equivalence of two declarations. |
| 1166 | static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, |
| 1167 | Decl *D1, Decl *D2) { |
| 1168 | // FIXME: Check for known structural equivalences via a callback of some sort. |
| 1169 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1170 | // Check whether we already know that these two declarations are not |
| 1171 | // structurally equivalent. |
| 1172 | if (Context.NonEquivalentDecls.count(std::make_pair(D1->getCanonicalDecl(), |
| 1173 | D2->getCanonicalDecl()))) |
| 1174 | return false; |
| 1175 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1176 | // Determine whether we've already produced a tentative equivalence for D1. |
| 1177 | Decl *&EquivToD1 = Context.TentativeEquivalences[D1->getCanonicalDecl()]; |
| 1178 | if (EquivToD1) |
| 1179 | return EquivToD1 == D2->getCanonicalDecl(); |
| 1180 | |
| 1181 | // Produce a tentative equivalence D1 <-> D2, which will be checked later. |
| 1182 | EquivToD1 = D2->getCanonicalDecl(); |
| 1183 | Context.DeclsToCheck.push_back(D1->getCanonicalDecl()); |
| 1184 | return true; |
| 1185 | } |
| 1186 | |
| 1187 | bool StructuralEquivalenceContext::IsStructurallyEquivalent(Decl *D1, |
| 1188 | Decl *D2) { |
| 1189 | if (!::IsStructurallyEquivalent(*this, D1, D2)) |
| 1190 | return false; |
| 1191 | |
| 1192 | return !Finish(); |
| 1193 | } |
| 1194 | |
| 1195 | bool StructuralEquivalenceContext::IsStructurallyEquivalent(QualType T1, |
| 1196 | QualType T2) { |
| 1197 | if (!::IsStructurallyEquivalent(*this, T1, T2)) |
| 1198 | return false; |
| 1199 | |
| 1200 | return !Finish(); |
| 1201 | } |
| 1202 | |
| 1203 | bool StructuralEquivalenceContext::Finish() { |
| 1204 | while (!DeclsToCheck.empty()) { |
| 1205 | // Check the next declaration. |
| 1206 | Decl *D1 = DeclsToCheck.front(); |
| 1207 | DeclsToCheck.pop_front(); |
| 1208 | |
| 1209 | Decl *D2 = TentativeEquivalences[D1]; |
| 1210 | assert(D2 && "Unrecorded tentative equivalence?"); |
| 1211 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1212 | bool Equivalent = true; |
| 1213 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1214 | // FIXME: Switch on all declaration kinds. For now, we're just going to |
| 1215 | // check the obvious ones. |
| 1216 | if (RecordDecl *Record1 = dyn_cast<RecordDecl>(D1)) { |
| 1217 | if (RecordDecl *Record2 = dyn_cast<RecordDecl>(D2)) { |
| 1218 | // Check for equivalent structure names. |
| 1219 | IdentifierInfo *Name1 = Record1->getIdentifier(); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 1220 | if (!Name1 && Record1->getTypedefNameForAnonDecl()) |
| 1221 | Name1 = Record1->getTypedefNameForAnonDecl()->getIdentifier(); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1222 | IdentifierInfo *Name2 = Record2->getIdentifier(); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 1223 | if (!Name2 && Record2->getTypedefNameForAnonDecl()) |
| 1224 | Name2 = Record2->getTypedefNameForAnonDecl()->getIdentifier(); |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1225 | if (!::IsStructurallyEquivalent(Name1, Name2) || |
| 1226 | !::IsStructurallyEquivalent(*this, Record1, Record2)) |
| 1227 | Equivalent = false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1228 | } else { |
| 1229 | // Record/non-record mismatch. |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1230 | Equivalent = false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1231 | } |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1232 | } else if (EnumDecl *Enum1 = dyn_cast<EnumDecl>(D1)) { |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1233 | if (EnumDecl *Enum2 = dyn_cast<EnumDecl>(D2)) { |
| 1234 | // Check for equivalent enum names. |
| 1235 | IdentifierInfo *Name1 = Enum1->getIdentifier(); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 1236 | if (!Name1 && Enum1->getTypedefNameForAnonDecl()) |
| 1237 | Name1 = Enum1->getTypedefNameForAnonDecl()->getIdentifier(); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1238 | IdentifierInfo *Name2 = Enum2->getIdentifier(); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 1239 | if (!Name2 && Enum2->getTypedefNameForAnonDecl()) |
| 1240 | Name2 = Enum2->getTypedefNameForAnonDecl()->getIdentifier(); |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1241 | if (!::IsStructurallyEquivalent(Name1, Name2) || |
| 1242 | !::IsStructurallyEquivalent(*this, Enum1, Enum2)) |
| 1243 | Equivalent = false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1244 | } else { |
| 1245 | // Enum/non-enum mismatch |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1246 | Equivalent = false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1247 | } |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 1248 | } else if (TypedefNameDecl *Typedef1 = dyn_cast<TypedefNameDecl>(D1)) { |
| 1249 | if (TypedefNameDecl *Typedef2 = dyn_cast<TypedefNameDecl>(D2)) { |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1250 | if (!::IsStructurallyEquivalent(Typedef1->getIdentifier(), |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1251 | Typedef2->getIdentifier()) || |
| 1252 | !::IsStructurallyEquivalent(*this, |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1253 | Typedef1->getUnderlyingType(), |
| 1254 | Typedef2->getUnderlyingType())) |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1255 | Equivalent = false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1256 | } else { |
| 1257 | // Typedef/non-typedef mismatch. |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1258 | Equivalent = false; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1259 | } |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 1260 | } else if (ClassTemplateDecl *ClassTemplate1 |
| 1261 | = dyn_cast<ClassTemplateDecl>(D1)) { |
| 1262 | if (ClassTemplateDecl *ClassTemplate2 = dyn_cast<ClassTemplateDecl>(D2)) { |
| 1263 | if (!::IsStructurallyEquivalent(ClassTemplate1->getIdentifier(), |
| 1264 | ClassTemplate2->getIdentifier()) || |
| 1265 | !::IsStructurallyEquivalent(*this, ClassTemplate1, ClassTemplate2)) |
| 1266 | Equivalent = false; |
| 1267 | } else { |
| 1268 | // Class template/non-class-template mismatch. |
| 1269 | Equivalent = false; |
| 1270 | } |
| 1271 | } else if (TemplateTypeParmDecl *TTP1= dyn_cast<TemplateTypeParmDecl>(D1)) { |
| 1272 | if (TemplateTypeParmDecl *TTP2 = dyn_cast<TemplateTypeParmDecl>(D2)) { |
| 1273 | if (!::IsStructurallyEquivalent(*this, TTP1, TTP2)) |
| 1274 | Equivalent = false; |
| 1275 | } else { |
| 1276 | // Kind mismatch. |
| 1277 | Equivalent = false; |
| 1278 | } |
| 1279 | } else if (NonTypeTemplateParmDecl *NTTP1 |
| 1280 | = dyn_cast<NonTypeTemplateParmDecl>(D1)) { |
| 1281 | if (NonTypeTemplateParmDecl *NTTP2 |
| 1282 | = dyn_cast<NonTypeTemplateParmDecl>(D2)) { |
| 1283 | if (!::IsStructurallyEquivalent(*this, NTTP1, NTTP2)) |
| 1284 | Equivalent = false; |
| 1285 | } else { |
| 1286 | // Kind mismatch. |
| 1287 | Equivalent = false; |
| 1288 | } |
| 1289 | } else if (TemplateTemplateParmDecl *TTP1 |
| 1290 | = dyn_cast<TemplateTemplateParmDecl>(D1)) { |
| 1291 | if (TemplateTemplateParmDecl *TTP2 |
| 1292 | = dyn_cast<TemplateTemplateParmDecl>(D2)) { |
| 1293 | if (!::IsStructurallyEquivalent(*this, TTP1, TTP2)) |
| 1294 | Equivalent = false; |
| 1295 | } else { |
| 1296 | // Kind mismatch. |
| 1297 | Equivalent = false; |
| 1298 | } |
| 1299 | } |
| 1300 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 1301 | if (!Equivalent) { |
| 1302 | // Note that these two declarations are not equivalent (and we already |
| 1303 | // know about it). |
| 1304 | NonEquivalentDecls.insert(std::make_pair(D1->getCanonicalDecl(), |
| 1305 | D2->getCanonicalDecl())); |
| 1306 | return true; |
| 1307 | } |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 1308 | // FIXME: Check other declaration kinds! |
| 1309 | } |
| 1310 | |
| 1311 | return false; |
| 1312 | } |
| 1313 | |
| 1314 | //---------------------------------------------------------------------------- |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1315 | // Import Types |
| 1316 | //---------------------------------------------------------------------------- |
| 1317 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1318 | QualType ASTNodeImporter::VisitType(const Type *T) { |
Douglas Gregor | 89cc9d6 | 2010-02-09 22:48:33 +0000 | [diff] [blame] | 1319 | Importer.FromDiag(SourceLocation(), diag::err_unsupported_ast_node) |
| 1320 | << T->getTypeClassName(); |
| 1321 | return QualType(); |
| 1322 | } |
| 1323 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1324 | QualType ASTNodeImporter::VisitBuiltinType(const BuiltinType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1325 | switch (T->getKind()) { |
John McCall | e0a22d0 | 2011-10-18 21:02:43 +0000 | [diff] [blame] | 1326 | #define SHARED_SINGLETON_TYPE(Expansion) |
| 1327 | #define BUILTIN_TYPE(Id, SingletonId) \ |
| 1328 | case BuiltinType::Id: return Importer.getToContext().SingletonId; |
| 1329 | #include "clang/AST/BuiltinTypes.def" |
| 1330 | |
| 1331 | // FIXME: for Char16, Char32, and NullPtr, make sure that the "to" |
| 1332 | // context supports C++. |
| 1333 | |
| 1334 | // FIXME: for ObjCId, ObjCClass, and ObjCSel, make sure that the "to" |
| 1335 | // context supports ObjC. |
| 1336 | |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1337 | case BuiltinType::Char_U: |
| 1338 | // The context we're importing from has an unsigned 'char'. If we're |
| 1339 | // importing into a context with a signed 'char', translate to |
| 1340 | // 'unsigned char' instead. |
| 1341 | if (Importer.getToContext().getLangOptions().CharIsSigned) |
| 1342 | return Importer.getToContext().UnsignedCharTy; |
| 1343 | |
| 1344 | return Importer.getToContext().CharTy; |
| 1345 | |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1346 | case BuiltinType::Char_S: |
| 1347 | // The context we're importing from has an unsigned 'char'. If we're |
| 1348 | // importing into a context with a signed 'char', translate to |
| 1349 | // 'unsigned char' instead. |
| 1350 | if (!Importer.getToContext().getLangOptions().CharIsSigned) |
| 1351 | return Importer.getToContext().SignedCharTy; |
| 1352 | |
| 1353 | return Importer.getToContext().CharTy; |
| 1354 | |
Chris Lattner | 3f59c97 | 2010-12-25 23:25:43 +0000 | [diff] [blame] | 1355 | case BuiltinType::WChar_S: |
| 1356 | case BuiltinType::WChar_U: |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1357 | // FIXME: If not in C++, shall we translate to the C equivalent of |
| 1358 | // wchar_t? |
| 1359 | return Importer.getToContext().WCharTy; |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
| 1362 | return QualType(); |
| 1363 | } |
| 1364 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1365 | QualType ASTNodeImporter::VisitComplexType(const ComplexType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1366 | QualType ToElementType = Importer.Import(T->getElementType()); |
| 1367 | if (ToElementType.isNull()) |
| 1368 | return QualType(); |
| 1369 | |
| 1370 | return Importer.getToContext().getComplexType(ToElementType); |
| 1371 | } |
| 1372 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1373 | QualType ASTNodeImporter::VisitPointerType(const PointerType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1374 | QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| 1375 | if (ToPointeeType.isNull()) |
| 1376 | return QualType(); |
| 1377 | |
| 1378 | return Importer.getToContext().getPointerType(ToPointeeType); |
| 1379 | } |
| 1380 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1381 | QualType ASTNodeImporter::VisitBlockPointerType(const BlockPointerType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1382 | // FIXME: Check for blocks support in "to" context. |
| 1383 | QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| 1384 | if (ToPointeeType.isNull()) |
| 1385 | return QualType(); |
| 1386 | |
| 1387 | return Importer.getToContext().getBlockPointerType(ToPointeeType); |
| 1388 | } |
| 1389 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1390 | QualType |
| 1391 | ASTNodeImporter::VisitLValueReferenceType(const LValueReferenceType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1392 | // FIXME: Check for C++ support in "to" context. |
| 1393 | QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); |
| 1394 | if (ToPointeeType.isNull()) |
| 1395 | return QualType(); |
| 1396 | |
| 1397 | return Importer.getToContext().getLValueReferenceType(ToPointeeType); |
| 1398 | } |
| 1399 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1400 | QualType |
| 1401 | ASTNodeImporter::VisitRValueReferenceType(const RValueReferenceType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1402 | // FIXME: Check for C++0x support in "to" context. |
| 1403 | QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten()); |
| 1404 | if (ToPointeeType.isNull()) |
| 1405 | return QualType(); |
| 1406 | |
| 1407 | return Importer.getToContext().getRValueReferenceType(ToPointeeType); |
| 1408 | } |
| 1409 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1410 | QualType ASTNodeImporter::VisitMemberPointerType(const MemberPointerType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1411 | // FIXME: Check for C++ support in "to" context. |
| 1412 | QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| 1413 | if (ToPointeeType.isNull()) |
| 1414 | return QualType(); |
| 1415 | |
| 1416 | QualType ClassType = Importer.Import(QualType(T->getClass(), 0)); |
| 1417 | return Importer.getToContext().getMemberPointerType(ToPointeeType, |
| 1418 | ClassType.getTypePtr()); |
| 1419 | } |
| 1420 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1421 | QualType ASTNodeImporter::VisitConstantArrayType(const ConstantArrayType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1422 | QualType ToElementType = Importer.Import(T->getElementType()); |
| 1423 | if (ToElementType.isNull()) |
| 1424 | return QualType(); |
| 1425 | |
| 1426 | return Importer.getToContext().getConstantArrayType(ToElementType, |
| 1427 | T->getSize(), |
| 1428 | T->getSizeModifier(), |
| 1429 | T->getIndexTypeCVRQualifiers()); |
| 1430 | } |
| 1431 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1432 | QualType |
| 1433 | ASTNodeImporter::VisitIncompleteArrayType(const IncompleteArrayType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1434 | QualType ToElementType = Importer.Import(T->getElementType()); |
| 1435 | if (ToElementType.isNull()) |
| 1436 | return QualType(); |
| 1437 | |
| 1438 | return Importer.getToContext().getIncompleteArrayType(ToElementType, |
| 1439 | T->getSizeModifier(), |
| 1440 | T->getIndexTypeCVRQualifiers()); |
| 1441 | } |
| 1442 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1443 | QualType ASTNodeImporter::VisitVariableArrayType(const VariableArrayType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1444 | QualType ToElementType = Importer.Import(T->getElementType()); |
| 1445 | if (ToElementType.isNull()) |
| 1446 | return QualType(); |
| 1447 | |
| 1448 | Expr *Size = Importer.Import(T->getSizeExpr()); |
| 1449 | if (!Size) |
| 1450 | return QualType(); |
| 1451 | |
| 1452 | SourceRange Brackets = Importer.Import(T->getBracketsRange()); |
| 1453 | return Importer.getToContext().getVariableArrayType(ToElementType, Size, |
| 1454 | T->getSizeModifier(), |
| 1455 | T->getIndexTypeCVRQualifiers(), |
| 1456 | Brackets); |
| 1457 | } |
| 1458 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1459 | QualType ASTNodeImporter::VisitVectorType(const VectorType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1460 | QualType ToElementType = Importer.Import(T->getElementType()); |
| 1461 | if (ToElementType.isNull()) |
| 1462 | return QualType(); |
| 1463 | |
| 1464 | return Importer.getToContext().getVectorType(ToElementType, |
| 1465 | T->getNumElements(), |
Bob Wilson | e86d78c | 2010-11-10 21:56:12 +0000 | [diff] [blame] | 1466 | T->getVectorKind()); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1467 | } |
| 1468 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1469 | QualType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1470 | QualType ToElementType = Importer.Import(T->getElementType()); |
| 1471 | if (ToElementType.isNull()) |
| 1472 | return QualType(); |
| 1473 | |
| 1474 | return Importer.getToContext().getExtVectorType(ToElementType, |
| 1475 | T->getNumElements()); |
| 1476 | } |
| 1477 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1478 | QualType |
| 1479 | ASTNodeImporter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1480 | // FIXME: What happens if we're importing a function without a prototype |
| 1481 | // into C++? Should we make it variadic? |
| 1482 | QualType ToResultType = Importer.Import(T->getResultType()); |
| 1483 | if (ToResultType.isNull()) |
| 1484 | return QualType(); |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 1485 | |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1486 | return Importer.getToContext().getFunctionNoProtoType(ToResultType, |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 1487 | T->getExtInfo()); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1488 | } |
| 1489 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1490 | QualType ASTNodeImporter::VisitFunctionProtoType(const FunctionProtoType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1491 | QualType ToResultType = Importer.Import(T->getResultType()); |
| 1492 | if (ToResultType.isNull()) |
| 1493 | return QualType(); |
| 1494 | |
| 1495 | // Import argument types |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1496 | SmallVector<QualType, 4> ArgTypes; |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1497 | for (FunctionProtoType::arg_type_iterator A = T->arg_type_begin(), |
| 1498 | AEnd = T->arg_type_end(); |
| 1499 | A != AEnd; ++A) { |
| 1500 | QualType ArgType = Importer.Import(*A); |
| 1501 | if (ArgType.isNull()) |
| 1502 | return QualType(); |
| 1503 | ArgTypes.push_back(ArgType); |
| 1504 | } |
| 1505 | |
| 1506 | // Import exception types |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1507 | SmallVector<QualType, 4> ExceptionTypes; |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1508 | for (FunctionProtoType::exception_iterator E = T->exception_begin(), |
| 1509 | EEnd = T->exception_end(); |
| 1510 | E != EEnd; ++E) { |
| 1511 | QualType ExceptionType = Importer.Import(*E); |
| 1512 | if (ExceptionType.isNull()) |
| 1513 | return QualType(); |
| 1514 | ExceptionTypes.push_back(ExceptionType); |
| 1515 | } |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1516 | |
| 1517 | FunctionProtoType::ExtProtoInfo EPI = T->getExtProtoInfo(); |
| 1518 | EPI.Exceptions = ExceptionTypes.data(); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1519 | |
| 1520 | return Importer.getToContext().getFunctionType(ToResultType, ArgTypes.data(), |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 1521 | ArgTypes.size(), EPI); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1522 | } |
| 1523 | |
Sean Callanan | 0aeb289 | 2011-08-11 16:56:07 +0000 | [diff] [blame] | 1524 | QualType ASTNodeImporter::VisitParenType(const ParenType *T) { |
| 1525 | QualType ToInnerType = Importer.Import(T->getInnerType()); |
| 1526 | if (ToInnerType.isNull()) |
| 1527 | return QualType(); |
| 1528 | |
| 1529 | return Importer.getToContext().getParenType(ToInnerType); |
| 1530 | } |
| 1531 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1532 | QualType ASTNodeImporter::VisitTypedefType(const TypedefType *T) { |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 1533 | TypedefNameDecl *ToDecl |
| 1534 | = dyn_cast_or_null<TypedefNameDecl>(Importer.Import(T->getDecl())); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1535 | if (!ToDecl) |
| 1536 | return QualType(); |
| 1537 | |
| 1538 | return Importer.getToContext().getTypeDeclType(ToDecl); |
| 1539 | } |
| 1540 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1541 | QualType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1542 | Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); |
| 1543 | if (!ToExpr) |
| 1544 | return QualType(); |
| 1545 | |
| 1546 | return Importer.getToContext().getTypeOfExprType(ToExpr); |
| 1547 | } |
| 1548 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1549 | QualType ASTNodeImporter::VisitTypeOfType(const TypeOfType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1550 | QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType()); |
| 1551 | if (ToUnderlyingType.isNull()) |
| 1552 | return QualType(); |
| 1553 | |
| 1554 | return Importer.getToContext().getTypeOfType(ToUnderlyingType); |
| 1555 | } |
| 1556 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1557 | QualType ASTNodeImporter::VisitDecltypeType(const DecltypeType *T) { |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1558 | // FIXME: Make sure that the "to" context supports C++0x! |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1559 | Expr *ToExpr = Importer.Import(T->getUnderlyingExpr()); |
| 1560 | if (!ToExpr) |
| 1561 | return QualType(); |
| 1562 | |
| 1563 | return Importer.getToContext().getDecltypeType(ToExpr); |
| 1564 | } |
| 1565 | |
Sean Hunt | ca63c20 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 1566 | QualType ASTNodeImporter::VisitUnaryTransformType(const UnaryTransformType *T) { |
| 1567 | QualType ToBaseType = Importer.Import(T->getBaseType()); |
| 1568 | QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType()); |
| 1569 | if (ToBaseType.isNull() || ToUnderlyingType.isNull()) |
| 1570 | return QualType(); |
| 1571 | |
| 1572 | return Importer.getToContext().getUnaryTransformType(ToBaseType, |
| 1573 | ToUnderlyingType, |
| 1574 | T->getUTTKind()); |
| 1575 | } |
| 1576 | |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 1577 | QualType ASTNodeImporter::VisitAutoType(const AutoType *T) { |
| 1578 | // FIXME: Make sure that the "to" context supports C++0x! |
| 1579 | QualType FromDeduced = T->getDeducedType(); |
| 1580 | QualType ToDeduced; |
| 1581 | if (!FromDeduced.isNull()) { |
| 1582 | ToDeduced = Importer.Import(FromDeduced); |
| 1583 | if (ToDeduced.isNull()) |
| 1584 | return QualType(); |
| 1585 | } |
| 1586 | |
| 1587 | return Importer.getToContext().getAutoType(ToDeduced); |
| 1588 | } |
| 1589 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1590 | QualType ASTNodeImporter::VisitRecordType(const RecordType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1591 | RecordDecl *ToDecl |
| 1592 | = dyn_cast_or_null<RecordDecl>(Importer.Import(T->getDecl())); |
| 1593 | if (!ToDecl) |
| 1594 | return QualType(); |
| 1595 | |
| 1596 | return Importer.getToContext().getTagDeclType(ToDecl); |
| 1597 | } |
| 1598 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1599 | QualType ASTNodeImporter::VisitEnumType(const EnumType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1600 | EnumDecl *ToDecl |
| 1601 | = dyn_cast_or_null<EnumDecl>(Importer.Import(T->getDecl())); |
| 1602 | if (!ToDecl) |
| 1603 | return QualType(); |
| 1604 | |
| 1605 | return Importer.getToContext().getTagDeclType(ToDecl); |
| 1606 | } |
| 1607 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1608 | QualType ASTNodeImporter::VisitTemplateSpecializationType( |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1609 | const TemplateSpecializationType *T) { |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1610 | TemplateName ToTemplate = Importer.Import(T->getTemplateName()); |
| 1611 | if (ToTemplate.isNull()) |
| 1612 | return QualType(); |
| 1613 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1614 | SmallVector<TemplateArgument, 2> ToTemplateArgs; |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1615 | if (ImportTemplateArguments(T->getArgs(), T->getNumArgs(), ToTemplateArgs)) |
| 1616 | return QualType(); |
| 1617 | |
| 1618 | QualType ToCanonType; |
| 1619 | if (!QualType(T, 0).isCanonical()) { |
| 1620 | QualType FromCanonType |
| 1621 | = Importer.getFromContext().getCanonicalType(QualType(T, 0)); |
| 1622 | ToCanonType =Importer.Import(FromCanonType); |
| 1623 | if (ToCanonType.isNull()) |
| 1624 | return QualType(); |
| 1625 | } |
| 1626 | return Importer.getToContext().getTemplateSpecializationType(ToTemplate, |
| 1627 | ToTemplateArgs.data(), |
| 1628 | ToTemplateArgs.size(), |
| 1629 | ToCanonType); |
| 1630 | } |
| 1631 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1632 | QualType ASTNodeImporter::VisitElaboratedType(const ElaboratedType *T) { |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 1633 | NestedNameSpecifier *ToQualifier = 0; |
| 1634 | // Note: the qualifier in an ElaboratedType is optional. |
| 1635 | if (T->getQualifier()) { |
| 1636 | ToQualifier = Importer.Import(T->getQualifier()); |
| 1637 | if (!ToQualifier) |
| 1638 | return QualType(); |
| 1639 | } |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1640 | |
| 1641 | QualType ToNamedType = Importer.Import(T->getNamedType()); |
| 1642 | if (ToNamedType.isNull()) |
| 1643 | return QualType(); |
| 1644 | |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 1645 | return Importer.getToContext().getElaboratedType(T->getKeyword(), |
| 1646 | ToQualifier, ToNamedType); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1647 | } |
| 1648 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1649 | QualType ASTNodeImporter::VisitObjCInterfaceType(const ObjCInterfaceType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1650 | ObjCInterfaceDecl *Class |
| 1651 | = dyn_cast_or_null<ObjCInterfaceDecl>(Importer.Import(T->getDecl())); |
| 1652 | if (!Class) |
| 1653 | return QualType(); |
| 1654 | |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1655 | return Importer.getToContext().getObjCInterfaceType(Class); |
| 1656 | } |
| 1657 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1658 | QualType ASTNodeImporter::VisitObjCObjectType(const ObjCObjectType *T) { |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1659 | QualType ToBaseType = Importer.Import(T->getBaseType()); |
| 1660 | if (ToBaseType.isNull()) |
| 1661 | return QualType(); |
| 1662 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1663 | SmallVector<ObjCProtocolDecl *, 4> Protocols; |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1664 | for (ObjCObjectType::qual_iterator P = T->qual_begin(), |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1665 | PEnd = T->qual_end(); |
| 1666 | P != PEnd; ++P) { |
| 1667 | ObjCProtocolDecl *Protocol |
| 1668 | = dyn_cast_or_null<ObjCProtocolDecl>(Importer.Import(*P)); |
| 1669 | if (!Protocol) |
| 1670 | return QualType(); |
| 1671 | Protocols.push_back(Protocol); |
| 1672 | } |
| 1673 | |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1674 | return Importer.getToContext().getObjCObjectType(ToBaseType, |
| 1675 | Protocols.data(), |
| 1676 | Protocols.size()); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1677 | } |
| 1678 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 1679 | QualType |
| 1680 | ASTNodeImporter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1681 | QualType ToPointeeType = Importer.Import(T->getPointeeType()); |
| 1682 | if (ToPointeeType.isNull()) |
| 1683 | return QualType(); |
| 1684 | |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 1685 | return Importer.getToContext().getObjCObjectPointerType(ToPointeeType); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 1686 | } |
| 1687 | |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 1688 | //---------------------------------------------------------------------------- |
| 1689 | // Import Declarations |
| 1690 | //---------------------------------------------------------------------------- |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 1691 | bool ASTNodeImporter::ImportDeclParts(NamedDecl *D, DeclContext *&DC, |
| 1692 | DeclContext *&LexicalDC, |
| 1693 | DeclarationName &Name, |
| 1694 | SourceLocation &Loc) { |
| 1695 | // Import the context of this declaration. |
| 1696 | DC = Importer.ImportContext(D->getDeclContext()); |
| 1697 | if (!DC) |
| 1698 | return true; |
| 1699 | |
| 1700 | LexicalDC = DC; |
| 1701 | if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| 1702 | LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| 1703 | if (!LexicalDC) |
| 1704 | return true; |
| 1705 | } |
| 1706 | |
| 1707 | // Import the name of this declaration. |
| 1708 | Name = Importer.Import(D->getDeclName()); |
| 1709 | if (D->getDeclName() && !Name) |
| 1710 | return true; |
| 1711 | |
| 1712 | // Import the location of this declaration. |
| 1713 | Loc = Importer.Import(D->getLocation()); |
| 1714 | return false; |
| 1715 | } |
| 1716 | |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 1717 | void ASTNodeImporter::ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD) { |
| 1718 | if (!FromD) |
| 1719 | return; |
| 1720 | |
| 1721 | if (!ToD) { |
| 1722 | ToD = Importer.Import(FromD); |
| 1723 | if (!ToD) |
| 1724 | return; |
| 1725 | } |
| 1726 | |
| 1727 | if (RecordDecl *FromRecord = dyn_cast<RecordDecl>(FromD)) { |
| 1728 | if (RecordDecl *ToRecord = cast_or_null<RecordDecl>(ToD)) { |
| 1729 | if (FromRecord->getDefinition() && !ToRecord->getDefinition()) { |
| 1730 | ImportDefinition(FromRecord, ToRecord); |
| 1731 | } |
| 1732 | } |
| 1733 | return; |
| 1734 | } |
| 1735 | |
| 1736 | if (EnumDecl *FromEnum = dyn_cast<EnumDecl>(FromD)) { |
| 1737 | if (EnumDecl *ToEnum = cast_or_null<EnumDecl>(ToD)) { |
| 1738 | if (FromEnum->getDefinition() && !ToEnum->getDefinition()) { |
| 1739 | ImportDefinition(FromEnum, ToEnum); |
| 1740 | } |
| 1741 | } |
| 1742 | return; |
| 1743 | } |
| 1744 | } |
| 1745 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1746 | void |
| 1747 | ASTNodeImporter::ImportDeclarationNameLoc(const DeclarationNameInfo &From, |
| 1748 | DeclarationNameInfo& To) { |
| 1749 | // NOTE: To.Name and To.Loc are already imported. |
| 1750 | // We only have to import To.LocInfo. |
| 1751 | switch (To.getName().getNameKind()) { |
| 1752 | case DeclarationName::Identifier: |
| 1753 | case DeclarationName::ObjCZeroArgSelector: |
| 1754 | case DeclarationName::ObjCOneArgSelector: |
| 1755 | case DeclarationName::ObjCMultiArgSelector: |
| 1756 | case DeclarationName::CXXUsingDirective: |
| 1757 | return; |
| 1758 | |
| 1759 | case DeclarationName::CXXOperatorName: { |
| 1760 | SourceRange Range = From.getCXXOperatorNameRange(); |
| 1761 | To.setCXXOperatorNameRange(Importer.Import(Range)); |
| 1762 | return; |
| 1763 | } |
| 1764 | case DeclarationName::CXXLiteralOperatorName: { |
| 1765 | SourceLocation Loc = From.getCXXLiteralOperatorNameLoc(); |
| 1766 | To.setCXXLiteralOperatorNameLoc(Importer.Import(Loc)); |
| 1767 | return; |
| 1768 | } |
| 1769 | case DeclarationName::CXXConstructorName: |
| 1770 | case DeclarationName::CXXDestructorName: |
| 1771 | case DeclarationName::CXXConversionFunctionName: { |
| 1772 | TypeSourceInfo *FromTInfo = From.getNamedTypeInfo(); |
| 1773 | To.setNamedTypeInfo(Importer.Import(FromTInfo)); |
| 1774 | return; |
| 1775 | } |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1776 | } |
Douglas Gregor | 21a2516 | 2011-11-02 20:52:01 +0000 | [diff] [blame] | 1777 | llvm_unreachable("Unknown name kind."); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1778 | } |
| 1779 | |
Douglas Gregor | d8868a6 | 2011-01-18 03:11:38 +0000 | [diff] [blame] | 1780 | void ASTNodeImporter::ImportDeclContext(DeclContext *FromDC, bool ForceImport) { |
| 1781 | if (Importer.isMinimalImport() && !ForceImport) { |
Sean Callanan | 8cc4fd7 | 2011-07-22 23:46:03 +0000 | [diff] [blame] | 1782 | Importer.ImportContext(FromDC); |
Douglas Gregor | d8868a6 | 2011-01-18 03:11:38 +0000 | [diff] [blame] | 1783 | return; |
| 1784 | } |
| 1785 | |
Douglas Gregor | 083a821 | 2010-02-21 18:24:45 +0000 | [diff] [blame] | 1786 | for (DeclContext::decl_iterator From = FromDC->decls_begin(), |
| 1787 | FromEnd = FromDC->decls_end(); |
| 1788 | From != FromEnd; |
| 1789 | ++From) |
| 1790 | Importer.Import(*From); |
| 1791 | } |
| 1792 | |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 1793 | bool ASTNodeImporter::ImportDefinition(RecordDecl *From, RecordDecl *To, |
| 1794 | bool ForceImport) { |
| 1795 | if (To->getDefinition() || To->isBeingDefined()) |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1796 | return false; |
| 1797 | |
| 1798 | To->startDefinition(); |
| 1799 | |
| 1800 | // Add base classes. |
| 1801 | if (CXXRecordDecl *ToCXX = dyn_cast<CXXRecordDecl>(To)) { |
| 1802 | CXXRecordDecl *FromCXX = cast<CXXRecordDecl>(From); |
Douglas Gregor | 27c72d8 | 2011-11-03 18:07:07 +0000 | [diff] [blame] | 1803 | |
| 1804 | struct CXXRecordDecl::DefinitionData &ToData = ToCXX->data(); |
| 1805 | struct CXXRecordDecl::DefinitionData &FromData = FromCXX->data(); |
| 1806 | ToData.UserDeclaredConstructor = FromData.UserDeclaredConstructor; |
| 1807 | ToData.UserDeclaredCopyConstructor = FromData.UserDeclaredCopyConstructor; |
| 1808 | ToData.UserDeclaredMoveConstructor = FromData.UserDeclaredMoveConstructor; |
| 1809 | ToData.UserDeclaredCopyAssignment = FromData.UserDeclaredCopyAssignment; |
| 1810 | ToData.UserDeclaredMoveAssignment = FromData.UserDeclaredMoveAssignment; |
| 1811 | ToData.UserDeclaredDestructor = FromData.UserDeclaredDestructor; |
| 1812 | ToData.Aggregate = FromData.Aggregate; |
| 1813 | ToData.PlainOldData = FromData.PlainOldData; |
| 1814 | ToData.Empty = FromData.Empty; |
| 1815 | ToData.Polymorphic = FromData.Polymorphic; |
| 1816 | ToData.Abstract = FromData.Abstract; |
| 1817 | ToData.IsStandardLayout = FromData.IsStandardLayout; |
| 1818 | ToData.HasNoNonEmptyBases = FromData.HasNoNonEmptyBases; |
| 1819 | ToData.HasPrivateFields = FromData.HasPrivateFields; |
| 1820 | ToData.HasProtectedFields = FromData.HasProtectedFields; |
| 1821 | ToData.HasPublicFields = FromData.HasPublicFields; |
| 1822 | ToData.HasMutableFields = FromData.HasMutableFields; |
| 1823 | ToData.HasTrivialDefaultConstructor = FromData.HasTrivialDefaultConstructor; |
| 1824 | ToData.HasConstexprNonCopyMoveConstructor |
| 1825 | = FromData.HasConstexprNonCopyMoveConstructor; |
| 1826 | ToData.HasTrivialCopyConstructor = FromData.HasTrivialCopyConstructor; |
| 1827 | ToData.HasTrivialMoveConstructor = FromData.HasTrivialMoveConstructor; |
| 1828 | ToData.HasTrivialCopyAssignment = FromData.HasTrivialCopyAssignment; |
| 1829 | ToData.HasTrivialMoveAssignment = FromData.HasTrivialMoveAssignment; |
| 1830 | ToData.HasTrivialDestructor = FromData.HasTrivialDestructor; |
| 1831 | ToData.HasNonLiteralTypeFieldsOrBases |
| 1832 | = FromData.HasNonLiteralTypeFieldsOrBases; |
| 1833 | ToData.UserProvidedDefaultConstructor |
| 1834 | = FromData.UserProvidedDefaultConstructor; |
| 1835 | ToData.DeclaredDefaultConstructor = FromData.DeclaredDefaultConstructor; |
| 1836 | ToData.DeclaredCopyConstructor = FromData.DeclaredCopyConstructor; |
| 1837 | ToData.DeclaredMoveConstructor = FromData.DeclaredMoveConstructor; |
| 1838 | ToData.DeclaredCopyAssignment = FromData.DeclaredCopyAssignment; |
| 1839 | ToData.DeclaredMoveAssignment = FromData.DeclaredMoveAssignment; |
| 1840 | ToData.DeclaredDestructor = FromData.DeclaredDestructor; |
| 1841 | ToData.FailedImplicitMoveConstructor |
| 1842 | = FromData.FailedImplicitMoveConstructor; |
| 1843 | ToData.FailedImplicitMoveAssignment = FromData.FailedImplicitMoveAssignment; |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1844 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1845 | SmallVector<CXXBaseSpecifier *, 4> Bases; |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1846 | for (CXXRecordDecl::base_class_iterator |
| 1847 | Base1 = FromCXX->bases_begin(), |
| 1848 | FromBaseEnd = FromCXX->bases_end(); |
| 1849 | Base1 != FromBaseEnd; |
| 1850 | ++Base1) { |
| 1851 | QualType T = Importer.Import(Base1->getType()); |
| 1852 | if (T.isNull()) |
Douglas Gregor | c04d9d1 | 2010-12-02 19:33:37 +0000 | [diff] [blame] | 1853 | return true; |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1854 | |
| 1855 | SourceLocation EllipsisLoc; |
| 1856 | if (Base1->isPackExpansion()) |
| 1857 | EllipsisLoc = Importer.Import(Base1->getEllipsisLoc()); |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 1858 | |
| 1859 | // Ensure that we have a definition for the base. |
| 1860 | ImportDefinitionIfNeeded(Base1->getType()->getAsCXXRecordDecl()); |
| 1861 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1862 | Bases.push_back( |
| 1863 | new (Importer.getToContext()) |
| 1864 | CXXBaseSpecifier(Importer.Import(Base1->getSourceRange()), |
| 1865 | Base1->isVirtual(), |
| 1866 | Base1->isBaseOfClass(), |
| 1867 | Base1->getAccessSpecifierAsWritten(), |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 1868 | Importer.Import(Base1->getTypeSourceInfo()), |
| 1869 | EllipsisLoc)); |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1870 | } |
| 1871 | if (!Bases.empty()) |
| 1872 | ToCXX->setBases(Bases.data(), Bases.size()); |
| 1873 | } |
| 1874 | |
Sean Callanan | 673e775 | 2011-07-19 22:38:25 +0000 | [diff] [blame] | 1875 | ImportDeclContext(From, ForceImport); |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1876 | To->completeDefinition(); |
Douglas Gregor | c04d9d1 | 2010-12-02 19:33:37 +0000 | [diff] [blame] | 1877 | return false; |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1878 | } |
| 1879 | |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 1880 | bool ASTNodeImporter::ImportDefinition(EnumDecl *From, EnumDecl *To, |
| 1881 | bool ForceImport) { |
| 1882 | if (To->getDefinition() || To->isBeingDefined()) |
| 1883 | return false; |
| 1884 | |
| 1885 | To->startDefinition(); |
| 1886 | |
| 1887 | QualType T = Importer.Import(Importer.getFromContext().getTypeDeclType(From)); |
| 1888 | if (T.isNull()) |
| 1889 | return true; |
| 1890 | |
| 1891 | QualType ToPromotionType = Importer.Import(From->getPromotionType()); |
| 1892 | if (ToPromotionType.isNull()) |
| 1893 | return true; |
| 1894 | |
| 1895 | ImportDeclContext(From, ForceImport); |
| 1896 | |
| 1897 | // FIXME: we might need to merge the number of positive or negative bits |
| 1898 | // if the enumerator lists don't match. |
| 1899 | To->completeDefinition(T, ToPromotionType, |
| 1900 | From->getNumPositiveBits(), |
| 1901 | From->getNumNegativeBits()); |
| 1902 | return false; |
| 1903 | } |
| 1904 | |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 1905 | TemplateParameterList *ASTNodeImporter::ImportTemplateParameterList( |
| 1906 | TemplateParameterList *Params) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1907 | SmallVector<NamedDecl *, 4> ToParams; |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 1908 | ToParams.reserve(Params->size()); |
| 1909 | for (TemplateParameterList::iterator P = Params->begin(), |
| 1910 | PEnd = Params->end(); |
| 1911 | P != PEnd; ++P) { |
| 1912 | Decl *To = Importer.Import(*P); |
| 1913 | if (!To) |
| 1914 | return 0; |
| 1915 | |
| 1916 | ToParams.push_back(cast<NamedDecl>(To)); |
| 1917 | } |
| 1918 | |
| 1919 | return TemplateParameterList::Create(Importer.getToContext(), |
| 1920 | Importer.Import(Params->getTemplateLoc()), |
| 1921 | Importer.Import(Params->getLAngleLoc()), |
| 1922 | ToParams.data(), ToParams.size(), |
| 1923 | Importer.Import(Params->getRAngleLoc())); |
| 1924 | } |
| 1925 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1926 | TemplateArgument |
| 1927 | ASTNodeImporter::ImportTemplateArgument(const TemplateArgument &From) { |
| 1928 | switch (From.getKind()) { |
| 1929 | case TemplateArgument::Null: |
| 1930 | return TemplateArgument(); |
| 1931 | |
| 1932 | case TemplateArgument::Type: { |
| 1933 | QualType ToType = Importer.Import(From.getAsType()); |
| 1934 | if (ToType.isNull()) |
| 1935 | return TemplateArgument(); |
| 1936 | return TemplateArgument(ToType); |
| 1937 | } |
| 1938 | |
| 1939 | case TemplateArgument::Integral: { |
| 1940 | QualType ToType = Importer.Import(From.getIntegralType()); |
| 1941 | if (ToType.isNull()) |
| 1942 | return TemplateArgument(); |
| 1943 | return TemplateArgument(*From.getAsIntegral(), ToType); |
| 1944 | } |
| 1945 | |
| 1946 | case TemplateArgument::Declaration: |
| 1947 | if (Decl *To = Importer.Import(From.getAsDecl())) |
| 1948 | return TemplateArgument(To); |
| 1949 | return TemplateArgument(); |
| 1950 | |
| 1951 | case TemplateArgument::Template: { |
| 1952 | TemplateName ToTemplate = Importer.Import(From.getAsTemplate()); |
| 1953 | if (ToTemplate.isNull()) |
| 1954 | return TemplateArgument(); |
| 1955 | |
| 1956 | return TemplateArgument(ToTemplate); |
| 1957 | } |
Douglas Gregor | a7fc901 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 1958 | |
| 1959 | case TemplateArgument::TemplateExpansion: { |
| 1960 | TemplateName ToTemplate |
| 1961 | = Importer.Import(From.getAsTemplateOrTemplatePattern()); |
| 1962 | if (ToTemplate.isNull()) |
| 1963 | return TemplateArgument(); |
| 1964 | |
Douglas Gregor | 2be29f4 | 2011-01-14 23:41:42 +0000 | [diff] [blame] | 1965 | return TemplateArgument(ToTemplate, From.getNumTemplateExpansions()); |
Douglas Gregor | a7fc901 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 1966 | } |
| 1967 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1968 | case TemplateArgument::Expression: |
| 1969 | if (Expr *ToExpr = Importer.Import(From.getAsExpr())) |
| 1970 | return TemplateArgument(ToExpr); |
| 1971 | return TemplateArgument(); |
| 1972 | |
| 1973 | case TemplateArgument::Pack: { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1974 | SmallVector<TemplateArgument, 2> ToPack; |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1975 | ToPack.reserve(From.pack_size()); |
| 1976 | if (ImportTemplateArguments(From.pack_begin(), From.pack_size(), ToPack)) |
| 1977 | return TemplateArgument(); |
| 1978 | |
| 1979 | TemplateArgument *ToArgs |
| 1980 | = new (Importer.getToContext()) TemplateArgument[ToPack.size()]; |
| 1981 | std::copy(ToPack.begin(), ToPack.end(), ToArgs); |
| 1982 | return TemplateArgument(ToArgs, ToPack.size()); |
| 1983 | } |
| 1984 | } |
| 1985 | |
| 1986 | llvm_unreachable("Invalid template argument kind"); |
| 1987 | return TemplateArgument(); |
| 1988 | } |
| 1989 | |
| 1990 | bool ASTNodeImporter::ImportTemplateArguments(const TemplateArgument *FromArgs, |
| 1991 | unsigned NumFromArgs, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1992 | SmallVectorImpl<TemplateArgument> &ToArgs) { |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 1993 | for (unsigned I = 0; I != NumFromArgs; ++I) { |
| 1994 | TemplateArgument To = ImportTemplateArgument(FromArgs[I]); |
| 1995 | if (To.isNull() && !FromArgs[I].isNull()) |
| 1996 | return true; |
| 1997 | |
| 1998 | ToArgs.push_back(To); |
| 1999 | } |
| 2000 | |
| 2001 | return false; |
| 2002 | } |
| 2003 | |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2004 | bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord, |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2005 | RecordDecl *ToRecord) { |
Benjamin Kramer | bb2d176 | 2010-02-18 13:02:13 +0000 | [diff] [blame] | 2006 | StructuralEquivalenceContext Ctx(Importer.getFromContext(), |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2007 | Importer.getToContext(), |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2008 | Importer.getNonEquivalentDecls()); |
Benjamin Kramer | bb2d176 | 2010-02-18 13:02:13 +0000 | [diff] [blame] | 2009 | return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2010 | } |
| 2011 | |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2012 | bool ASTNodeImporter::IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToEnum) { |
Benjamin Kramer | bb2d176 | 2010-02-18 13:02:13 +0000 | [diff] [blame] | 2013 | StructuralEquivalenceContext Ctx(Importer.getFromContext(), |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2014 | Importer.getToContext(), |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2015 | Importer.getNonEquivalentDecls()); |
Benjamin Kramer | bb2d176 | 2010-02-18 13:02:13 +0000 | [diff] [blame] | 2016 | return Ctx.IsStructurallyEquivalent(FromEnum, ToEnum); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2017 | } |
| 2018 | |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 2019 | bool ASTNodeImporter::IsStructuralMatch(ClassTemplateDecl *From, |
| 2020 | ClassTemplateDecl *To) { |
| 2021 | StructuralEquivalenceContext Ctx(Importer.getFromContext(), |
| 2022 | Importer.getToContext(), |
| 2023 | Importer.getNonEquivalentDecls()); |
| 2024 | return Ctx.IsStructurallyEquivalent(From, To); |
| 2025 | } |
| 2026 | |
Douglas Gregor | 89cc9d6 | 2010-02-09 22:48:33 +0000 | [diff] [blame] | 2027 | Decl *ASTNodeImporter::VisitDecl(Decl *D) { |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 2028 | Importer.FromDiag(D->getLocation(), diag::err_unsupported_ast_node) |
Douglas Gregor | 89cc9d6 | 2010-02-09 22:48:33 +0000 | [diff] [blame] | 2029 | << D->getDeclKindName(); |
| 2030 | return 0; |
| 2031 | } |
| 2032 | |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 2033 | Decl *ASTNodeImporter::VisitNamespaceDecl(NamespaceDecl *D) { |
| 2034 | // Import the major distinguishing characteristics of this namespace. |
| 2035 | DeclContext *DC, *LexicalDC; |
| 2036 | DeclarationName Name; |
| 2037 | SourceLocation Loc; |
| 2038 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2039 | return 0; |
| 2040 | |
| 2041 | NamespaceDecl *MergeWithNamespace = 0; |
| 2042 | if (!Name) { |
| 2043 | // This is an anonymous namespace. Adopt an existing anonymous |
| 2044 | // namespace if we can. |
| 2045 | // FIXME: Not testable. |
| 2046 | if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC)) |
| 2047 | MergeWithNamespace = TU->getAnonymousNamespace(); |
| 2048 | else |
| 2049 | MergeWithNamespace = cast<NamespaceDecl>(DC)->getAnonymousNamespace(); |
| 2050 | } else { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2051 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2052 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2053 | DC->localUncachedLookup(Name, FoundDecls); |
| 2054 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2055 | if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Namespace)) |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 2056 | continue; |
| 2057 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2058 | if (NamespaceDecl *FoundNS = dyn_cast<NamespaceDecl>(FoundDecls[I])) { |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 2059 | MergeWithNamespace = FoundNS; |
| 2060 | ConflictingDecls.clear(); |
| 2061 | break; |
| 2062 | } |
| 2063 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2064 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 2065 | } |
| 2066 | |
| 2067 | if (!ConflictingDecls.empty()) { |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 2068 | Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Namespace, |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 2069 | ConflictingDecls.data(), |
| 2070 | ConflictingDecls.size()); |
| 2071 | } |
| 2072 | } |
| 2073 | |
| 2074 | // Create the "to" namespace, if needed. |
| 2075 | NamespaceDecl *ToNamespace = MergeWithNamespace; |
| 2076 | if (!ToNamespace) { |
Abramo Bagnara | acba90f | 2011-03-08 12:38:20 +0000 | [diff] [blame] | 2077 | ToNamespace = NamespaceDecl::Create(Importer.getToContext(), DC, |
| 2078 | Importer.Import(D->getLocStart()), |
| 2079 | Loc, Name.getAsIdentifierInfo()); |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 2080 | ToNamespace->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2081 | LexicalDC->addDeclInternal(ToNamespace); |
Douglas Gregor | 788c62d | 2010-02-21 18:26:36 +0000 | [diff] [blame] | 2082 | |
| 2083 | // If this is an anonymous namespace, register it as the anonymous |
| 2084 | // namespace within its context. |
| 2085 | if (!Name) { |
| 2086 | if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC)) |
| 2087 | TU->setAnonymousNamespace(ToNamespace); |
| 2088 | else |
| 2089 | cast<NamespaceDecl>(DC)->setAnonymousNamespace(ToNamespace); |
| 2090 | } |
| 2091 | } |
| 2092 | Importer.Imported(D, ToNamespace); |
| 2093 | |
| 2094 | ImportDeclContext(D); |
| 2095 | |
| 2096 | return ToNamespace; |
| 2097 | } |
| 2098 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2099 | Decl *ASTNodeImporter::VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias) { |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2100 | // Import the major distinguishing characteristics of this typedef. |
| 2101 | DeclContext *DC, *LexicalDC; |
| 2102 | DeclarationName Name; |
| 2103 | SourceLocation Loc; |
| 2104 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2105 | return 0; |
| 2106 | |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2107 | // If this typedef is not in block scope, determine whether we've |
| 2108 | // seen a typedef with the same name (that we can merge with) or any |
| 2109 | // other entity by that name (which name lookup could conflict with). |
| 2110 | if (!DC->isFunctionOrMethod()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2111 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2112 | unsigned IDNS = Decl::IDNS_Ordinary; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2113 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2114 | DC->localUncachedLookup(Name, FoundDecls); |
| 2115 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2116 | if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2117 | continue; |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2118 | if (TypedefNameDecl *FoundTypedef = |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2119 | dyn_cast<TypedefNameDecl>(FoundDecls[I])) { |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2120 | if (Importer.IsStructurallyEquivalent(D->getUnderlyingType(), |
| 2121 | FoundTypedef->getUnderlyingType())) |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2122 | return Importer.Imported(D, FoundTypedef); |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2123 | } |
| 2124 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2125 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2126 | } |
| 2127 | |
| 2128 | if (!ConflictingDecls.empty()) { |
| 2129 | Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| 2130 | ConflictingDecls.data(), |
| 2131 | ConflictingDecls.size()); |
| 2132 | if (!Name) |
| 2133 | return 0; |
| 2134 | } |
| 2135 | } |
| 2136 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2137 | // Import the underlying type of this typedef; |
| 2138 | QualType T = Importer.Import(D->getUnderlyingType()); |
| 2139 | if (T.isNull()) |
| 2140 | return 0; |
| 2141 | |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2142 | // Create the new typedef node. |
| 2143 | TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
Abramo Bagnara | 344577e | 2011-03-06 15:48:19 +0000 | [diff] [blame] | 2144 | SourceLocation StartL = Importer.Import(D->getLocStart()); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2145 | TypedefNameDecl *ToTypedef; |
| 2146 | if (IsAlias) |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 2147 | ToTypedef = TypeAliasDecl::Create(Importer.getToContext(), DC, |
| 2148 | StartL, Loc, |
| 2149 | Name.getAsIdentifierInfo(), |
| 2150 | TInfo); |
| 2151 | else |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2152 | ToTypedef = TypedefDecl::Create(Importer.getToContext(), DC, |
| 2153 | StartL, Loc, |
| 2154 | Name.getAsIdentifierInfo(), |
| 2155 | TInfo); |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 2156 | |
Douglas Gregor | 325bf17 | 2010-02-22 17:42:47 +0000 | [diff] [blame] | 2157 | ToTypedef->setAccess(D->getAccess()); |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2158 | ToTypedef->setLexicalDeclContext(LexicalDC); |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2159 | Importer.Imported(D, ToTypedef); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2160 | LexicalDC->addDeclInternal(ToTypedef); |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2161 | |
Douglas Gregor | 9e5d996 | 2010-02-10 21:10:29 +0000 | [diff] [blame] | 2162 | return ToTypedef; |
| 2163 | } |
| 2164 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2165 | Decl *ASTNodeImporter::VisitTypedefDecl(TypedefDecl *D) { |
| 2166 | return VisitTypedefNameDecl(D, /*IsAlias=*/false); |
| 2167 | } |
| 2168 | |
| 2169 | Decl *ASTNodeImporter::VisitTypeAliasDecl(TypeAliasDecl *D) { |
| 2170 | return VisitTypedefNameDecl(D, /*IsAlias=*/true); |
| 2171 | } |
| 2172 | |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2173 | Decl *ASTNodeImporter::VisitEnumDecl(EnumDecl *D) { |
| 2174 | // Import the major distinguishing characteristics of this enum. |
| 2175 | DeclContext *DC, *LexicalDC; |
| 2176 | DeclarationName Name; |
| 2177 | SourceLocation Loc; |
| 2178 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2179 | return 0; |
| 2180 | |
| 2181 | // Figure out what enum name we're looking for. |
| 2182 | unsigned IDNS = Decl::IDNS_Tag; |
| 2183 | DeclarationName SearchName = Name; |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2184 | if (!SearchName && D->getTypedefNameForAnonDecl()) { |
| 2185 | SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName()); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2186 | IDNS = Decl::IDNS_Ordinary; |
| 2187 | } else if (Importer.getToContext().getLangOptions().CPlusPlus) |
| 2188 | IDNS |= Decl::IDNS_Ordinary; |
| 2189 | |
| 2190 | // We may already have an enum of the same name; try to find and match it. |
| 2191 | if (!DC->isFunctionOrMethod() && SearchName) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2192 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2193 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2194 | DC->localUncachedLookup(SearchName, FoundDecls); |
| 2195 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2196 | if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2197 | continue; |
| 2198 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2199 | Decl *Found = FoundDecls[I]; |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2200 | if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2201 | if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) |
| 2202 | Found = Tag->getDecl(); |
| 2203 | } |
| 2204 | |
| 2205 | if (EnumDecl *FoundEnum = dyn_cast<EnumDecl>(Found)) { |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2206 | if (IsStructuralMatch(D, FoundEnum)) |
| 2207 | return Importer.Imported(D, FoundEnum); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2208 | } |
| 2209 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2210 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2211 | } |
| 2212 | |
| 2213 | if (!ConflictingDecls.empty()) { |
| 2214 | Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| 2215 | ConflictingDecls.data(), |
| 2216 | ConflictingDecls.size()); |
| 2217 | } |
| 2218 | } |
| 2219 | |
| 2220 | // Create the enum declaration. |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2221 | EnumDecl *D2 = EnumDecl::Create(Importer.getToContext(), DC, |
| 2222 | Importer.Import(D->getLocStart()), |
| 2223 | Loc, Name.getAsIdentifierInfo(), 0, |
Abramo Bagnara | a88cefd | 2010-12-03 18:54:17 +0000 | [diff] [blame] | 2224 | D->isScoped(), D->isScopedUsingClassTag(), |
| 2225 | D->isFixed()); |
John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 2226 | // Import the qualifier, if any. |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 2227 | D2->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
Douglas Gregor | 325bf17 | 2010-02-22 17:42:47 +0000 | [diff] [blame] | 2228 | D2->setAccess(D->getAccess()); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2229 | D2->setLexicalDeclContext(LexicalDC); |
| 2230 | Importer.Imported(D, D2); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2231 | LexicalDC->addDeclInternal(D2); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2232 | |
| 2233 | // Import the integer type. |
| 2234 | QualType ToIntegerType = Importer.Import(D->getIntegerType()); |
| 2235 | if (ToIntegerType.isNull()) |
| 2236 | return 0; |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2237 | D2->setIntegerType(ToIntegerType); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2238 | |
| 2239 | // Import the definition |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 2240 | if (D->isCompleteDefinition() && ImportDefinition(D, D2)) |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 2241 | return 0; |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2242 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2243 | return D2; |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2244 | } |
| 2245 | |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2246 | Decl *ASTNodeImporter::VisitRecordDecl(RecordDecl *D) { |
| 2247 | // If this record has a definition in the translation unit we're coming from, |
| 2248 | // but this particular declaration is not that definition, import the |
| 2249 | // definition and map to that. |
Douglas Gregor | 952b017 | 2010-02-11 01:04:33 +0000 | [diff] [blame] | 2250 | TagDecl *Definition = D->getDefinition(); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2251 | if (Definition && Definition != D) { |
| 2252 | Decl *ImportedDef = Importer.Import(Definition); |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2253 | if (!ImportedDef) |
| 2254 | return 0; |
| 2255 | |
| 2256 | return Importer.Imported(D, ImportedDef); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2257 | } |
| 2258 | |
| 2259 | // Import the major distinguishing characteristics of this record. |
| 2260 | DeclContext *DC, *LexicalDC; |
| 2261 | DeclarationName Name; |
| 2262 | SourceLocation Loc; |
| 2263 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2264 | return 0; |
| 2265 | |
| 2266 | // Figure out what structure name we're looking for. |
| 2267 | unsigned IDNS = Decl::IDNS_Tag; |
| 2268 | DeclarationName SearchName = Name; |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2269 | if (!SearchName && D->getTypedefNameForAnonDecl()) { |
| 2270 | SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName()); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2271 | IDNS = Decl::IDNS_Ordinary; |
| 2272 | } else if (Importer.getToContext().getLangOptions().CPlusPlus) |
| 2273 | IDNS |= Decl::IDNS_Ordinary; |
| 2274 | |
| 2275 | // We may already have a record of the same name; try to find and match it. |
Douglas Gregor | e72b5dc | 2010-02-12 00:09:27 +0000 | [diff] [blame] | 2276 | RecordDecl *AdoptDecl = 0; |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2277 | if (!DC->isFunctionOrMethod() && SearchName) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2278 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2279 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2280 | DC->localUncachedLookup(SearchName, FoundDecls); |
| 2281 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2282 | if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2283 | continue; |
| 2284 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2285 | Decl *Found = FoundDecls[I]; |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 2286 | if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) { |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2287 | if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>()) |
| 2288 | Found = Tag->getDecl(); |
| 2289 | } |
| 2290 | |
| 2291 | if (RecordDecl *FoundRecord = dyn_cast<RecordDecl>(Found)) { |
Douglas Gregor | e72b5dc | 2010-02-12 00:09:27 +0000 | [diff] [blame] | 2292 | if (RecordDecl *FoundDef = FoundRecord->getDefinition()) { |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 2293 | if (!D->isCompleteDefinition() || IsStructuralMatch(D, FoundDef)) { |
Douglas Gregor | e72b5dc | 2010-02-12 00:09:27 +0000 | [diff] [blame] | 2294 | // The record types structurally match, or the "from" translation |
| 2295 | // unit only had a forward declaration anyway; call it the same |
| 2296 | // function. |
| 2297 | // FIXME: For C++, we should also merge methods here. |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2298 | return Importer.Imported(D, FoundDef); |
Douglas Gregor | e72b5dc | 2010-02-12 00:09:27 +0000 | [diff] [blame] | 2299 | } |
| 2300 | } else { |
| 2301 | // We have a forward declaration of this type, so adopt that forward |
| 2302 | // declaration rather than building a new one. |
| 2303 | AdoptDecl = FoundRecord; |
| 2304 | continue; |
| 2305 | } |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2306 | } |
| 2307 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2308 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | if (!ConflictingDecls.empty()) { |
| 2312 | Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| 2313 | ConflictingDecls.data(), |
| 2314 | ConflictingDecls.size()); |
| 2315 | } |
| 2316 | } |
| 2317 | |
| 2318 | // Create the record declaration. |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2319 | RecordDecl *D2 = AdoptDecl; |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2320 | SourceLocation StartLoc = Importer.Import(D->getLocStart()); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2321 | if (!D2) { |
John McCall | 5250f27 | 2010-06-03 19:28:45 +0000 | [diff] [blame] | 2322 | if (isa<CXXRecordDecl>(D)) { |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2323 | CXXRecordDecl *D2CXX = CXXRecordDecl::Create(Importer.getToContext(), |
Douglas Gregor | e72b5dc | 2010-02-12 00:09:27 +0000 | [diff] [blame] | 2324 | D->getTagKind(), |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2325 | DC, StartLoc, Loc, |
| 2326 | Name.getAsIdentifierInfo()); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2327 | D2 = D2CXX; |
Douglas Gregor | 325bf17 | 2010-02-22 17:42:47 +0000 | [diff] [blame] | 2328 | D2->setAccess(D->getAccess()); |
Douglas Gregor | e72b5dc | 2010-02-12 00:09:27 +0000 | [diff] [blame] | 2329 | } else { |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2330 | D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(), |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2331 | DC, StartLoc, Loc, Name.getAsIdentifierInfo()); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2332 | } |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 2333 | |
| 2334 | D2->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2335 | D2->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2336 | LexicalDC->addDeclInternal(D2); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2337 | } |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2338 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2339 | Importer.Imported(D, D2); |
Douglas Gregor | e72b5dc | 2010-02-12 00:09:27 +0000 | [diff] [blame] | 2340 | |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 2341 | if (D->isCompleteDefinition() && ImportDefinition(D, D2)) |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 2342 | return 0; |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2343 | |
Douglas Gregor | 73dc30b | 2010-02-15 22:01:00 +0000 | [diff] [blame] | 2344 | return D2; |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2345 | } |
| 2346 | |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2347 | Decl *ASTNodeImporter::VisitEnumConstantDecl(EnumConstantDecl *D) { |
| 2348 | // Import the major distinguishing characteristics of this enumerator. |
| 2349 | DeclContext *DC, *LexicalDC; |
| 2350 | DeclarationName Name; |
| 2351 | SourceLocation Loc; |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2352 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2353 | return 0; |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2354 | |
| 2355 | QualType T = Importer.Import(D->getType()); |
| 2356 | if (T.isNull()) |
| 2357 | return 0; |
| 2358 | |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2359 | // Determine whether there are any other declarations with the same name and |
| 2360 | // in the same context. |
| 2361 | if (!LexicalDC->isFunctionOrMethod()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2362 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2363 | unsigned IDNS = Decl::IDNS_Ordinary; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2364 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2365 | DC->localUncachedLookup(Name, FoundDecls); |
| 2366 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2367 | if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2368 | continue; |
| 2369 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2370 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2371 | } |
| 2372 | |
| 2373 | if (!ConflictingDecls.empty()) { |
| 2374 | Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| 2375 | ConflictingDecls.data(), |
| 2376 | ConflictingDecls.size()); |
| 2377 | if (!Name) |
| 2378 | return 0; |
| 2379 | } |
| 2380 | } |
| 2381 | |
| 2382 | Expr *Init = Importer.Import(D->getInitExpr()); |
| 2383 | if (D->getInitExpr() && !Init) |
| 2384 | return 0; |
| 2385 | |
| 2386 | EnumConstantDecl *ToEnumerator |
| 2387 | = EnumConstantDecl::Create(Importer.getToContext(), cast<EnumDecl>(DC), Loc, |
| 2388 | Name.getAsIdentifierInfo(), T, |
| 2389 | Init, D->getInitVal()); |
Douglas Gregor | 325bf17 | 2010-02-22 17:42:47 +0000 | [diff] [blame] | 2390 | ToEnumerator->setAccess(D->getAccess()); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2391 | ToEnumerator->setLexicalDeclContext(LexicalDC); |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2392 | Importer.Imported(D, ToEnumerator); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2393 | LexicalDC->addDeclInternal(ToEnumerator); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 2394 | return ToEnumerator; |
| 2395 | } |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2396 | |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2397 | Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) { |
| 2398 | // Import the major distinguishing characteristics of this function. |
| 2399 | DeclContext *DC, *LexicalDC; |
| 2400 | DeclarationName Name; |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2401 | SourceLocation Loc; |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2402 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2403 | return 0; |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2404 | |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2405 | // Try to find a function in our own ("to") context with the same name, same |
| 2406 | // type, and in the same context as the function we're importing. |
| 2407 | if (!LexicalDC->isFunctionOrMethod()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2408 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2409 | unsigned IDNS = Decl::IDNS_Ordinary; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2410 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2411 | DC->localUncachedLookup(Name, FoundDecls); |
| 2412 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2413 | if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2414 | continue; |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2415 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2416 | if (FunctionDecl *FoundFunction = dyn_cast<FunctionDecl>(FoundDecls[I])) { |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2417 | if (isExternalLinkage(FoundFunction->getLinkage()) && |
| 2418 | isExternalLinkage(D->getLinkage())) { |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2419 | if (Importer.IsStructurallyEquivalent(D->getType(), |
| 2420 | FoundFunction->getType())) { |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2421 | // FIXME: Actually try to merge the body and other attributes. |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2422 | return Importer.Imported(D, FoundFunction); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2423 | } |
| 2424 | |
| 2425 | // FIXME: Check for overloading more carefully, e.g., by boosting |
| 2426 | // Sema::IsOverload out to the AST library. |
| 2427 | |
| 2428 | // Function overloading is okay in C++. |
| 2429 | if (Importer.getToContext().getLangOptions().CPlusPlus) |
| 2430 | continue; |
| 2431 | |
| 2432 | // Complain about inconsistent function types. |
| 2433 | Importer.ToDiag(Loc, diag::err_odr_function_type_inconsistent) |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2434 | << Name << D->getType() << FoundFunction->getType(); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2435 | Importer.ToDiag(FoundFunction->getLocation(), |
| 2436 | diag::note_odr_value_here) |
| 2437 | << FoundFunction->getType(); |
| 2438 | } |
| 2439 | } |
| 2440 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2441 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2442 | } |
| 2443 | |
| 2444 | if (!ConflictingDecls.empty()) { |
| 2445 | Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| 2446 | ConflictingDecls.data(), |
| 2447 | ConflictingDecls.size()); |
| 2448 | if (!Name) |
| 2449 | return 0; |
| 2450 | } |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 2451 | } |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2452 | |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2453 | DeclarationNameInfo NameInfo(Name, Loc); |
| 2454 | // Import additional name location/type info. |
| 2455 | ImportDeclarationNameLoc(D->getNameInfo(), NameInfo); |
| 2456 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2457 | // Import the type. |
| 2458 | QualType T = Importer.Import(D->getType()); |
| 2459 | if (T.isNull()) |
| 2460 | return 0; |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2461 | |
| 2462 | // Import the function parameters. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2463 | SmallVector<ParmVarDecl *, 8> Parameters; |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2464 | for (FunctionDecl::param_iterator P = D->param_begin(), PEnd = D->param_end(); |
| 2465 | P != PEnd; ++P) { |
| 2466 | ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(*P)); |
| 2467 | if (!ToP) |
| 2468 | return 0; |
| 2469 | |
| 2470 | Parameters.push_back(ToP); |
| 2471 | } |
| 2472 | |
| 2473 | // Create the imported function. |
| 2474 | TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2475 | FunctionDecl *ToFunction = 0; |
| 2476 | if (CXXConstructorDecl *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) { |
| 2477 | ToFunction = CXXConstructorDecl::Create(Importer.getToContext(), |
| 2478 | cast<CXXRecordDecl>(DC), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2479 | D->getInnerLocStart(), |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2480 | NameInfo, T, TInfo, |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2481 | FromConstructor->isExplicit(), |
| 2482 | D->isInlineSpecified(), |
Richard Smith | af1fc7a | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 2483 | D->isImplicit(), |
| 2484 | D->isConstexpr()); |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2485 | } else if (isa<CXXDestructorDecl>(D)) { |
| 2486 | ToFunction = CXXDestructorDecl::Create(Importer.getToContext(), |
| 2487 | cast<CXXRecordDecl>(DC), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2488 | D->getInnerLocStart(), |
Craig Silverstein | b41d899 | 2010-10-21 00:44:50 +0000 | [diff] [blame] | 2489 | NameInfo, T, TInfo, |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2490 | D->isInlineSpecified(), |
| 2491 | D->isImplicit()); |
| 2492 | } else if (CXXConversionDecl *FromConversion |
| 2493 | = dyn_cast<CXXConversionDecl>(D)) { |
| 2494 | ToFunction = CXXConversionDecl::Create(Importer.getToContext(), |
| 2495 | cast<CXXRecordDecl>(DC), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2496 | D->getInnerLocStart(), |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2497 | NameInfo, T, TInfo, |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2498 | D->isInlineSpecified(), |
Douglas Gregor | f525160 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 2499 | FromConversion->isExplicit(), |
Richard Smith | af1fc7a | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 2500 | D->isConstexpr(), |
Douglas Gregor | f525160 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 2501 | Importer.Import(D->getLocEnd())); |
Douglas Gregor | 0629cbe | 2010-11-29 16:04:58 +0000 | [diff] [blame] | 2502 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 2503 | ToFunction = CXXMethodDecl::Create(Importer.getToContext(), |
| 2504 | cast<CXXRecordDecl>(DC), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2505 | D->getInnerLocStart(), |
Douglas Gregor | 0629cbe | 2010-11-29 16:04:58 +0000 | [diff] [blame] | 2506 | NameInfo, T, TInfo, |
| 2507 | Method->isStatic(), |
| 2508 | Method->getStorageClassAsWritten(), |
Douglas Gregor | f525160 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 2509 | Method->isInlineSpecified(), |
Richard Smith | af1fc7a | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 2510 | D->isConstexpr(), |
Douglas Gregor | f525160 | 2011-03-08 17:10:18 +0000 | [diff] [blame] | 2511 | Importer.Import(D->getLocEnd())); |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2512 | } else { |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2513 | ToFunction = FunctionDecl::Create(Importer.getToContext(), DC, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2514 | D->getInnerLocStart(), |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 2515 | NameInfo, T, TInfo, D->getStorageClass(), |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 2516 | D->getStorageClassAsWritten(), |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2517 | D->isInlineSpecified(), |
Richard Smith | af1fc7a | 2011-08-15 21:04:07 +0000 | [diff] [blame] | 2518 | D->hasWrittenPrototype(), |
| 2519 | D->isConstexpr()); |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2520 | } |
John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 2521 | |
| 2522 | // Import the qualifier, if any. |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 2523 | ToFunction->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
Douglas Gregor | 325bf17 | 2010-02-22 17:42:47 +0000 | [diff] [blame] | 2524 | ToFunction->setAccess(D->getAccess()); |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2525 | ToFunction->setLexicalDeclContext(LexicalDC); |
John McCall | f2eca2c | 2011-01-27 02:37:01 +0000 | [diff] [blame] | 2526 | ToFunction->setVirtualAsWritten(D->isVirtualAsWritten()); |
| 2527 | ToFunction->setTrivial(D->isTrivial()); |
| 2528 | ToFunction->setPure(D->isPure()); |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2529 | Importer.Imported(D, ToFunction); |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 2530 | |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2531 | // Set the parameters. |
| 2532 | for (unsigned I = 0, N = Parameters.size(); I != N; ++I) { |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2533 | Parameters[I]->setOwningFunction(ToFunction); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2534 | ToFunction->addDeclInternal(Parameters[I]); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2535 | } |
David Blaikie | 4278c65 | 2011-09-21 18:16:56 +0000 | [diff] [blame] | 2536 | ToFunction->setParams(Parameters); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2537 | |
| 2538 | // FIXME: Other bits to merge? |
Douglas Gregor | 81134ad | 2010-10-01 23:55:07 +0000 | [diff] [blame] | 2539 | |
| 2540 | // Add this function to the lexical context. |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2541 | LexicalDC->addDeclInternal(ToFunction); |
Douglas Gregor | 81134ad | 2010-10-01 23:55:07 +0000 | [diff] [blame] | 2542 | |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2543 | return ToFunction; |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2544 | } |
| 2545 | |
Douglas Gregor | c144f35 | 2010-02-21 18:29:16 +0000 | [diff] [blame] | 2546 | Decl *ASTNodeImporter::VisitCXXMethodDecl(CXXMethodDecl *D) { |
| 2547 | return VisitFunctionDecl(D); |
| 2548 | } |
| 2549 | |
| 2550 | Decl *ASTNodeImporter::VisitCXXConstructorDecl(CXXConstructorDecl *D) { |
| 2551 | return VisitCXXMethodDecl(D); |
| 2552 | } |
| 2553 | |
| 2554 | Decl *ASTNodeImporter::VisitCXXDestructorDecl(CXXDestructorDecl *D) { |
| 2555 | return VisitCXXMethodDecl(D); |
| 2556 | } |
| 2557 | |
| 2558 | Decl *ASTNodeImporter::VisitCXXConversionDecl(CXXConversionDecl *D) { |
| 2559 | return VisitCXXMethodDecl(D); |
| 2560 | } |
| 2561 | |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2562 | Decl *ASTNodeImporter::VisitFieldDecl(FieldDecl *D) { |
| 2563 | // Import the major distinguishing characteristics of a variable. |
| 2564 | DeclContext *DC, *LexicalDC; |
| 2565 | DeclarationName Name; |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2566 | SourceLocation Loc; |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2567 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2568 | return 0; |
| 2569 | |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 2570 | // Determine whether we've already imported this field. |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2571 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2572 | DC->localUncachedLookup(Name, FoundDecls); |
| 2573 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2574 | if (FieldDecl *FoundField = dyn_cast<FieldDecl>(FoundDecls[I])) { |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 2575 | if (Importer.IsStructurallyEquivalent(D->getType(), |
| 2576 | FoundField->getType())) { |
| 2577 | Importer.Imported(D, FoundField); |
| 2578 | return FoundField; |
| 2579 | } |
| 2580 | |
| 2581 | Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent) |
| 2582 | << Name << D->getType() << FoundField->getType(); |
| 2583 | Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here) |
| 2584 | << FoundField->getType(); |
| 2585 | return 0; |
| 2586 | } |
| 2587 | } |
| 2588 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2589 | // Import the type. |
| 2590 | QualType T = Importer.Import(D->getType()); |
| 2591 | if (T.isNull()) |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2592 | return 0; |
| 2593 | |
| 2594 | TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| 2595 | Expr *BitWidth = Importer.Import(D->getBitWidth()); |
| 2596 | if (!BitWidth && D->getBitWidth()) |
| 2597 | return 0; |
| 2598 | |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2599 | FieldDecl *ToField = FieldDecl::Create(Importer.getToContext(), DC, |
| 2600 | Importer.Import(D->getInnerLocStart()), |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2601 | Loc, Name.getAsIdentifierInfo(), |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 2602 | T, TInfo, BitWidth, D->isMutable(), |
| 2603 | D->hasInClassInitializer()); |
Douglas Gregor | 325bf17 | 2010-02-22 17:42:47 +0000 | [diff] [blame] | 2604 | ToField->setAccess(D->getAccess()); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2605 | ToField->setLexicalDeclContext(LexicalDC); |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 2606 | if (ToField->hasInClassInitializer()) |
| 2607 | ToField->setInClassInitializer(D->getInClassInitializer()); |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2608 | Importer.Imported(D, ToField); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2609 | LexicalDC->addDeclInternal(ToField); |
Douglas Gregor | 96a01b4 | 2010-02-11 00:48:18 +0000 | [diff] [blame] | 2610 | return ToField; |
| 2611 | } |
| 2612 | |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 2613 | Decl *ASTNodeImporter::VisitIndirectFieldDecl(IndirectFieldDecl *D) { |
| 2614 | // Import the major distinguishing characteristics of a variable. |
| 2615 | DeclContext *DC, *LexicalDC; |
| 2616 | DeclarationName Name; |
| 2617 | SourceLocation Loc; |
| 2618 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2619 | return 0; |
| 2620 | |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 2621 | // Determine whether we've already imported this field. |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2622 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2623 | DC->localUncachedLookup(Name, FoundDecls); |
| 2624 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 2625 | if (IndirectFieldDecl *FoundField |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2626 | = dyn_cast<IndirectFieldDecl>(FoundDecls[I])) { |
Douglas Gregor | 7c9412c | 2011-10-14 21:54:42 +0000 | [diff] [blame] | 2627 | if (Importer.IsStructurallyEquivalent(D->getType(), |
| 2628 | FoundField->getType())) { |
| 2629 | Importer.Imported(D, FoundField); |
| 2630 | return FoundField; |
| 2631 | } |
| 2632 | |
| 2633 | Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent) |
| 2634 | << Name << D->getType() << FoundField->getType(); |
| 2635 | Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here) |
| 2636 | << FoundField->getType(); |
| 2637 | return 0; |
| 2638 | } |
| 2639 | } |
| 2640 | |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 2641 | // Import the type. |
| 2642 | QualType T = Importer.Import(D->getType()); |
| 2643 | if (T.isNull()) |
| 2644 | return 0; |
| 2645 | |
| 2646 | NamedDecl **NamedChain = |
| 2647 | new (Importer.getToContext())NamedDecl*[D->getChainingSize()]; |
| 2648 | |
| 2649 | unsigned i = 0; |
| 2650 | for (IndirectFieldDecl::chain_iterator PI = D->chain_begin(), |
| 2651 | PE = D->chain_end(); PI != PE; ++PI) { |
| 2652 | Decl* D = Importer.Import(*PI); |
| 2653 | if (!D) |
| 2654 | return 0; |
| 2655 | NamedChain[i++] = cast<NamedDecl>(D); |
| 2656 | } |
| 2657 | |
| 2658 | IndirectFieldDecl *ToIndirectField = IndirectFieldDecl::Create( |
| 2659 | Importer.getToContext(), DC, |
| 2660 | Loc, Name.getAsIdentifierInfo(), T, |
| 2661 | NamedChain, D->getChainingSize()); |
| 2662 | ToIndirectField->setAccess(D->getAccess()); |
| 2663 | ToIndirectField->setLexicalDeclContext(LexicalDC); |
| 2664 | Importer.Imported(D, ToIndirectField); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2665 | LexicalDC->addDeclInternal(ToIndirectField); |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 2666 | return ToIndirectField; |
| 2667 | } |
| 2668 | |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 2669 | Decl *ASTNodeImporter::VisitObjCIvarDecl(ObjCIvarDecl *D) { |
| 2670 | // Import the major distinguishing characteristics of an ivar. |
| 2671 | DeclContext *DC, *LexicalDC; |
| 2672 | DeclarationName Name; |
| 2673 | SourceLocation Loc; |
| 2674 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2675 | return 0; |
| 2676 | |
| 2677 | // Determine whether we've already imported this ivar |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2678 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2679 | DC->localUncachedLookup(Name, FoundDecls); |
| 2680 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2681 | if (ObjCIvarDecl *FoundIvar = dyn_cast<ObjCIvarDecl>(FoundDecls[I])) { |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 2682 | if (Importer.IsStructurallyEquivalent(D->getType(), |
| 2683 | FoundIvar->getType())) { |
| 2684 | Importer.Imported(D, FoundIvar); |
| 2685 | return FoundIvar; |
| 2686 | } |
| 2687 | |
| 2688 | Importer.ToDiag(Loc, diag::err_odr_ivar_type_inconsistent) |
| 2689 | << Name << D->getType() << FoundIvar->getType(); |
| 2690 | Importer.ToDiag(FoundIvar->getLocation(), diag::note_odr_value_here) |
| 2691 | << FoundIvar->getType(); |
| 2692 | return 0; |
| 2693 | } |
| 2694 | } |
| 2695 | |
| 2696 | // Import the type. |
| 2697 | QualType T = Importer.Import(D->getType()); |
| 2698 | if (T.isNull()) |
| 2699 | return 0; |
| 2700 | |
| 2701 | TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| 2702 | Expr *BitWidth = Importer.Import(D->getBitWidth()); |
| 2703 | if (!BitWidth && D->getBitWidth()) |
| 2704 | return 0; |
| 2705 | |
Daniel Dunbar | a065492 | 2010-04-02 20:10:03 +0000 | [diff] [blame] | 2706 | ObjCIvarDecl *ToIvar = ObjCIvarDecl::Create(Importer.getToContext(), |
| 2707 | cast<ObjCContainerDecl>(DC), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2708 | Importer.Import(D->getInnerLocStart()), |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 2709 | Loc, Name.getAsIdentifierInfo(), |
| 2710 | T, TInfo, D->getAccessControl(), |
Fariborz Jahanian | ac0021b | 2010-07-17 18:35:47 +0000 | [diff] [blame] | 2711 | BitWidth, D->getSynthesize()); |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 2712 | ToIvar->setLexicalDeclContext(LexicalDC); |
| 2713 | Importer.Imported(D, ToIvar); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2714 | LexicalDC->addDeclInternal(ToIvar); |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 2715 | return ToIvar; |
| 2716 | |
| 2717 | } |
| 2718 | |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2719 | Decl *ASTNodeImporter::VisitVarDecl(VarDecl *D) { |
| 2720 | // Import the major distinguishing characteristics of a variable. |
| 2721 | DeclContext *DC, *LexicalDC; |
| 2722 | DeclarationName Name; |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2723 | SourceLocation Loc; |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2724 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2725 | return 0; |
| 2726 | |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2727 | // Try to find a variable in our own ("to") context with the same name and |
| 2728 | // in the same context as the variable we're importing. |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 2729 | if (D->isFileVarDecl()) { |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2730 | VarDecl *MergeWithVar = 0; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2731 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2732 | unsigned IDNS = Decl::IDNS_Ordinary; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2733 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2734 | DC->localUncachedLookup(Name, FoundDecls); |
| 2735 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2736 | if (!FoundDecls[I]->isInIdentifierNamespace(IDNS)) |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2737 | continue; |
| 2738 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2739 | if (VarDecl *FoundVar = dyn_cast<VarDecl>(FoundDecls[I])) { |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2740 | // We have found a variable that we may need to merge with. Check it. |
| 2741 | if (isExternalLinkage(FoundVar->getLinkage()) && |
| 2742 | isExternalLinkage(D->getLinkage())) { |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2743 | if (Importer.IsStructurallyEquivalent(D->getType(), |
| 2744 | FoundVar->getType())) { |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2745 | MergeWithVar = FoundVar; |
| 2746 | break; |
| 2747 | } |
| 2748 | |
Douglas Gregor | d014542 | 2010-02-12 17:23:39 +0000 | [diff] [blame] | 2749 | const ArrayType *FoundArray |
| 2750 | = Importer.getToContext().getAsArrayType(FoundVar->getType()); |
| 2751 | const ArrayType *TArray |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2752 | = Importer.getToContext().getAsArrayType(D->getType()); |
Douglas Gregor | d014542 | 2010-02-12 17:23:39 +0000 | [diff] [blame] | 2753 | if (FoundArray && TArray) { |
| 2754 | if (isa<IncompleteArrayType>(FoundArray) && |
| 2755 | isa<ConstantArrayType>(TArray)) { |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2756 | // Import the type. |
| 2757 | QualType T = Importer.Import(D->getType()); |
| 2758 | if (T.isNull()) |
| 2759 | return 0; |
| 2760 | |
Douglas Gregor | d014542 | 2010-02-12 17:23:39 +0000 | [diff] [blame] | 2761 | FoundVar->setType(T); |
| 2762 | MergeWithVar = FoundVar; |
| 2763 | break; |
| 2764 | } else if (isa<IncompleteArrayType>(TArray) && |
| 2765 | isa<ConstantArrayType>(FoundArray)) { |
| 2766 | MergeWithVar = FoundVar; |
| 2767 | break; |
Douglas Gregor | 0f962a8 | 2010-02-10 17:16:49 +0000 | [diff] [blame] | 2768 | } |
| 2769 | } |
| 2770 | |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2771 | Importer.ToDiag(Loc, diag::err_odr_variable_type_inconsistent) |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2772 | << Name << D->getType() << FoundVar->getType(); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2773 | Importer.ToDiag(FoundVar->getLocation(), diag::note_odr_value_here) |
| 2774 | << FoundVar->getType(); |
| 2775 | } |
| 2776 | } |
| 2777 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2778 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2779 | } |
| 2780 | |
| 2781 | if (MergeWithVar) { |
| 2782 | // An equivalent variable with external linkage has been found. Link |
| 2783 | // the two declarations, then merge them. |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2784 | Importer.Imported(D, MergeWithVar); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2785 | |
| 2786 | if (VarDecl *DDef = D->getDefinition()) { |
| 2787 | if (VarDecl *ExistingDef = MergeWithVar->getDefinition()) { |
| 2788 | Importer.ToDiag(ExistingDef->getLocation(), |
| 2789 | diag::err_odr_variable_multiple_def) |
| 2790 | << Name; |
| 2791 | Importer.FromDiag(DDef->getLocation(), diag::note_odr_defined_here); |
| 2792 | } else { |
| 2793 | Expr *Init = Importer.Import(DDef->getInit()); |
Douglas Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 2794 | MergeWithVar->setInit(Init); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2795 | } |
| 2796 | } |
| 2797 | |
| 2798 | return MergeWithVar; |
| 2799 | } |
| 2800 | |
| 2801 | if (!ConflictingDecls.empty()) { |
| 2802 | Name = Importer.HandleNameConflict(Name, DC, IDNS, |
| 2803 | ConflictingDecls.data(), |
| 2804 | ConflictingDecls.size()); |
| 2805 | if (!Name) |
| 2806 | return 0; |
| 2807 | } |
| 2808 | } |
Douglas Gregor | 82fc4bf | 2010-02-10 17:47:19 +0000 | [diff] [blame] | 2809 | |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 2810 | // Import the type. |
| 2811 | QualType T = Importer.Import(D->getType()); |
| 2812 | if (T.isNull()) |
| 2813 | return 0; |
| 2814 | |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2815 | // Create the imported variable. |
Douglas Gregor | 82fc4bf | 2010-02-10 17:47:19 +0000 | [diff] [blame] | 2816 | TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2817 | VarDecl *ToVar = VarDecl::Create(Importer.getToContext(), DC, |
| 2818 | Importer.Import(D->getInnerLocStart()), |
| 2819 | Loc, Name.getAsIdentifierInfo(), |
| 2820 | T, TInfo, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 2821 | D->getStorageClass(), |
| 2822 | D->getStorageClassAsWritten()); |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 2823 | ToVar->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
Douglas Gregor | 325bf17 | 2010-02-22 17:42:47 +0000 | [diff] [blame] | 2824 | ToVar->setAccess(D->getAccess()); |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 2825 | ToVar->setLexicalDeclContext(LexicalDC); |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2826 | Importer.Imported(D, ToVar); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 2827 | LexicalDC->addDeclInternal(ToVar); |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 2828 | |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2829 | // Merge the initializer. |
| 2830 | // FIXME: Can we really import any initializer? Alternatively, we could force |
| 2831 | // ourselves to import every declaration of a variable and then only use |
| 2832 | // getInit() here. |
Douglas Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 2833 | ToVar->setInit(Importer.Import(const_cast<Expr *>(D->getAnyInitializer()))); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 2834 | |
| 2835 | // FIXME: Other bits to merge? |
| 2836 | |
| 2837 | return ToVar; |
| 2838 | } |
| 2839 | |
Douglas Gregor | 2cd0093 | 2010-02-17 21:22:52 +0000 | [diff] [blame] | 2840 | Decl *ASTNodeImporter::VisitImplicitParamDecl(ImplicitParamDecl *D) { |
| 2841 | // Parameters are created in the translation unit's context, then moved |
| 2842 | // into the function declaration's context afterward. |
| 2843 | DeclContext *DC = Importer.getToContext().getTranslationUnitDecl(); |
| 2844 | |
| 2845 | // Import the name of this declaration. |
| 2846 | DeclarationName Name = Importer.Import(D->getDeclName()); |
| 2847 | if (D->getDeclName() && !Name) |
| 2848 | return 0; |
| 2849 | |
| 2850 | // Import the location of this declaration. |
| 2851 | SourceLocation Loc = Importer.Import(D->getLocation()); |
| 2852 | |
| 2853 | // Import the parameter's type. |
| 2854 | QualType T = Importer.Import(D->getType()); |
| 2855 | if (T.isNull()) |
| 2856 | return 0; |
| 2857 | |
| 2858 | // Create the imported parameter. |
| 2859 | ImplicitParamDecl *ToParm |
| 2860 | = ImplicitParamDecl::Create(Importer.getToContext(), DC, |
| 2861 | Loc, Name.getAsIdentifierInfo(), |
| 2862 | T); |
| 2863 | return Importer.Imported(D, ToParm); |
| 2864 | } |
| 2865 | |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2866 | Decl *ASTNodeImporter::VisitParmVarDecl(ParmVarDecl *D) { |
| 2867 | // Parameters are created in the translation unit's context, then moved |
| 2868 | // into the function declaration's context afterward. |
| 2869 | DeclContext *DC = Importer.getToContext().getTranslationUnitDecl(); |
| 2870 | |
Douglas Gregor | 82fc4bf | 2010-02-10 17:47:19 +0000 | [diff] [blame] | 2871 | // Import the name of this declaration. |
| 2872 | DeclarationName Name = Importer.Import(D->getDeclName()); |
| 2873 | if (D->getDeclName() && !Name) |
| 2874 | return 0; |
| 2875 | |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2876 | // Import the location of this declaration. |
| 2877 | SourceLocation Loc = Importer.Import(D->getLocation()); |
| 2878 | |
| 2879 | // Import the parameter's type. |
| 2880 | QualType T = Importer.Import(D->getType()); |
| 2881 | if (T.isNull()) |
| 2882 | return 0; |
| 2883 | |
| 2884 | // Create the imported parameter. |
| 2885 | TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| 2886 | ParmVarDecl *ToParm = ParmVarDecl::Create(Importer.getToContext(), DC, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2887 | Importer.Import(D->getInnerLocStart()), |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2888 | Loc, Name.getAsIdentifierInfo(), |
| 2889 | T, TInfo, D->getStorageClass(), |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 2890 | D->getStorageClassAsWritten(), |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2891 | /*FIXME: Default argument*/ 0); |
John McCall | bf73b35 | 2010-03-12 18:31:32 +0000 | [diff] [blame] | 2892 | ToParm->setHasInheritedDefaultArg(D->hasInheritedDefaultArg()); |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 2893 | return Importer.Imported(D, ToParm); |
Douglas Gregor | a404ea6 | 2010-02-10 19:54:31 +0000 | [diff] [blame] | 2894 | } |
| 2895 | |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2896 | Decl *ASTNodeImporter::VisitObjCMethodDecl(ObjCMethodDecl *D) { |
| 2897 | // Import the major distinguishing characteristics of a method. |
| 2898 | DeclContext *DC, *LexicalDC; |
| 2899 | DeclarationName Name; |
| 2900 | SourceLocation Loc; |
| 2901 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 2902 | return 0; |
| 2903 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 2904 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 2905 | DC->localUncachedLookup(Name, FoundDecls); |
| 2906 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 2907 | if (ObjCMethodDecl *FoundMethod = dyn_cast<ObjCMethodDecl>(FoundDecls[I])) { |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2908 | if (FoundMethod->isInstanceMethod() != D->isInstanceMethod()) |
| 2909 | continue; |
| 2910 | |
| 2911 | // Check return types. |
| 2912 | if (!Importer.IsStructurallyEquivalent(D->getResultType(), |
| 2913 | FoundMethod->getResultType())) { |
| 2914 | Importer.ToDiag(Loc, diag::err_odr_objc_method_result_type_inconsistent) |
| 2915 | << D->isInstanceMethod() << Name |
| 2916 | << D->getResultType() << FoundMethod->getResultType(); |
| 2917 | Importer.ToDiag(FoundMethod->getLocation(), |
| 2918 | diag::note_odr_objc_method_here) |
| 2919 | << D->isInstanceMethod() << Name; |
| 2920 | return 0; |
| 2921 | } |
| 2922 | |
| 2923 | // Check the number of parameters. |
| 2924 | if (D->param_size() != FoundMethod->param_size()) { |
| 2925 | Importer.ToDiag(Loc, diag::err_odr_objc_method_num_params_inconsistent) |
| 2926 | << D->isInstanceMethod() << Name |
| 2927 | << D->param_size() << FoundMethod->param_size(); |
| 2928 | Importer.ToDiag(FoundMethod->getLocation(), |
| 2929 | diag::note_odr_objc_method_here) |
| 2930 | << D->isInstanceMethod() << Name; |
| 2931 | return 0; |
| 2932 | } |
| 2933 | |
| 2934 | // Check parameter types. |
| 2935 | for (ObjCMethodDecl::param_iterator P = D->param_begin(), |
| 2936 | PEnd = D->param_end(), FoundP = FoundMethod->param_begin(); |
| 2937 | P != PEnd; ++P, ++FoundP) { |
| 2938 | if (!Importer.IsStructurallyEquivalent((*P)->getType(), |
| 2939 | (*FoundP)->getType())) { |
| 2940 | Importer.FromDiag((*P)->getLocation(), |
| 2941 | diag::err_odr_objc_method_param_type_inconsistent) |
| 2942 | << D->isInstanceMethod() << Name |
| 2943 | << (*P)->getType() << (*FoundP)->getType(); |
| 2944 | Importer.ToDiag((*FoundP)->getLocation(), diag::note_odr_value_here) |
| 2945 | << (*FoundP)->getType(); |
| 2946 | return 0; |
| 2947 | } |
| 2948 | } |
| 2949 | |
| 2950 | // Check variadic/non-variadic. |
| 2951 | // Check the number of parameters. |
| 2952 | if (D->isVariadic() != FoundMethod->isVariadic()) { |
| 2953 | Importer.ToDiag(Loc, diag::err_odr_objc_method_variadic_inconsistent) |
| 2954 | << D->isInstanceMethod() << Name; |
| 2955 | Importer.ToDiag(FoundMethod->getLocation(), |
| 2956 | diag::note_odr_objc_method_here) |
| 2957 | << D->isInstanceMethod() << Name; |
| 2958 | return 0; |
| 2959 | } |
| 2960 | |
| 2961 | // FIXME: Any other bits we need to merge? |
| 2962 | return Importer.Imported(D, FoundMethod); |
| 2963 | } |
| 2964 | } |
| 2965 | |
| 2966 | // Import the result type. |
| 2967 | QualType ResultTy = Importer.Import(D->getResultType()); |
| 2968 | if (ResultTy.isNull()) |
| 2969 | return 0; |
| 2970 | |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 2971 | TypeSourceInfo *ResultTInfo = Importer.Import(D->getResultTypeSourceInfo()); |
| 2972 | |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2973 | ObjCMethodDecl *ToMethod |
| 2974 | = ObjCMethodDecl::Create(Importer.getToContext(), |
| 2975 | Loc, |
| 2976 | Importer.Import(D->getLocEnd()), |
| 2977 | Name.getObjCSelector(), |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 2978 | ResultTy, ResultTInfo, DC, |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2979 | D->isInstanceMethod(), |
| 2980 | D->isVariadic(), |
| 2981 | D->isSynthesized(), |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2982 | D->isImplicit(), |
Fariborz Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 2983 | D->isDefined(), |
Douglas Gregor | 926df6c | 2011-06-11 01:09:30 +0000 | [diff] [blame] | 2984 | D->getImplementationControl(), |
| 2985 | D->hasRelatedResultType()); |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2986 | |
| 2987 | // FIXME: When we decide to merge method definitions, we'll need to |
| 2988 | // deal with implicit parameters. |
| 2989 | |
| 2990 | // Import the parameters |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2991 | SmallVector<ParmVarDecl *, 5> ToParams; |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 2992 | for (ObjCMethodDecl::param_iterator FromP = D->param_begin(), |
| 2993 | FromPEnd = D->param_end(); |
| 2994 | FromP != FromPEnd; |
| 2995 | ++FromP) { |
| 2996 | ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(*FromP)); |
| 2997 | if (!ToP) |
| 2998 | return 0; |
| 2999 | |
| 3000 | ToParams.push_back(ToP); |
| 3001 | } |
| 3002 | |
| 3003 | // Set the parameters. |
| 3004 | for (unsigned I = 0, N = ToParams.size(); I != N; ++I) { |
| 3005 | ToParams[I]->setOwningFunction(ToMethod); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3006 | ToMethod->addDeclInternal(ToParams[I]); |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 3007 | } |
Argyrios Kyrtzidis | 491306a | 2011-10-03 06:37:04 +0000 | [diff] [blame] | 3008 | SmallVector<SourceLocation, 12> SelLocs; |
| 3009 | D->getSelectorLocs(SelLocs); |
| 3010 | ToMethod->setMethodParams(Importer.getToContext(), ToParams, SelLocs); |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 3011 | |
| 3012 | ToMethod->setLexicalDeclContext(LexicalDC); |
| 3013 | Importer.Imported(D, ToMethod); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3014 | LexicalDC->addDeclInternal(ToMethod); |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 3015 | return ToMethod; |
| 3016 | } |
| 3017 | |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3018 | Decl *ASTNodeImporter::VisitObjCCategoryDecl(ObjCCategoryDecl *D) { |
| 3019 | // Import the major distinguishing characteristics of a category. |
| 3020 | DeclContext *DC, *LexicalDC; |
| 3021 | DeclarationName Name; |
| 3022 | SourceLocation Loc; |
| 3023 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 3024 | return 0; |
| 3025 | |
| 3026 | ObjCInterfaceDecl *ToInterface |
| 3027 | = cast_or_null<ObjCInterfaceDecl>(Importer.Import(D->getClassInterface())); |
| 3028 | if (!ToInterface) |
| 3029 | return 0; |
| 3030 | |
| 3031 | // Determine if we've already encountered this category. |
| 3032 | ObjCCategoryDecl *MergeWithCategory |
| 3033 | = ToInterface->FindCategoryDeclaration(Name.getAsIdentifierInfo()); |
| 3034 | ObjCCategoryDecl *ToCategory = MergeWithCategory; |
| 3035 | if (!ToCategory) { |
| 3036 | ToCategory = ObjCCategoryDecl::Create(Importer.getToContext(), DC, |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 3037 | Importer.Import(D->getAtStartLoc()), |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3038 | Loc, |
| 3039 | Importer.Import(D->getCategoryNameLoc()), |
Argyrios Kyrtzidis | 955fadb | 2011-08-30 19:43:26 +0000 | [diff] [blame] | 3040 | Name.getAsIdentifierInfo(), |
| 3041 | ToInterface); |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3042 | ToCategory->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3043 | LexicalDC->addDeclInternal(ToCategory); |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3044 | Importer.Imported(D, ToCategory); |
| 3045 | |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3046 | // Import protocols |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3047 | SmallVector<ObjCProtocolDecl *, 4> Protocols; |
| 3048 | SmallVector<SourceLocation, 4> ProtocolLocs; |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3049 | ObjCCategoryDecl::protocol_loc_iterator FromProtoLoc |
| 3050 | = D->protocol_loc_begin(); |
| 3051 | for (ObjCCategoryDecl::protocol_iterator FromProto = D->protocol_begin(), |
| 3052 | FromProtoEnd = D->protocol_end(); |
| 3053 | FromProto != FromProtoEnd; |
| 3054 | ++FromProto, ++FromProtoLoc) { |
| 3055 | ObjCProtocolDecl *ToProto |
| 3056 | = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto)); |
| 3057 | if (!ToProto) |
| 3058 | return 0; |
| 3059 | Protocols.push_back(ToProto); |
| 3060 | ProtocolLocs.push_back(Importer.Import(*FromProtoLoc)); |
| 3061 | } |
| 3062 | |
| 3063 | // FIXME: If we're merging, make sure that the protocol list is the same. |
| 3064 | ToCategory->setProtocolList(Protocols.data(), Protocols.size(), |
| 3065 | ProtocolLocs.data(), Importer.getToContext()); |
| 3066 | |
| 3067 | } else { |
| 3068 | Importer.Imported(D, ToCategory); |
| 3069 | } |
| 3070 | |
| 3071 | // Import all of the members of this category. |
Douglas Gregor | 083a821 | 2010-02-21 18:24:45 +0000 | [diff] [blame] | 3072 | ImportDeclContext(D); |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3073 | |
| 3074 | // If we have an implementation, import it as well. |
| 3075 | if (D->getImplementation()) { |
| 3076 | ObjCCategoryImplDecl *Impl |
Douglas Gregor | cad2c59 | 2010-12-08 16:41:55 +0000 | [diff] [blame] | 3077 | = cast_or_null<ObjCCategoryImplDecl>( |
| 3078 | Importer.Import(D->getImplementation())); |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3079 | if (!Impl) |
| 3080 | return 0; |
| 3081 | |
| 3082 | ToCategory->setImplementation(Impl); |
| 3083 | } |
| 3084 | |
| 3085 | return ToCategory; |
| 3086 | } |
| 3087 | |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3088 | Decl *ASTNodeImporter::VisitObjCProtocolDecl(ObjCProtocolDecl *D) { |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3089 | // Import the major distinguishing characteristics of a protocol. |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3090 | DeclContext *DC, *LexicalDC; |
| 3091 | DeclarationName Name; |
| 3092 | SourceLocation Loc; |
| 3093 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 3094 | return 0; |
| 3095 | |
| 3096 | ObjCProtocolDecl *MergeWithProtocol = 0; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3097 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 3098 | DC->localUncachedLookup(Name, FoundDecls); |
| 3099 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 3100 | if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_ObjCProtocol)) |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3101 | continue; |
| 3102 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3103 | if ((MergeWithProtocol = dyn_cast<ObjCProtocolDecl>(FoundDecls[I]))) |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3104 | break; |
| 3105 | } |
| 3106 | |
| 3107 | ObjCProtocolDecl *ToProto = MergeWithProtocol; |
| 3108 | if (!ToProto || ToProto->isForwardDecl()) { |
| 3109 | if (!ToProto) { |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 3110 | ToProto = ObjCProtocolDecl::Create(Importer.getToContext(), DC, |
| 3111 | Name.getAsIdentifierInfo(), Loc, |
Argyrios Kyrtzidis | b05d7b2 | 2011-10-17 19:48:06 +0000 | [diff] [blame] | 3112 | Importer.Import(D->getAtStartLoc()), |
| 3113 | D->isInitiallyForwardDecl()); |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3114 | ToProto->setForwardDecl(D->isForwardDecl()); |
| 3115 | ToProto->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3116 | LexicalDC->addDeclInternal(ToProto); |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3117 | } |
| 3118 | Importer.Imported(D, ToProto); |
| 3119 | |
| 3120 | // Import protocols |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3121 | SmallVector<ObjCProtocolDecl *, 4> Protocols; |
| 3122 | SmallVector<SourceLocation, 4> ProtocolLocs; |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3123 | ObjCProtocolDecl::protocol_loc_iterator |
| 3124 | FromProtoLoc = D->protocol_loc_begin(); |
| 3125 | for (ObjCProtocolDecl::protocol_iterator FromProto = D->protocol_begin(), |
| 3126 | FromProtoEnd = D->protocol_end(); |
| 3127 | FromProto != FromProtoEnd; |
| 3128 | ++FromProto, ++FromProtoLoc) { |
| 3129 | ObjCProtocolDecl *ToProto |
| 3130 | = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto)); |
| 3131 | if (!ToProto) |
| 3132 | return 0; |
| 3133 | Protocols.push_back(ToProto); |
| 3134 | ProtocolLocs.push_back(Importer.Import(*FromProtoLoc)); |
| 3135 | } |
| 3136 | |
| 3137 | // FIXME: If we're merging, make sure that the protocol list is the same. |
| 3138 | ToProto->setProtocolList(Protocols.data(), Protocols.size(), |
| 3139 | ProtocolLocs.data(), Importer.getToContext()); |
| 3140 | } else { |
| 3141 | Importer.Imported(D, ToProto); |
| 3142 | } |
| 3143 | |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3144 | // Import all of the members of this protocol. |
Douglas Gregor | 083a821 | 2010-02-21 18:24:45 +0000 | [diff] [blame] | 3145 | ImportDeclContext(D); |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3146 | |
| 3147 | return ToProto; |
| 3148 | } |
| 3149 | |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3150 | Decl *ASTNodeImporter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) { |
| 3151 | // Import the major distinguishing characteristics of an @interface. |
| 3152 | DeclContext *DC, *LexicalDC; |
| 3153 | DeclarationName Name; |
| 3154 | SourceLocation Loc; |
| 3155 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 3156 | return 0; |
| 3157 | |
| 3158 | ObjCInterfaceDecl *MergeWithIface = 0; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3159 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 3160 | DC->localUncachedLookup(Name, FoundDecls); |
| 3161 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 3162 | if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary)) |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3163 | continue; |
| 3164 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3165 | if ((MergeWithIface = dyn_cast<ObjCInterfaceDecl>(FoundDecls[I]))) |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3166 | break; |
| 3167 | } |
| 3168 | |
| 3169 | ObjCInterfaceDecl *ToIface = MergeWithIface; |
| 3170 | if (!ToIface || ToIface->isForwardDecl()) { |
| 3171 | if (!ToIface) { |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 3172 | ToIface = ObjCInterfaceDecl::Create(Importer.getToContext(), DC, |
| 3173 | Importer.Import(D->getAtStartLoc()), |
| 3174 | Name.getAsIdentifierInfo(), Loc, |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3175 | D->isForwardDecl(), |
| 3176 | D->isImplicitInterfaceDecl()); |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3177 | ToIface->setForwardDecl(D->isForwardDecl()); |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3178 | ToIface->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3179 | LexicalDC->addDeclInternal(ToIface); |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3180 | } |
| 3181 | Importer.Imported(D, ToIface); |
| 3182 | |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3183 | if (D->getSuperClass()) { |
| 3184 | ObjCInterfaceDecl *Super |
| 3185 | = cast_or_null<ObjCInterfaceDecl>(Importer.Import(D->getSuperClass())); |
| 3186 | if (!Super) |
| 3187 | return 0; |
| 3188 | |
| 3189 | ToIface->setSuperClass(Super); |
| 3190 | ToIface->setSuperClassLoc(Importer.Import(D->getSuperClassLoc())); |
| 3191 | } |
| 3192 | |
| 3193 | // Import protocols |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3194 | SmallVector<ObjCProtocolDecl *, 4> Protocols; |
| 3195 | SmallVector<SourceLocation, 4> ProtocolLocs; |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3196 | ObjCInterfaceDecl::protocol_loc_iterator |
| 3197 | FromProtoLoc = D->protocol_loc_begin(); |
Ted Kremenek | 53b9441 | 2010-09-01 01:21:15 +0000 | [diff] [blame] | 3198 | |
| 3199 | // FIXME: Should we be usng all_referenced_protocol_begin() here? |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3200 | for (ObjCInterfaceDecl::protocol_iterator FromProto = D->protocol_begin(), |
| 3201 | FromProtoEnd = D->protocol_end(); |
| 3202 | FromProto != FromProtoEnd; |
| 3203 | ++FromProto, ++FromProtoLoc) { |
| 3204 | ObjCProtocolDecl *ToProto |
| 3205 | = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto)); |
| 3206 | if (!ToProto) |
| 3207 | return 0; |
| 3208 | Protocols.push_back(ToProto); |
| 3209 | ProtocolLocs.push_back(Importer.Import(*FromProtoLoc)); |
| 3210 | } |
| 3211 | |
| 3212 | // FIXME: If we're merging, make sure that the protocol list is the same. |
| 3213 | ToIface->setProtocolList(Protocols.data(), Protocols.size(), |
| 3214 | ProtocolLocs.data(), Importer.getToContext()); |
| 3215 | |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3216 | // Import @end range |
| 3217 | ToIface->setAtEndRange(Importer.Import(D->getAtEndRange())); |
| 3218 | } else { |
| 3219 | Importer.Imported(D, ToIface); |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 3220 | |
| 3221 | // Check for consistency of superclasses. |
| 3222 | DeclarationName FromSuperName, ToSuperName; |
Sean Callanan | b1ce730 | 2011-11-11 17:39:52 +0000 | [diff] [blame^] | 3223 | |
| 3224 | // If the superclass hasn't been imported yet, do so before checking. |
| 3225 | ObjCInterfaceDecl *DSuperClass = D->getSuperClass(); |
| 3226 | ObjCInterfaceDecl *ToIfaceSuperClass = ToIface->getSuperClass(); |
| 3227 | |
| 3228 | if (DSuperClass && !ToIfaceSuperClass) { |
| 3229 | Decl *ImportedSuperClass = Importer.Import(DSuperClass); |
| 3230 | ObjCInterfaceDecl *ImportedSuperIface = cast<ObjCInterfaceDecl>(ImportedSuperClass); |
| 3231 | ToIface->setSuperClass(ImportedSuperIface); |
| 3232 | } |
| 3233 | |
Douglas Gregor | 2e55e3a | 2010-02-17 00:34:30 +0000 | [diff] [blame] | 3234 | if (D->getSuperClass()) |
| 3235 | FromSuperName = Importer.Import(D->getSuperClass()->getDeclName()); |
| 3236 | if (ToIface->getSuperClass()) |
| 3237 | ToSuperName = ToIface->getSuperClass()->getDeclName(); |
| 3238 | if (FromSuperName != ToSuperName) { |
| 3239 | Importer.ToDiag(ToIface->getLocation(), |
| 3240 | diag::err_odr_objc_superclass_inconsistent) |
| 3241 | << ToIface->getDeclName(); |
| 3242 | if (ToIface->getSuperClass()) |
| 3243 | Importer.ToDiag(ToIface->getSuperClassLoc(), |
| 3244 | diag::note_odr_objc_superclass) |
| 3245 | << ToIface->getSuperClass()->getDeclName(); |
| 3246 | else |
| 3247 | Importer.ToDiag(ToIface->getLocation(), |
| 3248 | diag::note_odr_objc_missing_superclass); |
| 3249 | if (D->getSuperClass()) |
| 3250 | Importer.FromDiag(D->getSuperClassLoc(), |
| 3251 | diag::note_odr_objc_superclass) |
| 3252 | << D->getSuperClass()->getDeclName(); |
| 3253 | else |
| 3254 | Importer.FromDiag(D->getLocation(), |
| 3255 | diag::note_odr_objc_missing_superclass); |
| 3256 | return 0; |
| 3257 | } |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3258 | } |
| 3259 | |
Douglas Gregor | b4677b6 | 2010-02-18 01:47:50 +0000 | [diff] [blame] | 3260 | // Import categories. When the categories themselves are imported, they'll |
| 3261 | // hook themselves into this interface. |
| 3262 | for (ObjCCategoryDecl *FromCat = D->getCategoryList(); FromCat; |
| 3263 | FromCat = FromCat->getNextClassCategory()) |
| 3264 | Importer.Import(FromCat); |
| 3265 | |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3266 | // Import all of the members of this class. |
Douglas Gregor | 083a821 | 2010-02-21 18:24:45 +0000 | [diff] [blame] | 3267 | ImportDeclContext(D); |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3268 | |
| 3269 | // If we have an @implementation, import it as well. |
| 3270 | if (D->getImplementation()) { |
Douglas Gregor | dd182ff | 2010-12-07 01:26:03 +0000 | [diff] [blame] | 3271 | ObjCImplementationDecl *Impl = cast_or_null<ObjCImplementationDecl>( |
| 3272 | Importer.Import(D->getImplementation())); |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3273 | if (!Impl) |
| 3274 | return 0; |
| 3275 | |
| 3276 | ToIface->setImplementation(Impl); |
| 3277 | } |
| 3278 | |
Douglas Gregor | 2e2a400 | 2010-02-17 16:12:00 +0000 | [diff] [blame] | 3279 | return ToIface; |
Douglas Gregor | a12d294 | 2010-02-16 01:20:57 +0000 | [diff] [blame] | 3280 | } |
| 3281 | |
Douglas Gregor | 3daef29 | 2010-12-07 15:32:12 +0000 | [diff] [blame] | 3282 | Decl *ASTNodeImporter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { |
| 3283 | ObjCCategoryDecl *Category = cast_or_null<ObjCCategoryDecl>( |
| 3284 | Importer.Import(D->getCategoryDecl())); |
| 3285 | if (!Category) |
| 3286 | return 0; |
| 3287 | |
| 3288 | ObjCCategoryImplDecl *ToImpl = Category->getImplementation(); |
| 3289 | if (!ToImpl) { |
| 3290 | DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| 3291 | if (!DC) |
| 3292 | return 0; |
| 3293 | |
| 3294 | ToImpl = ObjCCategoryImplDecl::Create(Importer.getToContext(), DC, |
Douglas Gregor | 3daef29 | 2010-12-07 15:32:12 +0000 | [diff] [blame] | 3295 | Importer.Import(D->getIdentifier()), |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 3296 | Category->getClassInterface(), |
| 3297 | Importer.Import(D->getLocation()), |
| 3298 | Importer.Import(D->getAtStartLoc())); |
Douglas Gregor | 3daef29 | 2010-12-07 15:32:12 +0000 | [diff] [blame] | 3299 | |
| 3300 | DeclContext *LexicalDC = DC; |
| 3301 | if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| 3302 | LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| 3303 | if (!LexicalDC) |
| 3304 | return 0; |
| 3305 | |
| 3306 | ToImpl->setLexicalDeclContext(LexicalDC); |
| 3307 | } |
| 3308 | |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3309 | LexicalDC->addDeclInternal(ToImpl); |
Douglas Gregor | 3daef29 | 2010-12-07 15:32:12 +0000 | [diff] [blame] | 3310 | Category->setImplementation(ToImpl); |
| 3311 | } |
| 3312 | |
| 3313 | Importer.Imported(D, ToImpl); |
Douglas Gregor | cad2c59 | 2010-12-08 16:41:55 +0000 | [diff] [blame] | 3314 | ImportDeclContext(D); |
Douglas Gregor | 3daef29 | 2010-12-07 15:32:12 +0000 | [diff] [blame] | 3315 | return ToImpl; |
| 3316 | } |
| 3317 | |
Douglas Gregor | dd182ff | 2010-12-07 01:26:03 +0000 | [diff] [blame] | 3318 | Decl *ASTNodeImporter::VisitObjCImplementationDecl(ObjCImplementationDecl *D) { |
| 3319 | // Find the corresponding interface. |
| 3320 | ObjCInterfaceDecl *Iface = cast_or_null<ObjCInterfaceDecl>( |
| 3321 | Importer.Import(D->getClassInterface())); |
| 3322 | if (!Iface) |
| 3323 | return 0; |
| 3324 | |
| 3325 | // Import the superclass, if any. |
| 3326 | ObjCInterfaceDecl *Super = 0; |
| 3327 | if (D->getSuperClass()) { |
| 3328 | Super = cast_or_null<ObjCInterfaceDecl>( |
| 3329 | Importer.Import(D->getSuperClass())); |
| 3330 | if (!Super) |
| 3331 | return 0; |
| 3332 | } |
| 3333 | |
| 3334 | ObjCImplementationDecl *Impl = Iface->getImplementation(); |
| 3335 | if (!Impl) { |
| 3336 | // We haven't imported an implementation yet. Create a new @implementation |
| 3337 | // now. |
| 3338 | Impl = ObjCImplementationDecl::Create(Importer.getToContext(), |
| 3339 | Importer.ImportContext(D->getDeclContext()), |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 3340 | Iface, Super, |
Douglas Gregor | dd182ff | 2010-12-07 01:26:03 +0000 | [diff] [blame] | 3341 | Importer.Import(D->getLocation()), |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 3342 | Importer.Import(D->getAtStartLoc())); |
Douglas Gregor | dd182ff | 2010-12-07 01:26:03 +0000 | [diff] [blame] | 3343 | |
| 3344 | if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| 3345 | DeclContext *LexicalDC |
| 3346 | = Importer.ImportContext(D->getLexicalDeclContext()); |
| 3347 | if (!LexicalDC) |
| 3348 | return 0; |
| 3349 | Impl->setLexicalDeclContext(LexicalDC); |
| 3350 | } |
| 3351 | |
| 3352 | // Associate the implementation with the class it implements. |
| 3353 | Iface->setImplementation(Impl); |
| 3354 | Importer.Imported(D, Iface->getImplementation()); |
| 3355 | } else { |
| 3356 | Importer.Imported(D, Iface->getImplementation()); |
| 3357 | |
| 3358 | // Verify that the existing @implementation has the same superclass. |
| 3359 | if ((Super && !Impl->getSuperClass()) || |
| 3360 | (!Super && Impl->getSuperClass()) || |
| 3361 | (Super && Impl->getSuperClass() && |
| 3362 | Super->getCanonicalDecl() != Impl->getSuperClass())) { |
| 3363 | Importer.ToDiag(Impl->getLocation(), |
| 3364 | diag::err_odr_objc_superclass_inconsistent) |
| 3365 | << Iface->getDeclName(); |
| 3366 | // FIXME: It would be nice to have the location of the superclass |
| 3367 | // below. |
| 3368 | if (Impl->getSuperClass()) |
| 3369 | Importer.ToDiag(Impl->getLocation(), |
| 3370 | diag::note_odr_objc_superclass) |
| 3371 | << Impl->getSuperClass()->getDeclName(); |
| 3372 | else |
| 3373 | Importer.ToDiag(Impl->getLocation(), |
| 3374 | diag::note_odr_objc_missing_superclass); |
| 3375 | if (D->getSuperClass()) |
| 3376 | Importer.FromDiag(D->getLocation(), |
| 3377 | diag::note_odr_objc_superclass) |
| 3378 | << D->getSuperClass()->getDeclName(); |
| 3379 | else |
| 3380 | Importer.FromDiag(D->getLocation(), |
| 3381 | diag::note_odr_objc_missing_superclass); |
| 3382 | return 0; |
| 3383 | } |
| 3384 | } |
| 3385 | |
| 3386 | // Import all of the members of this @implementation. |
| 3387 | ImportDeclContext(D); |
| 3388 | |
| 3389 | return Impl; |
| 3390 | } |
| 3391 | |
Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 3392 | Decl *ASTNodeImporter::VisitObjCPropertyDecl(ObjCPropertyDecl *D) { |
| 3393 | // Import the major distinguishing characteristics of an @property. |
| 3394 | DeclContext *DC, *LexicalDC; |
| 3395 | DeclarationName Name; |
| 3396 | SourceLocation Loc; |
| 3397 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 3398 | return 0; |
| 3399 | |
| 3400 | // Check whether we have already imported this property. |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3401 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 3402 | DC->localUncachedLookup(Name, FoundDecls); |
| 3403 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 3404 | if (ObjCPropertyDecl *FoundProp |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3405 | = dyn_cast<ObjCPropertyDecl>(FoundDecls[I])) { |
Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 3406 | // Check property types. |
| 3407 | if (!Importer.IsStructurallyEquivalent(D->getType(), |
| 3408 | FoundProp->getType())) { |
| 3409 | Importer.ToDiag(Loc, diag::err_odr_objc_property_type_inconsistent) |
| 3410 | << Name << D->getType() << FoundProp->getType(); |
| 3411 | Importer.ToDiag(FoundProp->getLocation(), diag::note_odr_value_here) |
| 3412 | << FoundProp->getType(); |
| 3413 | return 0; |
| 3414 | } |
| 3415 | |
| 3416 | // FIXME: Check property attributes, getters, setters, etc.? |
| 3417 | |
| 3418 | // Consider these properties to be equivalent. |
| 3419 | Importer.Imported(D, FoundProp); |
| 3420 | return FoundProp; |
| 3421 | } |
| 3422 | } |
| 3423 | |
| 3424 | // Import the type. |
John McCall | 83a230c | 2010-06-04 20:50:08 +0000 | [diff] [blame] | 3425 | TypeSourceInfo *T = Importer.Import(D->getTypeSourceInfo()); |
| 3426 | if (!T) |
Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 3427 | return 0; |
| 3428 | |
| 3429 | // Create the new property. |
| 3430 | ObjCPropertyDecl *ToProperty |
| 3431 | = ObjCPropertyDecl::Create(Importer.getToContext(), DC, Loc, |
| 3432 | Name.getAsIdentifierInfo(), |
| 3433 | Importer.Import(D->getAtLoc()), |
| 3434 | T, |
| 3435 | D->getPropertyImplementation()); |
| 3436 | Importer.Imported(D, ToProperty); |
| 3437 | ToProperty->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3438 | LexicalDC->addDeclInternal(ToProperty); |
Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 3439 | |
| 3440 | ToProperty->setPropertyAttributes(D->getPropertyAttributes()); |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 3441 | ToProperty->setPropertyAttributesAsWritten( |
| 3442 | D->getPropertyAttributesAsWritten()); |
Douglas Gregor | e326162 | 2010-02-17 18:02:10 +0000 | [diff] [blame] | 3443 | ToProperty->setGetterName(Importer.Import(D->getGetterName())); |
| 3444 | ToProperty->setSetterName(Importer.Import(D->getSetterName())); |
| 3445 | ToProperty->setGetterMethodDecl( |
| 3446 | cast_or_null<ObjCMethodDecl>(Importer.Import(D->getGetterMethodDecl()))); |
| 3447 | ToProperty->setSetterMethodDecl( |
| 3448 | cast_or_null<ObjCMethodDecl>(Importer.Import(D->getSetterMethodDecl()))); |
| 3449 | ToProperty->setPropertyIvarDecl( |
| 3450 | cast_or_null<ObjCIvarDecl>(Importer.Import(D->getPropertyIvarDecl()))); |
| 3451 | return ToProperty; |
| 3452 | } |
| 3453 | |
Douglas Gregor | 954e0c7 | 2010-12-07 18:32:03 +0000 | [diff] [blame] | 3454 | Decl *ASTNodeImporter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { |
| 3455 | ObjCPropertyDecl *Property = cast_or_null<ObjCPropertyDecl>( |
| 3456 | Importer.Import(D->getPropertyDecl())); |
| 3457 | if (!Property) |
| 3458 | return 0; |
| 3459 | |
| 3460 | DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| 3461 | if (!DC) |
| 3462 | return 0; |
| 3463 | |
| 3464 | // Import the lexical declaration context. |
| 3465 | DeclContext *LexicalDC = DC; |
| 3466 | if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| 3467 | LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| 3468 | if (!LexicalDC) |
| 3469 | return 0; |
| 3470 | } |
| 3471 | |
| 3472 | ObjCImplDecl *InImpl = dyn_cast<ObjCImplDecl>(LexicalDC); |
| 3473 | if (!InImpl) |
| 3474 | return 0; |
| 3475 | |
| 3476 | // Import the ivar (for an @synthesize). |
| 3477 | ObjCIvarDecl *Ivar = 0; |
| 3478 | if (D->getPropertyIvarDecl()) { |
| 3479 | Ivar = cast_or_null<ObjCIvarDecl>( |
| 3480 | Importer.Import(D->getPropertyIvarDecl())); |
| 3481 | if (!Ivar) |
| 3482 | return 0; |
| 3483 | } |
| 3484 | |
| 3485 | ObjCPropertyImplDecl *ToImpl |
| 3486 | = InImpl->FindPropertyImplDecl(Property->getIdentifier()); |
| 3487 | if (!ToImpl) { |
| 3488 | ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC, |
| 3489 | Importer.Import(D->getLocStart()), |
| 3490 | Importer.Import(D->getLocation()), |
| 3491 | Property, |
| 3492 | D->getPropertyImplementation(), |
| 3493 | Ivar, |
| 3494 | Importer.Import(D->getPropertyIvarDeclLoc())); |
| 3495 | ToImpl->setLexicalDeclContext(LexicalDC); |
| 3496 | Importer.Imported(D, ToImpl); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3497 | LexicalDC->addDeclInternal(ToImpl); |
Douglas Gregor | 954e0c7 | 2010-12-07 18:32:03 +0000 | [diff] [blame] | 3498 | } else { |
| 3499 | // Check that we have the same kind of property implementation (@synthesize |
| 3500 | // vs. @dynamic). |
| 3501 | if (D->getPropertyImplementation() != ToImpl->getPropertyImplementation()) { |
| 3502 | Importer.ToDiag(ToImpl->getLocation(), |
| 3503 | diag::err_odr_objc_property_impl_kind_inconsistent) |
| 3504 | << Property->getDeclName() |
| 3505 | << (ToImpl->getPropertyImplementation() |
| 3506 | == ObjCPropertyImplDecl::Dynamic); |
| 3507 | Importer.FromDiag(D->getLocation(), |
| 3508 | diag::note_odr_objc_property_impl_kind) |
| 3509 | << D->getPropertyDecl()->getDeclName() |
| 3510 | << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic); |
| 3511 | return 0; |
| 3512 | } |
| 3513 | |
| 3514 | // For @synthesize, check that we have the same |
| 3515 | if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize && |
| 3516 | Ivar != ToImpl->getPropertyIvarDecl()) { |
| 3517 | Importer.ToDiag(ToImpl->getPropertyIvarDeclLoc(), |
| 3518 | diag::err_odr_objc_synthesize_ivar_inconsistent) |
| 3519 | << Property->getDeclName() |
| 3520 | << ToImpl->getPropertyIvarDecl()->getDeclName() |
| 3521 | << Ivar->getDeclName(); |
| 3522 | Importer.FromDiag(D->getPropertyIvarDeclLoc(), |
| 3523 | diag::note_odr_objc_synthesize_ivar_here) |
| 3524 | << D->getPropertyIvarDecl()->getDeclName(); |
| 3525 | return 0; |
| 3526 | } |
| 3527 | |
| 3528 | // Merge the existing implementation with the new implementation. |
| 3529 | Importer.Imported(D, ToImpl); |
| 3530 | } |
| 3531 | |
| 3532 | return ToImpl; |
| 3533 | } |
| 3534 | |
Douglas Gregor | 2b78502 | 2010-02-18 02:12:22 +0000 | [diff] [blame] | 3535 | Decl * |
| 3536 | ASTNodeImporter::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D) { |
| 3537 | // Import the context of this declaration. |
| 3538 | DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| 3539 | if (!DC) |
| 3540 | return 0; |
| 3541 | |
| 3542 | DeclContext *LexicalDC = DC; |
| 3543 | if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| 3544 | LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| 3545 | if (!LexicalDC) |
| 3546 | return 0; |
| 3547 | } |
| 3548 | |
| 3549 | // Import the location of this declaration. |
| 3550 | SourceLocation Loc = Importer.Import(D->getLocation()); |
| 3551 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3552 | SmallVector<ObjCProtocolDecl *, 4> Protocols; |
| 3553 | SmallVector<SourceLocation, 4> Locations; |
Douglas Gregor | 2b78502 | 2010-02-18 02:12:22 +0000 | [diff] [blame] | 3554 | ObjCForwardProtocolDecl::protocol_loc_iterator FromProtoLoc |
| 3555 | = D->protocol_loc_begin(); |
| 3556 | for (ObjCForwardProtocolDecl::protocol_iterator FromProto |
| 3557 | = D->protocol_begin(), FromProtoEnd = D->protocol_end(); |
| 3558 | FromProto != FromProtoEnd; |
| 3559 | ++FromProto, ++FromProtoLoc) { |
| 3560 | ObjCProtocolDecl *ToProto |
| 3561 | = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto)); |
| 3562 | if (!ToProto) |
| 3563 | continue; |
| 3564 | |
| 3565 | Protocols.push_back(ToProto); |
| 3566 | Locations.push_back(Importer.Import(*FromProtoLoc)); |
| 3567 | } |
| 3568 | |
| 3569 | ObjCForwardProtocolDecl *ToForward |
| 3570 | = ObjCForwardProtocolDecl::Create(Importer.getToContext(), DC, Loc, |
| 3571 | Protocols.data(), Protocols.size(), |
| 3572 | Locations.data()); |
| 3573 | ToForward->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3574 | LexicalDC->addDeclInternal(ToForward); |
Douglas Gregor | 2b78502 | 2010-02-18 02:12:22 +0000 | [diff] [blame] | 3575 | Importer.Imported(D, ToForward); |
| 3576 | return ToForward; |
| 3577 | } |
| 3578 | |
Douglas Gregor | a2bc15b | 2010-02-18 02:04:09 +0000 | [diff] [blame] | 3579 | Decl *ASTNodeImporter::VisitObjCClassDecl(ObjCClassDecl *D) { |
| 3580 | // Import the context of this declaration. |
| 3581 | DeclContext *DC = Importer.ImportContext(D->getDeclContext()); |
| 3582 | if (!DC) |
| 3583 | return 0; |
| 3584 | |
| 3585 | DeclContext *LexicalDC = DC; |
| 3586 | if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| 3587 | LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| 3588 | if (!LexicalDC) |
| 3589 | return 0; |
| 3590 | } |
| 3591 | |
| 3592 | // Import the location of this declaration. |
| 3593 | SourceLocation Loc = Importer.Import(D->getLocation()); |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 3594 | ObjCClassDecl::ObjCClassRef *From = D->getForwardDecl(); |
| 3595 | ObjCInterfaceDecl *ToIface |
| 3596 | = cast_or_null<ObjCInterfaceDecl>(Importer.Import(From->getInterface())); |
Douglas Gregor | a2bc15b | 2010-02-18 02:04:09 +0000 | [diff] [blame] | 3597 | ObjCClassDecl *ToClass = ObjCClassDecl::Create(Importer.getToContext(), DC, |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 3598 | Loc, |
| 3599 | ToIface, |
| 3600 | Importer.Import(From->getLocation())); |
| 3601 | |
Douglas Gregor | a2bc15b | 2010-02-18 02:04:09 +0000 | [diff] [blame] | 3602 | ToClass->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3603 | LexicalDC->addDeclInternal(ToClass); |
Douglas Gregor | a2bc15b | 2010-02-18 02:04:09 +0000 | [diff] [blame] | 3604 | Importer.Imported(D, ToClass); |
| 3605 | return ToClass; |
| 3606 | } |
| 3607 | |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3608 | Decl *ASTNodeImporter::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) { |
| 3609 | // For template arguments, we adopt the translation unit as our declaration |
| 3610 | // context. This context will be fixed when the actual template declaration |
| 3611 | // is created. |
| 3612 | |
| 3613 | // FIXME: Import default argument. |
| 3614 | return TemplateTypeParmDecl::Create(Importer.getToContext(), |
| 3615 | Importer.getToContext().getTranslationUnitDecl(), |
Abramo Bagnara | 344577e | 2011-03-06 15:48:19 +0000 | [diff] [blame] | 3616 | Importer.Import(D->getLocStart()), |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3617 | Importer.Import(D->getLocation()), |
| 3618 | D->getDepth(), |
| 3619 | D->getIndex(), |
| 3620 | Importer.Import(D->getIdentifier()), |
| 3621 | D->wasDeclaredWithTypename(), |
| 3622 | D->isParameterPack()); |
| 3623 | } |
| 3624 | |
| 3625 | Decl * |
| 3626 | ASTNodeImporter::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) { |
| 3627 | // Import the name of this declaration. |
| 3628 | DeclarationName Name = Importer.Import(D->getDeclName()); |
| 3629 | if (D->getDeclName() && !Name) |
| 3630 | return 0; |
| 3631 | |
| 3632 | // Import the location of this declaration. |
| 3633 | SourceLocation Loc = Importer.Import(D->getLocation()); |
| 3634 | |
| 3635 | // Import the type of this declaration. |
| 3636 | QualType T = Importer.Import(D->getType()); |
| 3637 | if (T.isNull()) |
| 3638 | return 0; |
| 3639 | |
| 3640 | // Import type-source information. |
| 3641 | TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo()); |
| 3642 | if (D->getTypeSourceInfo() && !TInfo) |
| 3643 | return 0; |
| 3644 | |
| 3645 | // FIXME: Import default argument. |
| 3646 | |
| 3647 | return NonTypeTemplateParmDecl::Create(Importer.getToContext(), |
| 3648 | Importer.getToContext().getTranslationUnitDecl(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 3649 | Importer.Import(D->getInnerLocStart()), |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3650 | Loc, D->getDepth(), D->getPosition(), |
| 3651 | Name.getAsIdentifierInfo(), |
Douglas Gregor | 10738d3 | 2010-12-23 23:51:58 +0000 | [diff] [blame] | 3652 | T, D->isParameterPack(), TInfo); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3653 | } |
| 3654 | |
| 3655 | Decl * |
| 3656 | ASTNodeImporter::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) { |
| 3657 | // Import the name of this declaration. |
| 3658 | DeclarationName Name = Importer.Import(D->getDeclName()); |
| 3659 | if (D->getDeclName() && !Name) |
| 3660 | return 0; |
| 3661 | |
| 3662 | // Import the location of this declaration. |
| 3663 | SourceLocation Loc = Importer.Import(D->getLocation()); |
| 3664 | |
| 3665 | // Import template parameters. |
| 3666 | TemplateParameterList *TemplateParams |
| 3667 | = ImportTemplateParameterList(D->getTemplateParameters()); |
| 3668 | if (!TemplateParams) |
| 3669 | return 0; |
| 3670 | |
| 3671 | // FIXME: Import default argument. |
| 3672 | |
| 3673 | return TemplateTemplateParmDecl::Create(Importer.getToContext(), |
| 3674 | Importer.getToContext().getTranslationUnitDecl(), |
| 3675 | Loc, D->getDepth(), D->getPosition(), |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 3676 | D->isParameterPack(), |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3677 | Name.getAsIdentifierInfo(), |
| 3678 | TemplateParams); |
| 3679 | } |
| 3680 | |
| 3681 | Decl *ASTNodeImporter::VisitClassTemplateDecl(ClassTemplateDecl *D) { |
| 3682 | // If this record has a definition in the translation unit we're coming from, |
| 3683 | // but this particular declaration is not that definition, import the |
| 3684 | // definition and map to that. |
| 3685 | CXXRecordDecl *Definition |
| 3686 | = cast_or_null<CXXRecordDecl>(D->getTemplatedDecl()->getDefinition()); |
| 3687 | if (Definition && Definition != D->getTemplatedDecl()) { |
| 3688 | Decl *ImportedDef |
| 3689 | = Importer.Import(Definition->getDescribedClassTemplate()); |
| 3690 | if (!ImportedDef) |
| 3691 | return 0; |
| 3692 | |
| 3693 | return Importer.Imported(D, ImportedDef); |
| 3694 | } |
| 3695 | |
| 3696 | // Import the major distinguishing characteristics of this class template. |
| 3697 | DeclContext *DC, *LexicalDC; |
| 3698 | DeclarationName Name; |
| 3699 | SourceLocation Loc; |
| 3700 | if (ImportDeclParts(D, DC, LexicalDC, Name, Loc)) |
| 3701 | return 0; |
| 3702 | |
| 3703 | // We may already have a template of the same name; try to find and match it. |
| 3704 | if (!DC->isFunctionOrMethod()) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3705 | SmallVector<NamedDecl *, 4> ConflictingDecls; |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3706 | llvm::SmallVector<NamedDecl *, 2> FoundDecls; |
| 3707 | DC->localUncachedLookup(Name, FoundDecls); |
| 3708 | for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) { |
| 3709 | if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary)) |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3710 | continue; |
| 3711 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3712 | Decl *Found = FoundDecls[I]; |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3713 | if (ClassTemplateDecl *FoundTemplate |
| 3714 | = dyn_cast<ClassTemplateDecl>(Found)) { |
| 3715 | if (IsStructuralMatch(D, FoundTemplate)) { |
| 3716 | // The class templates structurally match; call it the same template. |
| 3717 | // FIXME: We may be filling in a forward declaration here. Handle |
| 3718 | // this case! |
| 3719 | Importer.Imported(D->getTemplatedDecl(), |
| 3720 | FoundTemplate->getTemplatedDecl()); |
| 3721 | return Importer.Imported(D, FoundTemplate); |
| 3722 | } |
| 3723 | } |
| 3724 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 3725 | ConflictingDecls.push_back(FoundDecls[I]); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3726 | } |
| 3727 | |
| 3728 | if (!ConflictingDecls.empty()) { |
| 3729 | Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Ordinary, |
| 3730 | ConflictingDecls.data(), |
| 3731 | ConflictingDecls.size()); |
| 3732 | } |
| 3733 | |
| 3734 | if (!Name) |
| 3735 | return 0; |
| 3736 | } |
| 3737 | |
| 3738 | CXXRecordDecl *DTemplated = D->getTemplatedDecl(); |
| 3739 | |
| 3740 | // Create the declaration that is being templated. |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 3741 | SourceLocation StartLoc = Importer.Import(DTemplated->getLocStart()); |
| 3742 | SourceLocation IdLoc = Importer.Import(DTemplated->getLocation()); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3743 | CXXRecordDecl *D2Templated = CXXRecordDecl::Create(Importer.getToContext(), |
| 3744 | DTemplated->getTagKind(), |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 3745 | DC, StartLoc, IdLoc, |
| 3746 | Name.getAsIdentifierInfo()); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3747 | D2Templated->setAccess(DTemplated->getAccess()); |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 3748 | D2Templated->setQualifierInfo(Importer.Import(DTemplated->getQualifierLoc())); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3749 | D2Templated->setLexicalDeclContext(LexicalDC); |
| 3750 | |
| 3751 | // Create the class template declaration itself. |
| 3752 | TemplateParameterList *TemplateParams |
| 3753 | = ImportTemplateParameterList(D->getTemplateParameters()); |
| 3754 | if (!TemplateParams) |
| 3755 | return 0; |
| 3756 | |
| 3757 | ClassTemplateDecl *D2 = ClassTemplateDecl::Create(Importer.getToContext(), DC, |
| 3758 | Loc, Name, TemplateParams, |
| 3759 | D2Templated, |
| 3760 | /*PrevDecl=*/0); |
| 3761 | D2Templated->setDescribedClassTemplate(D2); |
| 3762 | |
| 3763 | D2->setAccess(D->getAccess()); |
| 3764 | D2->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3765 | LexicalDC->addDeclInternal(D2); |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3766 | |
| 3767 | // Note the relationship between the class templates. |
| 3768 | Importer.Imported(D, D2); |
| 3769 | Importer.Imported(DTemplated, D2Templated); |
| 3770 | |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 3771 | if (DTemplated->isCompleteDefinition() && |
| 3772 | !D2Templated->isCompleteDefinition()) { |
Douglas Gregor | 040afae | 2010-11-30 19:14:50 +0000 | [diff] [blame] | 3773 | // FIXME: Import definition! |
| 3774 | } |
| 3775 | |
| 3776 | return D2; |
| 3777 | } |
| 3778 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3779 | Decl *ASTNodeImporter::VisitClassTemplateSpecializationDecl( |
| 3780 | ClassTemplateSpecializationDecl *D) { |
| 3781 | // If this record has a definition in the translation unit we're coming from, |
| 3782 | // but this particular declaration is not that definition, import the |
| 3783 | // definition and map to that. |
| 3784 | TagDecl *Definition = D->getDefinition(); |
| 3785 | if (Definition && Definition != D) { |
| 3786 | Decl *ImportedDef = Importer.Import(Definition); |
| 3787 | if (!ImportedDef) |
| 3788 | return 0; |
| 3789 | |
| 3790 | return Importer.Imported(D, ImportedDef); |
| 3791 | } |
| 3792 | |
| 3793 | ClassTemplateDecl *ClassTemplate |
| 3794 | = cast_or_null<ClassTemplateDecl>(Importer.Import( |
| 3795 | D->getSpecializedTemplate())); |
| 3796 | if (!ClassTemplate) |
| 3797 | return 0; |
| 3798 | |
| 3799 | // Import the context of this declaration. |
| 3800 | DeclContext *DC = ClassTemplate->getDeclContext(); |
| 3801 | if (!DC) |
| 3802 | return 0; |
| 3803 | |
| 3804 | DeclContext *LexicalDC = DC; |
| 3805 | if (D->getDeclContext() != D->getLexicalDeclContext()) { |
| 3806 | LexicalDC = Importer.ImportContext(D->getLexicalDeclContext()); |
| 3807 | if (!LexicalDC) |
| 3808 | return 0; |
| 3809 | } |
| 3810 | |
| 3811 | // Import the location of this declaration. |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 3812 | SourceLocation StartLoc = Importer.Import(D->getLocStart()); |
| 3813 | SourceLocation IdLoc = Importer.Import(D->getLocation()); |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3814 | |
| 3815 | // Import template arguments. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3816 | SmallVector<TemplateArgument, 2> TemplateArgs; |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3817 | if (ImportTemplateArguments(D->getTemplateArgs().data(), |
| 3818 | D->getTemplateArgs().size(), |
| 3819 | TemplateArgs)) |
| 3820 | return 0; |
| 3821 | |
| 3822 | // Try to find an existing specialization with these template arguments. |
| 3823 | void *InsertPos = 0; |
| 3824 | ClassTemplateSpecializationDecl *D2 |
| 3825 | = ClassTemplate->findSpecialization(TemplateArgs.data(), |
| 3826 | TemplateArgs.size(), InsertPos); |
| 3827 | if (D2) { |
| 3828 | // We already have a class template specialization with these template |
| 3829 | // arguments. |
| 3830 | |
| 3831 | // FIXME: Check for specialization vs. instantiation errors. |
| 3832 | |
| 3833 | if (RecordDecl *FoundDef = D2->getDefinition()) { |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 3834 | if (!D->isCompleteDefinition() || IsStructuralMatch(D, FoundDef)) { |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3835 | // The record types structurally match, or the "from" translation |
| 3836 | // unit only had a forward declaration anyway; call it the same |
| 3837 | // function. |
| 3838 | return Importer.Imported(D, FoundDef); |
| 3839 | } |
| 3840 | } |
| 3841 | } else { |
| 3842 | // Create a new specialization. |
| 3843 | D2 = ClassTemplateSpecializationDecl::Create(Importer.getToContext(), |
| 3844 | D->getTagKind(), DC, |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 3845 | StartLoc, IdLoc, |
| 3846 | ClassTemplate, |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3847 | TemplateArgs.data(), |
| 3848 | TemplateArgs.size(), |
| 3849 | /*PrevDecl=*/0); |
| 3850 | D2->setSpecializationKind(D->getSpecializationKind()); |
| 3851 | |
| 3852 | // Add this specialization to the class template. |
| 3853 | ClassTemplate->AddSpecialization(D2, InsertPos); |
| 3854 | |
| 3855 | // Import the qualifier, if any. |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 3856 | D2->setQualifierInfo(Importer.Import(D->getQualifierLoc())); |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3857 | |
| 3858 | // Add the specialization to this context. |
| 3859 | D2->setLexicalDeclContext(LexicalDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 3860 | LexicalDC->addDeclInternal(D2); |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3861 | } |
| 3862 | Importer.Imported(D, D2); |
| 3863 | |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 3864 | if (D->isCompleteDefinition() && ImportDefinition(D, D2)) |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 3865 | return 0; |
| 3866 | |
| 3867 | return D2; |
| 3868 | } |
| 3869 | |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 3870 | //---------------------------------------------------------------------------- |
| 3871 | // Import Statements |
| 3872 | //---------------------------------------------------------------------------- |
| 3873 | |
| 3874 | Stmt *ASTNodeImporter::VisitStmt(Stmt *S) { |
| 3875 | Importer.FromDiag(S->getLocStart(), diag::err_unsupported_ast_node) |
| 3876 | << S->getStmtClassName(); |
| 3877 | return 0; |
| 3878 | } |
| 3879 | |
| 3880 | //---------------------------------------------------------------------------- |
| 3881 | // Import Expressions |
| 3882 | //---------------------------------------------------------------------------- |
| 3883 | Expr *ASTNodeImporter::VisitExpr(Expr *E) { |
| 3884 | Importer.FromDiag(E->getLocStart(), diag::err_unsupported_ast_node) |
| 3885 | << E->getStmtClassName(); |
| 3886 | return 0; |
| 3887 | } |
| 3888 | |
Douglas Gregor | 4408063 | 2010-02-19 01:17:02 +0000 | [diff] [blame] | 3889 | Expr *ASTNodeImporter::VisitDeclRefExpr(DeclRefExpr *E) { |
Douglas Gregor | 4408063 | 2010-02-19 01:17:02 +0000 | [diff] [blame] | 3890 | ValueDecl *ToD = cast_or_null<ValueDecl>(Importer.Import(E->getDecl())); |
| 3891 | if (!ToD) |
| 3892 | return 0; |
Chandler Carruth | 3aa8140 | 2011-05-01 23:48:14 +0000 | [diff] [blame] | 3893 | |
| 3894 | NamedDecl *FoundD = 0; |
| 3895 | if (E->getDecl() != E->getFoundDecl()) { |
| 3896 | FoundD = cast_or_null<NamedDecl>(Importer.Import(E->getFoundDecl())); |
| 3897 | if (!FoundD) |
| 3898 | return 0; |
| 3899 | } |
Douglas Gregor | 4408063 | 2010-02-19 01:17:02 +0000 | [diff] [blame] | 3900 | |
| 3901 | QualType T = Importer.Import(E->getType()); |
| 3902 | if (T.isNull()) |
| 3903 | return 0; |
Abramo Bagnara | 7cc58b4 | 2011-10-05 07:56:41 +0000 | [diff] [blame] | 3904 | |
| 3905 | DeclRefExpr *DRE = DeclRefExpr::Create(Importer.getToContext(), |
| 3906 | Importer.Import(E->getQualifierLoc()), |
| 3907 | ToD, |
| 3908 | Importer.Import(E->getLocation()), |
| 3909 | T, E->getValueKind(), |
| 3910 | FoundD, |
| 3911 | /*FIXME:TemplateArgs=*/0); |
| 3912 | if (E->hadMultipleCandidates()) |
| 3913 | DRE->setHadMultipleCandidates(true); |
| 3914 | return DRE; |
Douglas Gregor | 4408063 | 2010-02-19 01:17:02 +0000 | [diff] [blame] | 3915 | } |
| 3916 | |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 3917 | Expr *ASTNodeImporter::VisitIntegerLiteral(IntegerLiteral *E) { |
| 3918 | QualType T = Importer.Import(E->getType()); |
| 3919 | if (T.isNull()) |
| 3920 | return 0; |
| 3921 | |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 3922 | return IntegerLiteral::Create(Importer.getToContext(), |
| 3923 | E->getValue(), T, |
| 3924 | Importer.Import(E->getLocation())); |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 3925 | } |
| 3926 | |
Douglas Gregor | b2e400a | 2010-02-18 02:21:22 +0000 | [diff] [blame] | 3927 | Expr *ASTNodeImporter::VisitCharacterLiteral(CharacterLiteral *E) { |
| 3928 | QualType T = Importer.Import(E->getType()); |
| 3929 | if (T.isNull()) |
| 3930 | return 0; |
| 3931 | |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 3932 | return new (Importer.getToContext()) CharacterLiteral(E->getValue(), |
| 3933 | E->getKind(), T, |
Douglas Gregor | b2e400a | 2010-02-18 02:21:22 +0000 | [diff] [blame] | 3934 | Importer.Import(E->getLocation())); |
| 3935 | } |
| 3936 | |
Douglas Gregor | f638f95 | 2010-02-19 01:07:06 +0000 | [diff] [blame] | 3937 | Expr *ASTNodeImporter::VisitParenExpr(ParenExpr *E) { |
| 3938 | Expr *SubExpr = Importer.Import(E->getSubExpr()); |
| 3939 | if (!SubExpr) |
| 3940 | return 0; |
| 3941 | |
| 3942 | return new (Importer.getToContext()) |
| 3943 | ParenExpr(Importer.Import(E->getLParen()), |
| 3944 | Importer.Import(E->getRParen()), |
| 3945 | SubExpr); |
| 3946 | } |
| 3947 | |
| 3948 | Expr *ASTNodeImporter::VisitUnaryOperator(UnaryOperator *E) { |
| 3949 | QualType T = Importer.Import(E->getType()); |
| 3950 | if (T.isNull()) |
| 3951 | return 0; |
| 3952 | |
| 3953 | Expr *SubExpr = Importer.Import(E->getSubExpr()); |
| 3954 | if (!SubExpr) |
| 3955 | return 0; |
| 3956 | |
| 3957 | return new (Importer.getToContext()) UnaryOperator(SubExpr, E->getOpcode(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3958 | T, E->getValueKind(), |
| 3959 | E->getObjectKind(), |
Douglas Gregor | f638f95 | 2010-02-19 01:07:06 +0000 | [diff] [blame] | 3960 | Importer.Import(E->getOperatorLoc())); |
| 3961 | } |
| 3962 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3963 | Expr *ASTNodeImporter::VisitUnaryExprOrTypeTraitExpr( |
| 3964 | UnaryExprOrTypeTraitExpr *E) { |
Douglas Gregor | bd249a5 | 2010-02-19 01:24:23 +0000 | [diff] [blame] | 3965 | QualType ResultType = Importer.Import(E->getType()); |
| 3966 | |
| 3967 | if (E->isArgumentType()) { |
| 3968 | TypeSourceInfo *TInfo = Importer.Import(E->getArgumentTypeInfo()); |
| 3969 | if (!TInfo) |
| 3970 | return 0; |
| 3971 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3972 | return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(), |
| 3973 | TInfo, ResultType, |
Douglas Gregor | bd249a5 | 2010-02-19 01:24:23 +0000 | [diff] [blame] | 3974 | Importer.Import(E->getOperatorLoc()), |
| 3975 | Importer.Import(E->getRParenLoc())); |
| 3976 | } |
| 3977 | |
| 3978 | Expr *SubExpr = Importer.Import(E->getArgumentExpr()); |
| 3979 | if (!SubExpr) |
| 3980 | return 0; |
| 3981 | |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3982 | return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(), |
| 3983 | SubExpr, ResultType, |
Douglas Gregor | bd249a5 | 2010-02-19 01:24:23 +0000 | [diff] [blame] | 3984 | Importer.Import(E->getOperatorLoc()), |
| 3985 | Importer.Import(E->getRParenLoc())); |
| 3986 | } |
| 3987 | |
Douglas Gregor | f638f95 | 2010-02-19 01:07:06 +0000 | [diff] [blame] | 3988 | Expr *ASTNodeImporter::VisitBinaryOperator(BinaryOperator *E) { |
| 3989 | QualType T = Importer.Import(E->getType()); |
| 3990 | if (T.isNull()) |
| 3991 | return 0; |
| 3992 | |
| 3993 | Expr *LHS = Importer.Import(E->getLHS()); |
| 3994 | if (!LHS) |
| 3995 | return 0; |
| 3996 | |
| 3997 | Expr *RHS = Importer.Import(E->getRHS()); |
| 3998 | if (!RHS) |
| 3999 | return 0; |
| 4000 | |
| 4001 | return new (Importer.getToContext()) BinaryOperator(LHS, RHS, E->getOpcode(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4002 | T, E->getValueKind(), |
| 4003 | E->getObjectKind(), |
Douglas Gregor | f638f95 | 2010-02-19 01:07:06 +0000 | [diff] [blame] | 4004 | Importer.Import(E->getOperatorLoc())); |
| 4005 | } |
| 4006 | |
| 4007 | Expr *ASTNodeImporter::VisitCompoundAssignOperator(CompoundAssignOperator *E) { |
| 4008 | QualType T = Importer.Import(E->getType()); |
| 4009 | if (T.isNull()) |
| 4010 | return 0; |
| 4011 | |
| 4012 | QualType CompLHSType = Importer.Import(E->getComputationLHSType()); |
| 4013 | if (CompLHSType.isNull()) |
| 4014 | return 0; |
| 4015 | |
| 4016 | QualType CompResultType = Importer.Import(E->getComputationResultType()); |
| 4017 | if (CompResultType.isNull()) |
| 4018 | return 0; |
| 4019 | |
| 4020 | Expr *LHS = Importer.Import(E->getLHS()); |
| 4021 | if (!LHS) |
| 4022 | return 0; |
| 4023 | |
| 4024 | Expr *RHS = Importer.Import(E->getRHS()); |
| 4025 | if (!RHS) |
| 4026 | return 0; |
| 4027 | |
| 4028 | return new (Importer.getToContext()) |
| 4029 | CompoundAssignOperator(LHS, RHS, E->getOpcode(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4030 | T, E->getValueKind(), |
| 4031 | E->getObjectKind(), |
| 4032 | CompLHSType, CompResultType, |
Douglas Gregor | f638f95 | 2010-02-19 01:07:06 +0000 | [diff] [blame] | 4033 | Importer.Import(E->getOperatorLoc())); |
| 4034 | } |
| 4035 | |
Benjamin Kramer | da57f3e | 2011-03-26 12:38:21 +0000 | [diff] [blame] | 4036 | static bool ImportCastPath(CastExpr *E, CXXCastPath &Path) { |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 4037 | if (E->path_empty()) return false; |
| 4038 | |
| 4039 | // TODO: import cast paths |
| 4040 | return true; |
| 4041 | } |
| 4042 | |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 4043 | Expr *ASTNodeImporter::VisitImplicitCastExpr(ImplicitCastExpr *E) { |
| 4044 | QualType T = Importer.Import(E->getType()); |
| 4045 | if (T.isNull()) |
| 4046 | return 0; |
| 4047 | |
| 4048 | Expr *SubExpr = Importer.Import(E->getSubExpr()); |
| 4049 | if (!SubExpr) |
| 4050 | return 0; |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 4051 | |
| 4052 | CXXCastPath BasePath; |
| 4053 | if (ImportCastPath(E, BasePath)) |
| 4054 | return 0; |
| 4055 | |
| 4056 | return ImplicitCastExpr::Create(Importer.getToContext(), T, E->getCastKind(), |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 4057 | SubExpr, &BasePath, E->getValueKind()); |
Douglas Gregor | 36ead2e | 2010-02-12 22:17:39 +0000 | [diff] [blame] | 4058 | } |
| 4059 | |
Douglas Gregor | 008847a | 2010-02-19 01:32:14 +0000 | [diff] [blame] | 4060 | Expr *ASTNodeImporter::VisitCStyleCastExpr(CStyleCastExpr *E) { |
| 4061 | QualType T = Importer.Import(E->getType()); |
| 4062 | if (T.isNull()) |
| 4063 | return 0; |
| 4064 | |
| 4065 | Expr *SubExpr = Importer.Import(E->getSubExpr()); |
| 4066 | if (!SubExpr) |
| 4067 | return 0; |
| 4068 | |
| 4069 | TypeSourceInfo *TInfo = Importer.Import(E->getTypeInfoAsWritten()); |
| 4070 | if (!TInfo && E->getTypeInfoAsWritten()) |
| 4071 | return 0; |
| 4072 | |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 4073 | CXXCastPath BasePath; |
| 4074 | if (ImportCastPath(E, BasePath)) |
| 4075 | return 0; |
| 4076 | |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4077 | return CStyleCastExpr::Create(Importer.getToContext(), T, |
| 4078 | E->getValueKind(), E->getCastKind(), |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 4079 | SubExpr, &BasePath, TInfo, |
| 4080 | Importer.Import(E->getLParenLoc()), |
| 4081 | Importer.Import(E->getRParenLoc())); |
Douglas Gregor | 008847a | 2010-02-19 01:32:14 +0000 | [diff] [blame] | 4082 | } |
| 4083 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 4084 | ASTImporter::ASTImporter(ASTContext &ToContext, FileManager &ToFileManager, |
Douglas Gregor | d8868a6 | 2011-01-18 03:11:38 +0000 | [diff] [blame] | 4085 | ASTContext &FromContext, FileManager &FromFileManager, |
| 4086 | bool MinimalImport) |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4087 | : ToContext(ToContext), FromContext(FromContext), |
Douglas Gregor | d8868a6 | 2011-01-18 03:11:38 +0000 | [diff] [blame] | 4088 | ToFileManager(ToFileManager), FromFileManager(FromFileManager), |
| 4089 | Minimal(MinimalImport) |
| 4090 | { |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4091 | ImportedDecls[FromContext.getTranslationUnitDecl()] |
| 4092 | = ToContext.getTranslationUnitDecl(); |
| 4093 | } |
| 4094 | |
| 4095 | ASTImporter::~ASTImporter() { } |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4096 | |
| 4097 | QualType ASTImporter::Import(QualType FromT) { |
| 4098 | if (FromT.isNull()) |
| 4099 | return QualType(); |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 4100 | |
| 4101 | const Type *fromTy = FromT.getTypePtr(); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4102 | |
Douglas Gregor | 169fba5 | 2010-02-08 15:18:58 +0000 | [diff] [blame] | 4103 | // Check whether we've already imported this type. |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 4104 | llvm::DenseMap<const Type *, const Type *>::iterator Pos |
| 4105 | = ImportedTypes.find(fromTy); |
Douglas Gregor | 169fba5 | 2010-02-08 15:18:58 +0000 | [diff] [blame] | 4106 | if (Pos != ImportedTypes.end()) |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 4107 | return ToContext.getQualifiedType(Pos->second, FromT.getLocalQualifiers()); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4108 | |
Douglas Gregor | 169fba5 | 2010-02-08 15:18:58 +0000 | [diff] [blame] | 4109 | // Import the type |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4110 | ASTNodeImporter Importer(*this); |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 4111 | QualType ToT = Importer.Visit(fromTy); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4112 | if (ToT.isNull()) |
| 4113 | return ToT; |
| 4114 | |
Douglas Gregor | 169fba5 | 2010-02-08 15:18:58 +0000 | [diff] [blame] | 4115 | // Record the imported type. |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 4116 | ImportedTypes[fromTy] = ToT.getTypePtr(); |
Douglas Gregor | 169fba5 | 2010-02-08 15:18:58 +0000 | [diff] [blame] | 4117 | |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 4118 | return ToContext.getQualifiedType(ToT, FromT.getLocalQualifiers()); |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4119 | } |
| 4120 | |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4121 | TypeSourceInfo *ASTImporter::Import(TypeSourceInfo *FromTSI) { |
Douglas Gregor | 82fc4bf | 2010-02-10 17:47:19 +0000 | [diff] [blame] | 4122 | if (!FromTSI) |
| 4123 | return FromTSI; |
| 4124 | |
| 4125 | // FIXME: For now we just create a "trivial" type source info based |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 4126 | // on the type and a single location. Implement a real version of this. |
Douglas Gregor | 82fc4bf | 2010-02-10 17:47:19 +0000 | [diff] [blame] | 4127 | QualType T = Import(FromTSI->getType()); |
| 4128 | if (T.isNull()) |
| 4129 | return 0; |
| 4130 | |
| 4131 | return ToContext.getTrivialTypeSourceInfo(T, |
Abramo Bagnara | bd054db | 2010-05-20 10:00:11 +0000 | [diff] [blame] | 4132 | FromTSI->getTypeLoc().getSourceRange().getBegin()); |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4133 | } |
| 4134 | |
| 4135 | Decl *ASTImporter::Import(Decl *FromD) { |
| 4136 | if (!FromD) |
| 4137 | return 0; |
| 4138 | |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 4139 | ASTNodeImporter Importer(*this); |
| 4140 | |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4141 | // Check whether we've already imported this declaration. |
| 4142 | llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD); |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 4143 | if (Pos != ImportedDecls.end()) { |
| 4144 | Decl *ToD = Pos->second; |
| 4145 | Importer.ImportDefinitionIfNeeded(FromD, ToD); |
| 4146 | return ToD; |
| 4147 | } |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4148 | |
| 4149 | // Import the type |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4150 | Decl *ToD = Importer.Visit(FromD); |
| 4151 | if (!ToD) |
| 4152 | return 0; |
| 4153 | |
| 4154 | // Record the imported declaration. |
| 4155 | ImportedDecls[FromD] = ToD; |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4156 | |
| 4157 | if (TagDecl *FromTag = dyn_cast<TagDecl>(FromD)) { |
| 4158 | // Keep track of anonymous tags that have an associated typedef. |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 4159 | if (FromTag->getTypedefNameForAnonDecl()) |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4160 | AnonTagsWithPendingTypedefs.push_back(FromTag); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 4161 | } else if (TypedefNameDecl *FromTypedef = dyn_cast<TypedefNameDecl>(FromD)) { |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4162 | // When we've finished transforming a typedef, see whether it was the |
| 4163 | // typedef for an anonymous tag. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4164 | for (SmallVector<TagDecl *, 4>::iterator |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4165 | FromTag = AnonTagsWithPendingTypedefs.begin(), |
| 4166 | FromTagEnd = AnonTagsWithPendingTypedefs.end(); |
| 4167 | FromTag != FromTagEnd; ++FromTag) { |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 4168 | if ((*FromTag)->getTypedefNameForAnonDecl() == FromTypedef) { |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4169 | if (TagDecl *ToTag = cast_or_null<TagDecl>(Import(*FromTag))) { |
| 4170 | // We found the typedef for an anonymous tag; link them. |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 4171 | ToTag->setTypedefNameForAnonDecl(cast<TypedefNameDecl>(ToD)); |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4172 | AnonTagsWithPendingTypedefs.erase(FromTag); |
| 4173 | break; |
| 4174 | } |
| 4175 | } |
| 4176 | } |
| 4177 | } |
| 4178 | |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4179 | return ToD; |
| 4180 | } |
| 4181 | |
| 4182 | DeclContext *ASTImporter::ImportContext(DeclContext *FromDC) { |
| 4183 | if (!FromDC) |
| 4184 | return FromDC; |
| 4185 | |
| 4186 | return cast_or_null<DeclContext>(Import(cast<Decl>(FromDC))); |
| 4187 | } |
| 4188 | |
| 4189 | Expr *ASTImporter::Import(Expr *FromE) { |
| 4190 | if (!FromE) |
| 4191 | return 0; |
| 4192 | |
| 4193 | return cast_or_null<Expr>(Import(cast<Stmt>(FromE))); |
| 4194 | } |
| 4195 | |
| 4196 | Stmt *ASTImporter::Import(Stmt *FromS) { |
| 4197 | if (!FromS) |
| 4198 | return 0; |
| 4199 | |
Douglas Gregor | 4800d95 | 2010-02-11 19:21:55 +0000 | [diff] [blame] | 4200 | // Check whether we've already imported this declaration. |
| 4201 | llvm::DenseMap<Stmt *, Stmt *>::iterator Pos = ImportedStmts.find(FromS); |
| 4202 | if (Pos != ImportedStmts.end()) |
| 4203 | return Pos->second; |
| 4204 | |
| 4205 | // Import the type |
| 4206 | ASTNodeImporter Importer(*this); |
| 4207 | Stmt *ToS = Importer.Visit(FromS); |
| 4208 | if (!ToS) |
| 4209 | return 0; |
| 4210 | |
| 4211 | // Record the imported declaration. |
| 4212 | ImportedStmts[FromS] = ToS; |
| 4213 | return ToS; |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4214 | } |
| 4215 | |
| 4216 | NestedNameSpecifier *ASTImporter::Import(NestedNameSpecifier *FromNNS) { |
| 4217 | if (!FromNNS) |
| 4218 | return 0; |
| 4219 | |
Douglas Gregor | 8703b1c | 2011-04-27 16:48:40 +0000 | [diff] [blame] | 4220 | NestedNameSpecifier *prefix = Import(FromNNS->getPrefix()); |
| 4221 | |
| 4222 | switch (FromNNS->getKind()) { |
| 4223 | case NestedNameSpecifier::Identifier: |
| 4224 | if (IdentifierInfo *II = Import(FromNNS->getAsIdentifier())) { |
| 4225 | return NestedNameSpecifier::Create(ToContext, prefix, II); |
| 4226 | } |
| 4227 | return 0; |
| 4228 | |
| 4229 | case NestedNameSpecifier::Namespace: |
| 4230 | if (NamespaceDecl *NS = |
| 4231 | cast<NamespaceDecl>(Import(FromNNS->getAsNamespace()))) { |
| 4232 | return NestedNameSpecifier::Create(ToContext, prefix, NS); |
| 4233 | } |
| 4234 | return 0; |
| 4235 | |
| 4236 | case NestedNameSpecifier::NamespaceAlias: |
| 4237 | if (NamespaceAliasDecl *NSAD = |
| 4238 | cast<NamespaceAliasDecl>(Import(FromNNS->getAsNamespaceAlias()))) { |
| 4239 | return NestedNameSpecifier::Create(ToContext, prefix, NSAD); |
| 4240 | } |
| 4241 | return 0; |
| 4242 | |
| 4243 | case NestedNameSpecifier::Global: |
| 4244 | return NestedNameSpecifier::GlobalSpecifier(ToContext); |
| 4245 | |
| 4246 | case NestedNameSpecifier::TypeSpec: |
| 4247 | case NestedNameSpecifier::TypeSpecWithTemplate: { |
| 4248 | QualType T = Import(QualType(FromNNS->getAsType(), 0u)); |
| 4249 | if (!T.isNull()) { |
| 4250 | bool bTemplate = FromNNS->getKind() == |
| 4251 | NestedNameSpecifier::TypeSpecWithTemplate; |
| 4252 | return NestedNameSpecifier::Create(ToContext, prefix, |
| 4253 | bTemplate, T.getTypePtr()); |
| 4254 | } |
| 4255 | } |
| 4256 | return 0; |
| 4257 | } |
| 4258 | |
| 4259 | llvm_unreachable("Invalid nested name specifier kind"); |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4260 | return 0; |
| 4261 | } |
| 4262 | |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 4263 | NestedNameSpecifierLoc ASTImporter::Import(NestedNameSpecifierLoc FromNNS) { |
| 4264 | // FIXME: Implement! |
| 4265 | return NestedNameSpecifierLoc(); |
| 4266 | } |
| 4267 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 4268 | TemplateName ASTImporter::Import(TemplateName From) { |
| 4269 | switch (From.getKind()) { |
| 4270 | case TemplateName::Template: |
| 4271 | if (TemplateDecl *ToTemplate |
| 4272 | = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl()))) |
| 4273 | return TemplateName(ToTemplate); |
| 4274 | |
| 4275 | return TemplateName(); |
| 4276 | |
| 4277 | case TemplateName::OverloadedTemplate: { |
| 4278 | OverloadedTemplateStorage *FromStorage = From.getAsOverloadedTemplate(); |
| 4279 | UnresolvedSet<2> ToTemplates; |
| 4280 | for (OverloadedTemplateStorage::iterator I = FromStorage->begin(), |
| 4281 | E = FromStorage->end(); |
| 4282 | I != E; ++I) { |
| 4283 | if (NamedDecl *To = cast_or_null<NamedDecl>(Import(*I))) |
| 4284 | ToTemplates.addDecl(To); |
| 4285 | else |
| 4286 | return TemplateName(); |
| 4287 | } |
| 4288 | return ToContext.getOverloadedTemplateName(ToTemplates.begin(), |
| 4289 | ToTemplates.end()); |
| 4290 | } |
| 4291 | |
| 4292 | case TemplateName::QualifiedTemplate: { |
| 4293 | QualifiedTemplateName *QTN = From.getAsQualifiedTemplateName(); |
| 4294 | NestedNameSpecifier *Qualifier = Import(QTN->getQualifier()); |
| 4295 | if (!Qualifier) |
| 4296 | return TemplateName(); |
| 4297 | |
| 4298 | if (TemplateDecl *ToTemplate |
| 4299 | = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl()))) |
| 4300 | return ToContext.getQualifiedTemplateName(Qualifier, |
| 4301 | QTN->hasTemplateKeyword(), |
| 4302 | ToTemplate); |
| 4303 | |
| 4304 | return TemplateName(); |
| 4305 | } |
| 4306 | |
| 4307 | case TemplateName::DependentTemplate: { |
| 4308 | DependentTemplateName *DTN = From.getAsDependentTemplateName(); |
| 4309 | NestedNameSpecifier *Qualifier = Import(DTN->getQualifier()); |
| 4310 | if (!Qualifier) |
| 4311 | return TemplateName(); |
| 4312 | |
| 4313 | if (DTN->isIdentifier()) { |
| 4314 | return ToContext.getDependentTemplateName(Qualifier, |
| 4315 | Import(DTN->getIdentifier())); |
| 4316 | } |
| 4317 | |
| 4318 | return ToContext.getDependentTemplateName(Qualifier, DTN->getOperator()); |
| 4319 | } |
John McCall | 1460604 | 2011-06-30 08:33:18 +0000 | [diff] [blame] | 4320 | |
| 4321 | case TemplateName::SubstTemplateTemplateParm: { |
| 4322 | SubstTemplateTemplateParmStorage *subst |
| 4323 | = From.getAsSubstTemplateTemplateParm(); |
| 4324 | TemplateTemplateParmDecl *param |
| 4325 | = cast_or_null<TemplateTemplateParmDecl>(Import(subst->getParameter())); |
| 4326 | if (!param) |
| 4327 | return TemplateName(); |
| 4328 | |
| 4329 | TemplateName replacement = Import(subst->getReplacement()); |
| 4330 | if (replacement.isNull()) return TemplateName(); |
| 4331 | |
| 4332 | return ToContext.getSubstTemplateTemplateParm(param, replacement); |
| 4333 | } |
Douglas Gregor | 1aee05d | 2011-01-15 06:45:20 +0000 | [diff] [blame] | 4334 | |
| 4335 | case TemplateName::SubstTemplateTemplateParmPack: { |
| 4336 | SubstTemplateTemplateParmPackStorage *SubstPack |
| 4337 | = From.getAsSubstTemplateTemplateParmPack(); |
| 4338 | TemplateTemplateParmDecl *Param |
| 4339 | = cast_or_null<TemplateTemplateParmDecl>( |
| 4340 | Import(SubstPack->getParameterPack())); |
| 4341 | if (!Param) |
| 4342 | return TemplateName(); |
| 4343 | |
| 4344 | ASTNodeImporter Importer(*this); |
| 4345 | TemplateArgument ArgPack |
| 4346 | = Importer.ImportTemplateArgument(SubstPack->getArgumentPack()); |
| 4347 | if (ArgPack.isNull()) |
| 4348 | return TemplateName(); |
| 4349 | |
| 4350 | return ToContext.getSubstTemplateTemplateParmPack(Param, ArgPack); |
| 4351 | } |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 4352 | } |
| 4353 | |
| 4354 | llvm_unreachable("Invalid template name kind"); |
| 4355 | return TemplateName(); |
| 4356 | } |
| 4357 | |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4358 | SourceLocation ASTImporter::Import(SourceLocation FromLoc) { |
| 4359 | if (FromLoc.isInvalid()) |
| 4360 | return SourceLocation(); |
| 4361 | |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4362 | SourceManager &FromSM = FromContext.getSourceManager(); |
| 4363 | |
| 4364 | // For now, map everything down to its spelling location, so that we |
Chandler Carruth | b10aa3e | 2011-07-15 00:04:35 +0000 | [diff] [blame] | 4365 | // don't have to import macro expansions. |
| 4366 | // FIXME: Import macro expansions! |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4367 | FromLoc = FromSM.getSpellingLoc(FromLoc); |
| 4368 | std::pair<FileID, unsigned> Decomposed = FromSM.getDecomposedLoc(FromLoc); |
| 4369 | SourceManager &ToSM = ToContext.getSourceManager(); |
| 4370 | return ToSM.getLocForStartOfFile(Import(Decomposed.first)) |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 4371 | .getLocWithOffset(Decomposed.second); |
Douglas Gregor | 9bed879 | 2010-02-09 19:21:46 +0000 | [diff] [blame] | 4372 | } |
| 4373 | |
| 4374 | SourceRange ASTImporter::Import(SourceRange FromRange) { |
| 4375 | return SourceRange(Import(FromRange.getBegin()), Import(FromRange.getEnd())); |
| 4376 | } |
| 4377 | |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4378 | FileID ASTImporter::Import(FileID FromID) { |
Sebastian Redl | 535a3e2 | 2010-09-30 01:03:06 +0000 | [diff] [blame] | 4379 | llvm::DenseMap<FileID, FileID>::iterator Pos |
| 4380 | = ImportedFileIDs.find(FromID); |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4381 | if (Pos != ImportedFileIDs.end()) |
| 4382 | return Pos->second; |
| 4383 | |
| 4384 | SourceManager &FromSM = FromContext.getSourceManager(); |
| 4385 | SourceManager &ToSM = ToContext.getSourceManager(); |
| 4386 | const SrcMgr::SLocEntry &FromSLoc = FromSM.getSLocEntry(FromID); |
Chandler Carruth | b10aa3e | 2011-07-15 00:04:35 +0000 | [diff] [blame] | 4387 | assert(FromSLoc.isFile() && "Cannot handle macro expansions yet"); |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4388 | |
| 4389 | // Include location of this file. |
| 4390 | SourceLocation ToIncludeLoc = Import(FromSLoc.getFile().getIncludeLoc()); |
| 4391 | |
| 4392 | // Map the FileID for to the "to" source manager. |
| 4393 | FileID ToID; |
| 4394 | const SrcMgr::ContentCache *Cache = FromSLoc.getFile().getContentCache(); |
Argyrios Kyrtzidis | b1c8649 | 2011-03-05 01:03:53 +0000 | [diff] [blame] | 4395 | if (Cache->OrigEntry) { |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4396 | // FIXME: We probably want to use getVirtualFile(), so we don't hit the |
| 4397 | // disk again |
| 4398 | // FIXME: We definitely want to re-use the existing MemoryBuffer, rather |
| 4399 | // than mmap the files several times. |
Argyrios Kyrtzidis | b1c8649 | 2011-03-05 01:03:53 +0000 | [diff] [blame] | 4400 | const FileEntry *Entry = ToFileManager.getFile(Cache->OrigEntry->getName()); |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4401 | ToID = ToSM.createFileID(Entry, ToIncludeLoc, |
| 4402 | FromSLoc.getFile().getFileCharacteristic()); |
| 4403 | } else { |
| 4404 | // FIXME: We want to re-use the existing MemoryBuffer! |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 4405 | const llvm::MemoryBuffer * |
| 4406 | FromBuf = Cache->getBuffer(FromContext.getDiagnostics(), FromSM); |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4407 | llvm::MemoryBuffer *ToBuf |
Chris Lattner | a0a270c | 2010-04-05 22:42:27 +0000 | [diff] [blame] | 4408 | = llvm::MemoryBuffer::getMemBufferCopy(FromBuf->getBuffer(), |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4409 | FromBuf->getBufferIdentifier()); |
| 4410 | ToID = ToSM.createFileIDForMemBuffer(ToBuf); |
| 4411 | } |
| 4412 | |
| 4413 | |
Sebastian Redl | 535a3e2 | 2010-09-30 01:03:06 +0000 | [diff] [blame] | 4414 | ImportedFileIDs[FromID] = ToID; |
Douglas Gregor | 8852373 | 2010-02-10 00:15:17 +0000 | [diff] [blame] | 4415 | return ToID; |
| 4416 | } |
| 4417 | |
Douglas Gregor | d8868a6 | 2011-01-18 03:11:38 +0000 | [diff] [blame] | 4418 | void ASTImporter::ImportDefinition(Decl *From) { |
| 4419 | Decl *To = Import(From); |
| 4420 | if (!To) |
| 4421 | return; |
| 4422 | |
| 4423 | if (DeclContext *FromDC = cast<DeclContext>(From)) { |
| 4424 | ASTNodeImporter Importer(*this); |
Sean Callanan | 673e775 | 2011-07-19 22:38:25 +0000 | [diff] [blame] | 4425 | |
| 4426 | if (RecordDecl *ToRecord = dyn_cast<RecordDecl>(To)) { |
| 4427 | if (!ToRecord->getDefinition()) { |
| 4428 | Importer.ImportDefinition(cast<RecordDecl>(FromDC), ToRecord, |
| 4429 | /*ForceImport=*/true); |
| 4430 | return; |
| 4431 | } |
| 4432 | } |
Douglas Gregor | 1cf038c | 2011-07-29 23:31:30 +0000 | [diff] [blame] | 4433 | |
| 4434 | if (EnumDecl *ToEnum = dyn_cast<EnumDecl>(To)) { |
| 4435 | if (!ToEnum->getDefinition()) { |
| 4436 | Importer.ImportDefinition(cast<EnumDecl>(FromDC), ToEnum, |
| 4437 | /*ForceImport=*/true); |
| 4438 | return; |
| 4439 | } |
| 4440 | } |
| 4441 | |
Douglas Gregor | d8868a6 | 2011-01-18 03:11:38 +0000 | [diff] [blame] | 4442 | Importer.ImportDeclContext(FromDC, true); |
| 4443 | } |
| 4444 | } |
| 4445 | |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4446 | DeclarationName ASTImporter::Import(DeclarationName FromName) { |
| 4447 | if (!FromName) |
| 4448 | return DeclarationName(); |
| 4449 | |
| 4450 | switch (FromName.getNameKind()) { |
| 4451 | case DeclarationName::Identifier: |
| 4452 | return Import(FromName.getAsIdentifierInfo()); |
| 4453 | |
| 4454 | case DeclarationName::ObjCZeroArgSelector: |
| 4455 | case DeclarationName::ObjCOneArgSelector: |
| 4456 | case DeclarationName::ObjCMultiArgSelector: |
| 4457 | return Import(FromName.getObjCSelector()); |
| 4458 | |
| 4459 | case DeclarationName::CXXConstructorName: { |
| 4460 | QualType T = Import(FromName.getCXXNameType()); |
| 4461 | if (T.isNull()) |
| 4462 | return DeclarationName(); |
| 4463 | |
| 4464 | return ToContext.DeclarationNames.getCXXConstructorName( |
| 4465 | ToContext.getCanonicalType(T)); |
| 4466 | } |
| 4467 | |
| 4468 | case DeclarationName::CXXDestructorName: { |
| 4469 | QualType T = Import(FromName.getCXXNameType()); |
| 4470 | if (T.isNull()) |
| 4471 | return DeclarationName(); |
| 4472 | |
| 4473 | return ToContext.DeclarationNames.getCXXDestructorName( |
| 4474 | ToContext.getCanonicalType(T)); |
| 4475 | } |
| 4476 | |
| 4477 | case DeclarationName::CXXConversionFunctionName: { |
| 4478 | QualType T = Import(FromName.getCXXNameType()); |
| 4479 | if (T.isNull()) |
| 4480 | return DeclarationName(); |
| 4481 | |
| 4482 | return ToContext.DeclarationNames.getCXXConversionFunctionName( |
| 4483 | ToContext.getCanonicalType(T)); |
| 4484 | } |
| 4485 | |
| 4486 | case DeclarationName::CXXOperatorName: |
| 4487 | return ToContext.DeclarationNames.getCXXOperatorName( |
| 4488 | FromName.getCXXOverloadedOperator()); |
| 4489 | |
| 4490 | case DeclarationName::CXXLiteralOperatorName: |
| 4491 | return ToContext.DeclarationNames.getCXXLiteralOperatorName( |
| 4492 | Import(FromName.getCXXLiteralIdentifier())); |
| 4493 | |
| 4494 | case DeclarationName::CXXUsingDirective: |
| 4495 | // FIXME: STATICS! |
| 4496 | return DeclarationName::getUsingDirectiveName(); |
| 4497 | } |
| 4498 | |
| 4499 | // Silence bogus GCC warning |
| 4500 | return DeclarationName(); |
| 4501 | } |
| 4502 | |
Douglas Gregor | d5dc83a | 2010-12-01 01:36:18 +0000 | [diff] [blame] | 4503 | IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) { |
Douglas Gregor | 1b2949d | 2010-02-05 17:54:41 +0000 | [diff] [blame] | 4504 | if (!FromId) |
| 4505 | return 0; |
| 4506 | |
| 4507 | return &ToContext.Idents.get(FromId->getName()); |
| 4508 | } |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 4509 | |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 4510 | Selector ASTImporter::Import(Selector FromSel) { |
| 4511 | if (FromSel.isNull()) |
| 4512 | return Selector(); |
| 4513 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4514 | SmallVector<IdentifierInfo *, 4> Idents; |
Douglas Gregor | c3f2d2b | 2010-02-17 02:12:47 +0000 | [diff] [blame] | 4515 | Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(0))); |
| 4516 | for (unsigned I = 1, N = FromSel.getNumArgs(); I < N; ++I) |
| 4517 | Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(I))); |
| 4518 | return ToContext.Selectors.getSelector(FromSel.getNumArgs(), Idents.data()); |
| 4519 | } |
| 4520 | |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 4521 | DeclarationName ASTImporter::HandleNameConflict(DeclarationName Name, |
| 4522 | DeclContext *DC, |
| 4523 | unsigned IDNS, |
| 4524 | NamedDecl **Decls, |
| 4525 | unsigned NumDecls) { |
| 4526 | return Name; |
| 4527 | } |
| 4528 | |
| 4529 | DiagnosticBuilder ASTImporter::ToDiag(SourceLocation Loc, unsigned DiagID) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 4530 | return ToContext.getDiagnostics().Report(Loc, DiagID); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 4531 | } |
| 4532 | |
| 4533 | DiagnosticBuilder ASTImporter::FromDiag(SourceLocation Loc, unsigned DiagID) { |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 4534 | return FromContext.getDiagnostics().Report(Loc, DiagID); |
Douglas Gregor | 089459a | 2010-02-08 21:09:39 +0000 | [diff] [blame] | 4535 | } |
Douglas Gregor | 5ce5dab | 2010-02-12 23:44:20 +0000 | [diff] [blame] | 4536 | |
| 4537 | Decl *ASTImporter::Imported(Decl *From, Decl *To) { |
| 4538 | ImportedDecls[From] = To; |
| 4539 | return To; |
Daniel Dunbar | af66758 | 2010-02-13 20:24:39 +0000 | [diff] [blame] | 4540 | } |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4541 | |
| 4542 | bool ASTImporter::IsStructurallyEquivalent(QualType From, QualType To) { |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 4543 | llvm::DenseMap<const Type *, const Type *>::iterator Pos |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4544 | = ImportedTypes.find(From.getTypePtr()); |
| 4545 | if (Pos != ImportedTypes.end() && ToContext.hasSameType(Import(From), To)) |
| 4546 | return true; |
| 4547 | |
Argyrios Kyrtzidis | 33e4e70 | 2010-11-18 20:06:41 +0000 | [diff] [blame] | 4548 | StructuralEquivalenceContext Ctx(FromContext, ToContext, NonEquivalentDecls); |
Benjamin Kramer | bb2d176 | 2010-02-18 13:02:13 +0000 | [diff] [blame] | 4549 | return Ctx.IsStructurallyEquivalent(From, To); |
Douglas Gregor | ea35d11 | 2010-02-15 23:54:17 +0000 | [diff] [blame] | 4550 | } |