blob: f7bfcaacd7c3dc0f228746d7ed8922d64a986eee [file] [log] [blame]
Douglas Gregor96e578d2010-02-05 17:54:41 +00001//===--- 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"
Douglas Gregor96e578d2010-02-05 17:54:41 +000015#include "clang/AST/ASTContext.h"
Douglas Gregor811663e2010-02-10 00:15:17 +000016#include "clang/AST/ASTDiagnostic.h"
Douglas Gregor5c73e912010-02-11 00:48:18 +000017#include "clang/AST/DeclCXX.h"
Douglas Gregor96e578d2010-02-05 17:54:41 +000018#include "clang/AST/DeclObjC.h"
Douglas Gregor3aed6cd2010-02-08 21:09:39 +000019#include "clang/AST/DeclVisitor.h"
Douglas Gregor7eeb5972010-02-11 19:21:55 +000020#include "clang/AST/StmtVisitor.h"
Douglas Gregor96e578d2010-02-05 17:54:41 +000021#include "clang/AST/TypeVisitor.h"
Douglas Gregor811663e2010-02-10 00:15:17 +000022#include "clang/Basic/FileManager.h"
23#include "clang/Basic/SourceManager.h"
24#include "llvm/Support/MemoryBuffer.h"
Douglas Gregor3996e242010-02-15 22:01:00 +000025#include <deque>
Douglas Gregor96e578d2010-02-05 17:54:41 +000026
Douglas Gregor3c2404b2011-11-03 18:07:07 +000027namespace clang {
Douglas Gregor3aed6cd2010-02-08 21:09:39 +000028 class ASTNodeImporter : public TypeVisitor<ASTNodeImporter, QualType>,
Douglas Gregor7eeb5972010-02-11 19:21:55 +000029 public DeclVisitor<ASTNodeImporter, Decl *>,
30 public StmtVisitor<ASTNodeImporter, Stmt *> {
Douglas Gregor96e578d2010-02-05 17:54:41 +000031 ASTImporter &Importer;
32
33 public:
34 explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { }
35
36 using TypeVisitor<ASTNodeImporter, QualType>::Visit;
Douglas Gregor62d311f2010-02-09 19:21:46 +000037 using DeclVisitor<ASTNodeImporter, Decl *>::Visit;
Douglas Gregor7eeb5972010-02-11 19:21:55 +000038 using StmtVisitor<ASTNodeImporter, Stmt *>::Visit;
Douglas Gregor96e578d2010-02-05 17:54:41 +000039
40 // Importing types
John McCall424cec92011-01-19 06:33:43 +000041 QualType VisitType(const Type *T);
42 QualType VisitBuiltinType(const BuiltinType *T);
43 QualType VisitComplexType(const ComplexType *T);
44 QualType VisitPointerType(const PointerType *T);
45 QualType VisitBlockPointerType(const BlockPointerType *T);
46 QualType VisitLValueReferenceType(const LValueReferenceType *T);
47 QualType VisitRValueReferenceType(const RValueReferenceType *T);
48 QualType VisitMemberPointerType(const MemberPointerType *T);
49 QualType VisitConstantArrayType(const ConstantArrayType *T);
50 QualType VisitIncompleteArrayType(const IncompleteArrayType *T);
51 QualType VisitVariableArrayType(const VariableArrayType *T);
Douglas Gregor96e578d2010-02-05 17:54:41 +000052 // FIXME: DependentSizedArrayType
53 // FIXME: DependentSizedExtVectorType
John McCall424cec92011-01-19 06:33:43 +000054 QualType VisitVectorType(const VectorType *T);
55 QualType VisitExtVectorType(const ExtVectorType *T);
56 QualType VisitFunctionNoProtoType(const FunctionNoProtoType *T);
57 QualType VisitFunctionProtoType(const FunctionProtoType *T);
Douglas Gregor96e578d2010-02-05 17:54:41 +000058 // FIXME: UnresolvedUsingType
Sean Callananda6df8a2011-08-11 16:56:07 +000059 QualType VisitParenType(const ParenType *T);
John McCall424cec92011-01-19 06:33:43 +000060 QualType VisitTypedefType(const TypedefType *T);
61 QualType VisitTypeOfExprType(const TypeOfExprType *T);
Douglas Gregor96e578d2010-02-05 17:54:41 +000062 // FIXME: DependentTypeOfExprType
John McCall424cec92011-01-19 06:33:43 +000063 QualType VisitTypeOfType(const TypeOfType *T);
64 QualType VisitDecltypeType(const DecltypeType *T);
Alexis Hunte852b102011-05-24 22:41:36 +000065 QualType VisitUnaryTransformType(const UnaryTransformType *T);
Richard Smith30482bc2011-02-20 03:19:35 +000066 QualType VisitAutoType(const AutoType *T);
Douglas Gregor96e578d2010-02-05 17:54:41 +000067 // FIXME: DependentDecltypeType
John McCall424cec92011-01-19 06:33:43 +000068 QualType VisitRecordType(const RecordType *T);
69 QualType VisitEnumType(const EnumType *T);
Sean Callanan72fe0852015-04-02 23:50:08 +000070 QualType VisitAttributedType(const AttributedType *T);
Douglas Gregor96e578d2010-02-05 17:54:41 +000071 // FIXME: TemplateTypeParmType
72 // FIXME: SubstTemplateTypeParmType
John McCall424cec92011-01-19 06:33:43 +000073 QualType VisitTemplateSpecializationType(const TemplateSpecializationType *T);
74 QualType VisitElaboratedType(const ElaboratedType *T);
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +000075 // FIXME: DependentNameType
John McCallc392f372010-06-11 00:33:02 +000076 // FIXME: DependentTemplateSpecializationType
John McCall424cec92011-01-19 06:33:43 +000077 QualType VisitObjCInterfaceType(const ObjCInterfaceType *T);
78 QualType VisitObjCObjectType(const ObjCObjectType *T);
79 QualType VisitObjCObjectPointerType(const ObjCObjectPointerType *T);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +000080
Douglas Gregor95d82832012-01-24 18:36:04 +000081 // Importing declarations
Douglas Gregorbb7930c2010-02-10 19:54:31 +000082 bool ImportDeclParts(NamedDecl *D, DeclContext *&DC,
83 DeclContext *&LexicalDC, DeclarationName &Name,
Sean Callanan59721b32015-04-28 18:41:46 +000084 NamedDecl *&ToD, SourceLocation &Loc);
Craig Topper36250ad2014-05-12 05:36:57 +000085 void ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD = nullptr);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +000086 void ImportDeclarationNameLoc(const DeclarationNameInfo &From,
87 DeclarationNameInfo& To);
Douglas Gregor0a791672011-01-18 03:11:38 +000088 void ImportDeclContext(DeclContext *FromDC, bool ForceImport = false);
Douglas Gregor2e15c842012-02-01 21:00:38 +000089
Douglas Gregor95d82832012-01-24 18:36:04 +000090 /// \brief What we should import from the definition.
91 enum ImportDefinitionKind {
92 /// \brief Import the default subset of the definition, which might be
93 /// nothing (if minimal import is set) or might be everything (if minimal
94 /// import is not set).
95 IDK_Default,
96 /// \brief Import everything.
97 IDK_Everything,
98 /// \brief Import only the bare bones needed to establish a valid
99 /// DeclContext.
100 IDK_Basic
101 };
102
Douglas Gregor2e15c842012-02-01 21:00:38 +0000103 bool shouldForceImportDeclContext(ImportDefinitionKind IDK) {
104 return IDK == IDK_Everything ||
105 (IDK == IDK_Default && !Importer.isMinimalImport());
106 }
107
Douglas Gregord451ea92011-07-29 23:31:30 +0000108 bool ImportDefinition(RecordDecl *From, RecordDecl *To,
Douglas Gregor95d82832012-01-24 18:36:04 +0000109 ImportDefinitionKind Kind = IDK_Default);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000110 bool ImportDefinition(VarDecl *From, VarDecl *To,
111 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregord451ea92011-07-29 23:31:30 +0000112 bool ImportDefinition(EnumDecl *From, EnumDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +0000113 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregor2aa53772012-01-24 17:42:07 +0000114 bool ImportDefinition(ObjCInterfaceDecl *From, ObjCInterfaceDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +0000115 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregor2aa53772012-01-24 17:42:07 +0000116 bool ImportDefinition(ObjCProtocolDecl *From, ObjCProtocolDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +0000117 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregora082a492010-11-30 19:14:50 +0000118 TemplateParameterList *ImportTemplateParameterList(
119 TemplateParameterList *Params);
Douglas Gregore2e50d332010-12-01 01:36:18 +0000120 TemplateArgument ImportTemplateArgument(const TemplateArgument &From);
121 bool ImportTemplateArguments(const TemplateArgument *FromArgs,
122 unsigned NumFromArgs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000123 SmallVectorImpl<TemplateArgument> &ToArgs);
Douglas Gregordd6006f2012-07-17 21:16:27 +0000124 bool IsStructuralMatch(RecordDecl *FromRecord, RecordDecl *ToRecord,
125 bool Complain = true);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000126 bool IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar,
127 bool Complain = true);
Douglas Gregor3996e242010-02-15 22:01:00 +0000128 bool IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToRecord);
Douglas Gregor91155082012-11-14 22:29:20 +0000129 bool IsStructuralMatch(EnumConstantDecl *FromEC, EnumConstantDecl *ToEC);
Douglas Gregora082a492010-11-30 19:14:50 +0000130 bool IsStructuralMatch(ClassTemplateDecl *From, ClassTemplateDecl *To);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000131 bool IsStructuralMatch(VarTemplateDecl *From, VarTemplateDecl *To);
Douglas Gregore4c83e42010-02-09 22:48:33 +0000132 Decl *VisitDecl(Decl *D);
Sean Callanan65198272011-11-17 23:20:56 +0000133 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
Douglas Gregorf18a2c72010-02-21 18:26:36 +0000134 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Richard Smithdda56e42011-04-15 14:24:37 +0000135 Decl *VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias);
Douglas Gregor5fa74c32010-02-10 21:10:29 +0000136 Decl *VisitTypedefDecl(TypedefDecl *D);
Richard Smithdda56e42011-04-15 14:24:37 +0000137 Decl *VisitTypeAliasDecl(TypeAliasDecl *D);
Douglas Gregor98c10182010-02-12 22:17:39 +0000138 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor5c73e912010-02-11 00:48:18 +0000139 Decl *VisitRecordDecl(RecordDecl *D);
Douglas Gregor98c10182010-02-12 22:17:39 +0000140 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
Douglas Gregorbb7930c2010-02-10 19:54:31 +0000141 Decl *VisitFunctionDecl(FunctionDecl *D);
Douglas Gregor00eace12010-02-21 18:29:16 +0000142 Decl *VisitCXXMethodDecl(CXXMethodDecl *D);
143 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
144 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
145 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor5c73e912010-02-11 00:48:18 +0000146 Decl *VisitFieldDecl(FieldDecl *D);
Francois Pichet783dd6e2010-11-21 06:08:52 +0000147 Decl *VisitIndirectFieldDecl(IndirectFieldDecl *D);
Douglas Gregor7244b0b2010-02-17 00:34:30 +0000148 Decl *VisitObjCIvarDecl(ObjCIvarDecl *D);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +0000149 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8b228d72010-02-17 21:22:52 +0000150 Decl *VisitImplicitParamDecl(ImplicitParamDecl *D);
Douglas Gregorbb7930c2010-02-10 19:54:31 +0000151 Decl *VisitParmVarDecl(ParmVarDecl *D);
Douglas Gregor43f54792010-02-17 02:12:47 +0000152 Decl *VisitObjCMethodDecl(ObjCMethodDecl *D);
Douglas Gregor85f3f952015-07-07 03:57:15 +0000153 Decl *VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
Douglas Gregor84c51c32010-02-18 01:47:50 +0000154 Decl *VisitObjCCategoryDecl(ObjCCategoryDecl *D);
Douglas Gregor98d156a2010-02-17 16:12:00 +0000155 Decl *VisitObjCProtocolDecl(ObjCProtocolDecl *D);
Sean Callanan0aae0412014-12-10 00:00:37 +0000156 Decl *VisitLinkageSpecDecl(LinkageSpecDecl *D);
Douglas Gregor85f3f952015-07-07 03:57:15 +0000157
158 ObjCTypeParamList *ImportObjCTypeParamList(ObjCTypeParamList *list);
Douglas Gregor45635322010-02-16 01:20:57 +0000159 Decl *VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
Douglas Gregor4da9d682010-12-07 15:32:12 +0000160 Decl *VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
Douglas Gregorda8025c2010-12-07 01:26:03 +0000161 Decl *VisitObjCImplementationDecl(ObjCImplementationDecl *D);
Douglas Gregora11c4582010-02-17 18:02:10 +0000162 Decl *VisitObjCPropertyDecl(ObjCPropertyDecl *D);
Douglas Gregor14a49e22010-12-07 18:32:03 +0000163 Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
Douglas Gregora082a492010-11-30 19:14:50 +0000164 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
165 Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
166 Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
167 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregore2e50d332010-12-01 01:36:18 +0000168 Decl *VisitClassTemplateSpecializationDecl(
169 ClassTemplateSpecializationDecl *D);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000170 Decl *VisitVarTemplateDecl(VarTemplateDecl *D);
171 Decl *VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D);
172
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000173 // Importing statements
Sean Callanan59721b32015-04-28 18:41:46 +0000174 DeclGroupRef ImportDeclGroup(DeclGroupRef DG);
175
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000176 Stmt *VisitStmt(Stmt *S);
Sean Callanan59721b32015-04-28 18:41:46 +0000177 Stmt *VisitDeclStmt(DeclStmt *S);
178 Stmt *VisitNullStmt(NullStmt *S);
179 Stmt *VisitCompoundStmt(CompoundStmt *S);
180 Stmt *VisitCaseStmt(CaseStmt *S);
181 Stmt *VisitDefaultStmt(DefaultStmt *S);
182 Stmt *VisitLabelStmt(LabelStmt *S);
183 Stmt *VisitAttributedStmt(AttributedStmt *S);
184 Stmt *VisitIfStmt(IfStmt *S);
185 Stmt *VisitSwitchStmt(SwitchStmt *S);
186 Stmt *VisitWhileStmt(WhileStmt *S);
187 Stmt *VisitDoStmt(DoStmt *S);
188 Stmt *VisitForStmt(ForStmt *S);
189 Stmt *VisitGotoStmt(GotoStmt *S);
190 Stmt *VisitIndirectGotoStmt(IndirectGotoStmt *S);
191 Stmt *VisitContinueStmt(ContinueStmt *S);
192 Stmt *VisitBreakStmt(BreakStmt *S);
193 Stmt *VisitReturnStmt(ReturnStmt *S);
194 // FIXME: GCCAsmStmt
195 // FIXME: MSAsmStmt
196 // FIXME: SEHExceptStmt
197 // FIXME: SEHFinallyStmt
198 // FIXME: SEHTryStmt
199 // FIXME: SEHLeaveStmt
200 // FIXME: CapturedStmt
201 Stmt *VisitCXXCatchStmt(CXXCatchStmt *S);
202 Stmt *VisitCXXTryStmt(CXXTryStmt *S);
203 Stmt *VisitCXXForRangeStmt(CXXForRangeStmt *S);
204 // FIXME: MSDependentExistsStmt
205 Stmt *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
206 Stmt *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
207 Stmt *VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S);
208 Stmt *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
209 Stmt *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
210 Stmt *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
211 Stmt *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000212
213 // Importing expressions
214 Expr *VisitExpr(Expr *E);
Douglas Gregor52f820e2010-02-19 01:17:02 +0000215 Expr *VisitDeclRefExpr(DeclRefExpr *E);
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000216 Expr *VisitIntegerLiteral(IntegerLiteral *E);
Douglas Gregor623421d2010-02-18 02:21:22 +0000217 Expr *VisitCharacterLiteral(CharacterLiteral *E);
Douglas Gregorc74247e2010-02-19 01:07:06 +0000218 Expr *VisitParenExpr(ParenExpr *E);
219 Expr *VisitUnaryOperator(UnaryOperator *E);
Peter Collingbournee190dee2011-03-11 19:24:49 +0000220 Expr *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E);
Douglas Gregorc74247e2010-02-19 01:07:06 +0000221 Expr *VisitBinaryOperator(BinaryOperator *E);
222 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
Douglas Gregor98c10182010-02-12 22:17:39 +0000223 Expr *VisitImplicitCastExpr(ImplicitCastExpr *E);
Douglas Gregor5481d322010-02-19 01:32:14 +0000224 Expr *VisitCStyleCastExpr(CStyleCastExpr *E);
Sean Callanan59721b32015-04-28 18:41:46 +0000225 Expr *VisitCXXConstructExpr(CXXConstructExpr *E);
226 Expr *VisitMemberExpr(MemberExpr *E);
227 Expr *VisitCallExpr(CallExpr *E);
Douglas Gregor96e578d2010-02-05 17:54:41 +0000228 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000229}
Douglas Gregor3c2404b2011-11-03 18:07:07 +0000230using namespace clang;
Douglas Gregor96e578d2010-02-05 17:54:41 +0000231
232//----------------------------------------------------------------------------
Douglas Gregor3996e242010-02-15 22:01:00 +0000233// Structural Equivalence
234//----------------------------------------------------------------------------
235
236namespace {
237 struct StructuralEquivalenceContext {
238 /// \brief AST contexts for which we are checking structural equivalence.
239 ASTContext &C1, &C2;
240
Douglas Gregor3996e242010-02-15 22:01:00 +0000241 /// \brief The set of "tentative" equivalences between two canonical
242 /// declarations, mapping from a declaration in the first context to the
243 /// declaration in the second context that we believe to be equivalent.
244 llvm::DenseMap<Decl *, Decl *> TentativeEquivalences;
245
246 /// \brief Queue of declarations in the first context whose equivalence
247 /// with a declaration in the second context still needs to be verified.
248 std::deque<Decl *> DeclsToCheck;
249
Douglas Gregorb4964f72010-02-15 23:54:17 +0000250 /// \brief Declaration (from, to) pairs that are known not to be equivalent
251 /// (which we have already complained about).
252 llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls;
253
Douglas Gregor3996e242010-02-15 22:01:00 +0000254 /// \brief Whether we're being strict about the spelling of types when
255 /// unifying two types.
256 bool StrictTypeSpelling;
Douglas Gregordd6006f2012-07-17 21:16:27 +0000257
258 /// \brief Whether to complain about failures.
259 bool Complain;
260
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000261 /// \brief \c true if the last diagnostic came from C2.
262 bool LastDiagFromC2;
263
Douglas Gregor3996e242010-02-15 22:01:00 +0000264 StructuralEquivalenceContext(ASTContext &C1, ASTContext &C2,
Douglas Gregorb4964f72010-02-15 23:54:17 +0000265 llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls,
Douglas Gregordd6006f2012-07-17 21:16:27 +0000266 bool StrictTypeSpelling = false,
267 bool Complain = true)
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000268 : C1(C1), C2(C2), NonEquivalentDecls(NonEquivalentDecls),
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000269 StrictTypeSpelling(StrictTypeSpelling), Complain(Complain),
270 LastDiagFromC2(false) {}
Douglas Gregor3996e242010-02-15 22:01:00 +0000271
272 /// \brief Determine whether the two declarations are structurally
273 /// equivalent.
274 bool IsStructurallyEquivalent(Decl *D1, Decl *D2);
275
276 /// \brief Determine whether the two types are structurally equivalent.
277 bool IsStructurallyEquivalent(QualType T1, QualType T2);
278
279 private:
280 /// \brief Finish checking all of the structural equivalences.
281 ///
282 /// \returns true if an error occurred, false otherwise.
283 bool Finish();
284
285 public:
286 DiagnosticBuilder Diag1(SourceLocation Loc, unsigned DiagID) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000287 assert(Complain && "Not allowed to complain");
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000288 if (LastDiagFromC2)
289 C1.getDiagnostics().notePriorDiagnosticFrom(C2.getDiagnostics());
290 LastDiagFromC2 = false;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000291 return C1.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3996e242010-02-15 22:01:00 +0000292 }
293
294 DiagnosticBuilder Diag2(SourceLocation Loc, unsigned DiagID) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000295 assert(Complain && "Not allowed to complain");
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000296 if (!LastDiagFromC2)
297 C2.getDiagnostics().notePriorDiagnosticFrom(C1.getDiagnostics());
298 LastDiagFromC2 = true;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000299 return C2.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3996e242010-02-15 22:01:00 +0000300 }
301 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000302}
Douglas Gregor3996e242010-02-15 22:01:00 +0000303
304static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
305 QualType T1, QualType T2);
306static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
307 Decl *D1, Decl *D2);
308
Douglas Gregor3996e242010-02-15 22:01:00 +0000309/// \brief Determine structural equivalence of two expressions.
310static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
311 Expr *E1, Expr *E2) {
312 if (!E1 || !E2)
313 return E1 == E2;
314
315 // FIXME: Actually perform a structural comparison!
316 return true;
317}
318
319/// \brief Determine whether two identifiers are equivalent.
320static bool IsStructurallyEquivalent(const IdentifierInfo *Name1,
321 const IdentifierInfo *Name2) {
322 if (!Name1 || !Name2)
323 return Name1 == Name2;
324
325 return Name1->getName() == Name2->getName();
326}
327
328/// \brief Determine whether two nested-name-specifiers are equivalent.
329static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
330 NestedNameSpecifier *NNS1,
331 NestedNameSpecifier *NNS2) {
332 // FIXME: Implement!
333 return true;
334}
335
336/// \brief Determine whether two template arguments are equivalent.
337static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
338 const TemplateArgument &Arg1,
339 const TemplateArgument &Arg2) {
Douglas Gregore2e50d332010-12-01 01:36:18 +0000340 if (Arg1.getKind() != Arg2.getKind())
341 return false;
342
343 switch (Arg1.getKind()) {
344 case TemplateArgument::Null:
345 return true;
346
347 case TemplateArgument::Type:
348 return Context.IsStructurallyEquivalent(Arg1.getAsType(), Arg2.getAsType());
Eli Friedmanb826a002012-09-26 02:36:12 +0000349
Douglas Gregore2e50d332010-12-01 01:36:18 +0000350 case TemplateArgument::Integral:
351 if (!Context.IsStructurallyEquivalent(Arg1.getIntegralType(),
352 Arg2.getIntegralType()))
353 return false;
354
Eric Christopher6dcc3762012-07-15 00:23:57 +0000355 return llvm::APSInt::isSameValue(Arg1.getAsIntegral(), Arg2.getAsIntegral());
Douglas Gregore2e50d332010-12-01 01:36:18 +0000356
357 case TemplateArgument::Declaration:
358 return Context.IsStructurallyEquivalent(Arg1.getAsDecl(), Arg2.getAsDecl());
Eli Friedmanb826a002012-09-26 02:36:12 +0000359
360 case TemplateArgument::NullPtr:
361 return true; // FIXME: Is this correct?
362
Douglas Gregore2e50d332010-12-01 01:36:18 +0000363 case TemplateArgument::Template:
364 return IsStructurallyEquivalent(Context,
365 Arg1.getAsTemplate(),
366 Arg2.getAsTemplate());
Douglas Gregore4ff4b52011-01-05 18:58:31 +0000367
368 case TemplateArgument::TemplateExpansion:
369 return IsStructurallyEquivalent(Context,
370 Arg1.getAsTemplateOrTemplatePattern(),
371 Arg2.getAsTemplateOrTemplatePattern());
372
Douglas Gregore2e50d332010-12-01 01:36:18 +0000373 case TemplateArgument::Expression:
374 return IsStructurallyEquivalent(Context,
375 Arg1.getAsExpr(), Arg2.getAsExpr());
376
377 case TemplateArgument::Pack:
378 if (Arg1.pack_size() != Arg2.pack_size())
379 return false;
380
381 for (unsigned I = 0, N = Arg1.pack_size(); I != N; ++I)
382 if (!IsStructurallyEquivalent(Context,
383 Arg1.pack_begin()[I],
384 Arg2.pack_begin()[I]))
385 return false;
386
387 return true;
388 }
389
390 llvm_unreachable("Invalid template argument kind");
Douglas Gregor3996e242010-02-15 22:01:00 +0000391}
392
393/// \brief Determine structural equivalence for the common part of array
394/// types.
395static bool IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context,
396 const ArrayType *Array1,
397 const ArrayType *Array2) {
398 if (!IsStructurallyEquivalent(Context,
399 Array1->getElementType(),
400 Array2->getElementType()))
401 return false;
402 if (Array1->getSizeModifier() != Array2->getSizeModifier())
403 return false;
404 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
405 return false;
406
407 return true;
408}
409
410/// \brief Determine structural equivalence of two types.
411static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
412 QualType T1, QualType T2) {
413 if (T1.isNull() || T2.isNull())
414 return T1.isNull() && T2.isNull();
415
416 if (!Context.StrictTypeSpelling) {
417 // We aren't being strict about token-to-token equivalence of types,
418 // so map down to the canonical type.
419 T1 = Context.C1.getCanonicalType(T1);
420 T2 = Context.C2.getCanonicalType(T2);
421 }
422
423 if (T1.getQualifiers() != T2.getQualifiers())
424 return false;
425
Douglas Gregorb4964f72010-02-15 23:54:17 +0000426 Type::TypeClass TC = T1->getTypeClass();
Douglas Gregor3996e242010-02-15 22:01:00 +0000427
Douglas Gregorb4964f72010-02-15 23:54:17 +0000428 if (T1->getTypeClass() != T2->getTypeClass()) {
429 // Compare function types with prototypes vs. without prototypes as if
430 // both did not have prototypes.
431 if (T1->getTypeClass() == Type::FunctionProto &&
432 T2->getTypeClass() == Type::FunctionNoProto)
433 TC = Type::FunctionNoProto;
434 else if (T1->getTypeClass() == Type::FunctionNoProto &&
435 T2->getTypeClass() == Type::FunctionProto)
436 TC = Type::FunctionNoProto;
437 else
438 return false;
439 }
440
441 switch (TC) {
442 case Type::Builtin:
Douglas Gregor3996e242010-02-15 22:01:00 +0000443 // FIXME: Deal with Char_S/Char_U.
444 if (cast<BuiltinType>(T1)->getKind() != cast<BuiltinType>(T2)->getKind())
445 return false;
446 break;
447
448 case Type::Complex:
449 if (!IsStructurallyEquivalent(Context,
450 cast<ComplexType>(T1)->getElementType(),
451 cast<ComplexType>(T2)->getElementType()))
452 return false;
453 break;
454
Reid Kleckner0503a872013-12-05 01:23:43 +0000455 case Type::Adjusted:
Reid Kleckner8a365022013-06-24 17:51:48 +0000456 case Type::Decayed:
457 if (!IsStructurallyEquivalent(Context,
Reid Kleckner0503a872013-12-05 01:23:43 +0000458 cast<AdjustedType>(T1)->getOriginalType(),
459 cast<AdjustedType>(T2)->getOriginalType()))
Reid Kleckner8a365022013-06-24 17:51:48 +0000460 return false;
461 break;
462
Douglas Gregor3996e242010-02-15 22:01:00 +0000463 case Type::Pointer:
464 if (!IsStructurallyEquivalent(Context,
465 cast<PointerType>(T1)->getPointeeType(),
466 cast<PointerType>(T2)->getPointeeType()))
467 return false;
468 break;
469
470 case Type::BlockPointer:
471 if (!IsStructurallyEquivalent(Context,
472 cast<BlockPointerType>(T1)->getPointeeType(),
473 cast<BlockPointerType>(T2)->getPointeeType()))
474 return false;
475 break;
476
477 case Type::LValueReference:
478 case Type::RValueReference: {
479 const ReferenceType *Ref1 = cast<ReferenceType>(T1);
480 const ReferenceType *Ref2 = cast<ReferenceType>(T2);
481 if (Ref1->isSpelledAsLValue() != Ref2->isSpelledAsLValue())
482 return false;
483 if (Ref1->isInnerRef() != Ref2->isInnerRef())
484 return false;
485 if (!IsStructurallyEquivalent(Context,
486 Ref1->getPointeeTypeAsWritten(),
487 Ref2->getPointeeTypeAsWritten()))
488 return false;
489 break;
490 }
491
492 case Type::MemberPointer: {
493 const MemberPointerType *MemPtr1 = cast<MemberPointerType>(T1);
494 const MemberPointerType *MemPtr2 = cast<MemberPointerType>(T2);
495 if (!IsStructurallyEquivalent(Context,
496 MemPtr1->getPointeeType(),
497 MemPtr2->getPointeeType()))
498 return false;
499 if (!IsStructurallyEquivalent(Context,
500 QualType(MemPtr1->getClass(), 0),
501 QualType(MemPtr2->getClass(), 0)))
502 return false;
503 break;
504 }
505
506 case Type::ConstantArray: {
507 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1);
508 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2);
Eric Christopher6dcc3762012-07-15 00:23:57 +0000509 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000510 return false;
511
512 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
513 return false;
514 break;
515 }
516
517 case Type::IncompleteArray:
518 if (!IsArrayStructurallyEquivalent(Context,
519 cast<ArrayType>(T1),
520 cast<ArrayType>(T2)))
521 return false;
522 break;
523
524 case Type::VariableArray: {
525 const VariableArrayType *Array1 = cast<VariableArrayType>(T1);
526 const VariableArrayType *Array2 = cast<VariableArrayType>(T2);
527 if (!IsStructurallyEquivalent(Context,
528 Array1->getSizeExpr(), Array2->getSizeExpr()))
529 return false;
530
531 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
532 return false;
533
534 break;
535 }
536
537 case Type::DependentSizedArray: {
538 const DependentSizedArrayType *Array1 = cast<DependentSizedArrayType>(T1);
539 const DependentSizedArrayType *Array2 = cast<DependentSizedArrayType>(T2);
540 if (!IsStructurallyEquivalent(Context,
541 Array1->getSizeExpr(), Array2->getSizeExpr()))
542 return false;
543
544 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
545 return false;
546
547 break;
548 }
549
550 case Type::DependentSizedExtVector: {
551 const DependentSizedExtVectorType *Vec1
552 = cast<DependentSizedExtVectorType>(T1);
553 const DependentSizedExtVectorType *Vec2
554 = cast<DependentSizedExtVectorType>(T2);
555 if (!IsStructurallyEquivalent(Context,
556 Vec1->getSizeExpr(), Vec2->getSizeExpr()))
557 return false;
558 if (!IsStructurallyEquivalent(Context,
559 Vec1->getElementType(),
560 Vec2->getElementType()))
561 return false;
562 break;
563 }
564
565 case Type::Vector:
566 case Type::ExtVector: {
567 const VectorType *Vec1 = cast<VectorType>(T1);
568 const VectorType *Vec2 = cast<VectorType>(T2);
569 if (!IsStructurallyEquivalent(Context,
570 Vec1->getElementType(),
571 Vec2->getElementType()))
572 return false;
573 if (Vec1->getNumElements() != Vec2->getNumElements())
574 return false;
Bob Wilsonaeb56442010-11-10 21:56:12 +0000575 if (Vec1->getVectorKind() != Vec2->getVectorKind())
Douglas Gregor3996e242010-02-15 22:01:00 +0000576 return false;
Douglas Gregor01cc4372010-02-19 01:36:36 +0000577 break;
Douglas Gregor3996e242010-02-15 22:01:00 +0000578 }
579
580 case Type::FunctionProto: {
581 const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1);
582 const FunctionProtoType *Proto2 = cast<FunctionProtoType>(T2);
Alp Toker9cacbab2014-01-20 20:26:09 +0000583 if (Proto1->getNumParams() != Proto2->getNumParams())
Douglas Gregor3996e242010-02-15 22:01:00 +0000584 return false;
Alp Toker9cacbab2014-01-20 20:26:09 +0000585 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
586 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
587 Proto2->getParamType(I)))
Douglas Gregor3996e242010-02-15 22:01:00 +0000588 return false;
589 }
590 if (Proto1->isVariadic() != Proto2->isVariadic())
591 return false;
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000592 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
Douglas Gregor3996e242010-02-15 22:01:00 +0000593 return false;
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000594 if (Proto1->getExceptionSpecType() == EST_Dynamic) {
595 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
596 return false;
597 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
598 if (!IsStructurallyEquivalent(Context,
599 Proto1->getExceptionType(I),
600 Proto2->getExceptionType(I)))
601 return false;
602 }
603 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) {
Douglas Gregor3996e242010-02-15 22:01:00 +0000604 if (!IsStructurallyEquivalent(Context,
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000605 Proto1->getNoexceptExpr(),
606 Proto2->getNoexceptExpr()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000607 return false;
608 }
609 if (Proto1->getTypeQuals() != Proto2->getTypeQuals())
610 return false;
611
612 // Fall through to check the bits common with FunctionNoProtoType.
613 }
614
615 case Type::FunctionNoProto: {
616 const FunctionType *Function1 = cast<FunctionType>(T1);
617 const FunctionType *Function2 = cast<FunctionType>(T2);
Alp Toker314cc812014-01-25 16:55:45 +0000618 if (!IsStructurallyEquivalent(Context, Function1->getReturnType(),
619 Function2->getReturnType()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000620 return false;
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000621 if (Function1->getExtInfo() != Function2->getExtInfo())
622 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000623 break;
624 }
625
626 case Type::UnresolvedUsing:
627 if (!IsStructurallyEquivalent(Context,
628 cast<UnresolvedUsingType>(T1)->getDecl(),
629 cast<UnresolvedUsingType>(T2)->getDecl()))
630 return false;
631
632 break;
John McCall81904512011-01-06 01:58:22 +0000633
634 case Type::Attributed:
635 if (!IsStructurallyEquivalent(Context,
636 cast<AttributedType>(T1)->getModifiedType(),
637 cast<AttributedType>(T2)->getModifiedType()))
638 return false;
639 if (!IsStructurallyEquivalent(Context,
640 cast<AttributedType>(T1)->getEquivalentType(),
641 cast<AttributedType>(T2)->getEquivalentType()))
642 return false;
643 break;
Douglas Gregor3996e242010-02-15 22:01:00 +0000644
Abramo Bagnara924a8f32010-12-10 16:29:40 +0000645 case Type::Paren:
646 if (!IsStructurallyEquivalent(Context,
647 cast<ParenType>(T1)->getInnerType(),
648 cast<ParenType>(T2)->getInnerType()))
649 return false;
650 break;
651
Douglas Gregor3996e242010-02-15 22:01:00 +0000652 case Type::Typedef:
653 if (!IsStructurallyEquivalent(Context,
654 cast<TypedefType>(T1)->getDecl(),
655 cast<TypedefType>(T2)->getDecl()))
656 return false;
657 break;
658
659 case Type::TypeOfExpr:
660 if (!IsStructurallyEquivalent(Context,
661 cast<TypeOfExprType>(T1)->getUnderlyingExpr(),
662 cast<TypeOfExprType>(T2)->getUnderlyingExpr()))
663 return false;
664 break;
665
666 case Type::TypeOf:
667 if (!IsStructurallyEquivalent(Context,
668 cast<TypeOfType>(T1)->getUnderlyingType(),
669 cast<TypeOfType>(T2)->getUnderlyingType()))
670 return false;
671 break;
Alexis Hunte852b102011-05-24 22:41:36 +0000672
673 case Type::UnaryTransform:
674 if (!IsStructurallyEquivalent(Context,
675 cast<UnaryTransformType>(T1)->getUnderlyingType(),
676 cast<UnaryTransformType>(T1)->getUnderlyingType()))
677 return false;
678 break;
679
Douglas Gregor3996e242010-02-15 22:01:00 +0000680 case Type::Decltype:
681 if (!IsStructurallyEquivalent(Context,
682 cast<DecltypeType>(T1)->getUnderlyingExpr(),
683 cast<DecltypeType>(T2)->getUnderlyingExpr()))
684 return false;
685 break;
686
Richard Smith30482bc2011-02-20 03:19:35 +0000687 case Type::Auto:
688 if (!IsStructurallyEquivalent(Context,
689 cast<AutoType>(T1)->getDeducedType(),
690 cast<AutoType>(T2)->getDeducedType()))
691 return false;
692 break;
693
Douglas Gregor3996e242010-02-15 22:01:00 +0000694 case Type::Record:
695 case Type::Enum:
696 if (!IsStructurallyEquivalent(Context,
697 cast<TagType>(T1)->getDecl(),
698 cast<TagType>(T2)->getDecl()))
699 return false;
700 break;
Abramo Bagnara6150c882010-05-11 21:36:43 +0000701
Douglas Gregor3996e242010-02-15 22:01:00 +0000702 case Type::TemplateTypeParm: {
703 const TemplateTypeParmType *Parm1 = cast<TemplateTypeParmType>(T1);
704 const TemplateTypeParmType *Parm2 = cast<TemplateTypeParmType>(T2);
705 if (Parm1->getDepth() != Parm2->getDepth())
706 return false;
707 if (Parm1->getIndex() != Parm2->getIndex())
708 return false;
709 if (Parm1->isParameterPack() != Parm2->isParameterPack())
710 return false;
711
712 // Names of template type parameters are never significant.
713 break;
714 }
715
716 case Type::SubstTemplateTypeParm: {
717 const SubstTemplateTypeParmType *Subst1
718 = cast<SubstTemplateTypeParmType>(T1);
719 const SubstTemplateTypeParmType *Subst2
720 = cast<SubstTemplateTypeParmType>(T2);
721 if (!IsStructurallyEquivalent(Context,
722 QualType(Subst1->getReplacedParameter(), 0),
723 QualType(Subst2->getReplacedParameter(), 0)))
724 return false;
725 if (!IsStructurallyEquivalent(Context,
726 Subst1->getReplacementType(),
727 Subst2->getReplacementType()))
728 return false;
729 break;
730 }
731
Douglas Gregorfb322d82011-01-14 05:11:40 +0000732 case Type::SubstTemplateTypeParmPack: {
733 const SubstTemplateTypeParmPackType *Subst1
734 = cast<SubstTemplateTypeParmPackType>(T1);
735 const SubstTemplateTypeParmPackType *Subst2
736 = cast<SubstTemplateTypeParmPackType>(T2);
737 if (!IsStructurallyEquivalent(Context,
738 QualType(Subst1->getReplacedParameter(), 0),
739 QualType(Subst2->getReplacedParameter(), 0)))
740 return false;
741 if (!IsStructurallyEquivalent(Context,
742 Subst1->getArgumentPack(),
743 Subst2->getArgumentPack()))
744 return false;
745 break;
746 }
Douglas Gregor3996e242010-02-15 22:01:00 +0000747 case Type::TemplateSpecialization: {
748 const TemplateSpecializationType *Spec1
749 = cast<TemplateSpecializationType>(T1);
750 const TemplateSpecializationType *Spec2
751 = cast<TemplateSpecializationType>(T2);
752 if (!IsStructurallyEquivalent(Context,
753 Spec1->getTemplateName(),
754 Spec2->getTemplateName()))
755 return false;
756 if (Spec1->getNumArgs() != Spec2->getNumArgs())
757 return false;
758 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
759 if (!IsStructurallyEquivalent(Context,
760 Spec1->getArg(I), Spec2->getArg(I)))
761 return false;
762 }
763 break;
764 }
765
Abramo Bagnara6150c882010-05-11 21:36:43 +0000766 case Type::Elaborated: {
767 const ElaboratedType *Elab1 = cast<ElaboratedType>(T1);
768 const ElaboratedType *Elab2 = cast<ElaboratedType>(T2);
769 // CHECKME: what if a keyword is ETK_None or ETK_typename ?
770 if (Elab1->getKeyword() != Elab2->getKeyword())
771 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000772 if (!IsStructurallyEquivalent(Context,
Abramo Bagnara6150c882010-05-11 21:36:43 +0000773 Elab1->getQualifier(),
774 Elab2->getQualifier()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000775 return false;
776 if (!IsStructurallyEquivalent(Context,
Abramo Bagnara6150c882010-05-11 21:36:43 +0000777 Elab1->getNamedType(),
778 Elab2->getNamedType()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000779 return false;
780 break;
781 }
782
John McCalle78aac42010-03-10 03:28:59 +0000783 case Type::InjectedClassName: {
784 const InjectedClassNameType *Inj1 = cast<InjectedClassNameType>(T1);
785 const InjectedClassNameType *Inj2 = cast<InjectedClassNameType>(T2);
786 if (!IsStructurallyEquivalent(Context,
John McCall2408e322010-04-27 00:57:59 +0000787 Inj1->getInjectedSpecializationType(),
788 Inj2->getInjectedSpecializationType()))
John McCalle78aac42010-03-10 03:28:59 +0000789 return false;
790 break;
791 }
792
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +0000793 case Type::DependentName: {
794 const DependentNameType *Typename1 = cast<DependentNameType>(T1);
795 const DependentNameType *Typename2 = cast<DependentNameType>(T2);
Douglas Gregor3996e242010-02-15 22:01:00 +0000796 if (!IsStructurallyEquivalent(Context,
797 Typename1->getQualifier(),
798 Typename2->getQualifier()))
799 return false;
800 if (!IsStructurallyEquivalent(Typename1->getIdentifier(),
801 Typename2->getIdentifier()))
802 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000803
804 break;
805 }
806
John McCallc392f372010-06-11 00:33:02 +0000807 case Type::DependentTemplateSpecialization: {
808 const DependentTemplateSpecializationType *Spec1 =
809 cast<DependentTemplateSpecializationType>(T1);
810 const DependentTemplateSpecializationType *Spec2 =
811 cast<DependentTemplateSpecializationType>(T2);
812 if (!IsStructurallyEquivalent(Context,
813 Spec1->getQualifier(),
814 Spec2->getQualifier()))
815 return false;
816 if (!IsStructurallyEquivalent(Spec1->getIdentifier(),
817 Spec2->getIdentifier()))
818 return false;
819 if (Spec1->getNumArgs() != Spec2->getNumArgs())
820 return false;
821 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
822 if (!IsStructurallyEquivalent(Context,
823 Spec1->getArg(I), Spec2->getArg(I)))
824 return false;
825 }
826 break;
827 }
Douglas Gregord2fa7662010-12-20 02:24:11 +0000828
829 case Type::PackExpansion:
830 if (!IsStructurallyEquivalent(Context,
831 cast<PackExpansionType>(T1)->getPattern(),
832 cast<PackExpansionType>(T2)->getPattern()))
833 return false;
834 break;
835
Douglas Gregor3996e242010-02-15 22:01:00 +0000836 case Type::ObjCInterface: {
837 const ObjCInterfaceType *Iface1 = cast<ObjCInterfaceType>(T1);
838 const ObjCInterfaceType *Iface2 = cast<ObjCInterfaceType>(T2);
839 if (!IsStructurallyEquivalent(Context,
840 Iface1->getDecl(), Iface2->getDecl()))
841 return false;
John McCall8b07ec22010-05-15 11:32:37 +0000842 break;
843 }
844
845 case Type::ObjCObject: {
846 const ObjCObjectType *Obj1 = cast<ObjCObjectType>(T1);
847 const ObjCObjectType *Obj2 = cast<ObjCObjectType>(T2);
848 if (!IsStructurallyEquivalent(Context,
849 Obj1->getBaseType(),
850 Obj2->getBaseType()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000851 return false;
John McCall8b07ec22010-05-15 11:32:37 +0000852 if (Obj1->getNumProtocols() != Obj2->getNumProtocols())
853 return false;
854 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) {
Douglas Gregor3996e242010-02-15 22:01:00 +0000855 if (!IsStructurallyEquivalent(Context,
John McCall8b07ec22010-05-15 11:32:37 +0000856 Obj1->getProtocol(I),
857 Obj2->getProtocol(I)))
Douglas Gregor3996e242010-02-15 22:01:00 +0000858 return false;
859 }
860 break;
861 }
862
863 case Type::ObjCObjectPointer: {
864 const ObjCObjectPointerType *Ptr1 = cast<ObjCObjectPointerType>(T1);
865 const ObjCObjectPointerType *Ptr2 = cast<ObjCObjectPointerType>(T2);
866 if (!IsStructurallyEquivalent(Context,
867 Ptr1->getPointeeType(),
868 Ptr2->getPointeeType()))
869 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000870 break;
871 }
Eli Friedman0dfb8892011-10-06 23:00:33 +0000872
873 case Type::Atomic: {
874 if (!IsStructurallyEquivalent(Context,
875 cast<AtomicType>(T1)->getValueType(),
876 cast<AtomicType>(T2)->getValueType()))
877 return false;
878 break;
879 }
880
Douglas Gregor3996e242010-02-15 22:01:00 +0000881 } // end switch
882
883 return true;
884}
885
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000886/// \brief Determine structural equivalence of two fields.
887static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
888 FieldDecl *Field1, FieldDecl *Field2) {
889 RecordDecl *Owner2 = cast<RecordDecl>(Field2->getDeclContext());
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000890
891 // For anonymous structs/unions, match up the anonymous struct/union type
892 // declarations directly, so that we don't go off searching for anonymous
893 // types
894 if (Field1->isAnonymousStructOrUnion() &&
895 Field2->isAnonymousStructOrUnion()) {
896 RecordDecl *D1 = Field1->getType()->castAs<RecordType>()->getDecl();
897 RecordDecl *D2 = Field2->getType()->castAs<RecordType>()->getDecl();
898 return IsStructurallyEquivalent(Context, D1, D2);
899 }
Sean Callanan969c5bd2013-04-26 22:49:25 +0000900
901 // Check for equivalent field names.
902 IdentifierInfo *Name1 = Field1->getIdentifier();
903 IdentifierInfo *Name2 = Field2->getIdentifier();
904 if (!::IsStructurallyEquivalent(Name1, Name2))
905 return false;
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000906
907 if (!IsStructurallyEquivalent(Context,
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000908 Field1->getType(), Field2->getType())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000909 if (Context.Complain) {
910 Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
911 << Context.C2.getTypeDeclType(Owner2);
912 Context.Diag2(Field2->getLocation(), diag::note_odr_field)
913 << Field2->getDeclName() << Field2->getType();
914 Context.Diag1(Field1->getLocation(), diag::note_odr_field)
915 << Field1->getDeclName() << Field1->getType();
916 }
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000917 return false;
918 }
919
920 if (Field1->isBitField() != Field2->isBitField()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000921 if (Context.Complain) {
922 Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
923 << Context.C2.getTypeDeclType(Owner2);
924 if (Field1->isBitField()) {
925 Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
926 << Field1->getDeclName() << Field1->getType()
927 << Field1->getBitWidthValue(Context.C1);
928 Context.Diag2(Field2->getLocation(), diag::note_odr_not_bit_field)
929 << Field2->getDeclName();
930 } else {
931 Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
932 << Field2->getDeclName() << Field2->getType()
933 << Field2->getBitWidthValue(Context.C2);
934 Context.Diag1(Field1->getLocation(), diag::note_odr_not_bit_field)
935 << Field1->getDeclName();
936 }
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000937 }
938 return false;
939 }
940
941 if (Field1->isBitField()) {
942 // Make sure that the bit-fields are the same length.
943 unsigned Bits1 = Field1->getBitWidthValue(Context.C1);
944 unsigned Bits2 = Field2->getBitWidthValue(Context.C2);
945
946 if (Bits1 != Bits2) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000947 if (Context.Complain) {
948 Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
949 << Context.C2.getTypeDeclType(Owner2);
950 Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
951 << Field2->getDeclName() << Field2->getType() << Bits2;
952 Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
953 << Field1->getDeclName() << Field1->getType() << Bits1;
954 }
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000955 return false;
956 }
957 }
958
959 return true;
960}
961
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000962/// \brief Find the index of the given anonymous struct/union within its
963/// context.
964///
965/// \returns Returns the index of this anonymous struct/union in its context,
966/// including the next assigned index (if none of them match). Returns an
967/// empty option if the context is not a record, i.e.. if the anonymous
968/// struct/union is at namespace or block scope.
David Blaikie05785d12013-02-20 22:23:23 +0000969static Optional<unsigned> findAnonymousStructOrUnionIndex(RecordDecl *Anon) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000970 ASTContext &Context = Anon->getASTContext();
971 QualType AnonTy = Context.getRecordType(Anon);
972
973 RecordDecl *Owner = dyn_cast<RecordDecl>(Anon->getDeclContext());
974 if (!Owner)
David Blaikie7a30dc52013-02-21 01:47:18 +0000975 return None;
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000976
977 unsigned Index = 0;
Aaron Ballman629afae2014-03-07 19:56:05 +0000978 for (const auto *D : Owner->noload_decls()) {
979 const auto *F = dyn_cast<FieldDecl>(D);
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000980 if (!F || !F->isAnonymousStructOrUnion())
981 continue;
982
983 if (Context.hasSameType(F->getType(), AnonTy))
984 break;
985
986 ++Index;
987 }
988
989 return Index;
990}
991
Douglas Gregor3996e242010-02-15 22:01:00 +0000992/// \brief Determine structural equivalence of two records.
993static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
994 RecordDecl *D1, RecordDecl *D2) {
995 if (D1->isUnion() != D2->isUnion()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000996 if (Context.Complain) {
997 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
998 << Context.C2.getTypeDeclType(D2);
999 Context.Diag1(D1->getLocation(), diag::note_odr_tag_kind_here)
1000 << D1->getDeclName() << (unsigned)D1->getTagKind();
1001 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001002 return false;
1003 }
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001004
1005 if (D1->isAnonymousStructOrUnion() && D2->isAnonymousStructOrUnion()) {
1006 // If both anonymous structs/unions are in a record context, make sure
1007 // they occur in the same location in the context records.
David Blaikie05785d12013-02-20 22:23:23 +00001008 if (Optional<unsigned> Index1 = findAnonymousStructOrUnionIndex(D1)) {
1009 if (Optional<unsigned> Index2 = findAnonymousStructOrUnionIndex(D2)) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001010 if (*Index1 != *Index2)
1011 return false;
1012 }
1013 }
1014 }
1015
Douglas Gregore2e50d332010-12-01 01:36:18 +00001016 // If both declarations are class template specializations, we know
1017 // the ODR applies, so check the template and template arguments.
1018 ClassTemplateSpecializationDecl *Spec1
1019 = dyn_cast<ClassTemplateSpecializationDecl>(D1);
1020 ClassTemplateSpecializationDecl *Spec2
1021 = dyn_cast<ClassTemplateSpecializationDecl>(D2);
1022 if (Spec1 && Spec2) {
1023 // Check that the specialized templates are the same.
1024 if (!IsStructurallyEquivalent(Context, Spec1->getSpecializedTemplate(),
1025 Spec2->getSpecializedTemplate()))
1026 return false;
1027
1028 // Check that the template arguments are the same.
1029 if (Spec1->getTemplateArgs().size() != Spec2->getTemplateArgs().size())
1030 return false;
1031
1032 for (unsigned I = 0, N = Spec1->getTemplateArgs().size(); I != N; ++I)
1033 if (!IsStructurallyEquivalent(Context,
1034 Spec1->getTemplateArgs().get(I),
1035 Spec2->getTemplateArgs().get(I)))
1036 return false;
1037 }
1038 // If one is a class template specialization and the other is not, these
Chris Lattner57540c52011-04-15 05:22:18 +00001039 // structures are different.
Douglas Gregore2e50d332010-12-01 01:36:18 +00001040 else if (Spec1 || Spec2)
1041 return false;
1042
Douglas Gregorb4964f72010-02-15 23:54:17 +00001043 // Compare the definitions of these two records. If either or both are
1044 // incomplete, we assume that they are equivalent.
1045 D1 = D1->getDefinition();
1046 D2 = D2->getDefinition();
1047 if (!D1 || !D2)
1048 return true;
1049
Douglas Gregor3996e242010-02-15 22:01:00 +00001050 if (CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(D1)) {
1051 if (CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(D2)) {
1052 if (D1CXX->getNumBases() != D2CXX->getNumBases()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001053 if (Context.Complain) {
1054 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1055 << Context.C2.getTypeDeclType(D2);
1056 Context.Diag2(D2->getLocation(), diag::note_odr_number_of_bases)
1057 << D2CXX->getNumBases();
1058 Context.Diag1(D1->getLocation(), diag::note_odr_number_of_bases)
1059 << D1CXX->getNumBases();
1060 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001061 return false;
1062 }
1063
1064 // Check the base classes.
1065 for (CXXRecordDecl::base_class_iterator Base1 = D1CXX->bases_begin(),
1066 BaseEnd1 = D1CXX->bases_end(),
1067 Base2 = D2CXX->bases_begin();
1068 Base1 != BaseEnd1;
1069 ++Base1, ++Base2) {
1070 if (!IsStructurallyEquivalent(Context,
1071 Base1->getType(), Base2->getType())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001072 if (Context.Complain) {
1073 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1074 << Context.C2.getTypeDeclType(D2);
1075 Context.Diag2(Base2->getLocStart(), diag::note_odr_base)
1076 << Base2->getType()
1077 << Base2->getSourceRange();
1078 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1079 << Base1->getType()
1080 << Base1->getSourceRange();
1081 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001082 return false;
1083 }
1084
1085 // Check virtual vs. non-virtual inheritance mismatch.
1086 if (Base1->isVirtual() != Base2->isVirtual()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001087 if (Context.Complain) {
1088 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1089 << Context.C2.getTypeDeclType(D2);
1090 Context.Diag2(Base2->getLocStart(),
1091 diag::note_odr_virtual_base)
1092 << Base2->isVirtual() << Base2->getSourceRange();
1093 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1094 << Base1->isVirtual()
1095 << Base1->getSourceRange();
1096 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001097 return false;
1098 }
1099 }
1100 } else if (D1CXX->getNumBases() > 0) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001101 if (Context.Complain) {
1102 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1103 << Context.C2.getTypeDeclType(D2);
1104 const CXXBaseSpecifier *Base1 = D1CXX->bases_begin();
1105 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1106 << Base1->getType()
1107 << Base1->getSourceRange();
1108 Context.Diag2(D2->getLocation(), diag::note_odr_missing_base);
1109 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001110 return false;
1111 }
1112 }
1113
1114 // Check the fields for consistency.
Dmitri Gribenko898cff02012-05-19 17:17:26 +00001115 RecordDecl::field_iterator Field2 = D2->field_begin(),
Douglas Gregor3996e242010-02-15 22:01:00 +00001116 Field2End = D2->field_end();
Dmitri Gribenko898cff02012-05-19 17:17:26 +00001117 for (RecordDecl::field_iterator Field1 = D1->field_begin(),
Douglas Gregor3996e242010-02-15 22:01:00 +00001118 Field1End = D1->field_end();
1119 Field1 != Field1End;
1120 ++Field1, ++Field2) {
1121 if (Field2 == Field2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001122 if (Context.Complain) {
1123 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1124 << Context.C2.getTypeDeclType(D2);
1125 Context.Diag1(Field1->getLocation(), diag::note_odr_field)
1126 << Field1->getDeclName() << Field1->getType();
1127 Context.Diag2(D2->getLocation(), diag::note_odr_missing_field);
1128 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001129 return false;
1130 }
1131
David Blaikie40ed2972012-06-06 20:45:41 +00001132 if (!IsStructurallyEquivalent(Context, *Field1, *Field2))
Douglas Gregor03d1ed32011-10-14 21:54:42 +00001133 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001134 }
1135
1136 if (Field2 != Field2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001137 if (Context.Complain) {
1138 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1139 << Context.C2.getTypeDeclType(D2);
1140 Context.Diag2(Field2->getLocation(), diag::note_odr_field)
1141 << Field2->getDeclName() << Field2->getType();
1142 Context.Diag1(D1->getLocation(), diag::note_odr_missing_field);
1143 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001144 return false;
1145 }
1146
1147 return true;
1148}
1149
1150/// \brief Determine structural equivalence of two enums.
1151static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1152 EnumDecl *D1, EnumDecl *D2) {
1153 EnumDecl::enumerator_iterator EC2 = D2->enumerator_begin(),
1154 EC2End = D2->enumerator_end();
1155 for (EnumDecl::enumerator_iterator EC1 = D1->enumerator_begin(),
1156 EC1End = D1->enumerator_end();
1157 EC1 != EC1End; ++EC1, ++EC2) {
1158 if (EC2 == EC2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001159 if (Context.Complain) {
1160 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1161 << Context.C2.getTypeDeclType(D2);
1162 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
1163 << EC1->getDeclName()
1164 << EC1->getInitVal().toString(10);
1165 Context.Diag2(D2->getLocation(), diag::note_odr_missing_enumerator);
1166 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001167 return false;
1168 }
1169
1170 llvm::APSInt Val1 = EC1->getInitVal();
1171 llvm::APSInt Val2 = EC2->getInitVal();
Eric Christopher6dcc3762012-07-15 00:23:57 +00001172 if (!llvm::APSInt::isSameValue(Val1, Val2) ||
Douglas Gregor3996e242010-02-15 22:01:00 +00001173 !IsStructurallyEquivalent(EC1->getIdentifier(), EC2->getIdentifier())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001174 if (Context.Complain) {
1175 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1176 << Context.C2.getTypeDeclType(D2);
1177 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
1178 << EC2->getDeclName()
1179 << EC2->getInitVal().toString(10);
1180 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
1181 << EC1->getDeclName()
1182 << EC1->getInitVal().toString(10);
1183 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001184 return false;
1185 }
1186 }
1187
1188 if (EC2 != EC2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001189 if (Context.Complain) {
1190 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1191 << Context.C2.getTypeDeclType(D2);
1192 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
1193 << EC2->getDeclName()
1194 << EC2->getInitVal().toString(10);
1195 Context.Diag1(D1->getLocation(), diag::note_odr_missing_enumerator);
1196 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001197 return false;
1198 }
1199
1200 return true;
1201}
Douglas Gregora082a492010-11-30 19:14:50 +00001202
1203static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1204 TemplateParameterList *Params1,
1205 TemplateParameterList *Params2) {
1206 if (Params1->size() != Params2->size()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001207 if (Context.Complain) {
1208 Context.Diag2(Params2->getTemplateLoc(),
1209 diag::err_odr_different_num_template_parameters)
1210 << Params1->size() << Params2->size();
1211 Context.Diag1(Params1->getTemplateLoc(),
1212 diag::note_odr_template_parameter_list);
1213 }
Douglas Gregora082a492010-11-30 19:14:50 +00001214 return false;
1215 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001216
Douglas Gregora082a492010-11-30 19:14:50 +00001217 for (unsigned I = 0, N = Params1->size(); I != N; ++I) {
1218 if (Params1->getParam(I)->getKind() != Params2->getParam(I)->getKind()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001219 if (Context.Complain) {
1220 Context.Diag2(Params2->getParam(I)->getLocation(),
1221 diag::err_odr_different_template_parameter_kind);
1222 Context.Diag1(Params1->getParam(I)->getLocation(),
1223 diag::note_odr_template_parameter_here);
1224 }
Douglas Gregora082a492010-11-30 19:14:50 +00001225 return false;
1226 }
1227
1228 if (!Context.IsStructurallyEquivalent(Params1->getParam(I),
1229 Params2->getParam(I))) {
1230
1231 return false;
1232 }
1233 }
1234
1235 return true;
1236}
1237
1238static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1239 TemplateTypeParmDecl *D1,
1240 TemplateTypeParmDecl *D2) {
1241 if (D1->isParameterPack() != D2->isParameterPack()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001242 if (Context.Complain) {
1243 Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1244 << D2->isParameterPack();
1245 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1246 << D1->isParameterPack();
1247 }
Douglas Gregora082a492010-11-30 19:14:50 +00001248 return false;
1249 }
1250
1251 return true;
1252}
1253
1254static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1255 NonTypeTemplateParmDecl *D1,
1256 NonTypeTemplateParmDecl *D2) {
Douglas Gregora082a492010-11-30 19:14:50 +00001257 if (D1->isParameterPack() != D2->isParameterPack()) {
Douglas Gregor3c7380b2012-10-26 15:36:15 +00001258 if (Context.Complain) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001259 Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1260 << D2->isParameterPack();
1261 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1262 << D1->isParameterPack();
1263 }
Douglas Gregora082a492010-11-30 19:14:50 +00001264 return false;
1265 }
Douglas Gregora082a492010-11-30 19:14:50 +00001266
1267 // Check types.
1268 if (!Context.IsStructurallyEquivalent(D1->getType(), D2->getType())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001269 if (Context.Complain) {
1270 Context.Diag2(D2->getLocation(),
1271 diag::err_odr_non_type_parameter_type_inconsistent)
1272 << D2->getType() << D1->getType();
1273 Context.Diag1(D1->getLocation(), diag::note_odr_value_here)
1274 << D1->getType();
1275 }
Douglas Gregora082a492010-11-30 19:14:50 +00001276 return false;
1277 }
1278
1279 return true;
1280}
1281
1282static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1283 TemplateTemplateParmDecl *D1,
1284 TemplateTemplateParmDecl *D2) {
Douglas Gregora082a492010-11-30 19:14:50 +00001285 if (D1->isParameterPack() != D2->isParameterPack()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001286 if (Context.Complain) {
1287 Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1288 << D2->isParameterPack();
1289 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1290 << D1->isParameterPack();
1291 }
Douglas Gregora082a492010-11-30 19:14:50 +00001292 return false;
1293 }
Douglas Gregor3c7380b2012-10-26 15:36:15 +00001294
Douglas Gregora082a492010-11-30 19:14:50 +00001295 // Check template parameter lists.
1296 return IsStructurallyEquivalent(Context, D1->getTemplateParameters(),
1297 D2->getTemplateParameters());
1298}
1299
1300static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1301 ClassTemplateDecl *D1,
1302 ClassTemplateDecl *D2) {
1303 // Check template parameters.
1304 if (!IsStructurallyEquivalent(Context,
1305 D1->getTemplateParameters(),
1306 D2->getTemplateParameters()))
1307 return false;
1308
1309 // Check the templated declaration.
1310 return Context.IsStructurallyEquivalent(D1->getTemplatedDecl(),
1311 D2->getTemplatedDecl());
1312}
1313
Douglas Gregor3996e242010-02-15 22:01:00 +00001314/// \brief Determine structural equivalence of two declarations.
1315static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1316 Decl *D1, Decl *D2) {
1317 // FIXME: Check for known structural equivalences via a callback of some sort.
1318
Douglas Gregorb4964f72010-02-15 23:54:17 +00001319 // Check whether we already know that these two declarations are not
1320 // structurally equivalent.
1321 if (Context.NonEquivalentDecls.count(std::make_pair(D1->getCanonicalDecl(),
1322 D2->getCanonicalDecl())))
1323 return false;
1324
Douglas Gregor3996e242010-02-15 22:01:00 +00001325 // Determine whether we've already produced a tentative equivalence for D1.
1326 Decl *&EquivToD1 = Context.TentativeEquivalences[D1->getCanonicalDecl()];
1327 if (EquivToD1)
1328 return EquivToD1 == D2->getCanonicalDecl();
1329
1330 // Produce a tentative equivalence D1 <-> D2, which will be checked later.
1331 EquivToD1 = D2->getCanonicalDecl();
1332 Context.DeclsToCheck.push_back(D1->getCanonicalDecl());
1333 return true;
1334}
1335
1336bool StructuralEquivalenceContext::IsStructurallyEquivalent(Decl *D1,
1337 Decl *D2) {
1338 if (!::IsStructurallyEquivalent(*this, D1, D2))
1339 return false;
1340
1341 return !Finish();
1342}
1343
1344bool StructuralEquivalenceContext::IsStructurallyEquivalent(QualType T1,
1345 QualType T2) {
1346 if (!::IsStructurallyEquivalent(*this, T1, T2))
1347 return false;
1348
1349 return !Finish();
1350}
1351
1352bool StructuralEquivalenceContext::Finish() {
1353 while (!DeclsToCheck.empty()) {
1354 // Check the next declaration.
1355 Decl *D1 = DeclsToCheck.front();
1356 DeclsToCheck.pop_front();
1357
1358 Decl *D2 = TentativeEquivalences[D1];
1359 assert(D2 && "Unrecorded tentative equivalence?");
1360
Douglas Gregorb4964f72010-02-15 23:54:17 +00001361 bool Equivalent = true;
1362
Douglas Gregor3996e242010-02-15 22:01:00 +00001363 // FIXME: Switch on all declaration kinds. For now, we're just going to
1364 // check the obvious ones.
1365 if (RecordDecl *Record1 = dyn_cast<RecordDecl>(D1)) {
1366 if (RecordDecl *Record2 = dyn_cast<RecordDecl>(D2)) {
1367 // Check for equivalent structure names.
1368 IdentifierInfo *Name1 = Record1->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001369 if (!Name1 && Record1->getTypedefNameForAnonDecl())
1370 Name1 = Record1->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregor3996e242010-02-15 22:01:00 +00001371 IdentifierInfo *Name2 = Record2->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001372 if (!Name2 && Record2->getTypedefNameForAnonDecl())
1373 Name2 = Record2->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregorb4964f72010-02-15 23:54:17 +00001374 if (!::IsStructurallyEquivalent(Name1, Name2) ||
1375 !::IsStructurallyEquivalent(*this, Record1, Record2))
1376 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001377 } else {
1378 // Record/non-record mismatch.
Douglas Gregorb4964f72010-02-15 23:54:17 +00001379 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001380 }
Douglas Gregorb4964f72010-02-15 23:54:17 +00001381 } else if (EnumDecl *Enum1 = dyn_cast<EnumDecl>(D1)) {
Douglas Gregor3996e242010-02-15 22:01:00 +00001382 if (EnumDecl *Enum2 = dyn_cast<EnumDecl>(D2)) {
1383 // Check for equivalent enum names.
1384 IdentifierInfo *Name1 = Enum1->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001385 if (!Name1 && Enum1->getTypedefNameForAnonDecl())
1386 Name1 = Enum1->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregor3996e242010-02-15 22:01:00 +00001387 IdentifierInfo *Name2 = Enum2->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001388 if (!Name2 && Enum2->getTypedefNameForAnonDecl())
1389 Name2 = Enum2->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregorb4964f72010-02-15 23:54:17 +00001390 if (!::IsStructurallyEquivalent(Name1, Name2) ||
1391 !::IsStructurallyEquivalent(*this, Enum1, Enum2))
1392 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001393 } else {
1394 // Enum/non-enum mismatch
Douglas Gregorb4964f72010-02-15 23:54:17 +00001395 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001396 }
Richard Smithdda56e42011-04-15 14:24:37 +00001397 } else if (TypedefNameDecl *Typedef1 = dyn_cast<TypedefNameDecl>(D1)) {
1398 if (TypedefNameDecl *Typedef2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor3996e242010-02-15 22:01:00 +00001399 if (!::IsStructurallyEquivalent(Typedef1->getIdentifier(),
Douglas Gregorb4964f72010-02-15 23:54:17 +00001400 Typedef2->getIdentifier()) ||
1401 !::IsStructurallyEquivalent(*this,
Douglas Gregor3996e242010-02-15 22:01:00 +00001402 Typedef1->getUnderlyingType(),
1403 Typedef2->getUnderlyingType()))
Douglas Gregorb4964f72010-02-15 23:54:17 +00001404 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001405 } else {
1406 // Typedef/non-typedef mismatch.
Douglas Gregorb4964f72010-02-15 23:54:17 +00001407 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001408 }
Douglas Gregora082a492010-11-30 19:14:50 +00001409 } else if (ClassTemplateDecl *ClassTemplate1
1410 = dyn_cast<ClassTemplateDecl>(D1)) {
1411 if (ClassTemplateDecl *ClassTemplate2 = dyn_cast<ClassTemplateDecl>(D2)) {
1412 if (!::IsStructurallyEquivalent(ClassTemplate1->getIdentifier(),
1413 ClassTemplate2->getIdentifier()) ||
1414 !::IsStructurallyEquivalent(*this, ClassTemplate1, ClassTemplate2))
1415 Equivalent = false;
1416 } else {
1417 // Class template/non-class-template mismatch.
1418 Equivalent = false;
1419 }
1420 } else if (TemplateTypeParmDecl *TTP1= dyn_cast<TemplateTypeParmDecl>(D1)) {
1421 if (TemplateTypeParmDecl *TTP2 = dyn_cast<TemplateTypeParmDecl>(D2)) {
1422 if (!::IsStructurallyEquivalent(*this, TTP1, TTP2))
1423 Equivalent = false;
1424 } else {
1425 // Kind mismatch.
1426 Equivalent = false;
1427 }
1428 } else if (NonTypeTemplateParmDecl *NTTP1
1429 = dyn_cast<NonTypeTemplateParmDecl>(D1)) {
1430 if (NonTypeTemplateParmDecl *NTTP2
1431 = dyn_cast<NonTypeTemplateParmDecl>(D2)) {
1432 if (!::IsStructurallyEquivalent(*this, NTTP1, NTTP2))
1433 Equivalent = false;
1434 } else {
1435 // Kind mismatch.
1436 Equivalent = false;
1437 }
1438 } else if (TemplateTemplateParmDecl *TTP1
1439 = dyn_cast<TemplateTemplateParmDecl>(D1)) {
1440 if (TemplateTemplateParmDecl *TTP2
1441 = dyn_cast<TemplateTemplateParmDecl>(D2)) {
1442 if (!::IsStructurallyEquivalent(*this, TTP1, TTP2))
1443 Equivalent = false;
1444 } else {
1445 // Kind mismatch.
1446 Equivalent = false;
1447 }
1448 }
1449
Douglas Gregorb4964f72010-02-15 23:54:17 +00001450 if (!Equivalent) {
1451 // Note that these two declarations are not equivalent (and we already
1452 // know about it).
1453 NonEquivalentDecls.insert(std::make_pair(D1->getCanonicalDecl(),
1454 D2->getCanonicalDecl()));
1455 return true;
1456 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001457 // FIXME: Check other declaration kinds!
1458 }
1459
1460 return false;
1461}
1462
1463//----------------------------------------------------------------------------
Douglas Gregor96e578d2010-02-05 17:54:41 +00001464// Import Types
1465//----------------------------------------------------------------------------
1466
John McCall424cec92011-01-19 06:33:43 +00001467QualType ASTNodeImporter::VisitType(const Type *T) {
Douglas Gregore4c83e42010-02-09 22:48:33 +00001468 Importer.FromDiag(SourceLocation(), diag::err_unsupported_ast_node)
1469 << T->getTypeClassName();
1470 return QualType();
1471}
1472
John McCall424cec92011-01-19 06:33:43 +00001473QualType ASTNodeImporter::VisitBuiltinType(const BuiltinType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001474 switch (T->getKind()) {
John McCalle314e272011-10-18 21:02:43 +00001475#define SHARED_SINGLETON_TYPE(Expansion)
1476#define BUILTIN_TYPE(Id, SingletonId) \
1477 case BuiltinType::Id: return Importer.getToContext().SingletonId;
1478#include "clang/AST/BuiltinTypes.def"
1479
1480 // FIXME: for Char16, Char32, and NullPtr, make sure that the "to"
1481 // context supports C++.
1482
1483 // FIXME: for ObjCId, ObjCClass, and ObjCSel, make sure that the "to"
1484 // context supports ObjC.
1485
Douglas Gregor96e578d2010-02-05 17:54:41 +00001486 case BuiltinType::Char_U:
1487 // The context we're importing from has an unsigned 'char'. If we're
1488 // importing into a context with a signed 'char', translate to
1489 // 'unsigned char' instead.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001490 if (Importer.getToContext().getLangOpts().CharIsSigned)
Douglas Gregor96e578d2010-02-05 17:54:41 +00001491 return Importer.getToContext().UnsignedCharTy;
1492
1493 return Importer.getToContext().CharTy;
1494
Douglas Gregor96e578d2010-02-05 17:54:41 +00001495 case BuiltinType::Char_S:
1496 // The context we're importing from has an unsigned 'char'. If we're
1497 // importing into a context with a signed 'char', translate to
1498 // 'unsigned char' instead.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001499 if (!Importer.getToContext().getLangOpts().CharIsSigned)
Douglas Gregor96e578d2010-02-05 17:54:41 +00001500 return Importer.getToContext().SignedCharTy;
1501
1502 return Importer.getToContext().CharTy;
1503
Chris Lattnerad3467e2010-12-25 23:25:43 +00001504 case BuiltinType::WChar_S:
1505 case BuiltinType::WChar_U:
Douglas Gregor96e578d2010-02-05 17:54:41 +00001506 // FIXME: If not in C++, shall we translate to the C equivalent of
1507 // wchar_t?
1508 return Importer.getToContext().WCharTy;
Douglas Gregor96e578d2010-02-05 17:54:41 +00001509 }
David Blaikiee4d798f2012-01-20 21:50:17 +00001510
1511 llvm_unreachable("Invalid BuiltinType Kind!");
Douglas Gregor96e578d2010-02-05 17:54:41 +00001512}
1513
John McCall424cec92011-01-19 06:33:43 +00001514QualType ASTNodeImporter::VisitComplexType(const ComplexType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001515 QualType ToElementType = Importer.Import(T->getElementType());
1516 if (ToElementType.isNull())
1517 return QualType();
1518
1519 return Importer.getToContext().getComplexType(ToElementType);
1520}
1521
John McCall424cec92011-01-19 06:33:43 +00001522QualType ASTNodeImporter::VisitPointerType(const PointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001523 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1524 if (ToPointeeType.isNull())
1525 return QualType();
1526
1527 return Importer.getToContext().getPointerType(ToPointeeType);
1528}
1529
John McCall424cec92011-01-19 06:33:43 +00001530QualType ASTNodeImporter::VisitBlockPointerType(const BlockPointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001531 // FIXME: Check for blocks support in "to" context.
1532 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1533 if (ToPointeeType.isNull())
1534 return QualType();
1535
1536 return Importer.getToContext().getBlockPointerType(ToPointeeType);
1537}
1538
John McCall424cec92011-01-19 06:33:43 +00001539QualType
1540ASTNodeImporter::VisitLValueReferenceType(const LValueReferenceType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001541 // FIXME: Check for C++ support in "to" context.
1542 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1543 if (ToPointeeType.isNull())
1544 return QualType();
1545
1546 return Importer.getToContext().getLValueReferenceType(ToPointeeType);
1547}
1548
John McCall424cec92011-01-19 06:33:43 +00001549QualType
1550ASTNodeImporter::VisitRValueReferenceType(const RValueReferenceType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001551 // FIXME: Check for C++0x support in "to" context.
1552 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1553 if (ToPointeeType.isNull())
1554 return QualType();
1555
1556 return Importer.getToContext().getRValueReferenceType(ToPointeeType);
1557}
1558
John McCall424cec92011-01-19 06:33:43 +00001559QualType ASTNodeImporter::VisitMemberPointerType(const MemberPointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001560 // FIXME: Check for C++ support in "to" context.
1561 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1562 if (ToPointeeType.isNull())
1563 return QualType();
1564
1565 QualType ClassType = Importer.Import(QualType(T->getClass(), 0));
1566 return Importer.getToContext().getMemberPointerType(ToPointeeType,
1567 ClassType.getTypePtr());
1568}
1569
John McCall424cec92011-01-19 06:33:43 +00001570QualType ASTNodeImporter::VisitConstantArrayType(const ConstantArrayType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001571 QualType ToElementType = Importer.Import(T->getElementType());
1572 if (ToElementType.isNull())
1573 return QualType();
1574
1575 return Importer.getToContext().getConstantArrayType(ToElementType,
1576 T->getSize(),
1577 T->getSizeModifier(),
1578 T->getIndexTypeCVRQualifiers());
1579}
1580
John McCall424cec92011-01-19 06:33:43 +00001581QualType
1582ASTNodeImporter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001583 QualType ToElementType = Importer.Import(T->getElementType());
1584 if (ToElementType.isNull())
1585 return QualType();
1586
1587 return Importer.getToContext().getIncompleteArrayType(ToElementType,
1588 T->getSizeModifier(),
1589 T->getIndexTypeCVRQualifiers());
1590}
1591
John McCall424cec92011-01-19 06:33:43 +00001592QualType ASTNodeImporter::VisitVariableArrayType(const VariableArrayType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001593 QualType ToElementType = Importer.Import(T->getElementType());
1594 if (ToElementType.isNull())
1595 return QualType();
1596
1597 Expr *Size = Importer.Import(T->getSizeExpr());
1598 if (!Size)
1599 return QualType();
1600
1601 SourceRange Brackets = Importer.Import(T->getBracketsRange());
1602 return Importer.getToContext().getVariableArrayType(ToElementType, Size,
1603 T->getSizeModifier(),
1604 T->getIndexTypeCVRQualifiers(),
1605 Brackets);
1606}
1607
John McCall424cec92011-01-19 06:33:43 +00001608QualType ASTNodeImporter::VisitVectorType(const VectorType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001609 QualType ToElementType = Importer.Import(T->getElementType());
1610 if (ToElementType.isNull())
1611 return QualType();
1612
1613 return Importer.getToContext().getVectorType(ToElementType,
1614 T->getNumElements(),
Bob Wilsonaeb56442010-11-10 21:56:12 +00001615 T->getVectorKind());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001616}
1617
John McCall424cec92011-01-19 06:33:43 +00001618QualType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001619 QualType ToElementType = Importer.Import(T->getElementType());
1620 if (ToElementType.isNull())
1621 return QualType();
1622
1623 return Importer.getToContext().getExtVectorType(ToElementType,
1624 T->getNumElements());
1625}
1626
John McCall424cec92011-01-19 06:33:43 +00001627QualType
1628ASTNodeImporter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001629 // FIXME: What happens if we're importing a function without a prototype
1630 // into C++? Should we make it variadic?
Alp Toker314cc812014-01-25 16:55:45 +00001631 QualType ToResultType = Importer.Import(T->getReturnType());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001632 if (ToResultType.isNull())
1633 return QualType();
Rafael Espindolac50c27c2010-03-30 20:24:48 +00001634
Douglas Gregor96e578d2010-02-05 17:54:41 +00001635 return Importer.getToContext().getFunctionNoProtoType(ToResultType,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00001636 T->getExtInfo());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001637}
1638
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00001639QualType ASTNodeImporter::VisitFunctionProtoType(const FunctionProtoType *T) {
Alp Toker314cc812014-01-25 16:55:45 +00001640 QualType ToResultType = Importer.Import(T->getReturnType());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001641 if (ToResultType.isNull())
1642 return QualType();
1643
1644 // Import argument types
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001645 SmallVector<QualType, 4> ArgTypes;
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00001646 for (const auto &A : T->param_types()) {
1647 QualType ArgType = Importer.Import(A);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001648 if (ArgType.isNull())
1649 return QualType();
1650 ArgTypes.push_back(ArgType);
1651 }
1652
1653 // Import exception types
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001654 SmallVector<QualType, 4> ExceptionTypes;
Aaron Ballmanb088fbe2014-03-17 15:38:09 +00001655 for (const auto &E : T->exceptions()) {
1656 QualType ExceptionType = Importer.Import(E);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001657 if (ExceptionType.isNull())
1658 return QualType();
1659 ExceptionTypes.push_back(ExceptionType);
1660 }
John McCalldb40c7f2010-12-14 08:05:40 +00001661
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00001662 FunctionProtoType::ExtProtoInfo FromEPI = T->getExtProtoInfo();
1663 FunctionProtoType::ExtProtoInfo ToEPI;
1664
1665 ToEPI.ExtInfo = FromEPI.ExtInfo;
1666 ToEPI.Variadic = FromEPI.Variadic;
1667 ToEPI.HasTrailingReturn = FromEPI.HasTrailingReturn;
1668 ToEPI.TypeQuals = FromEPI.TypeQuals;
1669 ToEPI.RefQualifier = FromEPI.RefQualifier;
Richard Smith8acb4282014-07-31 21:57:55 +00001670 ToEPI.ExceptionSpec.Type = FromEPI.ExceptionSpec.Type;
1671 ToEPI.ExceptionSpec.Exceptions = ExceptionTypes;
1672 ToEPI.ExceptionSpec.NoexceptExpr =
1673 Importer.Import(FromEPI.ExceptionSpec.NoexceptExpr);
1674 ToEPI.ExceptionSpec.SourceDecl = cast_or_null<FunctionDecl>(
1675 Importer.Import(FromEPI.ExceptionSpec.SourceDecl));
1676 ToEPI.ExceptionSpec.SourceTemplate = cast_or_null<FunctionDecl>(
1677 Importer.Import(FromEPI.ExceptionSpec.SourceTemplate));
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00001678
Jordan Rose5c382722013-03-08 21:51:21 +00001679 return Importer.getToContext().getFunctionType(ToResultType, ArgTypes, ToEPI);
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00001680}
1681
Sean Callananda6df8a2011-08-11 16:56:07 +00001682QualType ASTNodeImporter::VisitParenType(const ParenType *T) {
1683 QualType ToInnerType = Importer.Import(T->getInnerType());
1684 if (ToInnerType.isNull())
1685 return QualType();
1686
1687 return Importer.getToContext().getParenType(ToInnerType);
1688}
1689
John McCall424cec92011-01-19 06:33:43 +00001690QualType ASTNodeImporter::VisitTypedefType(const TypedefType *T) {
Richard Smithdda56e42011-04-15 14:24:37 +00001691 TypedefNameDecl *ToDecl
1692 = dyn_cast_or_null<TypedefNameDecl>(Importer.Import(T->getDecl()));
Douglas Gregor96e578d2010-02-05 17:54:41 +00001693 if (!ToDecl)
1694 return QualType();
1695
1696 return Importer.getToContext().getTypeDeclType(ToDecl);
1697}
1698
John McCall424cec92011-01-19 06:33:43 +00001699QualType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001700 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1701 if (!ToExpr)
1702 return QualType();
1703
1704 return Importer.getToContext().getTypeOfExprType(ToExpr);
1705}
1706
John McCall424cec92011-01-19 06:33:43 +00001707QualType ASTNodeImporter::VisitTypeOfType(const TypeOfType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001708 QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType());
1709 if (ToUnderlyingType.isNull())
1710 return QualType();
1711
1712 return Importer.getToContext().getTypeOfType(ToUnderlyingType);
1713}
1714
John McCall424cec92011-01-19 06:33:43 +00001715QualType ASTNodeImporter::VisitDecltypeType(const DecltypeType *T) {
Richard Smith30482bc2011-02-20 03:19:35 +00001716 // FIXME: Make sure that the "to" context supports C++0x!
Douglas Gregor96e578d2010-02-05 17:54:41 +00001717 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1718 if (!ToExpr)
1719 return QualType();
1720
Douglas Gregor81495f32012-02-12 18:42:33 +00001721 QualType UnderlyingType = Importer.Import(T->getUnderlyingType());
1722 if (UnderlyingType.isNull())
1723 return QualType();
1724
1725 return Importer.getToContext().getDecltypeType(ToExpr, UnderlyingType);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001726}
1727
Alexis Hunte852b102011-05-24 22:41:36 +00001728QualType ASTNodeImporter::VisitUnaryTransformType(const UnaryTransformType *T) {
1729 QualType ToBaseType = Importer.Import(T->getBaseType());
1730 QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType());
1731 if (ToBaseType.isNull() || ToUnderlyingType.isNull())
1732 return QualType();
1733
1734 return Importer.getToContext().getUnaryTransformType(ToBaseType,
1735 ToUnderlyingType,
1736 T->getUTTKind());
1737}
1738
Richard Smith30482bc2011-02-20 03:19:35 +00001739QualType ASTNodeImporter::VisitAutoType(const AutoType *T) {
Richard Smith74aeef52013-04-26 16:15:35 +00001740 // FIXME: Make sure that the "to" context supports C++11!
Richard Smith30482bc2011-02-20 03:19:35 +00001741 QualType FromDeduced = T->getDeducedType();
1742 QualType ToDeduced;
1743 if (!FromDeduced.isNull()) {
1744 ToDeduced = Importer.Import(FromDeduced);
1745 if (ToDeduced.isNull())
1746 return QualType();
1747 }
1748
Faisal Vali2b391ab2013-09-26 19:54:12 +00001749 return Importer.getToContext().getAutoType(ToDeduced, T->isDecltypeAuto(),
1750 /*IsDependent*/false);
Richard Smith30482bc2011-02-20 03:19:35 +00001751}
1752
John McCall424cec92011-01-19 06:33:43 +00001753QualType ASTNodeImporter::VisitRecordType(const RecordType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001754 RecordDecl *ToDecl
1755 = dyn_cast_or_null<RecordDecl>(Importer.Import(T->getDecl()));
1756 if (!ToDecl)
1757 return QualType();
1758
1759 return Importer.getToContext().getTagDeclType(ToDecl);
1760}
1761
John McCall424cec92011-01-19 06:33:43 +00001762QualType ASTNodeImporter::VisitEnumType(const EnumType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001763 EnumDecl *ToDecl
1764 = dyn_cast_or_null<EnumDecl>(Importer.Import(T->getDecl()));
1765 if (!ToDecl)
1766 return QualType();
1767
1768 return Importer.getToContext().getTagDeclType(ToDecl);
1769}
1770
Sean Callanan72fe0852015-04-02 23:50:08 +00001771QualType ASTNodeImporter::VisitAttributedType(const AttributedType *T) {
1772 QualType FromModifiedType = T->getModifiedType();
1773 QualType FromEquivalentType = T->getEquivalentType();
1774 QualType ToModifiedType;
1775 QualType ToEquivalentType;
1776
1777 if (!FromModifiedType.isNull()) {
1778 ToModifiedType = Importer.Import(FromModifiedType);
1779 if (ToModifiedType.isNull())
1780 return QualType();
1781 }
1782 if (!FromEquivalentType.isNull()) {
1783 ToEquivalentType = Importer.Import(FromEquivalentType);
1784 if (ToEquivalentType.isNull())
1785 return QualType();
1786 }
1787
1788 return Importer.getToContext().getAttributedType(T->getAttrKind(),
1789 ToModifiedType, ToEquivalentType);
1790}
1791
Douglas Gregore2e50d332010-12-01 01:36:18 +00001792QualType ASTNodeImporter::VisitTemplateSpecializationType(
John McCall424cec92011-01-19 06:33:43 +00001793 const TemplateSpecializationType *T) {
Douglas Gregore2e50d332010-12-01 01:36:18 +00001794 TemplateName ToTemplate = Importer.Import(T->getTemplateName());
1795 if (ToTemplate.isNull())
1796 return QualType();
1797
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001798 SmallVector<TemplateArgument, 2> ToTemplateArgs;
Douglas Gregore2e50d332010-12-01 01:36:18 +00001799 if (ImportTemplateArguments(T->getArgs(), T->getNumArgs(), ToTemplateArgs))
1800 return QualType();
1801
1802 QualType ToCanonType;
1803 if (!QualType(T, 0).isCanonical()) {
1804 QualType FromCanonType
1805 = Importer.getFromContext().getCanonicalType(QualType(T, 0));
1806 ToCanonType =Importer.Import(FromCanonType);
1807 if (ToCanonType.isNull())
1808 return QualType();
1809 }
1810 return Importer.getToContext().getTemplateSpecializationType(ToTemplate,
1811 ToTemplateArgs.data(),
1812 ToTemplateArgs.size(),
1813 ToCanonType);
1814}
1815
John McCall424cec92011-01-19 06:33:43 +00001816QualType ASTNodeImporter::VisitElaboratedType(const ElaboratedType *T) {
Craig Topper36250ad2014-05-12 05:36:57 +00001817 NestedNameSpecifier *ToQualifier = nullptr;
Abramo Bagnara6150c882010-05-11 21:36:43 +00001818 // Note: the qualifier in an ElaboratedType is optional.
1819 if (T->getQualifier()) {
1820 ToQualifier = Importer.Import(T->getQualifier());
1821 if (!ToQualifier)
1822 return QualType();
1823 }
Douglas Gregor96e578d2010-02-05 17:54:41 +00001824
1825 QualType ToNamedType = Importer.Import(T->getNamedType());
1826 if (ToNamedType.isNull())
1827 return QualType();
1828
Abramo Bagnara6150c882010-05-11 21:36:43 +00001829 return Importer.getToContext().getElaboratedType(T->getKeyword(),
1830 ToQualifier, ToNamedType);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001831}
1832
John McCall424cec92011-01-19 06:33:43 +00001833QualType ASTNodeImporter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001834 ObjCInterfaceDecl *Class
1835 = dyn_cast_or_null<ObjCInterfaceDecl>(Importer.Import(T->getDecl()));
1836 if (!Class)
1837 return QualType();
1838
John McCall8b07ec22010-05-15 11:32:37 +00001839 return Importer.getToContext().getObjCInterfaceType(Class);
1840}
1841
John McCall424cec92011-01-19 06:33:43 +00001842QualType ASTNodeImporter::VisitObjCObjectType(const ObjCObjectType *T) {
John McCall8b07ec22010-05-15 11:32:37 +00001843 QualType ToBaseType = Importer.Import(T->getBaseType());
1844 if (ToBaseType.isNull())
1845 return QualType();
1846
Douglas Gregore9d95f12015-07-07 03:57:35 +00001847 SmallVector<QualType, 4> TypeArgs;
Douglas Gregore83b9562015-07-07 03:57:53 +00001848 for (auto TypeArg : T->getTypeArgsAsWritten()) {
Douglas Gregore9d95f12015-07-07 03:57:35 +00001849 QualType ImportedTypeArg = Importer.Import(TypeArg);
1850 if (ImportedTypeArg.isNull())
1851 return QualType();
1852
1853 TypeArgs.push_back(ImportedTypeArg);
1854 }
1855
1856
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001857 SmallVector<ObjCProtocolDecl *, 4> Protocols;
Aaron Ballman1683f7b2014-03-17 15:55:30 +00001858 for (auto *P : T->quals()) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001859 ObjCProtocolDecl *Protocol
Aaron Ballman1683f7b2014-03-17 15:55:30 +00001860 = dyn_cast_or_null<ObjCProtocolDecl>(Importer.Import(P));
Douglas Gregor96e578d2010-02-05 17:54:41 +00001861 if (!Protocol)
1862 return QualType();
1863 Protocols.push_back(Protocol);
1864 }
1865
Douglas Gregore9d95f12015-07-07 03:57:35 +00001866 return Importer.getToContext().getObjCObjectType(ToBaseType, TypeArgs,
1867 Protocols);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001868}
1869
John McCall424cec92011-01-19 06:33:43 +00001870QualType
1871ASTNodeImporter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001872 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1873 if (ToPointeeType.isNull())
1874 return QualType();
1875
John McCall8b07ec22010-05-15 11:32:37 +00001876 return Importer.getToContext().getObjCObjectPointerType(ToPointeeType);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001877}
1878
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00001879//----------------------------------------------------------------------------
1880// Import Declarations
1881//----------------------------------------------------------------------------
Douglas Gregorbb7930c2010-02-10 19:54:31 +00001882bool ASTNodeImporter::ImportDeclParts(NamedDecl *D, DeclContext *&DC,
1883 DeclContext *&LexicalDC,
1884 DeclarationName &Name,
Sean Callanan59721b32015-04-28 18:41:46 +00001885 NamedDecl *&ToD,
Douglas Gregorbb7930c2010-02-10 19:54:31 +00001886 SourceLocation &Loc) {
1887 // Import the context of this declaration.
1888 DC = Importer.ImportContext(D->getDeclContext());
1889 if (!DC)
1890 return true;
1891
1892 LexicalDC = DC;
1893 if (D->getDeclContext() != D->getLexicalDeclContext()) {
1894 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
1895 if (!LexicalDC)
1896 return true;
1897 }
1898
1899 // Import the name of this declaration.
1900 Name = Importer.Import(D->getDeclName());
1901 if (D->getDeclName() && !Name)
1902 return true;
1903
1904 // Import the location of this declaration.
1905 Loc = Importer.Import(D->getLocation());
Sean Callanan59721b32015-04-28 18:41:46 +00001906 ToD = cast_or_null<NamedDecl>(Importer.GetAlreadyImportedOrNull(D));
Douglas Gregorbb7930c2010-02-10 19:54:31 +00001907 return false;
1908}
1909
Douglas Gregord451ea92011-07-29 23:31:30 +00001910void ASTNodeImporter::ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD) {
1911 if (!FromD)
1912 return;
1913
1914 if (!ToD) {
1915 ToD = Importer.Import(FromD);
1916 if (!ToD)
1917 return;
1918 }
1919
1920 if (RecordDecl *FromRecord = dyn_cast<RecordDecl>(FromD)) {
1921 if (RecordDecl *ToRecord = cast_or_null<RecordDecl>(ToD)) {
Sean Callanan19dfc932013-01-11 23:17:47 +00001922 if (FromRecord->getDefinition() && FromRecord->isCompleteDefinition() && !ToRecord->getDefinition()) {
Douglas Gregord451ea92011-07-29 23:31:30 +00001923 ImportDefinition(FromRecord, ToRecord);
1924 }
1925 }
1926 return;
1927 }
1928
1929 if (EnumDecl *FromEnum = dyn_cast<EnumDecl>(FromD)) {
1930 if (EnumDecl *ToEnum = cast_or_null<EnumDecl>(ToD)) {
1931 if (FromEnum->getDefinition() && !ToEnum->getDefinition()) {
1932 ImportDefinition(FromEnum, ToEnum);
1933 }
1934 }
1935 return;
1936 }
1937}
1938
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001939void
1940ASTNodeImporter::ImportDeclarationNameLoc(const DeclarationNameInfo &From,
1941 DeclarationNameInfo& To) {
1942 // NOTE: To.Name and To.Loc are already imported.
1943 // We only have to import To.LocInfo.
1944 switch (To.getName().getNameKind()) {
1945 case DeclarationName::Identifier:
1946 case DeclarationName::ObjCZeroArgSelector:
1947 case DeclarationName::ObjCOneArgSelector:
1948 case DeclarationName::ObjCMultiArgSelector:
1949 case DeclarationName::CXXUsingDirective:
1950 return;
1951
1952 case DeclarationName::CXXOperatorName: {
1953 SourceRange Range = From.getCXXOperatorNameRange();
1954 To.setCXXOperatorNameRange(Importer.Import(Range));
1955 return;
1956 }
1957 case DeclarationName::CXXLiteralOperatorName: {
1958 SourceLocation Loc = From.getCXXLiteralOperatorNameLoc();
1959 To.setCXXLiteralOperatorNameLoc(Importer.Import(Loc));
1960 return;
1961 }
1962 case DeclarationName::CXXConstructorName:
1963 case DeclarationName::CXXDestructorName:
1964 case DeclarationName::CXXConversionFunctionName: {
1965 TypeSourceInfo *FromTInfo = From.getNamedTypeInfo();
1966 To.setNamedTypeInfo(Importer.Import(FromTInfo));
1967 return;
1968 }
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001969 }
Douglas Gregor07216d12011-11-02 20:52:01 +00001970 llvm_unreachable("Unknown name kind.");
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001971}
1972
Douglas Gregor2e15c842012-02-01 21:00:38 +00001973void ASTNodeImporter::ImportDeclContext(DeclContext *FromDC, bool ForceImport) {
Douglas Gregor0a791672011-01-18 03:11:38 +00001974 if (Importer.isMinimalImport() && !ForceImport) {
Sean Callanan81d577c2011-07-22 23:46:03 +00001975 Importer.ImportContext(FromDC);
Douglas Gregor0a791672011-01-18 03:11:38 +00001976 return;
1977 }
1978
Aaron Ballman629afae2014-03-07 19:56:05 +00001979 for (auto *From : FromDC->decls())
1980 Importer.Import(From);
Douglas Gregor968d6332010-02-21 18:24:45 +00001981}
1982
Douglas Gregord451ea92011-07-29 23:31:30 +00001983bool ASTNodeImporter::ImportDefinition(RecordDecl *From, RecordDecl *To,
Douglas Gregor95d82832012-01-24 18:36:04 +00001984 ImportDefinitionKind Kind) {
1985 if (To->getDefinition() || To->isBeingDefined()) {
1986 if (Kind == IDK_Everything)
1987 ImportDeclContext(From, /*ForceImport=*/true);
1988
Douglas Gregore2e50d332010-12-01 01:36:18 +00001989 return false;
Douglas Gregor95d82832012-01-24 18:36:04 +00001990 }
Douglas Gregore2e50d332010-12-01 01:36:18 +00001991
1992 To->startDefinition();
1993
1994 // Add base classes.
1995 if (CXXRecordDecl *ToCXX = dyn_cast<CXXRecordDecl>(To)) {
1996 CXXRecordDecl *FromCXX = cast<CXXRecordDecl>(From);
Douglas Gregor3c2404b2011-11-03 18:07:07 +00001997
1998 struct CXXRecordDecl::DefinitionData &ToData = ToCXX->data();
1999 struct CXXRecordDecl::DefinitionData &FromData = FromCXX->data();
2000 ToData.UserDeclaredConstructor = FromData.UserDeclaredConstructor;
Richard Smith328aae52012-11-30 05:11:39 +00002001 ToData.UserDeclaredSpecialMembers = FromData.UserDeclaredSpecialMembers;
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002002 ToData.Aggregate = FromData.Aggregate;
2003 ToData.PlainOldData = FromData.PlainOldData;
2004 ToData.Empty = FromData.Empty;
2005 ToData.Polymorphic = FromData.Polymorphic;
2006 ToData.Abstract = FromData.Abstract;
2007 ToData.IsStandardLayout = FromData.IsStandardLayout;
2008 ToData.HasNoNonEmptyBases = FromData.HasNoNonEmptyBases;
2009 ToData.HasPrivateFields = FromData.HasPrivateFields;
2010 ToData.HasProtectedFields = FromData.HasProtectedFields;
2011 ToData.HasPublicFields = FromData.HasPublicFields;
2012 ToData.HasMutableFields = FromData.HasMutableFields;
Richard Smithab44d5b2013-12-10 08:25:00 +00002013 ToData.HasVariantMembers = FromData.HasVariantMembers;
Richard Smith561fb152012-02-25 07:33:38 +00002014 ToData.HasOnlyCMembers = FromData.HasOnlyCMembers;
Richard Smithe2648ba2012-05-07 01:07:30 +00002015 ToData.HasInClassInitializer = FromData.HasInClassInitializer;
Richard Smith593f9932012-12-08 02:01:17 +00002016 ToData.HasUninitializedReferenceMember
2017 = FromData.HasUninitializedReferenceMember;
Richard Smith6b02d462012-12-08 08:32:28 +00002018 ToData.NeedOverloadResolutionForMoveConstructor
2019 = FromData.NeedOverloadResolutionForMoveConstructor;
2020 ToData.NeedOverloadResolutionForMoveAssignment
2021 = FromData.NeedOverloadResolutionForMoveAssignment;
2022 ToData.NeedOverloadResolutionForDestructor
2023 = FromData.NeedOverloadResolutionForDestructor;
2024 ToData.DefaultedMoveConstructorIsDeleted
2025 = FromData.DefaultedMoveConstructorIsDeleted;
2026 ToData.DefaultedMoveAssignmentIsDeleted
2027 = FromData.DefaultedMoveAssignmentIsDeleted;
2028 ToData.DefaultedDestructorIsDeleted = FromData.DefaultedDestructorIsDeleted;
Richard Smith328aae52012-11-30 05:11:39 +00002029 ToData.HasTrivialSpecialMembers = FromData.HasTrivialSpecialMembers;
2030 ToData.HasIrrelevantDestructor = FromData.HasIrrelevantDestructor;
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002031 ToData.HasConstexprNonCopyMoveConstructor
2032 = FromData.HasConstexprNonCopyMoveConstructor;
Richard Smith561fb152012-02-25 07:33:38 +00002033 ToData.DefaultedDefaultConstructorIsConstexpr
2034 = FromData.DefaultedDefaultConstructorIsConstexpr;
Richard Smith561fb152012-02-25 07:33:38 +00002035 ToData.HasConstexprDefaultConstructor
2036 = FromData.HasConstexprDefaultConstructor;
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002037 ToData.HasNonLiteralTypeFieldsOrBases
2038 = FromData.HasNonLiteralTypeFieldsOrBases;
Richard Smith561fb152012-02-25 07:33:38 +00002039 // ComputedVisibleConversions not imported.
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002040 ToData.UserProvidedDefaultConstructor
2041 = FromData.UserProvidedDefaultConstructor;
Richard Smith328aae52012-11-30 05:11:39 +00002042 ToData.DeclaredSpecialMembers = FromData.DeclaredSpecialMembers;
Richard Smith1c33fe82012-11-28 06:23:12 +00002043 ToData.ImplicitCopyConstructorHasConstParam
2044 = FromData.ImplicitCopyConstructorHasConstParam;
2045 ToData.ImplicitCopyAssignmentHasConstParam
2046 = FromData.ImplicitCopyAssignmentHasConstParam;
2047 ToData.HasDeclaredCopyConstructorWithConstParam
2048 = FromData.HasDeclaredCopyConstructorWithConstParam;
2049 ToData.HasDeclaredCopyAssignmentWithConstParam
2050 = FromData.HasDeclaredCopyAssignmentWithConstParam;
Richard Smith561fb152012-02-25 07:33:38 +00002051 ToData.IsLambda = FromData.IsLambda;
2052
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002053 SmallVector<CXXBaseSpecifier *, 4> Bases;
Aaron Ballman574705e2014-03-13 15:41:46 +00002054 for (const auto &Base1 : FromCXX->bases()) {
2055 QualType T = Importer.Import(Base1.getType());
Douglas Gregore2e50d332010-12-01 01:36:18 +00002056 if (T.isNull())
Douglas Gregor96303ea2010-12-02 19:33:37 +00002057 return true;
Douglas Gregor752a5952011-01-03 22:36:02 +00002058
2059 SourceLocation EllipsisLoc;
Aaron Ballman574705e2014-03-13 15:41:46 +00002060 if (Base1.isPackExpansion())
2061 EllipsisLoc = Importer.Import(Base1.getEllipsisLoc());
Douglas Gregord451ea92011-07-29 23:31:30 +00002062
2063 // Ensure that we have a definition for the base.
Aaron Ballman574705e2014-03-13 15:41:46 +00002064 ImportDefinitionIfNeeded(Base1.getType()->getAsCXXRecordDecl());
Douglas Gregord451ea92011-07-29 23:31:30 +00002065
Douglas Gregore2e50d332010-12-01 01:36:18 +00002066 Bases.push_back(
2067 new (Importer.getToContext())
Aaron Ballman574705e2014-03-13 15:41:46 +00002068 CXXBaseSpecifier(Importer.Import(Base1.getSourceRange()),
2069 Base1.isVirtual(),
2070 Base1.isBaseOfClass(),
2071 Base1.getAccessSpecifierAsWritten(),
2072 Importer.Import(Base1.getTypeSourceInfo()),
Douglas Gregor752a5952011-01-03 22:36:02 +00002073 EllipsisLoc));
Douglas Gregore2e50d332010-12-01 01:36:18 +00002074 }
2075 if (!Bases.empty())
2076 ToCXX->setBases(Bases.data(), Bases.size());
2077 }
2078
Douglas Gregor2e15c842012-02-01 21:00:38 +00002079 if (shouldForceImportDeclContext(Kind))
Douglas Gregor95d82832012-01-24 18:36:04 +00002080 ImportDeclContext(From, /*ForceImport=*/true);
2081
Douglas Gregore2e50d332010-12-01 01:36:18 +00002082 To->completeDefinition();
Douglas Gregor96303ea2010-12-02 19:33:37 +00002083 return false;
Douglas Gregore2e50d332010-12-01 01:36:18 +00002084}
2085
Larisse Voufo39a1e502013-08-06 01:03:05 +00002086bool ASTNodeImporter::ImportDefinition(VarDecl *From, VarDecl *To,
2087 ImportDefinitionKind Kind) {
Sean Callanan59721b32015-04-28 18:41:46 +00002088 if (To->getAnyInitializer())
Larisse Voufo39a1e502013-08-06 01:03:05 +00002089 return false;
2090
2091 // FIXME: Can we really import any initializer? Alternatively, we could force
2092 // ourselves to import every declaration of a variable and then only use
2093 // getInit() here.
2094 To->setInit(Importer.Import(const_cast<Expr *>(From->getAnyInitializer())));
2095
2096 // FIXME: Other bits to merge?
2097
2098 return false;
2099}
2100
Douglas Gregord451ea92011-07-29 23:31:30 +00002101bool ASTNodeImporter::ImportDefinition(EnumDecl *From, EnumDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +00002102 ImportDefinitionKind Kind) {
2103 if (To->getDefinition() || To->isBeingDefined()) {
2104 if (Kind == IDK_Everything)
2105 ImportDeclContext(From, /*ForceImport=*/true);
Douglas Gregord451ea92011-07-29 23:31:30 +00002106 return false;
Douglas Gregor2e15c842012-02-01 21:00:38 +00002107 }
Douglas Gregord451ea92011-07-29 23:31:30 +00002108
2109 To->startDefinition();
2110
2111 QualType T = Importer.Import(Importer.getFromContext().getTypeDeclType(From));
2112 if (T.isNull())
2113 return true;
2114
2115 QualType ToPromotionType = Importer.Import(From->getPromotionType());
2116 if (ToPromotionType.isNull())
2117 return true;
Douglas Gregor2e15c842012-02-01 21:00:38 +00002118
2119 if (shouldForceImportDeclContext(Kind))
2120 ImportDeclContext(From, /*ForceImport=*/true);
Douglas Gregord451ea92011-07-29 23:31:30 +00002121
2122 // FIXME: we might need to merge the number of positive or negative bits
2123 // if the enumerator lists don't match.
2124 To->completeDefinition(T, ToPromotionType,
2125 From->getNumPositiveBits(),
2126 From->getNumNegativeBits());
2127 return false;
2128}
2129
Douglas Gregora082a492010-11-30 19:14:50 +00002130TemplateParameterList *ASTNodeImporter::ImportTemplateParameterList(
2131 TemplateParameterList *Params) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002132 SmallVector<NamedDecl *, 4> ToParams;
Douglas Gregora082a492010-11-30 19:14:50 +00002133 ToParams.reserve(Params->size());
2134 for (TemplateParameterList::iterator P = Params->begin(),
2135 PEnd = Params->end();
2136 P != PEnd; ++P) {
2137 Decl *To = Importer.Import(*P);
2138 if (!To)
Craig Topper36250ad2014-05-12 05:36:57 +00002139 return nullptr;
2140
Douglas Gregora082a492010-11-30 19:14:50 +00002141 ToParams.push_back(cast<NamedDecl>(To));
2142 }
2143
2144 return TemplateParameterList::Create(Importer.getToContext(),
2145 Importer.Import(Params->getTemplateLoc()),
2146 Importer.Import(Params->getLAngleLoc()),
2147 ToParams.data(), ToParams.size(),
2148 Importer.Import(Params->getRAngleLoc()));
2149}
2150
Douglas Gregore2e50d332010-12-01 01:36:18 +00002151TemplateArgument
2152ASTNodeImporter::ImportTemplateArgument(const TemplateArgument &From) {
2153 switch (From.getKind()) {
2154 case TemplateArgument::Null:
2155 return TemplateArgument();
2156
2157 case TemplateArgument::Type: {
2158 QualType ToType = Importer.Import(From.getAsType());
2159 if (ToType.isNull())
2160 return TemplateArgument();
2161 return TemplateArgument(ToType);
2162 }
2163
2164 case TemplateArgument::Integral: {
2165 QualType ToType = Importer.Import(From.getIntegralType());
2166 if (ToType.isNull())
2167 return TemplateArgument();
Benjamin Kramer6003ad52012-06-07 15:09:51 +00002168 return TemplateArgument(From, ToType);
Douglas Gregore2e50d332010-12-01 01:36:18 +00002169 }
2170
Eli Friedmanb826a002012-09-26 02:36:12 +00002171 case TemplateArgument::Declaration: {
David Blaikie3c7dd6b2014-10-22 19:54:16 +00002172 ValueDecl *To = cast_or_null<ValueDecl>(Importer.Import(From.getAsDecl()));
2173 QualType ToType = Importer.Import(From.getParamTypeForDecl());
2174 if (!To || ToType.isNull())
2175 return TemplateArgument();
2176 return TemplateArgument(To, ToType);
Eli Friedmanb826a002012-09-26 02:36:12 +00002177 }
2178
2179 case TemplateArgument::NullPtr: {
2180 QualType ToType = Importer.Import(From.getNullPtrType());
2181 if (ToType.isNull())
2182 return TemplateArgument();
2183 return TemplateArgument(ToType, /*isNullPtr*/true);
2184 }
2185
Douglas Gregore2e50d332010-12-01 01:36:18 +00002186 case TemplateArgument::Template: {
2187 TemplateName ToTemplate = Importer.Import(From.getAsTemplate());
2188 if (ToTemplate.isNull())
2189 return TemplateArgument();
2190
2191 return TemplateArgument(ToTemplate);
2192 }
Douglas Gregore4ff4b52011-01-05 18:58:31 +00002193
2194 case TemplateArgument::TemplateExpansion: {
2195 TemplateName ToTemplate
2196 = Importer.Import(From.getAsTemplateOrTemplatePattern());
2197 if (ToTemplate.isNull())
2198 return TemplateArgument();
2199
Douglas Gregore1d60df2011-01-14 23:41:42 +00002200 return TemplateArgument(ToTemplate, From.getNumTemplateExpansions());
Douglas Gregore4ff4b52011-01-05 18:58:31 +00002201 }
2202
Douglas Gregore2e50d332010-12-01 01:36:18 +00002203 case TemplateArgument::Expression:
2204 if (Expr *ToExpr = Importer.Import(From.getAsExpr()))
2205 return TemplateArgument(ToExpr);
2206 return TemplateArgument();
2207
2208 case TemplateArgument::Pack: {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002209 SmallVector<TemplateArgument, 2> ToPack;
Douglas Gregore2e50d332010-12-01 01:36:18 +00002210 ToPack.reserve(From.pack_size());
2211 if (ImportTemplateArguments(From.pack_begin(), From.pack_size(), ToPack))
2212 return TemplateArgument();
2213
2214 TemplateArgument *ToArgs
2215 = new (Importer.getToContext()) TemplateArgument[ToPack.size()];
2216 std::copy(ToPack.begin(), ToPack.end(), ToArgs);
2217 return TemplateArgument(ToArgs, ToPack.size());
2218 }
2219 }
2220
2221 llvm_unreachable("Invalid template argument kind");
Douglas Gregore2e50d332010-12-01 01:36:18 +00002222}
2223
2224bool ASTNodeImporter::ImportTemplateArguments(const TemplateArgument *FromArgs,
2225 unsigned NumFromArgs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002226 SmallVectorImpl<TemplateArgument> &ToArgs) {
Douglas Gregore2e50d332010-12-01 01:36:18 +00002227 for (unsigned I = 0; I != NumFromArgs; ++I) {
2228 TemplateArgument To = ImportTemplateArgument(FromArgs[I]);
2229 if (To.isNull() && !FromArgs[I].isNull())
2230 return true;
2231
2232 ToArgs.push_back(To);
2233 }
2234
2235 return false;
2236}
2237
Douglas Gregor5c73e912010-02-11 00:48:18 +00002238bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord,
Douglas Gregordd6006f2012-07-17 21:16:27 +00002239 RecordDecl *ToRecord, bool Complain) {
Sean Callananc665c9e2013-10-09 21:45:11 +00002240 // Eliminate a potential failure point where we attempt to re-import
2241 // something we're trying to import while completing ToRecord.
2242 Decl *ToOrigin = Importer.GetOriginalDecl(ToRecord);
2243 if (ToOrigin) {
2244 RecordDecl *ToOriginRecord = dyn_cast<RecordDecl>(ToOrigin);
2245 if (ToOriginRecord)
2246 ToRecord = ToOriginRecord;
2247 }
2248
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002249 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
Sean Callananc665c9e2013-10-09 21:45:11 +00002250 ToRecord->getASTContext(),
Douglas Gregordd6006f2012-07-17 21:16:27 +00002251 Importer.getNonEquivalentDecls(),
2252 false, Complain);
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002253 return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002254}
2255
Larisse Voufo39a1e502013-08-06 01:03:05 +00002256bool ASTNodeImporter::IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar,
2257 bool Complain) {
2258 StructuralEquivalenceContext Ctx(
2259 Importer.getFromContext(), Importer.getToContext(),
2260 Importer.getNonEquivalentDecls(), false, Complain);
2261 return Ctx.IsStructurallyEquivalent(FromVar, ToVar);
2262}
2263
Douglas Gregor98c10182010-02-12 22:17:39 +00002264bool ASTNodeImporter::IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToEnum) {
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002265 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
Douglas Gregor3996e242010-02-15 22:01:00 +00002266 Importer.getToContext(),
Douglas Gregorb4964f72010-02-15 23:54:17 +00002267 Importer.getNonEquivalentDecls());
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002268 return Ctx.IsStructurallyEquivalent(FromEnum, ToEnum);
Douglas Gregor98c10182010-02-12 22:17:39 +00002269}
2270
Douglas Gregor91155082012-11-14 22:29:20 +00002271bool ASTNodeImporter::IsStructuralMatch(EnumConstantDecl *FromEC,
2272 EnumConstantDecl *ToEC)
2273{
2274 const llvm::APSInt &FromVal = FromEC->getInitVal();
2275 const llvm::APSInt &ToVal = ToEC->getInitVal();
2276
2277 return FromVal.isSigned() == ToVal.isSigned() &&
2278 FromVal.getBitWidth() == ToVal.getBitWidth() &&
2279 FromVal == ToVal;
2280}
2281
2282bool ASTNodeImporter::IsStructuralMatch(ClassTemplateDecl *From,
Douglas Gregora082a492010-11-30 19:14:50 +00002283 ClassTemplateDecl *To) {
2284 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2285 Importer.getToContext(),
2286 Importer.getNonEquivalentDecls());
2287 return Ctx.IsStructurallyEquivalent(From, To);
2288}
2289
Larisse Voufo39a1e502013-08-06 01:03:05 +00002290bool ASTNodeImporter::IsStructuralMatch(VarTemplateDecl *From,
2291 VarTemplateDecl *To) {
2292 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2293 Importer.getToContext(),
2294 Importer.getNonEquivalentDecls());
2295 return Ctx.IsStructurallyEquivalent(From, To);
2296}
2297
Douglas Gregore4c83e42010-02-09 22:48:33 +00002298Decl *ASTNodeImporter::VisitDecl(Decl *D) {
Douglas Gregor811663e2010-02-10 00:15:17 +00002299 Importer.FromDiag(D->getLocation(), diag::err_unsupported_ast_node)
Douglas Gregore4c83e42010-02-09 22:48:33 +00002300 << D->getDeclKindName();
Craig Topper36250ad2014-05-12 05:36:57 +00002301 return nullptr;
Douglas Gregore4c83e42010-02-09 22:48:33 +00002302}
2303
Sean Callanan65198272011-11-17 23:20:56 +00002304Decl *ASTNodeImporter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
2305 TranslationUnitDecl *ToD =
2306 Importer.getToContext().getTranslationUnitDecl();
2307
2308 Importer.Imported(D, ToD);
2309
2310 return ToD;
2311}
2312
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002313Decl *ASTNodeImporter::VisitNamespaceDecl(NamespaceDecl *D) {
2314 // Import the major distinguishing characteristics of this namespace.
2315 DeclContext *DC, *LexicalDC;
2316 DeclarationName Name;
2317 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002318 NamedDecl *ToD;
2319 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002320 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002321 if (ToD)
2322 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002323
2324 NamespaceDecl *MergeWithNamespace = nullptr;
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002325 if (!Name) {
2326 // This is an anonymous namespace. Adopt an existing anonymous
2327 // namespace if we can.
2328 // FIXME: Not testable.
2329 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2330 MergeWithNamespace = TU->getAnonymousNamespace();
2331 else
2332 MergeWithNamespace = cast<NamespaceDecl>(DC)->getAnonymousNamespace();
2333 } else {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002334 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002335 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002336 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002337 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2338 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Namespace))
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002339 continue;
2340
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002341 if (NamespaceDecl *FoundNS = dyn_cast<NamespaceDecl>(FoundDecls[I])) {
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002342 MergeWithNamespace = FoundNS;
2343 ConflictingDecls.clear();
2344 break;
2345 }
2346
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002347 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002348 }
2349
2350 if (!ConflictingDecls.empty()) {
John McCalle87beb22010-04-23 18:46:30 +00002351 Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Namespace,
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002352 ConflictingDecls.data(),
2353 ConflictingDecls.size());
2354 }
2355 }
2356
2357 // Create the "to" namespace, if needed.
2358 NamespaceDecl *ToNamespace = MergeWithNamespace;
2359 if (!ToNamespace) {
Abramo Bagnarab5545be2011-03-08 12:38:20 +00002360 ToNamespace = NamespaceDecl::Create(Importer.getToContext(), DC,
Douglas Gregore57e7522012-01-07 09:11:48 +00002361 D->isInline(),
Abramo Bagnarab5545be2011-03-08 12:38:20 +00002362 Importer.Import(D->getLocStart()),
Douglas Gregore57e7522012-01-07 09:11:48 +00002363 Loc, Name.getAsIdentifierInfo(),
Craig Topper36250ad2014-05-12 05:36:57 +00002364 /*PrevDecl=*/nullptr);
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002365 ToNamespace->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00002366 LexicalDC->addDeclInternal(ToNamespace);
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002367
2368 // If this is an anonymous namespace, register it as the anonymous
2369 // namespace within its context.
2370 if (!Name) {
2371 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2372 TU->setAnonymousNamespace(ToNamespace);
2373 else
2374 cast<NamespaceDecl>(DC)->setAnonymousNamespace(ToNamespace);
2375 }
2376 }
2377 Importer.Imported(D, ToNamespace);
2378
2379 ImportDeclContext(D);
2380
2381 return ToNamespace;
2382}
2383
Richard Smithdda56e42011-04-15 14:24:37 +00002384Decl *ASTNodeImporter::VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias) {
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002385 // Import the major distinguishing characteristics of this typedef.
2386 DeclContext *DC, *LexicalDC;
2387 DeclarationName Name;
2388 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002389 NamedDecl *ToD;
2390 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002391 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002392 if (ToD)
2393 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002394
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002395 // If this typedef is not in block scope, determine whether we've
2396 // seen a typedef with the same name (that we can merge with) or any
2397 // other entity by that name (which name lookup could conflict with).
2398 if (!DC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002399 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002400 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002401 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002402 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002403 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2404 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002405 continue;
Richard Smithdda56e42011-04-15 14:24:37 +00002406 if (TypedefNameDecl *FoundTypedef =
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002407 dyn_cast<TypedefNameDecl>(FoundDecls[I])) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00002408 if (Importer.IsStructurallyEquivalent(D->getUnderlyingType(),
2409 FoundTypedef->getUnderlyingType()))
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002410 return Importer.Imported(D, FoundTypedef);
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002411 }
2412
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002413 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002414 }
2415
2416 if (!ConflictingDecls.empty()) {
2417 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2418 ConflictingDecls.data(),
2419 ConflictingDecls.size());
2420 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00002421 return nullptr;
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002422 }
2423 }
2424
Douglas Gregorb4964f72010-02-15 23:54:17 +00002425 // Import the underlying type of this typedef;
2426 QualType T = Importer.Import(D->getUnderlyingType());
2427 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002428 return nullptr;
2429
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002430 // Create the new typedef node.
2431 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Abramo Bagnarab3185b02011-03-06 15:48:19 +00002432 SourceLocation StartL = Importer.Import(D->getLocStart());
Richard Smithdda56e42011-04-15 14:24:37 +00002433 TypedefNameDecl *ToTypedef;
2434 if (IsAlias)
Douglas Gregor03d1ed32011-10-14 21:54:42 +00002435 ToTypedef = TypeAliasDecl::Create(Importer.getToContext(), DC,
2436 StartL, Loc,
2437 Name.getAsIdentifierInfo(),
2438 TInfo);
2439 else
Richard Smithdda56e42011-04-15 14:24:37 +00002440 ToTypedef = TypedefDecl::Create(Importer.getToContext(), DC,
2441 StartL, Loc,
2442 Name.getAsIdentifierInfo(),
2443 TInfo);
Douglas Gregor03d1ed32011-10-14 21:54:42 +00002444
Douglas Gregordd483172010-02-22 17:42:47 +00002445 ToTypedef->setAccess(D->getAccess());
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002446 ToTypedef->setLexicalDeclContext(LexicalDC);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002447 Importer.Imported(D, ToTypedef);
Sean Callanan95e74be2011-10-21 02:57:43 +00002448 LexicalDC->addDeclInternal(ToTypedef);
Douglas Gregorb4964f72010-02-15 23:54:17 +00002449
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002450 return ToTypedef;
2451}
2452
Richard Smithdda56e42011-04-15 14:24:37 +00002453Decl *ASTNodeImporter::VisitTypedefDecl(TypedefDecl *D) {
2454 return VisitTypedefNameDecl(D, /*IsAlias=*/false);
2455}
2456
2457Decl *ASTNodeImporter::VisitTypeAliasDecl(TypeAliasDecl *D) {
2458 return VisitTypedefNameDecl(D, /*IsAlias=*/true);
2459}
2460
Douglas Gregor98c10182010-02-12 22:17:39 +00002461Decl *ASTNodeImporter::VisitEnumDecl(EnumDecl *D) {
2462 // Import the major distinguishing characteristics of this enum.
2463 DeclContext *DC, *LexicalDC;
2464 DeclarationName Name;
2465 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002466 NamedDecl *ToD;
2467 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002468 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002469 if (ToD)
2470 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002471
Douglas Gregor98c10182010-02-12 22:17:39 +00002472 // Figure out what enum name we're looking for.
2473 unsigned IDNS = Decl::IDNS_Tag;
2474 DeclarationName SearchName = Name;
Richard Smithdda56e42011-04-15 14:24:37 +00002475 if (!SearchName && D->getTypedefNameForAnonDecl()) {
2476 SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName());
Douglas Gregor98c10182010-02-12 22:17:39 +00002477 IDNS = Decl::IDNS_Ordinary;
David Blaikiebbafb8a2012-03-11 07:00:24 +00002478 } else if (Importer.getToContext().getLangOpts().CPlusPlus)
Douglas Gregor98c10182010-02-12 22:17:39 +00002479 IDNS |= Decl::IDNS_Ordinary;
2480
2481 // We may already have an enum of the same name; try to find and match it.
2482 if (!DC->isFunctionOrMethod() && SearchName) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002483 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002484 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002485 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002486 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2487 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor98c10182010-02-12 22:17:39 +00002488 continue;
2489
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002490 Decl *Found = FoundDecls[I];
Richard Smithdda56e42011-04-15 14:24:37 +00002491 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
Douglas Gregor98c10182010-02-12 22:17:39 +00002492 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
2493 Found = Tag->getDecl();
2494 }
2495
2496 if (EnumDecl *FoundEnum = dyn_cast<EnumDecl>(Found)) {
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002497 if (IsStructuralMatch(D, FoundEnum))
2498 return Importer.Imported(D, FoundEnum);
Douglas Gregor98c10182010-02-12 22:17:39 +00002499 }
2500
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002501 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor98c10182010-02-12 22:17:39 +00002502 }
2503
2504 if (!ConflictingDecls.empty()) {
2505 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2506 ConflictingDecls.data(),
2507 ConflictingDecls.size());
2508 }
2509 }
2510
2511 // Create the enum declaration.
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002512 EnumDecl *D2 = EnumDecl::Create(Importer.getToContext(), DC,
2513 Importer.Import(D->getLocStart()),
Craig Topper36250ad2014-05-12 05:36:57 +00002514 Loc, Name.getAsIdentifierInfo(), nullptr,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00002515 D->isScoped(), D->isScopedUsingClassTag(),
2516 D->isFixed());
John McCall3e11ebe2010-03-15 10:12:16 +00002517 // Import the qualifier, if any.
Douglas Gregor14454802011-02-25 02:25:35 +00002518 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregordd483172010-02-22 17:42:47 +00002519 D2->setAccess(D->getAccess());
Douglas Gregor3996e242010-02-15 22:01:00 +00002520 D2->setLexicalDeclContext(LexicalDC);
2521 Importer.Imported(D, D2);
Sean Callanan95e74be2011-10-21 02:57:43 +00002522 LexicalDC->addDeclInternal(D2);
Douglas Gregor98c10182010-02-12 22:17:39 +00002523
2524 // Import the integer type.
2525 QualType ToIntegerType = Importer.Import(D->getIntegerType());
2526 if (ToIntegerType.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002527 return nullptr;
Douglas Gregor3996e242010-02-15 22:01:00 +00002528 D2->setIntegerType(ToIntegerType);
Douglas Gregor98c10182010-02-12 22:17:39 +00002529
2530 // Import the definition
John McCallf937c022011-10-07 06:10:15 +00002531 if (D->isCompleteDefinition() && ImportDefinition(D, D2))
Craig Topper36250ad2014-05-12 05:36:57 +00002532 return nullptr;
Douglas Gregor98c10182010-02-12 22:17:39 +00002533
Douglas Gregor3996e242010-02-15 22:01:00 +00002534 return D2;
Douglas Gregor98c10182010-02-12 22:17:39 +00002535}
2536
Douglas Gregor5c73e912010-02-11 00:48:18 +00002537Decl *ASTNodeImporter::VisitRecordDecl(RecordDecl *D) {
2538 // If this record has a definition in the translation unit we're coming from,
2539 // but this particular declaration is not that definition, import the
2540 // definition and map to that.
Douglas Gregor0a5a2212010-02-11 01:04:33 +00002541 TagDecl *Definition = D->getDefinition();
Douglas Gregor5c73e912010-02-11 00:48:18 +00002542 if (Definition && Definition != D) {
2543 Decl *ImportedDef = Importer.Import(Definition);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002544 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00002545 return nullptr;
2546
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002547 return Importer.Imported(D, ImportedDef);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002548 }
2549
2550 // Import the major distinguishing characteristics of this record.
2551 DeclContext *DC, *LexicalDC;
2552 DeclarationName Name;
2553 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002554 NamedDecl *ToD;
2555 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002556 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002557 if (ToD)
2558 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002559
Douglas Gregor5c73e912010-02-11 00:48:18 +00002560 // Figure out what structure name we're looking for.
2561 unsigned IDNS = Decl::IDNS_Tag;
2562 DeclarationName SearchName = Name;
Richard Smithdda56e42011-04-15 14:24:37 +00002563 if (!SearchName && D->getTypedefNameForAnonDecl()) {
2564 SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName());
Douglas Gregor5c73e912010-02-11 00:48:18 +00002565 IDNS = Decl::IDNS_Ordinary;
David Blaikiebbafb8a2012-03-11 07:00:24 +00002566 } else if (Importer.getToContext().getLangOpts().CPlusPlus)
Douglas Gregor5c73e912010-02-11 00:48:18 +00002567 IDNS |= Decl::IDNS_Ordinary;
2568
2569 // We may already have a record of the same name; try to find and match it.
Craig Topper36250ad2014-05-12 05:36:57 +00002570 RecordDecl *AdoptDecl = nullptr;
Douglas Gregordd6006f2012-07-17 21:16:27 +00002571 if (!DC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002572 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002573 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002574 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002575 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2576 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor5c73e912010-02-11 00:48:18 +00002577 continue;
2578
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002579 Decl *Found = FoundDecls[I];
Richard Smithdda56e42011-04-15 14:24:37 +00002580 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
Douglas Gregor5c73e912010-02-11 00:48:18 +00002581 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
2582 Found = Tag->getDecl();
2583 }
2584
2585 if (RecordDecl *FoundRecord = dyn_cast<RecordDecl>(Found)) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002586 if (D->isAnonymousStructOrUnion() &&
2587 FoundRecord->isAnonymousStructOrUnion()) {
2588 // If both anonymous structs/unions are in a record context, make sure
2589 // they occur in the same location in the context records.
David Blaikie05785d12013-02-20 22:23:23 +00002590 if (Optional<unsigned> Index1
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002591 = findAnonymousStructOrUnionIndex(D)) {
David Blaikie05785d12013-02-20 22:23:23 +00002592 if (Optional<unsigned> Index2 =
2593 findAnonymousStructOrUnionIndex(FoundRecord)) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002594 if (*Index1 != *Index2)
2595 continue;
2596 }
2597 }
2598 }
2599
Douglas Gregor25791052010-02-12 00:09:27 +00002600 if (RecordDecl *FoundDef = FoundRecord->getDefinition()) {
Douglas Gregordd6006f2012-07-17 21:16:27 +00002601 if ((SearchName && !D->isCompleteDefinition())
2602 || (D->isCompleteDefinition() &&
2603 D->isAnonymousStructOrUnion()
2604 == FoundDef->isAnonymousStructOrUnion() &&
2605 IsStructuralMatch(D, FoundDef))) {
Douglas Gregor25791052010-02-12 00:09:27 +00002606 // The record types structurally match, or the "from" translation
2607 // unit only had a forward declaration anyway; call it the same
2608 // function.
2609 // FIXME: For C++, we should also merge methods here.
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002610 return Importer.Imported(D, FoundDef);
Douglas Gregor25791052010-02-12 00:09:27 +00002611 }
Douglas Gregordd6006f2012-07-17 21:16:27 +00002612 } else if (!D->isCompleteDefinition()) {
Douglas Gregor25791052010-02-12 00:09:27 +00002613 // We have a forward declaration of this type, so adopt that forward
2614 // declaration rather than building a new one.
Sean Callananc94711c2014-03-04 18:11:50 +00002615
2616 // If one or both can be completed from external storage then try one
2617 // last time to complete and compare them before doing this.
2618
2619 if (FoundRecord->hasExternalLexicalStorage() &&
2620 !FoundRecord->isCompleteDefinition())
2621 FoundRecord->getASTContext().getExternalSource()->CompleteType(FoundRecord);
2622 if (D->hasExternalLexicalStorage())
2623 D->getASTContext().getExternalSource()->CompleteType(D);
2624
2625 if (FoundRecord->isCompleteDefinition() &&
2626 D->isCompleteDefinition() &&
2627 !IsStructuralMatch(D, FoundRecord))
2628 continue;
2629
Douglas Gregor25791052010-02-12 00:09:27 +00002630 AdoptDecl = FoundRecord;
2631 continue;
Douglas Gregordd6006f2012-07-17 21:16:27 +00002632 } else if (!SearchName) {
2633 continue;
2634 }
Douglas Gregor5c73e912010-02-11 00:48:18 +00002635 }
2636
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002637 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002638 }
2639
Douglas Gregordd6006f2012-07-17 21:16:27 +00002640 if (!ConflictingDecls.empty() && SearchName) {
Douglas Gregor5c73e912010-02-11 00:48:18 +00002641 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2642 ConflictingDecls.data(),
2643 ConflictingDecls.size());
2644 }
2645 }
2646
2647 // Create the record declaration.
Douglas Gregor3996e242010-02-15 22:01:00 +00002648 RecordDecl *D2 = AdoptDecl;
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002649 SourceLocation StartLoc = Importer.Import(D->getLocStart());
Douglas Gregor3996e242010-02-15 22:01:00 +00002650 if (!D2) {
John McCall1c70e992010-06-03 19:28:45 +00002651 if (isa<CXXRecordDecl>(D)) {
Douglas Gregor3996e242010-02-15 22:01:00 +00002652 CXXRecordDecl *D2CXX = CXXRecordDecl::Create(Importer.getToContext(),
Douglas Gregor25791052010-02-12 00:09:27 +00002653 D->getTagKind(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002654 DC, StartLoc, Loc,
2655 Name.getAsIdentifierInfo());
Douglas Gregor3996e242010-02-15 22:01:00 +00002656 D2 = D2CXX;
Douglas Gregordd483172010-02-22 17:42:47 +00002657 D2->setAccess(D->getAccess());
Douglas Gregor25791052010-02-12 00:09:27 +00002658 } else {
Douglas Gregor3996e242010-02-15 22:01:00 +00002659 D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002660 DC, StartLoc, Loc, Name.getAsIdentifierInfo());
Douglas Gregor5c73e912010-02-11 00:48:18 +00002661 }
Douglas Gregor14454802011-02-25 02:25:35 +00002662
2663 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregor3996e242010-02-15 22:01:00 +00002664 D2->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00002665 LexicalDC->addDeclInternal(D2);
Douglas Gregordd6006f2012-07-17 21:16:27 +00002666 if (D->isAnonymousStructOrUnion())
2667 D2->setAnonymousStructOrUnion(true);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002668 }
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002669
Douglas Gregor3996e242010-02-15 22:01:00 +00002670 Importer.Imported(D, D2);
Douglas Gregor25791052010-02-12 00:09:27 +00002671
Douglas Gregor95d82832012-01-24 18:36:04 +00002672 if (D->isCompleteDefinition() && ImportDefinition(D, D2, IDK_Default))
Craig Topper36250ad2014-05-12 05:36:57 +00002673 return nullptr;
2674
Douglas Gregor3996e242010-02-15 22:01:00 +00002675 return D2;
Douglas Gregor5c73e912010-02-11 00:48:18 +00002676}
2677
Douglas Gregor98c10182010-02-12 22:17:39 +00002678Decl *ASTNodeImporter::VisitEnumConstantDecl(EnumConstantDecl *D) {
2679 // Import the major distinguishing characteristics of this enumerator.
2680 DeclContext *DC, *LexicalDC;
2681 DeclarationName Name;
2682 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002683 NamedDecl *ToD;
2684 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002685 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002686 if (ToD)
2687 return ToD;
Douglas Gregorb4964f72010-02-15 23:54:17 +00002688
2689 QualType T = Importer.Import(D->getType());
2690 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002691 return nullptr;
Douglas Gregorb4964f72010-02-15 23:54:17 +00002692
Douglas Gregor98c10182010-02-12 22:17:39 +00002693 // Determine whether there are any other declarations with the same name and
2694 // in the same context.
2695 if (!LexicalDC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002696 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregor98c10182010-02-12 22:17:39 +00002697 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002698 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002699 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002700 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2701 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor98c10182010-02-12 22:17:39 +00002702 continue;
Douglas Gregor91155082012-11-14 22:29:20 +00002703
2704 if (EnumConstantDecl *FoundEnumConstant
2705 = dyn_cast<EnumConstantDecl>(FoundDecls[I])) {
2706 if (IsStructuralMatch(D, FoundEnumConstant))
2707 return Importer.Imported(D, FoundEnumConstant);
2708 }
2709
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002710 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor98c10182010-02-12 22:17:39 +00002711 }
2712
2713 if (!ConflictingDecls.empty()) {
2714 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2715 ConflictingDecls.data(),
2716 ConflictingDecls.size());
2717 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00002718 return nullptr;
Douglas Gregor98c10182010-02-12 22:17:39 +00002719 }
2720 }
2721
2722 Expr *Init = Importer.Import(D->getInitExpr());
2723 if (D->getInitExpr() && !Init)
Craig Topper36250ad2014-05-12 05:36:57 +00002724 return nullptr;
2725
Douglas Gregor98c10182010-02-12 22:17:39 +00002726 EnumConstantDecl *ToEnumerator
2727 = EnumConstantDecl::Create(Importer.getToContext(), cast<EnumDecl>(DC), Loc,
2728 Name.getAsIdentifierInfo(), T,
2729 Init, D->getInitVal());
Douglas Gregordd483172010-02-22 17:42:47 +00002730 ToEnumerator->setAccess(D->getAccess());
Douglas Gregor98c10182010-02-12 22:17:39 +00002731 ToEnumerator->setLexicalDeclContext(LexicalDC);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002732 Importer.Imported(D, ToEnumerator);
Sean Callanan95e74be2011-10-21 02:57:43 +00002733 LexicalDC->addDeclInternal(ToEnumerator);
Douglas Gregor98c10182010-02-12 22:17:39 +00002734 return ToEnumerator;
2735}
Douglas Gregor5c73e912010-02-11 00:48:18 +00002736
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002737Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) {
2738 // Import the major distinguishing characteristics of this function.
2739 DeclContext *DC, *LexicalDC;
2740 DeclarationName Name;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002741 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002742 NamedDecl *ToD;
2743 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002744 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002745 if (ToD)
2746 return ToD;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002747
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002748 // Try to find a function in our own ("to") context with the same name, same
2749 // type, and in the same context as the function we're importing.
2750 if (!LexicalDC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002751 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002752 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002753 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002754 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002755 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2756 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002757 continue;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00002758
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002759 if (FunctionDecl *FoundFunction = dyn_cast<FunctionDecl>(FoundDecls[I])) {
Rafael Espindola3ae00052013-05-13 00:12:11 +00002760 if (FoundFunction->hasExternalFormalLinkage() &&
2761 D->hasExternalFormalLinkage()) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00002762 if (Importer.IsStructurallyEquivalent(D->getType(),
2763 FoundFunction->getType())) {
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002764 // FIXME: Actually try to merge the body and other attributes.
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002765 return Importer.Imported(D, FoundFunction);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002766 }
2767
2768 // FIXME: Check for overloading more carefully, e.g., by boosting
2769 // Sema::IsOverload out to the AST library.
2770
2771 // Function overloading is okay in C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002772 if (Importer.getToContext().getLangOpts().CPlusPlus)
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002773 continue;
2774
2775 // Complain about inconsistent function types.
2776 Importer.ToDiag(Loc, diag::err_odr_function_type_inconsistent)
Douglas Gregorb4964f72010-02-15 23:54:17 +00002777 << Name << D->getType() << FoundFunction->getType();
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002778 Importer.ToDiag(FoundFunction->getLocation(),
2779 diag::note_odr_value_here)
2780 << FoundFunction->getType();
2781 }
2782 }
2783
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002784 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002785 }
2786
2787 if (!ConflictingDecls.empty()) {
2788 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2789 ConflictingDecls.data(),
2790 ConflictingDecls.size());
2791 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00002792 return nullptr;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002793 }
Douglas Gregor62d311f2010-02-09 19:21:46 +00002794 }
Douglas Gregorb4964f72010-02-15 23:54:17 +00002795
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002796 DeclarationNameInfo NameInfo(Name, Loc);
2797 // Import additional name location/type info.
2798 ImportDeclarationNameLoc(D->getNameInfo(), NameInfo);
2799
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002800 QualType FromTy = D->getType();
2801 bool usedDifferentExceptionSpec = false;
2802
2803 if (const FunctionProtoType *
2804 FromFPT = D->getType()->getAs<FunctionProtoType>()) {
2805 FunctionProtoType::ExtProtoInfo FromEPI = FromFPT->getExtProtoInfo();
2806 // FunctionProtoType::ExtProtoInfo's ExceptionSpecDecl can point to the
2807 // FunctionDecl that we are importing the FunctionProtoType for.
2808 // To avoid an infinite recursion when importing, create the FunctionDecl
2809 // with a simplified function type and update it afterwards.
Richard Smith8acb4282014-07-31 21:57:55 +00002810 if (FromEPI.ExceptionSpec.SourceDecl ||
2811 FromEPI.ExceptionSpec.SourceTemplate ||
2812 FromEPI.ExceptionSpec.NoexceptExpr) {
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002813 FunctionProtoType::ExtProtoInfo DefaultEPI;
2814 FromTy = Importer.getFromContext().getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00002815 FromFPT->getReturnType(), FromFPT->getParamTypes(), DefaultEPI);
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002816 usedDifferentExceptionSpec = true;
2817 }
2818 }
2819
Douglas Gregorb4964f72010-02-15 23:54:17 +00002820 // Import the type.
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002821 QualType T = Importer.Import(FromTy);
Douglas Gregorb4964f72010-02-15 23:54:17 +00002822 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002823 return nullptr;
2824
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002825 // Import the function parameters.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002826 SmallVector<ParmVarDecl *, 8> Parameters;
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +00002827 for (auto P : D->params()) {
2828 ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(P));
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002829 if (!ToP)
Craig Topper36250ad2014-05-12 05:36:57 +00002830 return nullptr;
2831
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002832 Parameters.push_back(ToP);
2833 }
2834
2835 // Create the imported function.
2836 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Craig Topper36250ad2014-05-12 05:36:57 +00002837 FunctionDecl *ToFunction = nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002838 SourceLocation InnerLocStart = Importer.Import(D->getInnerLocStart());
Douglas Gregor00eace12010-02-21 18:29:16 +00002839 if (CXXConstructorDecl *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) {
2840 ToFunction = CXXConstructorDecl::Create(Importer.getToContext(),
2841 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00002842 InnerLocStart,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002843 NameInfo, T, TInfo,
Douglas Gregor00eace12010-02-21 18:29:16 +00002844 FromConstructor->isExplicit(),
2845 D->isInlineSpecified(),
Richard Smitha77a0a62011-08-15 21:04:07 +00002846 D->isImplicit(),
2847 D->isConstexpr());
Douglas Gregor00eace12010-02-21 18:29:16 +00002848 } else if (isa<CXXDestructorDecl>(D)) {
2849 ToFunction = CXXDestructorDecl::Create(Importer.getToContext(),
2850 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00002851 InnerLocStart,
Craig Silversteinaf8808d2010-10-21 00:44:50 +00002852 NameInfo, T, TInfo,
Douglas Gregor00eace12010-02-21 18:29:16 +00002853 D->isInlineSpecified(),
2854 D->isImplicit());
2855 } else if (CXXConversionDecl *FromConversion
2856 = dyn_cast<CXXConversionDecl>(D)) {
2857 ToFunction = CXXConversionDecl::Create(Importer.getToContext(),
2858 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00002859 InnerLocStart,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002860 NameInfo, T, TInfo,
Douglas Gregor00eace12010-02-21 18:29:16 +00002861 D->isInlineSpecified(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00002862 FromConversion->isExplicit(),
Richard Smitha77a0a62011-08-15 21:04:07 +00002863 D->isConstexpr(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00002864 Importer.Import(D->getLocEnd()));
Douglas Gregora50ad132010-11-29 16:04:58 +00002865 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
2866 ToFunction = CXXMethodDecl::Create(Importer.getToContext(),
2867 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00002868 InnerLocStart,
Douglas Gregora50ad132010-11-29 16:04:58 +00002869 NameInfo, T, TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00002870 Method->getStorageClass(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00002871 Method->isInlineSpecified(),
Richard Smitha77a0a62011-08-15 21:04:07 +00002872 D->isConstexpr(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00002873 Importer.Import(D->getLocEnd()));
Douglas Gregor00eace12010-02-21 18:29:16 +00002874 } else {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002875 ToFunction = FunctionDecl::Create(Importer.getToContext(), DC,
Sean Callanan59721b32015-04-28 18:41:46 +00002876 InnerLocStart,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002877 NameInfo, T, TInfo, D->getStorageClass(),
Douglas Gregor00eace12010-02-21 18:29:16 +00002878 D->isInlineSpecified(),
Richard Smitha77a0a62011-08-15 21:04:07 +00002879 D->hasWrittenPrototype(),
2880 D->isConstexpr());
Douglas Gregor00eace12010-02-21 18:29:16 +00002881 }
John McCall3e11ebe2010-03-15 10:12:16 +00002882
2883 // Import the qualifier, if any.
Douglas Gregor14454802011-02-25 02:25:35 +00002884 ToFunction->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregordd483172010-02-22 17:42:47 +00002885 ToFunction->setAccess(D->getAccess());
Douglas Gregor43f54792010-02-17 02:12:47 +00002886 ToFunction->setLexicalDeclContext(LexicalDC);
John McCall08432c82011-01-27 02:37:01 +00002887 ToFunction->setVirtualAsWritten(D->isVirtualAsWritten());
2888 ToFunction->setTrivial(D->isTrivial());
2889 ToFunction->setPure(D->isPure());
Douglas Gregor43f54792010-02-17 02:12:47 +00002890 Importer.Imported(D, ToFunction);
Douglas Gregor62d311f2010-02-09 19:21:46 +00002891
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002892 // Set the parameters.
2893 for (unsigned I = 0, N = Parameters.size(); I != N; ++I) {
Douglas Gregor43f54792010-02-17 02:12:47 +00002894 Parameters[I]->setOwningFunction(ToFunction);
Sean Callanan95e74be2011-10-21 02:57:43 +00002895 ToFunction->addDeclInternal(Parameters[I]);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002896 }
David Blaikie9c70e042011-09-21 18:16:56 +00002897 ToFunction->setParams(Parameters);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002898
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002899 if (usedDifferentExceptionSpec) {
2900 // Update FunctionProtoType::ExtProtoInfo.
2901 QualType T = Importer.Import(D->getType());
2902 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002903 return nullptr;
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002904 ToFunction->setType(T);
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00002905 }
2906
Sean Callanan59721b32015-04-28 18:41:46 +00002907 // Import the body, if any.
2908 if (Stmt *FromBody = D->getBody()) {
2909 if (Stmt *ToBody = Importer.Import(FromBody)) {
2910 ToFunction->setBody(ToBody);
2911 }
2912 }
2913
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002914 // FIXME: Other bits to merge?
Douglas Gregor0eaa2bf2010-10-01 23:55:07 +00002915
2916 // Add this function to the lexical context.
Sean Callanan95e74be2011-10-21 02:57:43 +00002917 LexicalDC->addDeclInternal(ToFunction);
Douglas Gregor0eaa2bf2010-10-01 23:55:07 +00002918
Douglas Gregor43f54792010-02-17 02:12:47 +00002919 return ToFunction;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002920}
2921
Douglas Gregor00eace12010-02-21 18:29:16 +00002922Decl *ASTNodeImporter::VisitCXXMethodDecl(CXXMethodDecl *D) {
2923 return VisitFunctionDecl(D);
2924}
2925
2926Decl *ASTNodeImporter::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
2927 return VisitCXXMethodDecl(D);
2928}
2929
2930Decl *ASTNodeImporter::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
2931 return VisitCXXMethodDecl(D);
2932}
2933
2934Decl *ASTNodeImporter::VisitCXXConversionDecl(CXXConversionDecl *D) {
2935 return VisitCXXMethodDecl(D);
2936}
2937
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002938static unsigned getFieldIndex(Decl *F) {
2939 RecordDecl *Owner = dyn_cast<RecordDecl>(F->getDeclContext());
2940 if (!Owner)
2941 return 0;
2942
2943 unsigned Index = 1;
Aaron Ballman629afae2014-03-07 19:56:05 +00002944 for (const auto *D : Owner->noload_decls()) {
2945 if (D == F)
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002946 return Index;
2947
2948 if (isa<FieldDecl>(*D) || isa<IndirectFieldDecl>(*D))
2949 ++Index;
2950 }
2951
2952 return Index;
2953}
2954
Douglas Gregor5c73e912010-02-11 00:48:18 +00002955Decl *ASTNodeImporter::VisitFieldDecl(FieldDecl *D) {
2956 // Import the major distinguishing characteristics of a variable.
2957 DeclContext *DC, *LexicalDC;
2958 DeclarationName Name;
Douglas Gregor5c73e912010-02-11 00:48:18 +00002959 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002960 NamedDecl *ToD;
2961 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002962 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002963 if (ToD)
2964 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002965
Douglas Gregor03d1ed32011-10-14 21:54:42 +00002966 // Determine whether we've already imported this field.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002967 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002968 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002969 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2970 if (FieldDecl *FoundField = dyn_cast<FieldDecl>(FoundDecls[I])) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002971 // For anonymous fields, match up by index.
2972 if (!Name && getFieldIndex(D) != getFieldIndex(FoundField))
2973 continue;
2974
Douglas Gregor03d1ed32011-10-14 21:54:42 +00002975 if (Importer.IsStructurallyEquivalent(D->getType(),
2976 FoundField->getType())) {
2977 Importer.Imported(D, FoundField);
2978 return FoundField;
2979 }
2980
2981 Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent)
2982 << Name << D->getType() << FoundField->getType();
2983 Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
2984 << FoundField->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00002985 return nullptr;
Douglas Gregor03d1ed32011-10-14 21:54:42 +00002986 }
2987 }
2988
Douglas Gregorb4964f72010-02-15 23:54:17 +00002989 // Import the type.
2990 QualType T = Importer.Import(D->getType());
2991 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002992 return nullptr;
2993
Douglas Gregor5c73e912010-02-11 00:48:18 +00002994 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
2995 Expr *BitWidth = Importer.Import(D->getBitWidth());
2996 if (!BitWidth && D->getBitWidth())
Craig Topper36250ad2014-05-12 05:36:57 +00002997 return nullptr;
2998
Abramo Bagnaradff19302011-03-08 08:55:46 +00002999 FieldDecl *ToField = FieldDecl::Create(Importer.getToContext(), DC,
3000 Importer.Import(D->getInnerLocStart()),
Douglas Gregor5c73e912010-02-11 00:48:18 +00003001 Loc, Name.getAsIdentifierInfo(),
Richard Smith938f40b2011-06-11 17:19:42 +00003002 T, TInfo, BitWidth, D->isMutable(),
Richard Smith2b013182012-06-10 03:12:00 +00003003 D->getInClassInitStyle());
Douglas Gregordd483172010-02-22 17:42:47 +00003004 ToField->setAccess(D->getAccess());
Douglas Gregor5c73e912010-02-11 00:48:18 +00003005 ToField->setLexicalDeclContext(LexicalDC);
Richard Smith938f40b2011-06-11 17:19:42 +00003006 if (ToField->hasInClassInitializer())
3007 ToField->setInClassInitializer(D->getInClassInitializer());
Douglas Gregorceb32bf2012-10-26 16:45:11 +00003008 ToField->setImplicit(D->isImplicit());
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003009 Importer.Imported(D, ToField);
Sean Callanan95e74be2011-10-21 02:57:43 +00003010 LexicalDC->addDeclInternal(ToField);
Douglas Gregor5c73e912010-02-11 00:48:18 +00003011 return ToField;
3012}
3013
Francois Pichet783dd6e2010-11-21 06:08:52 +00003014Decl *ASTNodeImporter::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
3015 // Import the major distinguishing characteristics of a variable.
3016 DeclContext *DC, *LexicalDC;
3017 DeclarationName Name;
3018 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003019 NamedDecl *ToD;
3020 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003021 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003022 if (ToD)
3023 return ToD;
Francois Pichet783dd6e2010-11-21 06:08:52 +00003024
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003025 // Determine whether we've already imported this field.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003026 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003027 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003028 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003029 if (IndirectFieldDecl *FoundField
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003030 = dyn_cast<IndirectFieldDecl>(FoundDecls[I])) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00003031 // For anonymous indirect fields, match up by index.
3032 if (!Name && getFieldIndex(D) != getFieldIndex(FoundField))
3033 continue;
3034
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003035 if (Importer.IsStructurallyEquivalent(D->getType(),
Douglas Gregordd6006f2012-07-17 21:16:27 +00003036 FoundField->getType(),
David Blaikie7d170102013-05-15 07:37:26 +00003037 !Name.isEmpty())) {
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003038 Importer.Imported(D, FoundField);
3039 return FoundField;
3040 }
Douglas Gregordd6006f2012-07-17 21:16:27 +00003041
3042 // If there are more anonymous fields to check, continue.
3043 if (!Name && I < N-1)
3044 continue;
3045
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003046 Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent)
3047 << Name << D->getType() << FoundField->getType();
3048 Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
3049 << FoundField->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003050 return nullptr;
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003051 }
3052 }
3053
Francois Pichet783dd6e2010-11-21 06:08:52 +00003054 // Import the type.
3055 QualType T = Importer.Import(D->getType());
3056 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003057 return nullptr;
Francois Pichet783dd6e2010-11-21 06:08:52 +00003058
3059 NamedDecl **NamedChain =
3060 new (Importer.getToContext())NamedDecl*[D->getChainingSize()];
3061
3062 unsigned i = 0;
Aaron Ballman29c94602014-03-07 18:36:15 +00003063 for (auto *PI : D->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +00003064 Decl *D = Importer.Import(PI);
Francois Pichet783dd6e2010-11-21 06:08:52 +00003065 if (!D)
Craig Topper36250ad2014-05-12 05:36:57 +00003066 return nullptr;
Francois Pichet783dd6e2010-11-21 06:08:52 +00003067 NamedChain[i++] = cast<NamedDecl>(D);
3068 }
3069
3070 IndirectFieldDecl *ToIndirectField = IndirectFieldDecl::Create(
Aaron Ballman260995b2014-10-15 16:58:18 +00003071 Importer.getToContext(), DC, Loc, Name.getAsIdentifierInfo(), T,
3072 NamedChain, D->getChainingSize());
3073
3074 for (const auto *Attr : D->attrs())
3075 ToIndirectField->addAttr(Attr->clone(Importer.getToContext()));
3076
Francois Pichet783dd6e2010-11-21 06:08:52 +00003077 ToIndirectField->setAccess(D->getAccess());
3078 ToIndirectField->setLexicalDeclContext(LexicalDC);
3079 Importer.Imported(D, ToIndirectField);
Sean Callanan95e74be2011-10-21 02:57:43 +00003080 LexicalDC->addDeclInternal(ToIndirectField);
Francois Pichet783dd6e2010-11-21 06:08:52 +00003081 return ToIndirectField;
3082}
3083
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003084Decl *ASTNodeImporter::VisitObjCIvarDecl(ObjCIvarDecl *D) {
3085 // Import the major distinguishing characteristics of an ivar.
3086 DeclContext *DC, *LexicalDC;
3087 DeclarationName Name;
3088 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003089 NamedDecl *ToD;
3090 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003091 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003092 if (ToD)
3093 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003094
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003095 // Determine whether we've already imported this ivar
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003096 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003097 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003098 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3099 if (ObjCIvarDecl *FoundIvar = dyn_cast<ObjCIvarDecl>(FoundDecls[I])) {
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003100 if (Importer.IsStructurallyEquivalent(D->getType(),
3101 FoundIvar->getType())) {
3102 Importer.Imported(D, FoundIvar);
3103 return FoundIvar;
3104 }
3105
3106 Importer.ToDiag(Loc, diag::err_odr_ivar_type_inconsistent)
3107 << Name << D->getType() << FoundIvar->getType();
3108 Importer.ToDiag(FoundIvar->getLocation(), diag::note_odr_value_here)
3109 << FoundIvar->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003110 return nullptr;
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003111 }
3112 }
3113
3114 // Import the type.
3115 QualType T = Importer.Import(D->getType());
3116 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003117 return nullptr;
3118
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003119 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3120 Expr *BitWidth = Importer.Import(D->getBitWidth());
3121 if (!BitWidth && D->getBitWidth())
Craig Topper36250ad2014-05-12 05:36:57 +00003122 return nullptr;
3123
Daniel Dunbarfe3ead72010-04-02 20:10:03 +00003124 ObjCIvarDecl *ToIvar = ObjCIvarDecl::Create(Importer.getToContext(),
3125 cast<ObjCContainerDecl>(DC),
Abramo Bagnaradff19302011-03-08 08:55:46 +00003126 Importer.Import(D->getInnerLocStart()),
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003127 Loc, Name.getAsIdentifierInfo(),
3128 T, TInfo, D->getAccessControl(),
Argyrios Kyrtzidis2080d902014-01-03 18:32:18 +00003129 BitWidth, D->getSynthesize());
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003130 ToIvar->setLexicalDeclContext(LexicalDC);
3131 Importer.Imported(D, ToIvar);
Sean Callanan95e74be2011-10-21 02:57:43 +00003132 LexicalDC->addDeclInternal(ToIvar);
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003133 return ToIvar;
3134
3135}
3136
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003137Decl *ASTNodeImporter::VisitVarDecl(VarDecl *D) {
3138 // Import the major distinguishing characteristics of a variable.
3139 DeclContext *DC, *LexicalDC;
3140 DeclarationName Name;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003141 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003142 NamedDecl *ToD;
3143 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003144 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003145 if (ToD)
3146 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003147
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003148 // Try to find a variable in our own ("to") context with the same name and
3149 // in the same context as the variable we're importing.
Douglas Gregor62d311f2010-02-09 19:21:46 +00003150 if (D->isFileVarDecl()) {
Craig Topper36250ad2014-05-12 05:36:57 +00003151 VarDecl *MergeWithVar = nullptr;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003152 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003153 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003154 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003155 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003156 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3157 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003158 continue;
3159
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003160 if (VarDecl *FoundVar = dyn_cast<VarDecl>(FoundDecls[I])) {
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003161 // We have found a variable that we may need to merge with. Check it.
Rafael Espindola3ae00052013-05-13 00:12:11 +00003162 if (FoundVar->hasExternalFormalLinkage() &&
3163 D->hasExternalFormalLinkage()) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00003164 if (Importer.IsStructurallyEquivalent(D->getType(),
3165 FoundVar->getType())) {
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003166 MergeWithVar = FoundVar;
3167 break;
3168 }
3169
Douglas Gregor56521c52010-02-12 17:23:39 +00003170 const ArrayType *FoundArray
3171 = Importer.getToContext().getAsArrayType(FoundVar->getType());
3172 const ArrayType *TArray
Douglas Gregorb4964f72010-02-15 23:54:17 +00003173 = Importer.getToContext().getAsArrayType(D->getType());
Douglas Gregor56521c52010-02-12 17:23:39 +00003174 if (FoundArray && TArray) {
3175 if (isa<IncompleteArrayType>(FoundArray) &&
3176 isa<ConstantArrayType>(TArray)) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00003177 // Import the type.
3178 QualType T = Importer.Import(D->getType());
3179 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003180 return nullptr;
3181
Douglas Gregor56521c52010-02-12 17:23:39 +00003182 FoundVar->setType(T);
3183 MergeWithVar = FoundVar;
3184 break;
3185 } else if (isa<IncompleteArrayType>(TArray) &&
3186 isa<ConstantArrayType>(FoundArray)) {
3187 MergeWithVar = FoundVar;
3188 break;
Douglas Gregor2fbe5582010-02-10 17:16:49 +00003189 }
3190 }
3191
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003192 Importer.ToDiag(Loc, diag::err_odr_variable_type_inconsistent)
Douglas Gregorb4964f72010-02-15 23:54:17 +00003193 << Name << D->getType() << FoundVar->getType();
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003194 Importer.ToDiag(FoundVar->getLocation(), diag::note_odr_value_here)
3195 << FoundVar->getType();
3196 }
3197 }
3198
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003199 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003200 }
3201
3202 if (MergeWithVar) {
3203 // An equivalent variable with external linkage has been found. Link
3204 // the two declarations, then merge them.
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003205 Importer.Imported(D, MergeWithVar);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003206
3207 if (VarDecl *DDef = D->getDefinition()) {
3208 if (VarDecl *ExistingDef = MergeWithVar->getDefinition()) {
3209 Importer.ToDiag(ExistingDef->getLocation(),
3210 diag::err_odr_variable_multiple_def)
3211 << Name;
3212 Importer.FromDiag(DDef->getLocation(), diag::note_odr_defined_here);
3213 } else {
3214 Expr *Init = Importer.Import(DDef->getInit());
Douglas Gregord5058122010-02-11 01:19:42 +00003215 MergeWithVar->setInit(Init);
Richard Smithd0b4dd62011-12-19 06:19:21 +00003216 if (DDef->isInitKnownICE()) {
3217 EvaluatedStmt *Eval = MergeWithVar->ensureEvaluatedStmt();
3218 Eval->CheckedICE = true;
3219 Eval->IsICE = DDef->isInitICE();
3220 }
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003221 }
3222 }
3223
3224 return MergeWithVar;
3225 }
3226
3227 if (!ConflictingDecls.empty()) {
3228 Name = Importer.HandleNameConflict(Name, DC, IDNS,
3229 ConflictingDecls.data(),
3230 ConflictingDecls.size());
3231 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00003232 return nullptr;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003233 }
3234 }
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00003235
Douglas Gregorb4964f72010-02-15 23:54:17 +00003236 // Import the type.
3237 QualType T = Importer.Import(D->getType());
3238 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003239 return nullptr;
3240
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003241 // Create the imported variable.
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00003242 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Abramo Bagnaradff19302011-03-08 08:55:46 +00003243 VarDecl *ToVar = VarDecl::Create(Importer.getToContext(), DC,
3244 Importer.Import(D->getInnerLocStart()),
3245 Loc, Name.getAsIdentifierInfo(),
3246 T, TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003247 D->getStorageClass());
Douglas Gregor14454802011-02-25 02:25:35 +00003248 ToVar->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregordd483172010-02-22 17:42:47 +00003249 ToVar->setAccess(D->getAccess());
Douglas Gregor62d311f2010-02-09 19:21:46 +00003250 ToVar->setLexicalDeclContext(LexicalDC);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003251 Importer.Imported(D, ToVar);
Sean Callanan95e74be2011-10-21 02:57:43 +00003252 LexicalDC->addDeclInternal(ToVar);
Douglas Gregor62d311f2010-02-09 19:21:46 +00003253
Sean Callanan59721b32015-04-28 18:41:46 +00003254 if (!D->isFileVarDecl() &&
3255 D->isUsed())
3256 ToVar->setIsUsed();
3257
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003258 // Merge the initializer.
Larisse Voufo39a1e502013-08-06 01:03:05 +00003259 if (ImportDefinition(D, ToVar))
Craig Topper36250ad2014-05-12 05:36:57 +00003260 return nullptr;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003261
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003262 return ToVar;
3263}
3264
Douglas Gregor8b228d72010-02-17 21:22:52 +00003265Decl *ASTNodeImporter::VisitImplicitParamDecl(ImplicitParamDecl *D) {
3266 // Parameters are created in the translation unit's context, then moved
3267 // into the function declaration's context afterward.
3268 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
3269
3270 // Import the name of this declaration.
3271 DeclarationName Name = Importer.Import(D->getDeclName());
3272 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00003273 return nullptr;
3274
Douglas Gregor8b228d72010-02-17 21:22:52 +00003275 // Import the location of this declaration.
3276 SourceLocation Loc = Importer.Import(D->getLocation());
3277
3278 // Import the parameter's type.
3279 QualType T = Importer.Import(D->getType());
3280 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003281 return nullptr;
3282
Douglas Gregor8b228d72010-02-17 21:22:52 +00003283 // Create the imported parameter.
3284 ImplicitParamDecl *ToParm
3285 = ImplicitParamDecl::Create(Importer.getToContext(), DC,
3286 Loc, Name.getAsIdentifierInfo(),
3287 T);
3288 return Importer.Imported(D, ToParm);
3289}
3290
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003291Decl *ASTNodeImporter::VisitParmVarDecl(ParmVarDecl *D) {
3292 // Parameters are created in the translation unit's context, then moved
3293 // into the function declaration's context afterward.
3294 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
3295
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00003296 // Import the name of this declaration.
3297 DeclarationName Name = Importer.Import(D->getDeclName());
3298 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00003299 return nullptr;
3300
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003301 // Import the location of this declaration.
3302 SourceLocation Loc = Importer.Import(D->getLocation());
3303
3304 // Import the parameter's type.
3305 QualType T = Importer.Import(D->getType());
3306 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003307 return nullptr;
3308
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003309 // Create the imported parameter.
3310 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3311 ParmVarDecl *ToParm = ParmVarDecl::Create(Importer.getToContext(), DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00003312 Importer.Import(D->getInnerLocStart()),
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003313 Loc, Name.getAsIdentifierInfo(),
3314 T, TInfo, D->getStorageClass(),
Craig Topper36250ad2014-05-12 05:36:57 +00003315 /*FIXME: Default argument*/nullptr);
John McCallf3cd6652010-03-12 18:31:32 +00003316 ToParm->setHasInheritedDefaultArg(D->hasInheritedDefaultArg());
Sean Callanan59721b32015-04-28 18:41:46 +00003317
3318 if (D->isUsed())
3319 ToParm->setIsUsed();
3320
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003321 return Importer.Imported(D, ToParm);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003322}
3323
Douglas Gregor43f54792010-02-17 02:12:47 +00003324Decl *ASTNodeImporter::VisitObjCMethodDecl(ObjCMethodDecl *D) {
3325 // Import the major distinguishing characteristics of a method.
3326 DeclContext *DC, *LexicalDC;
3327 DeclarationName Name;
3328 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003329 NamedDecl *ToD;
3330 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003331 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003332 if (ToD)
3333 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003334
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003335 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003336 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003337 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3338 if (ObjCMethodDecl *FoundMethod = dyn_cast<ObjCMethodDecl>(FoundDecls[I])) {
Douglas Gregor43f54792010-02-17 02:12:47 +00003339 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod())
3340 continue;
3341
3342 // Check return types.
Alp Toker314cc812014-01-25 16:55:45 +00003343 if (!Importer.IsStructurallyEquivalent(D->getReturnType(),
3344 FoundMethod->getReturnType())) {
Douglas Gregor43f54792010-02-17 02:12:47 +00003345 Importer.ToDiag(Loc, diag::err_odr_objc_method_result_type_inconsistent)
Alp Toker314cc812014-01-25 16:55:45 +00003346 << D->isInstanceMethod() << Name << D->getReturnType()
3347 << FoundMethod->getReturnType();
Douglas Gregor43f54792010-02-17 02:12:47 +00003348 Importer.ToDiag(FoundMethod->getLocation(),
3349 diag::note_odr_objc_method_here)
3350 << D->isInstanceMethod() << Name;
Craig Topper36250ad2014-05-12 05:36:57 +00003351 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003352 }
3353
3354 // Check the number of parameters.
3355 if (D->param_size() != FoundMethod->param_size()) {
3356 Importer.ToDiag(Loc, diag::err_odr_objc_method_num_params_inconsistent)
3357 << D->isInstanceMethod() << Name
3358 << D->param_size() << FoundMethod->param_size();
3359 Importer.ToDiag(FoundMethod->getLocation(),
3360 diag::note_odr_objc_method_here)
3361 << D->isInstanceMethod() << Name;
Craig Topper36250ad2014-05-12 05:36:57 +00003362 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003363 }
3364
3365 // Check parameter types.
3366 for (ObjCMethodDecl::param_iterator P = D->param_begin(),
3367 PEnd = D->param_end(), FoundP = FoundMethod->param_begin();
3368 P != PEnd; ++P, ++FoundP) {
3369 if (!Importer.IsStructurallyEquivalent((*P)->getType(),
3370 (*FoundP)->getType())) {
3371 Importer.FromDiag((*P)->getLocation(),
3372 diag::err_odr_objc_method_param_type_inconsistent)
3373 << D->isInstanceMethod() << Name
3374 << (*P)->getType() << (*FoundP)->getType();
3375 Importer.ToDiag((*FoundP)->getLocation(), diag::note_odr_value_here)
3376 << (*FoundP)->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003377 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003378 }
3379 }
3380
3381 // Check variadic/non-variadic.
3382 // Check the number of parameters.
3383 if (D->isVariadic() != FoundMethod->isVariadic()) {
3384 Importer.ToDiag(Loc, diag::err_odr_objc_method_variadic_inconsistent)
3385 << D->isInstanceMethod() << Name;
3386 Importer.ToDiag(FoundMethod->getLocation(),
3387 diag::note_odr_objc_method_here)
3388 << D->isInstanceMethod() << Name;
Craig Topper36250ad2014-05-12 05:36:57 +00003389 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003390 }
3391
3392 // FIXME: Any other bits we need to merge?
3393 return Importer.Imported(D, FoundMethod);
3394 }
3395 }
3396
3397 // Import the result type.
Alp Toker314cc812014-01-25 16:55:45 +00003398 QualType ResultTy = Importer.Import(D->getReturnType());
Douglas Gregor43f54792010-02-17 02:12:47 +00003399 if (ResultTy.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003400 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003401
Alp Toker314cc812014-01-25 16:55:45 +00003402 TypeSourceInfo *ReturnTInfo = Importer.Import(D->getReturnTypeSourceInfo());
Douglas Gregor12852d92010-03-08 14:59:44 +00003403
Alp Toker314cc812014-01-25 16:55:45 +00003404 ObjCMethodDecl *ToMethod = ObjCMethodDecl::Create(
3405 Importer.getToContext(), Loc, Importer.Import(D->getLocEnd()),
3406 Name.getObjCSelector(), ResultTy, ReturnTInfo, DC, D->isInstanceMethod(),
3407 D->isVariadic(), D->isPropertyAccessor(), D->isImplicit(), D->isDefined(),
3408 D->getImplementationControl(), D->hasRelatedResultType());
Douglas Gregor43f54792010-02-17 02:12:47 +00003409
3410 // FIXME: When we decide to merge method definitions, we'll need to
3411 // deal with implicit parameters.
3412
3413 // Import the parameters
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003414 SmallVector<ParmVarDecl *, 5> ToParams;
Aaron Ballman43b68be2014-03-07 17:50:17 +00003415 for (auto *FromP : D->params()) {
3416 ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(FromP));
Douglas Gregor43f54792010-02-17 02:12:47 +00003417 if (!ToP)
Craig Topper36250ad2014-05-12 05:36:57 +00003418 return nullptr;
3419
Douglas Gregor43f54792010-02-17 02:12:47 +00003420 ToParams.push_back(ToP);
3421 }
3422
3423 // Set the parameters.
3424 for (unsigned I = 0, N = ToParams.size(); I != N; ++I) {
3425 ToParams[I]->setOwningFunction(ToMethod);
Sean Callanan95e74be2011-10-21 02:57:43 +00003426 ToMethod->addDeclInternal(ToParams[I]);
Douglas Gregor43f54792010-02-17 02:12:47 +00003427 }
Argyrios Kyrtzidisb8c3aaf2011-10-03 06:37:04 +00003428 SmallVector<SourceLocation, 12> SelLocs;
3429 D->getSelectorLocs(SelLocs);
3430 ToMethod->setMethodParams(Importer.getToContext(), ToParams, SelLocs);
Douglas Gregor43f54792010-02-17 02:12:47 +00003431
3432 ToMethod->setLexicalDeclContext(LexicalDC);
3433 Importer.Imported(D, ToMethod);
Sean Callanan95e74be2011-10-21 02:57:43 +00003434 LexicalDC->addDeclInternal(ToMethod);
Douglas Gregor43f54792010-02-17 02:12:47 +00003435 return ToMethod;
3436}
3437
Douglas Gregor85f3f952015-07-07 03:57:15 +00003438Decl *ASTNodeImporter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) {
3439 // Import the major distinguishing characteristics of a category.
3440 DeclContext *DC, *LexicalDC;
3441 DeclarationName Name;
3442 SourceLocation Loc;
3443 NamedDecl *ToD;
3444 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3445 return nullptr;
3446 if (ToD)
3447 return ToD;
3448
3449 TypeSourceInfo *BoundInfo = Importer.Import(D->getTypeSourceInfo());
3450 if (!BoundInfo)
3451 return nullptr;
3452
3453 ObjCTypeParamDecl *Result = ObjCTypeParamDecl::Create(
3454 Importer.getToContext(), DC,
Douglas Gregore83b9562015-07-07 03:57:53 +00003455 D->getIndex(),
Douglas Gregor85f3f952015-07-07 03:57:15 +00003456 Importer.Import(D->getLocation()),
3457 Name.getAsIdentifierInfo(),
3458 Importer.Import(D->getColonLoc()),
3459 BoundInfo);
3460 Importer.Imported(D, Result);
3461 Result->setLexicalDeclContext(LexicalDC);
3462 return Result;
3463}
3464
Douglas Gregor84c51c32010-02-18 01:47:50 +00003465Decl *ASTNodeImporter::VisitObjCCategoryDecl(ObjCCategoryDecl *D) {
3466 // Import the major distinguishing characteristics of a category.
3467 DeclContext *DC, *LexicalDC;
3468 DeclarationName Name;
3469 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003470 NamedDecl *ToD;
3471 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003472 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003473 if (ToD)
3474 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003475
Douglas Gregor84c51c32010-02-18 01:47:50 +00003476 ObjCInterfaceDecl *ToInterface
3477 = cast_or_null<ObjCInterfaceDecl>(Importer.Import(D->getClassInterface()));
3478 if (!ToInterface)
Craig Topper36250ad2014-05-12 05:36:57 +00003479 return nullptr;
3480
Douglas Gregor84c51c32010-02-18 01:47:50 +00003481 // Determine if we've already encountered this category.
3482 ObjCCategoryDecl *MergeWithCategory
3483 = ToInterface->FindCategoryDeclaration(Name.getAsIdentifierInfo());
3484 ObjCCategoryDecl *ToCategory = MergeWithCategory;
3485 if (!ToCategory) {
3486 ToCategory = ObjCCategoryDecl::Create(Importer.getToContext(), DC,
Argyrios Kyrtzidis52f53fb2011-10-04 04:48:02 +00003487 Importer.Import(D->getAtStartLoc()),
Douglas Gregor84c51c32010-02-18 01:47:50 +00003488 Loc,
3489 Importer.Import(D->getCategoryNameLoc()),
Argyrios Kyrtzidis3a5094b2011-08-30 19:43:26 +00003490 Name.getAsIdentifierInfo(),
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00003491 ToInterface,
Douglas Gregor85f3f952015-07-07 03:57:15 +00003492 ImportObjCTypeParamList(
3493 D->getTypeParamList()),
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00003494 Importer.Import(D->getIvarLBraceLoc()),
3495 Importer.Import(D->getIvarRBraceLoc()));
Douglas Gregor84c51c32010-02-18 01:47:50 +00003496 ToCategory->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00003497 LexicalDC->addDeclInternal(ToCategory);
Douglas Gregor84c51c32010-02-18 01:47:50 +00003498 Importer.Imported(D, ToCategory);
3499
Douglas Gregor84c51c32010-02-18 01:47:50 +00003500 // Import protocols
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003501 SmallVector<ObjCProtocolDecl *, 4> Protocols;
3502 SmallVector<SourceLocation, 4> ProtocolLocs;
Douglas Gregor84c51c32010-02-18 01:47:50 +00003503 ObjCCategoryDecl::protocol_loc_iterator FromProtoLoc
3504 = D->protocol_loc_begin();
3505 for (ObjCCategoryDecl::protocol_iterator FromProto = D->protocol_begin(),
3506 FromProtoEnd = D->protocol_end();
3507 FromProto != FromProtoEnd;
3508 ++FromProto, ++FromProtoLoc) {
3509 ObjCProtocolDecl *ToProto
3510 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3511 if (!ToProto)
Craig Topper36250ad2014-05-12 05:36:57 +00003512 return nullptr;
Douglas Gregor84c51c32010-02-18 01:47:50 +00003513 Protocols.push_back(ToProto);
3514 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3515 }
3516
3517 // FIXME: If we're merging, make sure that the protocol list is the same.
3518 ToCategory->setProtocolList(Protocols.data(), Protocols.size(),
3519 ProtocolLocs.data(), Importer.getToContext());
3520
3521 } else {
3522 Importer.Imported(D, ToCategory);
3523 }
3524
3525 // Import all of the members of this category.
Douglas Gregor968d6332010-02-21 18:24:45 +00003526 ImportDeclContext(D);
Douglas Gregor84c51c32010-02-18 01:47:50 +00003527
3528 // If we have an implementation, import it as well.
3529 if (D->getImplementation()) {
3530 ObjCCategoryImplDecl *Impl
Douglas Gregor35fd7bc2010-12-08 16:41:55 +00003531 = cast_or_null<ObjCCategoryImplDecl>(
3532 Importer.Import(D->getImplementation()));
Douglas Gregor84c51c32010-02-18 01:47:50 +00003533 if (!Impl)
Craig Topper36250ad2014-05-12 05:36:57 +00003534 return nullptr;
3535
Douglas Gregor84c51c32010-02-18 01:47:50 +00003536 ToCategory->setImplementation(Impl);
3537 }
3538
3539 return ToCategory;
3540}
3541
Douglas Gregor2aa53772012-01-24 17:42:07 +00003542bool ASTNodeImporter::ImportDefinition(ObjCProtocolDecl *From,
3543 ObjCProtocolDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +00003544 ImportDefinitionKind Kind) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003545 if (To->getDefinition()) {
Douglas Gregor2e15c842012-02-01 21:00:38 +00003546 if (shouldForceImportDeclContext(Kind))
3547 ImportDeclContext(From);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003548 return false;
3549 }
3550
3551 // Start the protocol definition
3552 To->startDefinition();
3553
3554 // Import protocols
3555 SmallVector<ObjCProtocolDecl *, 4> Protocols;
3556 SmallVector<SourceLocation, 4> ProtocolLocs;
3557 ObjCProtocolDecl::protocol_loc_iterator
3558 FromProtoLoc = From->protocol_loc_begin();
3559 for (ObjCProtocolDecl::protocol_iterator FromProto = From->protocol_begin(),
3560 FromProtoEnd = From->protocol_end();
3561 FromProto != FromProtoEnd;
3562 ++FromProto, ++FromProtoLoc) {
3563 ObjCProtocolDecl *ToProto
3564 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3565 if (!ToProto)
3566 return true;
3567 Protocols.push_back(ToProto);
3568 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3569 }
3570
3571 // FIXME: If we're merging, make sure that the protocol list is the same.
3572 To->setProtocolList(Protocols.data(), Protocols.size(),
3573 ProtocolLocs.data(), Importer.getToContext());
3574
Douglas Gregor2e15c842012-02-01 21:00:38 +00003575 if (shouldForceImportDeclContext(Kind)) {
3576 // Import all of the members of this protocol.
3577 ImportDeclContext(From, /*ForceImport=*/true);
3578 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00003579 return false;
3580}
3581
Douglas Gregor98d156a2010-02-17 16:12:00 +00003582Decl *ASTNodeImporter::VisitObjCProtocolDecl(ObjCProtocolDecl *D) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003583 // If this protocol has a definition in the translation unit we're coming
3584 // from, but this particular declaration is not that definition, import the
3585 // definition and map to that.
3586 ObjCProtocolDecl *Definition = D->getDefinition();
3587 if (Definition && Definition != D) {
3588 Decl *ImportedDef = Importer.Import(Definition);
3589 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00003590 return nullptr;
3591
Douglas Gregor2aa53772012-01-24 17:42:07 +00003592 return Importer.Imported(D, ImportedDef);
3593 }
3594
Douglas Gregor84c51c32010-02-18 01:47:50 +00003595 // Import the major distinguishing characteristics of a protocol.
Douglas Gregor98d156a2010-02-17 16:12:00 +00003596 DeclContext *DC, *LexicalDC;
3597 DeclarationName Name;
3598 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003599 NamedDecl *ToD;
3600 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003601 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003602 if (ToD)
3603 return ToD;
Douglas Gregor98d156a2010-02-17 16:12:00 +00003604
Craig Topper36250ad2014-05-12 05:36:57 +00003605 ObjCProtocolDecl *MergeWithProtocol = nullptr;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003606 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003607 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003608 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3609 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_ObjCProtocol))
Douglas Gregor98d156a2010-02-17 16:12:00 +00003610 continue;
3611
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003612 if ((MergeWithProtocol = dyn_cast<ObjCProtocolDecl>(FoundDecls[I])))
Douglas Gregor98d156a2010-02-17 16:12:00 +00003613 break;
3614 }
3615
3616 ObjCProtocolDecl *ToProto = MergeWithProtocol;
Douglas Gregor2aa53772012-01-24 17:42:07 +00003617 if (!ToProto) {
3618 ToProto = ObjCProtocolDecl::Create(Importer.getToContext(), DC,
3619 Name.getAsIdentifierInfo(), Loc,
3620 Importer.Import(D->getAtStartLoc()),
Craig Topper36250ad2014-05-12 05:36:57 +00003621 /*PrevDecl=*/nullptr);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003622 ToProto->setLexicalDeclContext(LexicalDC);
3623 LexicalDC->addDeclInternal(ToProto);
Douglas Gregor98d156a2010-02-17 16:12:00 +00003624 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00003625
3626 Importer.Imported(D, ToProto);
Douglas Gregor98d156a2010-02-17 16:12:00 +00003627
Douglas Gregor2aa53772012-01-24 17:42:07 +00003628 if (D->isThisDeclarationADefinition() && ImportDefinition(D, ToProto))
Craig Topper36250ad2014-05-12 05:36:57 +00003629 return nullptr;
3630
Douglas Gregor98d156a2010-02-17 16:12:00 +00003631 return ToProto;
3632}
3633
Sean Callanan0aae0412014-12-10 00:00:37 +00003634Decl *ASTNodeImporter::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
3635 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
3636 DeclContext *LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
3637
3638 SourceLocation ExternLoc = Importer.Import(D->getExternLoc());
3639 SourceLocation LangLoc = Importer.Import(D->getLocation());
3640
3641 bool HasBraces = D->hasBraces();
3642
Sean Callananb12a8552014-12-10 21:22:20 +00003643 LinkageSpecDecl *ToLinkageSpec =
3644 LinkageSpecDecl::Create(Importer.getToContext(),
3645 DC,
3646 ExternLoc,
3647 LangLoc,
3648 D->getLanguage(),
3649 HasBraces);
Sean Callanan0aae0412014-12-10 00:00:37 +00003650
3651 if (HasBraces) {
3652 SourceLocation RBraceLoc = Importer.Import(D->getRBraceLoc());
3653 ToLinkageSpec->setRBraceLoc(RBraceLoc);
3654 }
3655
3656 ToLinkageSpec->setLexicalDeclContext(LexicalDC);
3657 LexicalDC->addDeclInternal(ToLinkageSpec);
3658
3659 Importer.Imported(D, ToLinkageSpec);
3660
3661 return ToLinkageSpec;
3662}
3663
Douglas Gregor2aa53772012-01-24 17:42:07 +00003664bool ASTNodeImporter::ImportDefinition(ObjCInterfaceDecl *From,
3665 ObjCInterfaceDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +00003666 ImportDefinitionKind Kind) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003667 if (To->getDefinition()) {
3668 // Check consistency of superclass.
3669 ObjCInterfaceDecl *FromSuper = From->getSuperClass();
3670 if (FromSuper) {
3671 FromSuper = cast_or_null<ObjCInterfaceDecl>(Importer.Import(FromSuper));
3672 if (!FromSuper)
3673 return true;
3674 }
3675
3676 ObjCInterfaceDecl *ToSuper = To->getSuperClass();
3677 if ((bool)FromSuper != (bool)ToSuper ||
3678 (FromSuper && !declaresSameEntity(FromSuper, ToSuper))) {
3679 Importer.ToDiag(To->getLocation(),
3680 diag::err_odr_objc_superclass_inconsistent)
3681 << To->getDeclName();
3682 if (ToSuper)
3683 Importer.ToDiag(To->getSuperClassLoc(), diag::note_odr_objc_superclass)
3684 << To->getSuperClass()->getDeclName();
3685 else
3686 Importer.ToDiag(To->getLocation(),
3687 diag::note_odr_objc_missing_superclass);
3688 if (From->getSuperClass())
3689 Importer.FromDiag(From->getSuperClassLoc(),
3690 diag::note_odr_objc_superclass)
3691 << From->getSuperClass()->getDeclName();
3692 else
3693 Importer.FromDiag(From->getLocation(),
3694 diag::note_odr_objc_missing_superclass);
3695 }
3696
Douglas Gregor2e15c842012-02-01 21:00:38 +00003697 if (shouldForceImportDeclContext(Kind))
3698 ImportDeclContext(From);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003699 return false;
3700 }
3701
3702 // Start the definition.
3703 To->startDefinition();
3704
3705 // If this class has a superclass, import it.
3706 if (From->getSuperClass()) {
Douglas Gregore9d95f12015-07-07 03:57:35 +00003707 TypeSourceInfo *SuperTInfo = Importer.Import(From->getSuperClassTInfo());
3708 if (!SuperTInfo)
Douglas Gregor2aa53772012-01-24 17:42:07 +00003709 return true;
Douglas Gregore9d95f12015-07-07 03:57:35 +00003710
3711 To->setSuperClass(SuperTInfo);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003712 }
3713
3714 // Import protocols
3715 SmallVector<ObjCProtocolDecl *, 4> Protocols;
3716 SmallVector<SourceLocation, 4> ProtocolLocs;
3717 ObjCInterfaceDecl::protocol_loc_iterator
3718 FromProtoLoc = From->protocol_loc_begin();
3719
3720 for (ObjCInterfaceDecl::protocol_iterator FromProto = From->protocol_begin(),
3721 FromProtoEnd = From->protocol_end();
3722 FromProto != FromProtoEnd;
3723 ++FromProto, ++FromProtoLoc) {
3724 ObjCProtocolDecl *ToProto
3725 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3726 if (!ToProto)
3727 return true;
3728 Protocols.push_back(ToProto);
3729 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3730 }
3731
3732 // FIXME: If we're merging, make sure that the protocol list is the same.
3733 To->setProtocolList(Protocols.data(), Protocols.size(),
3734 ProtocolLocs.data(), Importer.getToContext());
3735
3736 // Import categories. When the categories themselves are imported, they'll
3737 // hook themselves into this interface.
Aaron Ballman15063e12014-03-13 21:35:02 +00003738 for (auto *Cat : From->known_categories())
3739 Importer.Import(Cat);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00003740
Douglas Gregor2aa53772012-01-24 17:42:07 +00003741 // If we have an @implementation, import it as well.
3742 if (From->getImplementation()) {
3743 ObjCImplementationDecl *Impl = cast_or_null<ObjCImplementationDecl>(
3744 Importer.Import(From->getImplementation()));
3745 if (!Impl)
3746 return true;
3747
3748 To->setImplementation(Impl);
3749 }
3750
Douglas Gregor2e15c842012-02-01 21:00:38 +00003751 if (shouldForceImportDeclContext(Kind)) {
3752 // Import all of the members of this class.
3753 ImportDeclContext(From, /*ForceImport=*/true);
3754 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00003755 return false;
3756}
3757
Douglas Gregor85f3f952015-07-07 03:57:15 +00003758ObjCTypeParamList *
3759ASTNodeImporter::ImportObjCTypeParamList(ObjCTypeParamList *list) {
3760 if (!list)
3761 return nullptr;
3762
3763 SmallVector<ObjCTypeParamDecl *, 4> toTypeParams;
3764 for (auto fromTypeParam : *list) {
3765 auto toTypeParam = cast_or_null<ObjCTypeParamDecl>(
3766 Importer.Import(fromTypeParam));
3767 if (!toTypeParam)
3768 return nullptr;
3769
3770 toTypeParams.push_back(toTypeParam);
3771 }
3772
3773 return ObjCTypeParamList::create(Importer.getToContext(),
3774 Importer.Import(list->getLAngleLoc()),
3775 toTypeParams,
3776 Importer.Import(list->getRAngleLoc()));
3777}
3778
Douglas Gregor45635322010-02-16 01:20:57 +00003779Decl *ASTNodeImporter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003780 // If this class has a definition in the translation unit we're coming from,
3781 // but this particular declaration is not that definition, import the
3782 // definition and map to that.
3783 ObjCInterfaceDecl *Definition = D->getDefinition();
3784 if (Definition && Definition != D) {
3785 Decl *ImportedDef = Importer.Import(Definition);
3786 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00003787 return nullptr;
3788
Douglas Gregor2aa53772012-01-24 17:42:07 +00003789 return Importer.Imported(D, ImportedDef);
3790 }
3791
Douglas Gregor45635322010-02-16 01:20:57 +00003792 // Import the major distinguishing characteristics of an @interface.
3793 DeclContext *DC, *LexicalDC;
3794 DeclarationName Name;
3795 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003796 NamedDecl *ToD;
3797 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003798 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003799 if (ToD)
3800 return ToD;
Douglas Gregor45635322010-02-16 01:20:57 +00003801
Douglas Gregor2aa53772012-01-24 17:42:07 +00003802 // Look for an existing interface with the same name.
Craig Topper36250ad2014-05-12 05:36:57 +00003803 ObjCInterfaceDecl *MergeWithIface = nullptr;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003804 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003805 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003806 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3807 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
Douglas Gregor45635322010-02-16 01:20:57 +00003808 continue;
3809
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003810 if ((MergeWithIface = dyn_cast<ObjCInterfaceDecl>(FoundDecls[I])))
Douglas Gregor45635322010-02-16 01:20:57 +00003811 break;
3812 }
3813
Douglas Gregor2aa53772012-01-24 17:42:07 +00003814 // Create an interface declaration, if one does not already exist.
Douglas Gregor45635322010-02-16 01:20:57 +00003815 ObjCInterfaceDecl *ToIface = MergeWithIface;
Douglas Gregor2aa53772012-01-24 17:42:07 +00003816 if (!ToIface) {
3817 ToIface = ObjCInterfaceDecl::Create(Importer.getToContext(), DC,
3818 Importer.Import(D->getAtStartLoc()),
Douglas Gregor85f3f952015-07-07 03:57:15 +00003819 Name.getAsIdentifierInfo(),
3820 ImportObjCTypeParamList(
3821 D->getTypeParamListAsWritten()),
Craig Topper36250ad2014-05-12 05:36:57 +00003822 /*PrevDecl=*/nullptr, Loc,
Douglas Gregor2aa53772012-01-24 17:42:07 +00003823 D->isImplicitInterfaceDecl());
3824 ToIface->setLexicalDeclContext(LexicalDC);
3825 LexicalDC->addDeclInternal(ToIface);
Douglas Gregor45635322010-02-16 01:20:57 +00003826 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00003827 Importer.Imported(D, ToIface);
Douglas Gregor45635322010-02-16 01:20:57 +00003828
Douglas Gregor2aa53772012-01-24 17:42:07 +00003829 if (D->isThisDeclarationADefinition() && ImportDefinition(D, ToIface))
Craig Topper36250ad2014-05-12 05:36:57 +00003830 return nullptr;
3831
Douglas Gregor98d156a2010-02-17 16:12:00 +00003832 return ToIface;
Douglas Gregor45635322010-02-16 01:20:57 +00003833}
3834
Douglas Gregor4da9d682010-12-07 15:32:12 +00003835Decl *ASTNodeImporter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
3836 ObjCCategoryDecl *Category = cast_or_null<ObjCCategoryDecl>(
3837 Importer.Import(D->getCategoryDecl()));
3838 if (!Category)
Craig Topper36250ad2014-05-12 05:36:57 +00003839 return nullptr;
3840
Douglas Gregor4da9d682010-12-07 15:32:12 +00003841 ObjCCategoryImplDecl *ToImpl = Category->getImplementation();
3842 if (!ToImpl) {
3843 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
3844 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00003845 return nullptr;
3846
Argyrios Kyrtzidis4996f5f2011-12-09 00:31:40 +00003847 SourceLocation CategoryNameLoc = Importer.Import(D->getCategoryNameLoc());
Douglas Gregor4da9d682010-12-07 15:32:12 +00003848 ToImpl = ObjCCategoryImplDecl::Create(Importer.getToContext(), DC,
Douglas Gregor4da9d682010-12-07 15:32:12 +00003849 Importer.Import(D->getIdentifier()),
Argyrios Kyrtzidis52f53fb2011-10-04 04:48:02 +00003850 Category->getClassInterface(),
3851 Importer.Import(D->getLocation()),
Argyrios Kyrtzidis4996f5f2011-12-09 00:31:40 +00003852 Importer.Import(D->getAtStartLoc()),
3853 CategoryNameLoc);
Douglas Gregor4da9d682010-12-07 15:32:12 +00003854
3855 DeclContext *LexicalDC = DC;
3856 if (D->getDeclContext() != D->getLexicalDeclContext()) {
3857 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
3858 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00003859 return nullptr;
3860
Douglas Gregor4da9d682010-12-07 15:32:12 +00003861 ToImpl->setLexicalDeclContext(LexicalDC);
3862 }
3863
Sean Callanan95e74be2011-10-21 02:57:43 +00003864 LexicalDC->addDeclInternal(ToImpl);
Douglas Gregor4da9d682010-12-07 15:32:12 +00003865 Category->setImplementation(ToImpl);
3866 }
3867
3868 Importer.Imported(D, ToImpl);
Douglas Gregor35fd7bc2010-12-08 16:41:55 +00003869 ImportDeclContext(D);
Douglas Gregor4da9d682010-12-07 15:32:12 +00003870 return ToImpl;
3871}
3872
Douglas Gregorda8025c2010-12-07 01:26:03 +00003873Decl *ASTNodeImporter::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
3874 // Find the corresponding interface.
3875 ObjCInterfaceDecl *Iface = cast_or_null<ObjCInterfaceDecl>(
3876 Importer.Import(D->getClassInterface()));
3877 if (!Iface)
Craig Topper36250ad2014-05-12 05:36:57 +00003878 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00003879
3880 // Import the superclass, if any.
Craig Topper36250ad2014-05-12 05:36:57 +00003881 ObjCInterfaceDecl *Super = nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00003882 if (D->getSuperClass()) {
3883 Super = cast_or_null<ObjCInterfaceDecl>(
3884 Importer.Import(D->getSuperClass()));
3885 if (!Super)
Craig Topper36250ad2014-05-12 05:36:57 +00003886 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00003887 }
3888
3889 ObjCImplementationDecl *Impl = Iface->getImplementation();
3890 if (!Impl) {
3891 // We haven't imported an implementation yet. Create a new @implementation
3892 // now.
3893 Impl = ObjCImplementationDecl::Create(Importer.getToContext(),
3894 Importer.ImportContext(D->getDeclContext()),
Argyrios Kyrtzidis52f53fb2011-10-04 04:48:02 +00003895 Iface, Super,
Douglas Gregorda8025c2010-12-07 01:26:03 +00003896 Importer.Import(D->getLocation()),
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00003897 Importer.Import(D->getAtStartLoc()),
Argyrios Kyrtzidis5d2ce842013-05-03 22:31:26 +00003898 Importer.Import(D->getSuperClassLoc()),
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00003899 Importer.Import(D->getIvarLBraceLoc()),
3900 Importer.Import(D->getIvarRBraceLoc()));
Douglas Gregorda8025c2010-12-07 01:26:03 +00003901
3902 if (D->getDeclContext() != D->getLexicalDeclContext()) {
3903 DeclContext *LexicalDC
3904 = Importer.ImportContext(D->getLexicalDeclContext());
3905 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00003906 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00003907 Impl->setLexicalDeclContext(LexicalDC);
3908 }
3909
3910 // Associate the implementation with the class it implements.
3911 Iface->setImplementation(Impl);
3912 Importer.Imported(D, Iface->getImplementation());
3913 } else {
3914 Importer.Imported(D, Iface->getImplementation());
3915
3916 // Verify that the existing @implementation has the same superclass.
3917 if ((Super && !Impl->getSuperClass()) ||
3918 (!Super && Impl->getSuperClass()) ||
Craig Topperdcfc60f2014-05-07 06:57:44 +00003919 (Super && Impl->getSuperClass() &&
3920 !declaresSameEntity(Super->getCanonicalDecl(),
3921 Impl->getSuperClass()))) {
3922 Importer.ToDiag(Impl->getLocation(),
3923 diag::err_odr_objc_superclass_inconsistent)
3924 << Iface->getDeclName();
3925 // FIXME: It would be nice to have the location of the superclass
3926 // below.
3927 if (Impl->getSuperClass())
3928 Importer.ToDiag(Impl->getLocation(),
3929 diag::note_odr_objc_superclass)
3930 << Impl->getSuperClass()->getDeclName();
3931 else
3932 Importer.ToDiag(Impl->getLocation(),
3933 diag::note_odr_objc_missing_superclass);
3934 if (D->getSuperClass())
3935 Importer.FromDiag(D->getLocation(),
Douglas Gregorda8025c2010-12-07 01:26:03 +00003936 diag::note_odr_objc_superclass)
Craig Topperdcfc60f2014-05-07 06:57:44 +00003937 << D->getSuperClass()->getDeclName();
3938 else
3939 Importer.FromDiag(D->getLocation(),
Douglas Gregorda8025c2010-12-07 01:26:03 +00003940 diag::note_odr_objc_missing_superclass);
Craig Topper36250ad2014-05-12 05:36:57 +00003941 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00003942 }
3943 }
3944
3945 // Import all of the members of this @implementation.
3946 ImportDeclContext(D);
3947
3948 return Impl;
3949}
3950
Douglas Gregora11c4582010-02-17 18:02:10 +00003951Decl *ASTNodeImporter::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
3952 // Import the major distinguishing characteristics of an @property.
3953 DeclContext *DC, *LexicalDC;
3954 DeclarationName Name;
3955 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003956 NamedDecl *ToD;
3957 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003958 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003959 if (ToD)
3960 return ToD;
Douglas Gregora11c4582010-02-17 18:02:10 +00003961
3962 // Check whether we have already imported this property.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003963 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003964 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003965 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
Douglas Gregora11c4582010-02-17 18:02:10 +00003966 if (ObjCPropertyDecl *FoundProp
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003967 = dyn_cast<ObjCPropertyDecl>(FoundDecls[I])) {
Douglas Gregora11c4582010-02-17 18:02:10 +00003968 // Check property types.
3969 if (!Importer.IsStructurallyEquivalent(D->getType(),
3970 FoundProp->getType())) {
3971 Importer.ToDiag(Loc, diag::err_odr_objc_property_type_inconsistent)
3972 << Name << D->getType() << FoundProp->getType();
3973 Importer.ToDiag(FoundProp->getLocation(), diag::note_odr_value_here)
3974 << FoundProp->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003975 return nullptr;
Douglas Gregora11c4582010-02-17 18:02:10 +00003976 }
3977
3978 // FIXME: Check property attributes, getters, setters, etc.?
3979
3980 // Consider these properties to be equivalent.
3981 Importer.Imported(D, FoundProp);
3982 return FoundProp;
3983 }
3984 }
3985
3986 // Import the type.
Douglas Gregor813a0662015-06-19 18:14:38 +00003987 TypeSourceInfo *TSI = Importer.Import(D->getTypeSourceInfo());
3988 if (!TSI)
Craig Topper36250ad2014-05-12 05:36:57 +00003989 return nullptr;
Douglas Gregora11c4582010-02-17 18:02:10 +00003990
3991 // Create the new property.
3992 ObjCPropertyDecl *ToProperty
3993 = ObjCPropertyDecl::Create(Importer.getToContext(), DC, Loc,
3994 Name.getAsIdentifierInfo(),
3995 Importer.Import(D->getAtLoc()),
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +00003996 Importer.Import(D->getLParenLoc()),
Douglas Gregor813a0662015-06-19 18:14:38 +00003997 Importer.Import(D->getType()),
3998 TSI,
Douglas Gregora11c4582010-02-17 18:02:10 +00003999 D->getPropertyImplementation());
4000 Importer.Imported(D, ToProperty);
4001 ToProperty->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00004002 LexicalDC->addDeclInternal(ToProperty);
Douglas Gregora11c4582010-02-17 18:02:10 +00004003
4004 ToProperty->setPropertyAttributes(D->getPropertyAttributes());
Fariborz Jahanian3bf0ded2010-06-22 23:20:40 +00004005 ToProperty->setPropertyAttributesAsWritten(
4006 D->getPropertyAttributesAsWritten());
Douglas Gregora11c4582010-02-17 18:02:10 +00004007 ToProperty->setGetterName(Importer.Import(D->getGetterName()));
4008 ToProperty->setSetterName(Importer.Import(D->getSetterName()));
4009 ToProperty->setGetterMethodDecl(
4010 cast_or_null<ObjCMethodDecl>(Importer.Import(D->getGetterMethodDecl())));
4011 ToProperty->setSetterMethodDecl(
4012 cast_or_null<ObjCMethodDecl>(Importer.Import(D->getSetterMethodDecl())));
4013 ToProperty->setPropertyIvarDecl(
4014 cast_or_null<ObjCIvarDecl>(Importer.Import(D->getPropertyIvarDecl())));
4015 return ToProperty;
4016}
4017
Douglas Gregor14a49e22010-12-07 18:32:03 +00004018Decl *ASTNodeImporter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
4019 ObjCPropertyDecl *Property = cast_or_null<ObjCPropertyDecl>(
4020 Importer.Import(D->getPropertyDecl()));
4021 if (!Property)
Craig Topper36250ad2014-05-12 05:36:57 +00004022 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004023
4024 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
4025 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00004026 return nullptr;
4027
Douglas Gregor14a49e22010-12-07 18:32:03 +00004028 // Import the lexical declaration context.
4029 DeclContext *LexicalDC = DC;
4030 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4031 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4032 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004033 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004034 }
4035
4036 ObjCImplDecl *InImpl = dyn_cast<ObjCImplDecl>(LexicalDC);
4037 if (!InImpl)
Craig Topper36250ad2014-05-12 05:36:57 +00004038 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004039
4040 // Import the ivar (for an @synthesize).
Craig Topper36250ad2014-05-12 05:36:57 +00004041 ObjCIvarDecl *Ivar = nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004042 if (D->getPropertyIvarDecl()) {
4043 Ivar = cast_or_null<ObjCIvarDecl>(
4044 Importer.Import(D->getPropertyIvarDecl()));
4045 if (!Ivar)
Craig Topper36250ad2014-05-12 05:36:57 +00004046 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004047 }
4048
4049 ObjCPropertyImplDecl *ToImpl
4050 = InImpl->FindPropertyImplDecl(Property->getIdentifier());
4051 if (!ToImpl) {
4052 ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC,
4053 Importer.Import(D->getLocStart()),
4054 Importer.Import(D->getLocation()),
4055 Property,
4056 D->getPropertyImplementation(),
4057 Ivar,
4058 Importer.Import(D->getPropertyIvarDeclLoc()));
4059 ToImpl->setLexicalDeclContext(LexicalDC);
4060 Importer.Imported(D, ToImpl);
Sean Callanan95e74be2011-10-21 02:57:43 +00004061 LexicalDC->addDeclInternal(ToImpl);
Douglas Gregor14a49e22010-12-07 18:32:03 +00004062 } else {
4063 // Check that we have the same kind of property implementation (@synthesize
4064 // vs. @dynamic).
4065 if (D->getPropertyImplementation() != ToImpl->getPropertyImplementation()) {
4066 Importer.ToDiag(ToImpl->getLocation(),
4067 diag::err_odr_objc_property_impl_kind_inconsistent)
4068 << Property->getDeclName()
4069 << (ToImpl->getPropertyImplementation()
4070 == ObjCPropertyImplDecl::Dynamic);
4071 Importer.FromDiag(D->getLocation(),
4072 diag::note_odr_objc_property_impl_kind)
4073 << D->getPropertyDecl()->getDeclName()
4074 << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic);
Craig Topper36250ad2014-05-12 05:36:57 +00004075 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004076 }
4077
4078 // For @synthesize, check that we have the same
4079 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize &&
4080 Ivar != ToImpl->getPropertyIvarDecl()) {
4081 Importer.ToDiag(ToImpl->getPropertyIvarDeclLoc(),
4082 diag::err_odr_objc_synthesize_ivar_inconsistent)
4083 << Property->getDeclName()
4084 << ToImpl->getPropertyIvarDecl()->getDeclName()
4085 << Ivar->getDeclName();
4086 Importer.FromDiag(D->getPropertyIvarDeclLoc(),
4087 diag::note_odr_objc_synthesize_ivar_here)
4088 << D->getPropertyIvarDecl()->getDeclName();
Craig Topper36250ad2014-05-12 05:36:57 +00004089 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004090 }
4091
4092 // Merge the existing implementation with the new implementation.
4093 Importer.Imported(D, ToImpl);
4094 }
4095
4096 return ToImpl;
4097}
4098
Douglas Gregora082a492010-11-30 19:14:50 +00004099Decl *ASTNodeImporter::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
4100 // For template arguments, we adopt the translation unit as our declaration
4101 // context. This context will be fixed when the actual template declaration
4102 // is created.
4103
4104 // FIXME: Import default argument.
4105 return TemplateTypeParmDecl::Create(Importer.getToContext(),
4106 Importer.getToContext().getTranslationUnitDecl(),
Abramo Bagnarab3185b02011-03-06 15:48:19 +00004107 Importer.Import(D->getLocStart()),
Douglas Gregora082a492010-11-30 19:14:50 +00004108 Importer.Import(D->getLocation()),
4109 D->getDepth(),
4110 D->getIndex(),
4111 Importer.Import(D->getIdentifier()),
4112 D->wasDeclaredWithTypename(),
4113 D->isParameterPack());
4114}
4115
4116Decl *
4117ASTNodeImporter::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
4118 // Import the name of this declaration.
4119 DeclarationName Name = Importer.Import(D->getDeclName());
4120 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004121 return nullptr;
4122
Douglas Gregora082a492010-11-30 19:14:50 +00004123 // Import the location of this declaration.
4124 SourceLocation Loc = Importer.Import(D->getLocation());
4125
4126 // Import the type of this declaration.
4127 QualType T = Importer.Import(D->getType());
4128 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00004129 return nullptr;
4130
Douglas Gregora082a492010-11-30 19:14:50 +00004131 // Import type-source information.
4132 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
4133 if (D->getTypeSourceInfo() && !TInfo)
Craig Topper36250ad2014-05-12 05:36:57 +00004134 return nullptr;
4135
Douglas Gregora082a492010-11-30 19:14:50 +00004136 // FIXME: Import default argument.
4137
4138 return NonTypeTemplateParmDecl::Create(Importer.getToContext(),
4139 Importer.getToContext().getTranslationUnitDecl(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00004140 Importer.Import(D->getInnerLocStart()),
Douglas Gregora082a492010-11-30 19:14:50 +00004141 Loc, D->getDepth(), D->getPosition(),
4142 Name.getAsIdentifierInfo(),
Douglas Gregorda3cc0d2010-12-23 23:51:58 +00004143 T, D->isParameterPack(), TInfo);
Douglas Gregora082a492010-11-30 19:14:50 +00004144}
4145
4146Decl *
4147ASTNodeImporter::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
4148 // Import the name of this declaration.
4149 DeclarationName Name = Importer.Import(D->getDeclName());
4150 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004151 return nullptr;
4152
Douglas Gregora082a492010-11-30 19:14:50 +00004153 // Import the location of this declaration.
4154 SourceLocation Loc = Importer.Import(D->getLocation());
4155
4156 // Import template parameters.
4157 TemplateParameterList *TemplateParams
4158 = ImportTemplateParameterList(D->getTemplateParameters());
4159 if (!TemplateParams)
Craig Topper36250ad2014-05-12 05:36:57 +00004160 return nullptr;
4161
Douglas Gregora082a492010-11-30 19:14:50 +00004162 // FIXME: Import default argument.
4163
4164 return TemplateTemplateParmDecl::Create(Importer.getToContext(),
4165 Importer.getToContext().getTranslationUnitDecl(),
4166 Loc, D->getDepth(), D->getPosition(),
Douglas Gregorf5500772011-01-05 15:48:55 +00004167 D->isParameterPack(),
Douglas Gregora082a492010-11-30 19:14:50 +00004168 Name.getAsIdentifierInfo(),
4169 TemplateParams);
4170}
4171
4172Decl *ASTNodeImporter::VisitClassTemplateDecl(ClassTemplateDecl *D) {
4173 // If this record has a definition in the translation unit we're coming from,
4174 // but this particular declaration is not that definition, import the
4175 // definition and map to that.
4176 CXXRecordDecl *Definition
4177 = cast_or_null<CXXRecordDecl>(D->getTemplatedDecl()->getDefinition());
4178 if (Definition && Definition != D->getTemplatedDecl()) {
4179 Decl *ImportedDef
4180 = Importer.Import(Definition->getDescribedClassTemplate());
4181 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004182 return nullptr;
4183
Douglas Gregora082a492010-11-30 19:14:50 +00004184 return Importer.Imported(D, ImportedDef);
4185 }
4186
4187 // Import the major distinguishing characteristics of this class template.
4188 DeclContext *DC, *LexicalDC;
4189 DeclarationName Name;
4190 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00004191 NamedDecl *ToD;
4192 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00004193 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00004194 if (ToD)
4195 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00004196
Douglas Gregora082a492010-11-30 19:14:50 +00004197 // We may already have a template of the same name; try to find and match it.
4198 if (!DC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004199 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004200 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00004201 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004202 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4203 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
Douglas Gregora082a492010-11-30 19:14:50 +00004204 continue;
4205
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004206 Decl *Found = FoundDecls[I];
Douglas Gregora082a492010-11-30 19:14:50 +00004207 if (ClassTemplateDecl *FoundTemplate
4208 = dyn_cast<ClassTemplateDecl>(Found)) {
4209 if (IsStructuralMatch(D, FoundTemplate)) {
4210 // The class templates structurally match; call it the same template.
4211 // FIXME: We may be filling in a forward declaration here. Handle
4212 // this case!
4213 Importer.Imported(D->getTemplatedDecl(),
4214 FoundTemplate->getTemplatedDecl());
4215 return Importer.Imported(D, FoundTemplate);
4216 }
4217 }
4218
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004219 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregora082a492010-11-30 19:14:50 +00004220 }
4221
4222 if (!ConflictingDecls.empty()) {
4223 Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Ordinary,
4224 ConflictingDecls.data(),
4225 ConflictingDecls.size());
4226 }
4227
4228 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004229 return nullptr;
Douglas Gregora082a492010-11-30 19:14:50 +00004230 }
4231
4232 CXXRecordDecl *DTemplated = D->getTemplatedDecl();
4233
4234 // Create the declaration that is being templated.
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004235 SourceLocation StartLoc = Importer.Import(DTemplated->getLocStart());
4236 SourceLocation IdLoc = Importer.Import(DTemplated->getLocation());
Douglas Gregora082a492010-11-30 19:14:50 +00004237 CXXRecordDecl *D2Templated = CXXRecordDecl::Create(Importer.getToContext(),
4238 DTemplated->getTagKind(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004239 DC, StartLoc, IdLoc,
4240 Name.getAsIdentifierInfo());
Douglas Gregora082a492010-11-30 19:14:50 +00004241 D2Templated->setAccess(DTemplated->getAccess());
Douglas Gregor14454802011-02-25 02:25:35 +00004242 D2Templated->setQualifierInfo(Importer.Import(DTemplated->getQualifierLoc()));
Douglas Gregora082a492010-11-30 19:14:50 +00004243 D2Templated->setLexicalDeclContext(LexicalDC);
4244
4245 // Create the class template declaration itself.
4246 TemplateParameterList *TemplateParams
4247 = ImportTemplateParameterList(D->getTemplateParameters());
4248 if (!TemplateParams)
Craig Topper36250ad2014-05-12 05:36:57 +00004249 return nullptr;
4250
Douglas Gregora082a492010-11-30 19:14:50 +00004251 ClassTemplateDecl *D2 = ClassTemplateDecl::Create(Importer.getToContext(), DC,
4252 Loc, Name, TemplateParams,
4253 D2Templated,
Craig Topper36250ad2014-05-12 05:36:57 +00004254 /*PrevDecl=*/nullptr);
Douglas Gregora082a492010-11-30 19:14:50 +00004255 D2Templated->setDescribedClassTemplate(D2);
4256
4257 D2->setAccess(D->getAccess());
4258 D2->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00004259 LexicalDC->addDeclInternal(D2);
Douglas Gregora082a492010-11-30 19:14:50 +00004260
4261 // Note the relationship between the class templates.
4262 Importer.Imported(D, D2);
4263 Importer.Imported(DTemplated, D2Templated);
4264
John McCallf937c022011-10-07 06:10:15 +00004265 if (DTemplated->isCompleteDefinition() &&
4266 !D2Templated->isCompleteDefinition()) {
Douglas Gregora082a492010-11-30 19:14:50 +00004267 // FIXME: Import definition!
4268 }
4269
4270 return D2;
4271}
4272
Douglas Gregore2e50d332010-12-01 01:36:18 +00004273Decl *ASTNodeImporter::VisitClassTemplateSpecializationDecl(
4274 ClassTemplateSpecializationDecl *D) {
4275 // If this record has a definition in the translation unit we're coming from,
4276 // but this particular declaration is not that definition, import the
4277 // definition and map to that.
4278 TagDecl *Definition = D->getDefinition();
4279 if (Definition && Definition != D) {
4280 Decl *ImportedDef = Importer.Import(Definition);
4281 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004282 return nullptr;
4283
Douglas Gregore2e50d332010-12-01 01:36:18 +00004284 return Importer.Imported(D, ImportedDef);
4285 }
4286
4287 ClassTemplateDecl *ClassTemplate
4288 = cast_or_null<ClassTemplateDecl>(Importer.Import(
4289 D->getSpecializedTemplate()));
4290 if (!ClassTemplate)
Craig Topper36250ad2014-05-12 05:36:57 +00004291 return nullptr;
4292
Douglas Gregore2e50d332010-12-01 01:36:18 +00004293 // Import the context of this declaration.
4294 DeclContext *DC = ClassTemplate->getDeclContext();
4295 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00004296 return nullptr;
4297
Douglas Gregore2e50d332010-12-01 01:36:18 +00004298 DeclContext *LexicalDC = DC;
4299 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4300 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4301 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004302 return nullptr;
Douglas Gregore2e50d332010-12-01 01:36:18 +00004303 }
4304
4305 // Import the location of this declaration.
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004306 SourceLocation StartLoc = Importer.Import(D->getLocStart());
4307 SourceLocation IdLoc = Importer.Import(D->getLocation());
Douglas Gregore2e50d332010-12-01 01:36:18 +00004308
4309 // Import template arguments.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004310 SmallVector<TemplateArgument, 2> TemplateArgs;
Douglas Gregore2e50d332010-12-01 01:36:18 +00004311 if (ImportTemplateArguments(D->getTemplateArgs().data(),
4312 D->getTemplateArgs().size(),
4313 TemplateArgs))
Craig Topper36250ad2014-05-12 05:36:57 +00004314 return nullptr;
4315
Douglas Gregore2e50d332010-12-01 01:36:18 +00004316 // Try to find an existing specialization with these template arguments.
Craig Topper36250ad2014-05-12 05:36:57 +00004317 void *InsertPos = nullptr;
Douglas Gregore2e50d332010-12-01 01:36:18 +00004318 ClassTemplateSpecializationDecl *D2
Craig Topper7e0daca2014-06-26 04:58:53 +00004319 = ClassTemplate->findSpecialization(TemplateArgs, InsertPos);
Douglas Gregore2e50d332010-12-01 01:36:18 +00004320 if (D2) {
4321 // We already have a class template specialization with these template
4322 // arguments.
4323
4324 // FIXME: Check for specialization vs. instantiation errors.
4325
4326 if (RecordDecl *FoundDef = D2->getDefinition()) {
John McCallf937c022011-10-07 06:10:15 +00004327 if (!D->isCompleteDefinition() || IsStructuralMatch(D, FoundDef)) {
Douglas Gregore2e50d332010-12-01 01:36:18 +00004328 // The record types structurally match, or the "from" translation
4329 // unit only had a forward declaration anyway; call it the same
4330 // function.
4331 return Importer.Imported(D, FoundDef);
4332 }
4333 }
4334 } else {
4335 // Create a new specialization.
4336 D2 = ClassTemplateSpecializationDecl::Create(Importer.getToContext(),
4337 D->getTagKind(), DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004338 StartLoc, IdLoc,
4339 ClassTemplate,
Douglas Gregore2e50d332010-12-01 01:36:18 +00004340 TemplateArgs.data(),
4341 TemplateArgs.size(),
Craig Topper36250ad2014-05-12 05:36:57 +00004342 /*PrevDecl=*/nullptr);
Douglas Gregore2e50d332010-12-01 01:36:18 +00004343 D2->setSpecializationKind(D->getSpecializationKind());
4344
4345 // Add this specialization to the class template.
4346 ClassTemplate->AddSpecialization(D2, InsertPos);
4347
4348 // Import the qualifier, if any.
Douglas Gregor14454802011-02-25 02:25:35 +00004349 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregore2e50d332010-12-01 01:36:18 +00004350
4351 // Add the specialization to this context.
4352 D2->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00004353 LexicalDC->addDeclInternal(D2);
Douglas Gregore2e50d332010-12-01 01:36:18 +00004354 }
4355 Importer.Imported(D, D2);
4356
John McCallf937c022011-10-07 06:10:15 +00004357 if (D->isCompleteDefinition() && ImportDefinition(D, D2))
Craig Topper36250ad2014-05-12 05:36:57 +00004358 return nullptr;
4359
Douglas Gregore2e50d332010-12-01 01:36:18 +00004360 return D2;
4361}
4362
Larisse Voufo39a1e502013-08-06 01:03:05 +00004363Decl *ASTNodeImporter::VisitVarTemplateDecl(VarTemplateDecl *D) {
4364 // If this variable has a definition in the translation unit we're coming
4365 // from,
4366 // but this particular declaration is not that definition, import the
4367 // definition and map to that.
4368 VarDecl *Definition =
4369 cast_or_null<VarDecl>(D->getTemplatedDecl()->getDefinition());
4370 if (Definition && Definition != D->getTemplatedDecl()) {
4371 Decl *ImportedDef = Importer.Import(Definition->getDescribedVarTemplate());
4372 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004373 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004374
4375 return Importer.Imported(D, ImportedDef);
4376 }
4377
4378 // Import the major distinguishing characteristics of this variable template.
4379 DeclContext *DC, *LexicalDC;
4380 DeclarationName Name;
4381 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00004382 NamedDecl *ToD;
4383 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00004384 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00004385 if (ToD)
4386 return ToD;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004387
4388 // We may already have a template of the same name; try to find and match it.
4389 assert(!DC->isFunctionOrMethod() &&
4390 "Variable templates cannot be declared at function scope");
4391 SmallVector<NamedDecl *, 4> ConflictingDecls;
4392 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00004393 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004394 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4395 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
4396 continue;
4397
4398 Decl *Found = FoundDecls[I];
4399 if (VarTemplateDecl *FoundTemplate = dyn_cast<VarTemplateDecl>(Found)) {
4400 if (IsStructuralMatch(D, FoundTemplate)) {
4401 // The variable templates structurally match; call it the same template.
4402 Importer.Imported(D->getTemplatedDecl(),
4403 FoundTemplate->getTemplatedDecl());
4404 return Importer.Imported(D, FoundTemplate);
4405 }
4406 }
4407
4408 ConflictingDecls.push_back(FoundDecls[I]);
4409 }
4410
4411 if (!ConflictingDecls.empty()) {
4412 Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Ordinary,
4413 ConflictingDecls.data(),
4414 ConflictingDecls.size());
4415 }
4416
4417 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004418 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004419
4420 VarDecl *DTemplated = D->getTemplatedDecl();
4421
4422 // Import the type.
4423 QualType T = Importer.Import(DTemplated->getType());
4424 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00004425 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004426
4427 // Create the declaration that is being templated.
4428 SourceLocation StartLoc = Importer.Import(DTemplated->getLocStart());
4429 SourceLocation IdLoc = Importer.Import(DTemplated->getLocation());
4430 TypeSourceInfo *TInfo = Importer.Import(DTemplated->getTypeSourceInfo());
4431 VarDecl *D2Templated = VarDecl::Create(Importer.getToContext(), DC, StartLoc,
4432 IdLoc, Name.getAsIdentifierInfo(), T,
4433 TInfo, DTemplated->getStorageClass());
4434 D2Templated->setAccess(DTemplated->getAccess());
4435 D2Templated->setQualifierInfo(Importer.Import(DTemplated->getQualifierLoc()));
4436 D2Templated->setLexicalDeclContext(LexicalDC);
4437
4438 // Importer.Imported(DTemplated, D2Templated);
4439 // LexicalDC->addDeclInternal(D2Templated);
4440
4441 // Merge the initializer.
4442 if (ImportDefinition(DTemplated, D2Templated))
Craig Topper36250ad2014-05-12 05:36:57 +00004443 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004444
4445 // Create the variable template declaration itself.
4446 TemplateParameterList *TemplateParams =
4447 ImportTemplateParameterList(D->getTemplateParameters());
4448 if (!TemplateParams)
Craig Topper36250ad2014-05-12 05:36:57 +00004449 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004450
4451 VarTemplateDecl *D2 = VarTemplateDecl::Create(
Richard Smithbeef3452014-01-16 23:39:20 +00004452 Importer.getToContext(), DC, Loc, Name, TemplateParams, D2Templated);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004453 D2Templated->setDescribedVarTemplate(D2);
4454
4455 D2->setAccess(D->getAccess());
4456 D2->setLexicalDeclContext(LexicalDC);
4457 LexicalDC->addDeclInternal(D2);
4458
4459 // Note the relationship between the variable templates.
4460 Importer.Imported(D, D2);
4461 Importer.Imported(DTemplated, D2Templated);
4462
4463 if (DTemplated->isThisDeclarationADefinition() &&
4464 !D2Templated->isThisDeclarationADefinition()) {
4465 // FIXME: Import definition!
4466 }
4467
4468 return D2;
4469}
4470
4471Decl *ASTNodeImporter::VisitVarTemplateSpecializationDecl(
4472 VarTemplateSpecializationDecl *D) {
4473 // If this record has a definition in the translation unit we're coming from,
4474 // but this particular declaration is not that definition, import the
4475 // definition and map to that.
4476 VarDecl *Definition = D->getDefinition();
4477 if (Definition && Definition != D) {
4478 Decl *ImportedDef = Importer.Import(Definition);
4479 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004480 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004481
4482 return Importer.Imported(D, ImportedDef);
4483 }
4484
4485 VarTemplateDecl *VarTemplate = cast_or_null<VarTemplateDecl>(
4486 Importer.Import(D->getSpecializedTemplate()));
4487 if (!VarTemplate)
Craig Topper36250ad2014-05-12 05:36:57 +00004488 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004489
4490 // Import the context of this declaration.
4491 DeclContext *DC = VarTemplate->getDeclContext();
4492 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00004493 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004494
4495 DeclContext *LexicalDC = DC;
4496 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4497 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4498 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004499 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004500 }
4501
4502 // Import the location of this declaration.
4503 SourceLocation StartLoc = Importer.Import(D->getLocStart());
4504 SourceLocation IdLoc = Importer.Import(D->getLocation());
4505
4506 // Import template arguments.
4507 SmallVector<TemplateArgument, 2> TemplateArgs;
4508 if (ImportTemplateArguments(D->getTemplateArgs().data(),
4509 D->getTemplateArgs().size(), TemplateArgs))
Craig Topper36250ad2014-05-12 05:36:57 +00004510 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004511
4512 // Try to find an existing specialization with these template arguments.
Craig Topper36250ad2014-05-12 05:36:57 +00004513 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004514 VarTemplateSpecializationDecl *D2 = VarTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00004515 TemplateArgs, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004516 if (D2) {
4517 // We already have a variable template specialization with these template
4518 // arguments.
4519
4520 // FIXME: Check for specialization vs. instantiation errors.
4521
4522 if (VarDecl *FoundDef = D2->getDefinition()) {
4523 if (!D->isThisDeclarationADefinition() ||
4524 IsStructuralMatch(D, FoundDef)) {
4525 // The record types structurally match, or the "from" translation
4526 // unit only had a forward declaration anyway; call it the same
4527 // variable.
4528 return Importer.Imported(D, FoundDef);
4529 }
4530 }
4531 } else {
4532
4533 // Import the type.
4534 QualType T = Importer.Import(D->getType());
4535 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00004536 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004537 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
4538
4539 // Create a new specialization.
4540 D2 = VarTemplateSpecializationDecl::Create(
4541 Importer.getToContext(), DC, StartLoc, IdLoc, VarTemplate, T, TInfo,
4542 D->getStorageClass(), TemplateArgs.data(), TemplateArgs.size());
4543 D2->setSpecializationKind(D->getSpecializationKind());
4544 D2->setTemplateArgsInfo(D->getTemplateArgsInfo());
4545
4546 // Add this specialization to the class template.
4547 VarTemplate->AddSpecialization(D2, InsertPos);
4548
4549 // Import the qualifier, if any.
4550 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
4551
4552 // Add the specialization to this context.
4553 D2->setLexicalDeclContext(LexicalDC);
4554 LexicalDC->addDeclInternal(D2);
4555 }
4556 Importer.Imported(D, D2);
4557
4558 if (D->isThisDeclarationADefinition() && ImportDefinition(D, D2))
Craig Topper36250ad2014-05-12 05:36:57 +00004559 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004560
4561 return D2;
4562}
4563
Douglas Gregor7eeb5972010-02-11 19:21:55 +00004564//----------------------------------------------------------------------------
4565// Import Statements
4566//----------------------------------------------------------------------------
4567
Sean Callanan59721b32015-04-28 18:41:46 +00004568DeclGroupRef ASTNodeImporter::ImportDeclGroup(DeclGroupRef DG) {
4569 if (DG.isNull())
4570 return DeclGroupRef::Create(Importer.getToContext(), nullptr, 0);
4571 size_t NumDecls = DG.end() - DG.begin();
4572 SmallVector<Decl *, 1> ToDecls(NumDecls);
4573 auto &_Importer = this->Importer;
4574 std::transform(DG.begin(), DG.end(), ToDecls.begin(),
4575 [&_Importer](Decl *D) -> Decl * {
4576 return _Importer.Import(D);
4577 });
4578 return DeclGroupRef::Create(Importer.getToContext(),
4579 ToDecls.begin(),
4580 NumDecls);
4581}
4582
4583 Stmt *ASTNodeImporter::VisitStmt(Stmt *S) {
4584 Importer.FromDiag(S->getLocStart(), diag::err_unsupported_ast_node)
4585 << S->getStmtClassName();
4586 return nullptr;
4587 }
4588
4589Stmt *ASTNodeImporter::VisitDeclStmt(DeclStmt *S) {
4590 DeclGroupRef ToDG = ImportDeclGroup(S->getDeclGroup());
4591 for (Decl *ToD : ToDG) {
4592 if (!ToD)
4593 return nullptr;
4594 }
4595 SourceLocation ToStartLoc = Importer.Import(S->getStartLoc());
4596 SourceLocation ToEndLoc = Importer.Import(S->getEndLoc());
4597 return new (Importer.getToContext()) DeclStmt(ToDG, ToStartLoc, ToEndLoc);
4598}
4599
4600Stmt *ASTNodeImporter::VisitNullStmt(NullStmt *S) {
4601 SourceLocation ToSemiLoc = Importer.Import(S->getSemiLoc());
4602 return new (Importer.getToContext()) NullStmt(ToSemiLoc,
4603 S->hasLeadingEmptyMacro());
4604}
4605
4606Stmt *ASTNodeImporter::VisitCompoundStmt(CompoundStmt *S) {
4607 SmallVector<Stmt *, 4> ToStmts(S->size());
4608 auto &_Importer = this->Importer;
4609 std::transform(S->body_begin(), S->body_end(), ToStmts.begin(),
4610 [&_Importer](Stmt *CS) -> Stmt * {
4611 return _Importer.Import(CS);
4612 });
4613 for (Stmt *ToS : ToStmts) {
4614 if (!ToS)
4615 return nullptr;
4616 }
4617 SourceLocation ToLBraceLoc = Importer.Import(S->getLBracLoc());
4618 SourceLocation ToRBraceLoc = Importer.Import(S->getRBracLoc());
4619 return new (Importer.getToContext()) CompoundStmt(Importer.getToContext(),
4620 ToStmts,
4621 ToLBraceLoc, ToRBraceLoc);
4622}
4623
4624Stmt *ASTNodeImporter::VisitCaseStmt(CaseStmt *S) {
4625 Expr *ToLHS = Importer.Import(S->getLHS());
4626 if (!ToLHS)
4627 return nullptr;
4628 Expr *ToRHS = Importer.Import(S->getRHS());
4629 if (!ToRHS && S->getRHS())
4630 return nullptr;
4631 SourceLocation ToCaseLoc = Importer.Import(S->getCaseLoc());
4632 SourceLocation ToEllipsisLoc = Importer.Import(S->getEllipsisLoc());
4633 SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4634 return new (Importer.getToContext()) CaseStmt(ToLHS, ToRHS,
4635 ToCaseLoc, ToEllipsisLoc,
4636 ToColonLoc);
4637}
4638
4639Stmt *ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) {
4640 SourceLocation ToDefaultLoc = Importer.Import(S->getDefaultLoc());
4641 SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4642 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4643 if (!ToSubStmt && S->getSubStmt())
4644 return nullptr;
4645 return new (Importer.getToContext()) DefaultStmt(ToDefaultLoc, ToColonLoc,
4646 ToSubStmt);
4647}
4648
4649Stmt *ASTNodeImporter::VisitLabelStmt(LabelStmt *S) {
4650 SourceLocation ToIdentLoc = Importer.Import(S->getIdentLoc());
4651 LabelDecl *ToLabelDecl =
4652 cast_or_null<LabelDecl>(Importer.Import(S->getDecl()));
4653 if (!ToLabelDecl && S->getDecl())
4654 return nullptr;
4655 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4656 if (!ToSubStmt && S->getSubStmt())
4657 return nullptr;
4658 return new (Importer.getToContext()) LabelStmt(ToIdentLoc, ToLabelDecl,
4659 ToSubStmt);
4660}
4661
4662Stmt *ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) {
4663 SourceLocation ToAttrLoc = Importer.Import(S->getAttrLoc());
4664 ArrayRef<const Attr*> FromAttrs(S->getAttrs());
4665 SmallVector<const Attr *, 1> ToAttrs(FromAttrs.size());
4666 ASTContext &_ToContext = Importer.getToContext();
4667 std::transform(FromAttrs.begin(), FromAttrs.end(), ToAttrs.begin(),
4668 [&_ToContext](const Attr *A) -> const Attr * {
4669 return A->clone(_ToContext);
4670 });
4671 for (const Attr *ToA : ToAttrs) {
4672 if (!ToA)
4673 return nullptr;
4674 }
4675 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4676 if (!ToSubStmt && S->getSubStmt())
4677 return nullptr;
4678 return AttributedStmt::Create(Importer.getToContext(), ToAttrLoc,
4679 ToAttrs, ToSubStmt);
4680}
4681
4682Stmt *ASTNodeImporter::VisitIfStmt(IfStmt *S) {
4683 SourceLocation ToIfLoc = Importer.Import(S->getIfLoc());
4684 VarDecl *ToConditionVariable = nullptr;
4685 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4686 ToConditionVariable =
4687 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4688 if (!ToConditionVariable)
4689 return nullptr;
4690 }
4691 Expr *ToCondition = Importer.Import(S->getCond());
4692 if (!ToCondition && S->getCond())
4693 return nullptr;
4694 Stmt *ToThenStmt = Importer.Import(S->getThen());
4695 if (!ToThenStmt && S->getThen())
4696 return nullptr;
4697 SourceLocation ToElseLoc = Importer.Import(S->getElseLoc());
4698 Stmt *ToElseStmt = Importer.Import(S->getElse());
4699 if (!ToElseStmt && S->getElse())
4700 return nullptr;
4701 return new (Importer.getToContext()) IfStmt(Importer.getToContext(),
4702 ToIfLoc, ToConditionVariable,
4703 ToCondition, ToThenStmt,
4704 ToElseLoc, ToElseStmt);
4705}
4706
4707Stmt *ASTNodeImporter::VisitSwitchStmt(SwitchStmt *S) {
4708 VarDecl *ToConditionVariable = nullptr;
4709 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4710 ToConditionVariable =
4711 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4712 if (!ToConditionVariable)
4713 return nullptr;
4714 }
4715 Expr *ToCondition = Importer.Import(S->getCond());
4716 if (!ToCondition && S->getCond())
4717 return nullptr;
4718 SwitchStmt *ToStmt = new (Importer.getToContext()) SwitchStmt(
4719 Importer.getToContext(), ToConditionVariable,
4720 ToCondition);
4721 Stmt *ToBody = Importer.Import(S->getBody());
4722 if (!ToBody && S->getBody())
4723 return nullptr;
4724 ToStmt->setBody(ToBody);
4725 ToStmt->setSwitchLoc(Importer.Import(S->getSwitchLoc()));
4726 // Now we have to re-chain the cases.
4727 SwitchCase *LastChainedSwitchCase = nullptr;
4728 for (SwitchCase *SC = S->getSwitchCaseList(); SC != nullptr;
4729 SC = SC->getNextSwitchCase()) {
4730 SwitchCase *ToSC = dyn_cast_or_null<SwitchCase>(Importer.Import(SC));
4731 if (!ToSC)
4732 return nullptr;
4733 if (LastChainedSwitchCase)
4734 LastChainedSwitchCase->setNextSwitchCase(ToSC);
4735 else
4736 ToStmt->setSwitchCaseList(ToSC);
4737 LastChainedSwitchCase = ToSC;
4738 }
4739 return ToStmt;
4740}
4741
4742Stmt *ASTNodeImporter::VisitWhileStmt(WhileStmt *S) {
4743 VarDecl *ToConditionVariable = nullptr;
4744 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4745 ToConditionVariable =
4746 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4747 if (!ToConditionVariable)
4748 return nullptr;
4749 }
4750 Expr *ToCondition = Importer.Import(S->getCond());
4751 if (!ToCondition && S->getCond())
4752 return nullptr;
4753 Stmt *ToBody = Importer.Import(S->getBody());
4754 if (!ToBody && S->getBody())
4755 return nullptr;
4756 SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc());
4757 return new (Importer.getToContext()) WhileStmt(Importer.getToContext(),
4758 ToConditionVariable,
4759 ToCondition, ToBody,
4760 ToWhileLoc);
4761}
4762
4763Stmt *ASTNodeImporter::VisitDoStmt(DoStmt *S) {
4764 Stmt *ToBody = Importer.Import(S->getBody());
4765 if (!ToBody && S->getBody())
4766 return nullptr;
4767 Expr *ToCondition = Importer.Import(S->getCond());
4768 if (!ToCondition && S->getCond())
4769 return nullptr;
4770 SourceLocation ToDoLoc = Importer.Import(S->getDoLoc());
4771 SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc());
4772 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4773 return new (Importer.getToContext()) DoStmt(ToBody, ToCondition,
4774 ToDoLoc, ToWhileLoc,
4775 ToRParenLoc);
4776}
4777
4778Stmt *ASTNodeImporter::VisitForStmt(ForStmt *S) {
4779 Stmt *ToInit = Importer.Import(S->getInit());
4780 if (!ToInit && S->getInit())
4781 return nullptr;
4782 Expr *ToCondition = Importer.Import(S->getCond());
4783 if (!ToCondition && S->getCond())
4784 return nullptr;
4785 VarDecl *ToConditionVariable = nullptr;
4786 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4787 ToConditionVariable =
4788 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4789 if (!ToConditionVariable)
4790 return nullptr;
4791 }
4792 Expr *ToInc = Importer.Import(S->getInc());
4793 if (!ToInc && S->getInc())
4794 return nullptr;
4795 Stmt *ToBody = Importer.Import(S->getBody());
4796 if (!ToBody && S->getBody())
4797 return nullptr;
4798 SourceLocation ToForLoc = Importer.Import(S->getForLoc());
4799 SourceLocation ToLParenLoc = Importer.Import(S->getLParenLoc());
4800 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4801 return new (Importer.getToContext()) ForStmt(Importer.getToContext(),
4802 ToInit, ToCondition,
4803 ToConditionVariable,
4804 ToInc, ToBody,
4805 ToForLoc, ToLParenLoc,
4806 ToRParenLoc);
4807}
4808
4809Stmt *ASTNodeImporter::VisitGotoStmt(GotoStmt *S) {
4810 LabelDecl *ToLabel = nullptr;
4811 if (LabelDecl *FromLabel = S->getLabel()) {
4812 ToLabel = dyn_cast_or_null<LabelDecl>(Importer.Import(FromLabel));
4813 if (!ToLabel)
4814 return nullptr;
4815 }
4816 SourceLocation ToGotoLoc = Importer.Import(S->getGotoLoc());
4817 SourceLocation ToLabelLoc = Importer.Import(S->getLabelLoc());
4818 return new (Importer.getToContext()) GotoStmt(ToLabel,
4819 ToGotoLoc, ToLabelLoc);
4820}
4821
4822Stmt *ASTNodeImporter::VisitIndirectGotoStmt(IndirectGotoStmt *S) {
4823 SourceLocation ToGotoLoc = Importer.Import(S->getGotoLoc());
4824 SourceLocation ToStarLoc = Importer.Import(S->getStarLoc());
4825 Expr *ToTarget = Importer.Import(S->getTarget());
4826 if (!ToTarget && S->getTarget())
4827 return nullptr;
4828 return new (Importer.getToContext()) IndirectGotoStmt(ToGotoLoc, ToStarLoc,
4829 ToTarget);
4830}
4831
4832Stmt *ASTNodeImporter::VisitContinueStmt(ContinueStmt *S) {
4833 SourceLocation ToContinueLoc = Importer.Import(S->getContinueLoc());
4834 return new (Importer.getToContext()) ContinueStmt(ToContinueLoc);
4835}
4836
4837Stmt *ASTNodeImporter::VisitBreakStmt(BreakStmt *S) {
4838 SourceLocation ToBreakLoc = Importer.Import(S->getBreakLoc());
4839 return new (Importer.getToContext()) BreakStmt(ToBreakLoc);
4840}
4841
4842Stmt *ASTNodeImporter::VisitReturnStmt(ReturnStmt *S) {
4843 SourceLocation ToRetLoc = Importer.Import(S->getReturnLoc());
4844 Expr *ToRetExpr = Importer.Import(S->getRetValue());
4845 if (!ToRetExpr && S->getRetValue())
4846 return nullptr;
4847 VarDecl *NRVOCandidate = const_cast<VarDecl*>(S->getNRVOCandidate());
4848 VarDecl *ToNRVOCandidate = cast_or_null<VarDecl>(Importer.Import(NRVOCandidate));
4849 if (!ToNRVOCandidate && NRVOCandidate)
4850 return nullptr;
4851 return new (Importer.getToContext()) ReturnStmt(ToRetLoc, ToRetExpr,
4852 ToNRVOCandidate);
4853}
4854
4855Stmt *ASTNodeImporter::VisitCXXCatchStmt(CXXCatchStmt *S) {
4856 SourceLocation ToCatchLoc = Importer.Import(S->getCatchLoc());
4857 VarDecl *ToExceptionDecl = nullptr;
4858 if (VarDecl *FromExceptionDecl = S->getExceptionDecl()) {
4859 ToExceptionDecl =
4860 dyn_cast_or_null<VarDecl>(Importer.Import(FromExceptionDecl));
4861 if (!ToExceptionDecl)
4862 return nullptr;
4863 }
4864 Stmt *ToHandlerBlock = Importer.Import(S->getHandlerBlock());
4865 if (!ToHandlerBlock && S->getHandlerBlock())
4866 return nullptr;
4867 return new (Importer.getToContext()) CXXCatchStmt(ToCatchLoc,
4868 ToExceptionDecl,
4869 ToHandlerBlock);
4870}
4871
4872Stmt *ASTNodeImporter::VisitCXXTryStmt(CXXTryStmt *S) {
4873 SourceLocation ToTryLoc = Importer.Import(S->getTryLoc());
4874 Stmt *ToTryBlock = Importer.Import(S->getTryBlock());
4875 if (!ToTryBlock && S->getTryBlock())
4876 return nullptr;
4877 SmallVector<Stmt *, 1> ToHandlers(S->getNumHandlers());
4878 for (unsigned HI = 0, HE = S->getNumHandlers(); HI != HE; ++HI) {
4879 CXXCatchStmt *FromHandler = S->getHandler(HI);
4880 if (Stmt *ToHandler = Importer.Import(FromHandler))
4881 ToHandlers[HI] = ToHandler;
4882 else
4883 return nullptr;
4884 }
4885 return CXXTryStmt::Create(Importer.getToContext(), ToTryLoc, ToTryBlock,
4886 ToHandlers);
4887}
4888
4889Stmt *ASTNodeImporter::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
4890 DeclStmt *ToRange =
4891 dyn_cast_or_null<DeclStmt>(Importer.Import(S->getRangeStmt()));
4892 if (!ToRange && S->getRangeStmt())
4893 return nullptr;
4894 DeclStmt *ToBeginEnd =
4895 dyn_cast_or_null<DeclStmt>(Importer.Import(S->getBeginEndStmt()));
4896 if (!ToBeginEnd && S->getBeginEndStmt())
4897 return nullptr;
4898 Expr *ToCond = Importer.Import(S->getCond());
4899 if (!ToCond && S->getCond())
4900 return nullptr;
4901 Expr *ToInc = Importer.Import(S->getInc());
4902 if (!ToInc && S->getInc())
4903 return nullptr;
4904 DeclStmt *ToLoopVar =
4905 dyn_cast_or_null<DeclStmt>(Importer.Import(S->getLoopVarStmt()));
4906 if (!ToLoopVar && S->getLoopVarStmt())
4907 return nullptr;
4908 Stmt *ToBody = Importer.Import(S->getBody());
4909 if (!ToBody && S->getBody())
4910 return nullptr;
4911 SourceLocation ToForLoc = Importer.Import(S->getForLoc());
4912 SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4913 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4914 return new (Importer.getToContext()) CXXForRangeStmt(ToRange, ToBeginEnd,
4915 ToCond, ToInc,
4916 ToLoopVar, ToBody,
4917 ToForLoc, ToColonLoc,
4918 ToRParenLoc);
4919}
4920
4921Stmt *ASTNodeImporter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
4922 Stmt *ToElem = Importer.Import(S->getElement());
4923 if (!ToElem && S->getElement())
4924 return nullptr;
4925 Expr *ToCollect = Importer.Import(S->getCollection());
4926 if (!ToCollect && S->getCollection())
4927 return nullptr;
4928 Stmt *ToBody = Importer.Import(S->getBody());
4929 if (!ToBody && S->getBody())
4930 return nullptr;
4931 SourceLocation ToForLoc = Importer.Import(S->getForLoc());
4932 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4933 return new (Importer.getToContext()) ObjCForCollectionStmt(ToElem,
4934 ToCollect,
4935 ToBody, ToForLoc,
4936 ToRParenLoc);
4937}
4938
4939Stmt *ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
4940 SourceLocation ToAtCatchLoc = Importer.Import(S->getAtCatchLoc());
4941 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4942 VarDecl *ToExceptionDecl = nullptr;
4943 if (VarDecl *FromExceptionDecl = S->getCatchParamDecl()) {
4944 ToExceptionDecl =
4945 dyn_cast_or_null<VarDecl>(Importer.Import(FromExceptionDecl));
4946 if (!ToExceptionDecl)
4947 return nullptr;
4948 }
4949 Stmt *ToBody = Importer.Import(S->getCatchBody());
4950 if (!ToBody && S->getCatchBody())
4951 return nullptr;
4952 return new (Importer.getToContext()) ObjCAtCatchStmt(ToAtCatchLoc,
4953 ToRParenLoc,
4954 ToExceptionDecl,
4955 ToBody);
4956}
4957
4958Stmt *ASTNodeImporter::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S) {
4959 SourceLocation ToAtFinallyLoc = Importer.Import(S->getAtFinallyLoc());
4960 Stmt *ToAtFinallyStmt = Importer.Import(S->getFinallyBody());
4961 if (!ToAtFinallyStmt && S->getFinallyBody())
4962 return nullptr;
4963 return new (Importer.getToContext()) ObjCAtFinallyStmt(ToAtFinallyLoc,
4964 ToAtFinallyStmt);
4965}
4966
4967Stmt *ASTNodeImporter::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
4968 SourceLocation ToAtTryLoc = Importer.Import(S->getAtTryLoc());
4969 Stmt *ToAtTryStmt = Importer.Import(S->getTryBody());
4970 if (!ToAtTryStmt && S->getTryBody())
4971 return nullptr;
4972 SmallVector<Stmt *, 1> ToCatchStmts(S->getNumCatchStmts());
4973 for (unsigned CI = 0, CE = S->getNumCatchStmts(); CI != CE; ++CI) {
4974 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI);
4975 if (Stmt *ToCatchStmt = Importer.Import(FromCatchStmt))
4976 ToCatchStmts[CI] = ToCatchStmt;
4977 else
4978 return nullptr;
4979 }
4980 Stmt *ToAtFinallyStmt = Importer.Import(S->getFinallyStmt());
4981 if (!ToAtFinallyStmt && S->getFinallyStmt())
4982 return nullptr;
4983 return ObjCAtTryStmt::Create(Importer.getToContext(),
4984 ToAtTryLoc, ToAtTryStmt,
4985 ToCatchStmts.begin(), ToCatchStmts.size(),
4986 ToAtFinallyStmt);
4987}
4988
4989Stmt *ASTNodeImporter::VisitObjCAtSynchronizedStmt
4990 (ObjCAtSynchronizedStmt *S) {
4991 SourceLocation ToAtSynchronizedLoc =
4992 Importer.Import(S->getAtSynchronizedLoc());
4993 Expr *ToSynchExpr = Importer.Import(S->getSynchExpr());
4994 if (!ToSynchExpr && S->getSynchExpr())
4995 return nullptr;
4996 Stmt *ToSynchBody = Importer.Import(S->getSynchBody());
4997 if (!ToSynchBody && S->getSynchBody())
4998 return nullptr;
4999 return new (Importer.getToContext()) ObjCAtSynchronizedStmt(
5000 ToAtSynchronizedLoc, ToSynchExpr, ToSynchBody);
5001}
5002
5003Stmt *ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
5004 SourceLocation ToAtThrowLoc = Importer.Import(S->getThrowLoc());
5005 Expr *ToThrow = Importer.Import(S->getThrowExpr());
5006 if (!ToThrow && S->getThrowExpr())
5007 return nullptr;
5008 return new (Importer.getToContext()) ObjCAtThrowStmt(ToAtThrowLoc, ToThrow);
5009}
5010
5011Stmt *ASTNodeImporter::VisitObjCAutoreleasePoolStmt
5012 (ObjCAutoreleasePoolStmt *S) {
5013 SourceLocation ToAtLoc = Importer.Import(S->getAtLoc());
5014 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
5015 if (!ToSubStmt && S->getSubStmt())
5016 return nullptr;
5017 return new (Importer.getToContext()) ObjCAutoreleasePoolStmt(ToAtLoc,
5018 ToSubStmt);
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005019}
5020
5021//----------------------------------------------------------------------------
5022// Import Expressions
5023//----------------------------------------------------------------------------
5024Expr *ASTNodeImporter::VisitExpr(Expr *E) {
5025 Importer.FromDiag(E->getLocStart(), diag::err_unsupported_ast_node)
5026 << E->getStmtClassName();
Craig Topper36250ad2014-05-12 05:36:57 +00005027 return nullptr;
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005028}
5029
Douglas Gregor52f820e2010-02-19 01:17:02 +00005030Expr *ASTNodeImporter::VisitDeclRefExpr(DeclRefExpr *E) {
Douglas Gregor52f820e2010-02-19 01:17:02 +00005031 ValueDecl *ToD = cast_or_null<ValueDecl>(Importer.Import(E->getDecl()));
5032 if (!ToD)
Craig Topper36250ad2014-05-12 05:36:57 +00005033 return nullptr;
Chandler Carruth8d26bb02011-05-01 23:48:14 +00005034
Craig Topper36250ad2014-05-12 05:36:57 +00005035 NamedDecl *FoundD = nullptr;
Chandler Carruth8d26bb02011-05-01 23:48:14 +00005036 if (E->getDecl() != E->getFoundDecl()) {
5037 FoundD = cast_or_null<NamedDecl>(Importer.Import(E->getFoundDecl()));
5038 if (!FoundD)
Craig Topper36250ad2014-05-12 05:36:57 +00005039 return nullptr;
Chandler Carruth8d26bb02011-05-01 23:48:14 +00005040 }
Douglas Gregor52f820e2010-02-19 01:17:02 +00005041
5042 QualType T = Importer.Import(E->getType());
5043 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005044 return nullptr;
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005045
5046 DeclRefExpr *DRE = DeclRefExpr::Create(Importer.getToContext(),
5047 Importer.Import(E->getQualifierLoc()),
Abramo Bagnara7945c982012-01-27 09:46:47 +00005048 Importer.Import(E->getTemplateKeywordLoc()),
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005049 ToD,
Alexey Bataev19acc3d2015-01-12 10:17:46 +00005050 E->refersToEnclosingVariableOrCapture(),
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005051 Importer.Import(E->getLocation()),
5052 T, E->getValueKind(),
5053 FoundD,
Craig Topper36250ad2014-05-12 05:36:57 +00005054 /*FIXME:TemplateArgs=*/nullptr);
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005055 if (E->hadMultipleCandidates())
5056 DRE->setHadMultipleCandidates(true);
5057 return DRE;
Douglas Gregor52f820e2010-02-19 01:17:02 +00005058}
5059
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005060Expr *ASTNodeImporter::VisitIntegerLiteral(IntegerLiteral *E) {
5061 QualType T = Importer.Import(E->getType());
5062 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005063 return nullptr;
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005064
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00005065 return IntegerLiteral::Create(Importer.getToContext(),
5066 E->getValue(), T,
5067 Importer.Import(E->getLocation()));
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005068}
5069
Douglas Gregor623421d2010-02-18 02:21:22 +00005070Expr *ASTNodeImporter::VisitCharacterLiteral(CharacterLiteral *E) {
5071 QualType T = Importer.Import(E->getType());
5072 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005073 return nullptr;
5074
Douglas Gregorfb65e592011-07-27 05:40:30 +00005075 return new (Importer.getToContext()) CharacterLiteral(E->getValue(),
5076 E->getKind(), T,
Douglas Gregor623421d2010-02-18 02:21:22 +00005077 Importer.Import(E->getLocation()));
5078}
5079
Douglas Gregorc74247e2010-02-19 01:07:06 +00005080Expr *ASTNodeImporter::VisitParenExpr(ParenExpr *E) {
5081 Expr *SubExpr = Importer.Import(E->getSubExpr());
5082 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005083 return nullptr;
5084
Douglas Gregorc74247e2010-02-19 01:07:06 +00005085 return new (Importer.getToContext())
5086 ParenExpr(Importer.Import(E->getLParen()),
5087 Importer.Import(E->getRParen()),
5088 SubExpr);
5089}
5090
5091Expr *ASTNodeImporter::VisitUnaryOperator(UnaryOperator *E) {
5092 QualType T = Importer.Import(E->getType());
5093 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005094 return nullptr;
Douglas Gregorc74247e2010-02-19 01:07:06 +00005095
5096 Expr *SubExpr = Importer.Import(E->getSubExpr());
5097 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005098 return nullptr;
5099
Douglas Gregorc74247e2010-02-19 01:07:06 +00005100 return new (Importer.getToContext()) UnaryOperator(SubExpr, E->getOpcode(),
John McCall7decc9e2010-11-18 06:31:45 +00005101 T, E->getValueKind(),
5102 E->getObjectKind(),
Douglas Gregorc74247e2010-02-19 01:07:06 +00005103 Importer.Import(E->getOperatorLoc()));
5104}
5105
Peter Collingbournee190dee2011-03-11 19:24:49 +00005106Expr *ASTNodeImporter::VisitUnaryExprOrTypeTraitExpr(
5107 UnaryExprOrTypeTraitExpr *E) {
Douglas Gregord8552cd2010-02-19 01:24:23 +00005108 QualType ResultType = Importer.Import(E->getType());
5109
5110 if (E->isArgumentType()) {
5111 TypeSourceInfo *TInfo = Importer.Import(E->getArgumentTypeInfo());
5112 if (!TInfo)
Craig Topper36250ad2014-05-12 05:36:57 +00005113 return nullptr;
5114
Peter Collingbournee190dee2011-03-11 19:24:49 +00005115 return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(),
5116 TInfo, ResultType,
Douglas Gregord8552cd2010-02-19 01:24:23 +00005117 Importer.Import(E->getOperatorLoc()),
5118 Importer.Import(E->getRParenLoc()));
5119 }
5120
5121 Expr *SubExpr = Importer.Import(E->getArgumentExpr());
5122 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005123 return nullptr;
5124
Peter Collingbournee190dee2011-03-11 19:24:49 +00005125 return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(),
5126 SubExpr, ResultType,
Douglas Gregord8552cd2010-02-19 01:24:23 +00005127 Importer.Import(E->getOperatorLoc()),
5128 Importer.Import(E->getRParenLoc()));
5129}
5130
Douglas Gregorc74247e2010-02-19 01:07:06 +00005131Expr *ASTNodeImporter::VisitBinaryOperator(BinaryOperator *E) {
5132 QualType T = Importer.Import(E->getType());
5133 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005134 return nullptr;
Douglas Gregorc74247e2010-02-19 01:07:06 +00005135
5136 Expr *LHS = Importer.Import(E->getLHS());
5137 if (!LHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005138 return nullptr;
5139
Douglas Gregorc74247e2010-02-19 01:07:06 +00005140 Expr *RHS = Importer.Import(E->getRHS());
5141 if (!RHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005142 return nullptr;
5143
Douglas Gregorc74247e2010-02-19 01:07:06 +00005144 return new (Importer.getToContext()) BinaryOperator(LHS, RHS, E->getOpcode(),
John McCall7decc9e2010-11-18 06:31:45 +00005145 T, E->getValueKind(),
5146 E->getObjectKind(),
Lang Hames5de91cc2012-10-02 04:45:10 +00005147 Importer.Import(E->getOperatorLoc()),
5148 E->isFPContractable());
Douglas Gregorc74247e2010-02-19 01:07:06 +00005149}
5150
5151Expr *ASTNodeImporter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
5152 QualType T = Importer.Import(E->getType());
5153 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005154 return nullptr;
5155
Douglas Gregorc74247e2010-02-19 01:07:06 +00005156 QualType CompLHSType = Importer.Import(E->getComputationLHSType());
5157 if (CompLHSType.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005158 return nullptr;
5159
Douglas Gregorc74247e2010-02-19 01:07:06 +00005160 QualType CompResultType = Importer.Import(E->getComputationResultType());
5161 if (CompResultType.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005162 return nullptr;
5163
Douglas Gregorc74247e2010-02-19 01:07:06 +00005164 Expr *LHS = Importer.Import(E->getLHS());
5165 if (!LHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005166 return nullptr;
5167
Douglas Gregorc74247e2010-02-19 01:07:06 +00005168 Expr *RHS = Importer.Import(E->getRHS());
5169 if (!RHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005170 return nullptr;
5171
Douglas Gregorc74247e2010-02-19 01:07:06 +00005172 return new (Importer.getToContext())
5173 CompoundAssignOperator(LHS, RHS, E->getOpcode(),
John McCall7decc9e2010-11-18 06:31:45 +00005174 T, E->getValueKind(),
5175 E->getObjectKind(),
5176 CompLHSType, CompResultType,
Lang Hames5de91cc2012-10-02 04:45:10 +00005177 Importer.Import(E->getOperatorLoc()),
5178 E->isFPContractable());
Douglas Gregorc74247e2010-02-19 01:07:06 +00005179}
5180
Benjamin Kramer8aef5962011-03-26 12:38:21 +00005181static bool ImportCastPath(CastExpr *E, CXXCastPath &Path) {
John McCallcf142162010-08-07 06:22:56 +00005182 if (E->path_empty()) return false;
5183
5184 // TODO: import cast paths
5185 return true;
5186}
5187
Douglas Gregor98c10182010-02-12 22:17:39 +00005188Expr *ASTNodeImporter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
5189 QualType T = Importer.Import(E->getType());
5190 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005191 return nullptr;
Douglas Gregor98c10182010-02-12 22:17:39 +00005192
5193 Expr *SubExpr = Importer.Import(E->getSubExpr());
5194 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005195 return nullptr;
John McCallcf142162010-08-07 06:22:56 +00005196
5197 CXXCastPath BasePath;
5198 if (ImportCastPath(E, BasePath))
Craig Topper36250ad2014-05-12 05:36:57 +00005199 return nullptr;
John McCallcf142162010-08-07 06:22:56 +00005200
5201 return ImplicitCastExpr::Create(Importer.getToContext(), T, E->getCastKind(),
John McCall2536c6d2010-08-25 10:28:54 +00005202 SubExpr, &BasePath, E->getValueKind());
Douglas Gregor98c10182010-02-12 22:17:39 +00005203}
5204
Douglas Gregor5481d322010-02-19 01:32:14 +00005205Expr *ASTNodeImporter::VisitCStyleCastExpr(CStyleCastExpr *E) {
5206 QualType T = Importer.Import(E->getType());
5207 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005208 return nullptr;
5209
Douglas Gregor5481d322010-02-19 01:32:14 +00005210 Expr *SubExpr = Importer.Import(E->getSubExpr());
5211 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005212 return nullptr;
Douglas Gregor5481d322010-02-19 01:32:14 +00005213
5214 TypeSourceInfo *TInfo = Importer.Import(E->getTypeInfoAsWritten());
5215 if (!TInfo && E->getTypeInfoAsWritten())
Craig Topper36250ad2014-05-12 05:36:57 +00005216 return nullptr;
5217
John McCallcf142162010-08-07 06:22:56 +00005218 CXXCastPath BasePath;
5219 if (ImportCastPath(E, BasePath))
Craig Topper36250ad2014-05-12 05:36:57 +00005220 return nullptr;
John McCallcf142162010-08-07 06:22:56 +00005221
John McCall7decc9e2010-11-18 06:31:45 +00005222 return CStyleCastExpr::Create(Importer.getToContext(), T,
5223 E->getValueKind(), E->getCastKind(),
John McCallcf142162010-08-07 06:22:56 +00005224 SubExpr, &BasePath, TInfo,
5225 Importer.Import(E->getLParenLoc()),
5226 Importer.Import(E->getRParenLoc()));
Douglas Gregor5481d322010-02-19 01:32:14 +00005227}
5228
Sean Callanan59721b32015-04-28 18:41:46 +00005229Expr *ASTNodeImporter::VisitCXXConstructExpr(CXXConstructExpr *E) {
5230 QualType T = Importer.Import(E->getType());
5231 if (T.isNull())
5232 return nullptr;
5233
5234 CXXConstructorDecl *ToCCD =
5235 dyn_cast<CXXConstructorDecl>(Importer.Import(E->getConstructor()));
5236 if (!ToCCD && E->getConstructor())
5237 return nullptr;
5238
5239 size_t NumArgs = E->getNumArgs();
5240 SmallVector<Expr *, 1> ToArgs(NumArgs);
5241 ASTImporter &_Importer = Importer;
5242 std::transform(E->arg_begin(), E->arg_end(), ToArgs.begin(),
5243 [&_Importer](Expr *AE) -> Expr * {
5244 return _Importer.Import(AE);
5245 });
5246 for (Expr *ToA : ToArgs) {
5247 if (!ToA)
5248 return nullptr;
5249 }
5250
5251 return CXXConstructExpr::Create(Importer.getToContext(), T,
5252 Importer.Import(E->getLocation()),
5253 ToCCD, E->isElidable(),
5254 ToArgs, E->hadMultipleCandidates(),
5255 E->isListInitialization(),
5256 E->isStdInitListInitialization(),
5257 E->requiresZeroInitialization(),
5258 E->getConstructionKind(),
5259 Importer.Import(E->getParenOrBraceRange()));
5260}
5261
5262Expr *ASTNodeImporter::VisitMemberExpr(MemberExpr *E) {
5263 QualType T = Importer.Import(E->getType());
5264 if (T.isNull())
5265 return nullptr;
5266
5267 Expr *ToBase = Importer.Import(E->getBase());
5268 if (!ToBase && E->getBase())
5269 return nullptr;
5270
5271 ValueDecl *ToMember = dyn_cast<ValueDecl>(Importer.Import(E->getMemberDecl()));
5272 if (!ToMember && E->getMemberDecl())
5273 return nullptr;
5274
5275 DeclAccessPair ToFoundDecl = DeclAccessPair::make(
5276 dyn_cast<NamedDecl>(Importer.Import(E->getFoundDecl().getDecl())),
5277 E->getFoundDecl().getAccess());
5278
5279 DeclarationNameInfo ToMemberNameInfo(
5280 Importer.Import(E->getMemberNameInfo().getName()),
5281 Importer.Import(E->getMemberNameInfo().getLoc()));
5282
5283 if (E->hasExplicitTemplateArgs()) {
5284 return nullptr; // FIXME: handle template arguments
5285 }
5286
5287 return MemberExpr::Create(Importer.getToContext(), ToBase,
5288 E->isArrow(),
5289 Importer.Import(E->getOperatorLoc()),
5290 Importer.Import(E->getQualifierLoc()),
5291 Importer.Import(E->getTemplateKeywordLoc()),
5292 ToMember, ToFoundDecl, ToMemberNameInfo,
5293 nullptr, T, E->getValueKind(),
5294 E->getObjectKind());
5295}
5296
5297Expr *ASTNodeImporter::VisitCallExpr(CallExpr *E) {
5298 QualType T = Importer.Import(E->getType());
5299 if (T.isNull())
5300 return nullptr;
5301
5302 Expr *ToCallee = Importer.Import(E->getCallee());
5303 if (!ToCallee && E->getCallee())
5304 return nullptr;
5305
5306 unsigned NumArgs = E->getNumArgs();
5307
5308 llvm::SmallVector<Expr *, 2> ToArgs(NumArgs);
5309
5310 for (unsigned ai = 0, ae = NumArgs; ai != ae; ++ai) {
5311 Expr *FromArg = E->getArg(ai);
5312 Expr *ToArg = Importer.Import(FromArg);
5313 if (!ToArg)
5314 return nullptr;
5315 ToArgs[ai] = ToArg;
5316 }
5317
5318 Expr **ToArgs_Copied = new (Importer.getToContext())
5319 Expr*[NumArgs];
5320
5321 for (unsigned ai = 0, ae = NumArgs; ai != ae; ++ai)
5322 ToArgs_Copied[ai] = ToArgs[ai];
5323
5324 return new (Importer.getToContext())
5325 CallExpr(Importer.getToContext(), ToCallee,
5326 ArrayRef<Expr*>(ToArgs_Copied, NumArgs), T, E->getValueKind(),
5327 Importer.Import(E->getRParenLoc()));
5328}
5329
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00005330ASTImporter::ASTImporter(ASTContext &ToContext, FileManager &ToFileManager,
Douglas Gregor0a791672011-01-18 03:11:38 +00005331 ASTContext &FromContext, FileManager &FromFileManager,
5332 bool MinimalImport)
Douglas Gregor96e578d2010-02-05 17:54:41 +00005333 : ToContext(ToContext), FromContext(FromContext),
Douglas Gregor0a791672011-01-18 03:11:38 +00005334 ToFileManager(ToFileManager), FromFileManager(FromFileManager),
Richard Smith5bb4cdf2012-12-20 02:22:15 +00005335 Minimal(MinimalImport), LastDiagFromFrom(false)
Douglas Gregor0a791672011-01-18 03:11:38 +00005336{
Douglas Gregor62d311f2010-02-09 19:21:46 +00005337 ImportedDecls[FromContext.getTranslationUnitDecl()]
5338 = ToContext.getTranslationUnitDecl();
5339}
5340
5341ASTImporter::~ASTImporter() { }
Douglas Gregor96e578d2010-02-05 17:54:41 +00005342
5343QualType ASTImporter::Import(QualType FromT) {
5344 if (FromT.isNull())
5345 return QualType();
John McCall424cec92011-01-19 06:33:43 +00005346
5347 const Type *fromTy = FromT.getTypePtr();
Douglas Gregor96e578d2010-02-05 17:54:41 +00005348
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005349 // Check whether we've already imported this type.
John McCall424cec92011-01-19 06:33:43 +00005350 llvm::DenseMap<const Type *, const Type *>::iterator Pos
5351 = ImportedTypes.find(fromTy);
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005352 if (Pos != ImportedTypes.end())
John McCall424cec92011-01-19 06:33:43 +00005353 return ToContext.getQualifiedType(Pos->second, FromT.getLocalQualifiers());
Douglas Gregor96e578d2010-02-05 17:54:41 +00005354
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005355 // Import the type
Douglas Gregor96e578d2010-02-05 17:54:41 +00005356 ASTNodeImporter Importer(*this);
John McCall424cec92011-01-19 06:33:43 +00005357 QualType ToT = Importer.Visit(fromTy);
Douglas Gregor96e578d2010-02-05 17:54:41 +00005358 if (ToT.isNull())
5359 return ToT;
5360
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005361 // Record the imported type.
John McCall424cec92011-01-19 06:33:43 +00005362 ImportedTypes[fromTy] = ToT.getTypePtr();
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005363
John McCall424cec92011-01-19 06:33:43 +00005364 return ToContext.getQualifiedType(ToT, FromT.getLocalQualifiers());
Douglas Gregor96e578d2010-02-05 17:54:41 +00005365}
5366
Douglas Gregor62d311f2010-02-09 19:21:46 +00005367TypeSourceInfo *ASTImporter::Import(TypeSourceInfo *FromTSI) {
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00005368 if (!FromTSI)
5369 return FromTSI;
5370
5371 // FIXME: For now we just create a "trivial" type source info based
Nick Lewycky19b9f952010-07-26 16:56:01 +00005372 // on the type and a single location. Implement a real version of this.
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00005373 QualType T = Import(FromTSI->getType());
5374 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005375 return nullptr;
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00005376
5377 return ToContext.getTrivialTypeSourceInfo(T,
Douglas Gregore9d95f12015-07-07 03:57:35 +00005378 Import(FromTSI->getTypeLoc().getLocStart()));
Douglas Gregor62d311f2010-02-09 19:21:46 +00005379}
5380
Sean Callanan59721b32015-04-28 18:41:46 +00005381Decl *ASTImporter::GetAlreadyImportedOrNull(Decl *FromD) {
5382 llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD);
5383 if (Pos != ImportedDecls.end()) {
5384 Decl *ToD = Pos->second;
5385 ASTNodeImporter(*this).ImportDefinitionIfNeeded(FromD, ToD);
5386 return ToD;
5387 } else {
5388 return nullptr;
5389 }
5390}
5391
Douglas Gregor62d311f2010-02-09 19:21:46 +00005392Decl *ASTImporter::Import(Decl *FromD) {
5393 if (!FromD)
Craig Topper36250ad2014-05-12 05:36:57 +00005394 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00005395
Douglas Gregord451ea92011-07-29 23:31:30 +00005396 ASTNodeImporter Importer(*this);
5397
Douglas Gregor62d311f2010-02-09 19:21:46 +00005398 // Check whether we've already imported this declaration.
5399 llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD);
Douglas Gregord451ea92011-07-29 23:31:30 +00005400 if (Pos != ImportedDecls.end()) {
5401 Decl *ToD = Pos->second;
5402 Importer.ImportDefinitionIfNeeded(FromD, ToD);
5403 return ToD;
5404 }
Douglas Gregor62d311f2010-02-09 19:21:46 +00005405
5406 // Import the type
Douglas Gregor62d311f2010-02-09 19:21:46 +00005407 Decl *ToD = Importer.Visit(FromD);
5408 if (!ToD)
Craig Topper36250ad2014-05-12 05:36:57 +00005409 return nullptr;
5410
Douglas Gregor62d311f2010-02-09 19:21:46 +00005411 // Record the imported declaration.
5412 ImportedDecls[FromD] = ToD;
Douglas Gregorb4964f72010-02-15 23:54:17 +00005413
5414 if (TagDecl *FromTag = dyn_cast<TagDecl>(FromD)) {
5415 // Keep track of anonymous tags that have an associated typedef.
Richard Smithdda56e42011-04-15 14:24:37 +00005416 if (FromTag->getTypedefNameForAnonDecl())
Douglas Gregorb4964f72010-02-15 23:54:17 +00005417 AnonTagsWithPendingTypedefs.push_back(FromTag);
Richard Smithdda56e42011-04-15 14:24:37 +00005418 } else if (TypedefNameDecl *FromTypedef = dyn_cast<TypedefNameDecl>(FromD)) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00005419 // When we've finished transforming a typedef, see whether it was the
5420 // typedef for an anonymous tag.
Craig Topper2341c0d2013-07-04 03:08:24 +00005421 for (SmallVectorImpl<TagDecl *>::iterator
Douglas Gregorb4964f72010-02-15 23:54:17 +00005422 FromTag = AnonTagsWithPendingTypedefs.begin(),
5423 FromTagEnd = AnonTagsWithPendingTypedefs.end();
5424 FromTag != FromTagEnd; ++FromTag) {
Richard Smithdda56e42011-04-15 14:24:37 +00005425 if ((*FromTag)->getTypedefNameForAnonDecl() == FromTypedef) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00005426 if (TagDecl *ToTag = cast_or_null<TagDecl>(Import(*FromTag))) {
5427 // We found the typedef for an anonymous tag; link them.
Richard Smithdda56e42011-04-15 14:24:37 +00005428 ToTag->setTypedefNameForAnonDecl(cast<TypedefNameDecl>(ToD));
Douglas Gregorb4964f72010-02-15 23:54:17 +00005429 AnonTagsWithPendingTypedefs.erase(FromTag);
5430 break;
5431 }
5432 }
5433 }
5434 }
5435
Douglas Gregor62d311f2010-02-09 19:21:46 +00005436 return ToD;
5437}
5438
5439DeclContext *ASTImporter::ImportContext(DeclContext *FromDC) {
5440 if (!FromDC)
5441 return FromDC;
5442
Douglas Gregor95d82832012-01-24 18:36:04 +00005443 DeclContext *ToDC = cast_or_null<DeclContext>(Import(cast<Decl>(FromDC)));
Douglas Gregor2e15c842012-02-01 21:00:38 +00005444 if (!ToDC)
Craig Topper36250ad2014-05-12 05:36:57 +00005445 return nullptr;
5446
Douglas Gregor2e15c842012-02-01 21:00:38 +00005447 // When we're using a record/enum/Objective-C class/protocol as a context, we
5448 // need it to have a definition.
5449 if (RecordDecl *ToRecord = dyn_cast<RecordDecl>(ToDC)) {
Douglas Gregor63db9712012-01-25 01:13:20 +00005450 RecordDecl *FromRecord = cast<RecordDecl>(FromDC);
Douglas Gregor2e15c842012-02-01 21:00:38 +00005451 if (ToRecord->isCompleteDefinition()) {
5452 // Do nothing.
5453 } else if (FromRecord->isCompleteDefinition()) {
5454 ASTNodeImporter(*this).ImportDefinition(FromRecord, ToRecord,
5455 ASTNodeImporter::IDK_Basic);
5456 } else {
5457 CompleteDecl(ToRecord);
5458 }
5459 } else if (EnumDecl *ToEnum = dyn_cast<EnumDecl>(ToDC)) {
5460 EnumDecl *FromEnum = cast<EnumDecl>(FromDC);
5461 if (ToEnum->isCompleteDefinition()) {
5462 // Do nothing.
5463 } else if (FromEnum->isCompleteDefinition()) {
5464 ASTNodeImporter(*this).ImportDefinition(FromEnum, ToEnum,
5465 ASTNodeImporter::IDK_Basic);
5466 } else {
5467 CompleteDecl(ToEnum);
5468 }
5469 } else if (ObjCInterfaceDecl *ToClass = dyn_cast<ObjCInterfaceDecl>(ToDC)) {
5470 ObjCInterfaceDecl *FromClass = cast<ObjCInterfaceDecl>(FromDC);
5471 if (ToClass->getDefinition()) {
5472 // Do nothing.
5473 } else if (ObjCInterfaceDecl *FromDef = FromClass->getDefinition()) {
5474 ASTNodeImporter(*this).ImportDefinition(FromDef, ToClass,
5475 ASTNodeImporter::IDK_Basic);
5476 } else {
5477 CompleteDecl(ToClass);
5478 }
5479 } else if (ObjCProtocolDecl *ToProto = dyn_cast<ObjCProtocolDecl>(ToDC)) {
5480 ObjCProtocolDecl *FromProto = cast<ObjCProtocolDecl>(FromDC);
5481 if (ToProto->getDefinition()) {
5482 // Do nothing.
5483 } else if (ObjCProtocolDecl *FromDef = FromProto->getDefinition()) {
5484 ASTNodeImporter(*this).ImportDefinition(FromDef, ToProto,
5485 ASTNodeImporter::IDK_Basic);
5486 } else {
5487 CompleteDecl(ToProto);
5488 }
Douglas Gregor95d82832012-01-24 18:36:04 +00005489 }
5490
5491 return ToDC;
Douglas Gregor62d311f2010-02-09 19:21:46 +00005492}
5493
5494Expr *ASTImporter::Import(Expr *FromE) {
5495 if (!FromE)
Craig Topper36250ad2014-05-12 05:36:57 +00005496 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00005497
5498 return cast_or_null<Expr>(Import(cast<Stmt>(FromE)));
5499}
5500
5501Stmt *ASTImporter::Import(Stmt *FromS) {
5502 if (!FromS)
Craig Topper36250ad2014-05-12 05:36:57 +00005503 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00005504
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005505 // Check whether we've already imported this declaration.
5506 llvm::DenseMap<Stmt *, Stmt *>::iterator Pos = ImportedStmts.find(FromS);
5507 if (Pos != ImportedStmts.end())
5508 return Pos->second;
5509
5510 // Import the type
5511 ASTNodeImporter Importer(*this);
5512 Stmt *ToS = Importer.Visit(FromS);
5513 if (!ToS)
Craig Topper36250ad2014-05-12 05:36:57 +00005514 return nullptr;
5515
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005516 // Record the imported declaration.
5517 ImportedStmts[FromS] = ToS;
5518 return ToS;
Douglas Gregor62d311f2010-02-09 19:21:46 +00005519}
5520
5521NestedNameSpecifier *ASTImporter::Import(NestedNameSpecifier *FromNNS) {
5522 if (!FromNNS)
Craig Topper36250ad2014-05-12 05:36:57 +00005523 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00005524
Douglas Gregor90ebf252011-04-27 16:48:40 +00005525 NestedNameSpecifier *prefix = Import(FromNNS->getPrefix());
5526
5527 switch (FromNNS->getKind()) {
5528 case NestedNameSpecifier::Identifier:
5529 if (IdentifierInfo *II = Import(FromNNS->getAsIdentifier())) {
5530 return NestedNameSpecifier::Create(ToContext, prefix, II);
5531 }
Craig Topper36250ad2014-05-12 05:36:57 +00005532 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00005533
5534 case NestedNameSpecifier::Namespace:
5535 if (NamespaceDecl *NS =
5536 cast<NamespaceDecl>(Import(FromNNS->getAsNamespace()))) {
5537 return NestedNameSpecifier::Create(ToContext, prefix, NS);
5538 }
Craig Topper36250ad2014-05-12 05:36:57 +00005539 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00005540
5541 case NestedNameSpecifier::NamespaceAlias:
5542 if (NamespaceAliasDecl *NSAD =
5543 cast<NamespaceAliasDecl>(Import(FromNNS->getAsNamespaceAlias()))) {
5544 return NestedNameSpecifier::Create(ToContext, prefix, NSAD);
5545 }
Craig Topper36250ad2014-05-12 05:36:57 +00005546 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00005547
5548 case NestedNameSpecifier::Global:
5549 return NestedNameSpecifier::GlobalSpecifier(ToContext);
5550
Nikola Smiljanic67860242014-09-26 00:28:20 +00005551 case NestedNameSpecifier::Super:
5552 if (CXXRecordDecl *RD =
5553 cast<CXXRecordDecl>(Import(FromNNS->getAsRecordDecl()))) {
5554 return NestedNameSpecifier::SuperSpecifier(ToContext, RD);
5555 }
5556 return nullptr;
5557
Douglas Gregor90ebf252011-04-27 16:48:40 +00005558 case NestedNameSpecifier::TypeSpec:
5559 case NestedNameSpecifier::TypeSpecWithTemplate: {
5560 QualType T = Import(QualType(FromNNS->getAsType(), 0u));
5561 if (!T.isNull()) {
5562 bool bTemplate = FromNNS->getKind() ==
5563 NestedNameSpecifier::TypeSpecWithTemplate;
5564 return NestedNameSpecifier::Create(ToContext, prefix,
5565 bTemplate, T.getTypePtr());
5566 }
5567 }
Craig Topper36250ad2014-05-12 05:36:57 +00005568 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00005569 }
5570
5571 llvm_unreachable("Invalid nested name specifier kind");
Douglas Gregor62d311f2010-02-09 19:21:46 +00005572}
5573
Douglas Gregor14454802011-02-25 02:25:35 +00005574NestedNameSpecifierLoc ASTImporter::Import(NestedNameSpecifierLoc FromNNS) {
5575 // FIXME: Implement!
5576 return NestedNameSpecifierLoc();
5577}
5578
Douglas Gregore2e50d332010-12-01 01:36:18 +00005579TemplateName ASTImporter::Import(TemplateName From) {
5580 switch (From.getKind()) {
5581 case TemplateName::Template:
5582 if (TemplateDecl *ToTemplate
5583 = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl())))
5584 return TemplateName(ToTemplate);
5585
5586 return TemplateName();
5587
5588 case TemplateName::OverloadedTemplate: {
5589 OverloadedTemplateStorage *FromStorage = From.getAsOverloadedTemplate();
5590 UnresolvedSet<2> ToTemplates;
5591 for (OverloadedTemplateStorage::iterator I = FromStorage->begin(),
5592 E = FromStorage->end();
5593 I != E; ++I) {
5594 if (NamedDecl *To = cast_or_null<NamedDecl>(Import(*I)))
5595 ToTemplates.addDecl(To);
5596 else
5597 return TemplateName();
5598 }
5599 return ToContext.getOverloadedTemplateName(ToTemplates.begin(),
5600 ToTemplates.end());
5601 }
5602
5603 case TemplateName::QualifiedTemplate: {
5604 QualifiedTemplateName *QTN = From.getAsQualifiedTemplateName();
5605 NestedNameSpecifier *Qualifier = Import(QTN->getQualifier());
5606 if (!Qualifier)
5607 return TemplateName();
5608
5609 if (TemplateDecl *ToTemplate
5610 = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl())))
5611 return ToContext.getQualifiedTemplateName(Qualifier,
5612 QTN->hasTemplateKeyword(),
5613 ToTemplate);
5614
5615 return TemplateName();
5616 }
5617
5618 case TemplateName::DependentTemplate: {
5619 DependentTemplateName *DTN = From.getAsDependentTemplateName();
5620 NestedNameSpecifier *Qualifier = Import(DTN->getQualifier());
5621 if (!Qualifier)
5622 return TemplateName();
5623
5624 if (DTN->isIdentifier()) {
5625 return ToContext.getDependentTemplateName(Qualifier,
5626 Import(DTN->getIdentifier()));
5627 }
5628
5629 return ToContext.getDependentTemplateName(Qualifier, DTN->getOperator());
5630 }
John McCalld9dfe3a2011-06-30 08:33:18 +00005631
5632 case TemplateName::SubstTemplateTemplateParm: {
5633 SubstTemplateTemplateParmStorage *subst
5634 = From.getAsSubstTemplateTemplateParm();
5635 TemplateTemplateParmDecl *param
5636 = cast_or_null<TemplateTemplateParmDecl>(Import(subst->getParameter()));
5637 if (!param)
5638 return TemplateName();
5639
5640 TemplateName replacement = Import(subst->getReplacement());
5641 if (replacement.isNull()) return TemplateName();
5642
5643 return ToContext.getSubstTemplateTemplateParm(param, replacement);
5644 }
Douglas Gregor5590be02011-01-15 06:45:20 +00005645
5646 case TemplateName::SubstTemplateTemplateParmPack: {
5647 SubstTemplateTemplateParmPackStorage *SubstPack
5648 = From.getAsSubstTemplateTemplateParmPack();
5649 TemplateTemplateParmDecl *Param
5650 = cast_or_null<TemplateTemplateParmDecl>(
5651 Import(SubstPack->getParameterPack()));
5652 if (!Param)
5653 return TemplateName();
5654
5655 ASTNodeImporter Importer(*this);
5656 TemplateArgument ArgPack
5657 = Importer.ImportTemplateArgument(SubstPack->getArgumentPack());
5658 if (ArgPack.isNull())
5659 return TemplateName();
5660
5661 return ToContext.getSubstTemplateTemplateParmPack(Param, ArgPack);
5662 }
Douglas Gregore2e50d332010-12-01 01:36:18 +00005663 }
5664
5665 llvm_unreachable("Invalid template name kind");
Douglas Gregore2e50d332010-12-01 01:36:18 +00005666}
5667
Douglas Gregor62d311f2010-02-09 19:21:46 +00005668SourceLocation ASTImporter::Import(SourceLocation FromLoc) {
5669 if (FromLoc.isInvalid())
5670 return SourceLocation();
5671
Douglas Gregor811663e2010-02-10 00:15:17 +00005672 SourceManager &FromSM = FromContext.getSourceManager();
5673
5674 // For now, map everything down to its spelling location, so that we
Chandler Carruth25366412011-07-15 00:04:35 +00005675 // don't have to import macro expansions.
5676 // FIXME: Import macro expansions!
Douglas Gregor811663e2010-02-10 00:15:17 +00005677 FromLoc = FromSM.getSpellingLoc(FromLoc);
5678 std::pair<FileID, unsigned> Decomposed = FromSM.getDecomposedLoc(FromLoc);
5679 SourceManager &ToSM = ToContext.getSourceManager();
Sean Callanan238d8972014-12-10 01:26:39 +00005680 FileID ToFileID = Import(Decomposed.first);
5681 if (ToFileID.isInvalid())
5682 return SourceLocation();
Sean Callanan59721b32015-04-28 18:41:46 +00005683 SourceLocation ret = ToSM.getLocForStartOfFile(ToFileID)
5684 .getLocWithOffset(Decomposed.second);
5685 return ret;
Douglas Gregor62d311f2010-02-09 19:21:46 +00005686}
5687
5688SourceRange ASTImporter::Import(SourceRange FromRange) {
5689 return SourceRange(Import(FromRange.getBegin()), Import(FromRange.getEnd()));
5690}
5691
Douglas Gregor811663e2010-02-10 00:15:17 +00005692FileID ASTImporter::Import(FileID FromID) {
Sebastian Redl99219f12010-09-30 01:03:06 +00005693 llvm::DenseMap<FileID, FileID>::iterator Pos
5694 = ImportedFileIDs.find(FromID);
Douglas Gregor811663e2010-02-10 00:15:17 +00005695 if (Pos != ImportedFileIDs.end())
5696 return Pos->second;
5697
5698 SourceManager &FromSM = FromContext.getSourceManager();
5699 SourceManager &ToSM = ToContext.getSourceManager();
5700 const SrcMgr::SLocEntry &FromSLoc = FromSM.getSLocEntry(FromID);
Chandler Carruth25366412011-07-15 00:04:35 +00005701 assert(FromSLoc.isFile() && "Cannot handle macro expansions yet");
Douglas Gregor811663e2010-02-10 00:15:17 +00005702
5703 // Include location of this file.
5704 SourceLocation ToIncludeLoc = Import(FromSLoc.getFile().getIncludeLoc());
5705
5706 // Map the FileID for to the "to" source manager.
5707 FileID ToID;
5708 const SrcMgr::ContentCache *Cache = FromSLoc.getFile().getContentCache();
Sean Callanan25d34af2015-04-30 00:44:21 +00005709 if (Cache->OrigEntry && Cache->OrigEntry->getDir()) {
Douglas Gregor811663e2010-02-10 00:15:17 +00005710 // FIXME: We probably want to use getVirtualFile(), so we don't hit the
5711 // disk again
5712 // FIXME: We definitely want to re-use the existing MemoryBuffer, rather
5713 // than mmap the files several times.
Argyrios Kyrtzidis11e6f0a2011-03-05 01:03:53 +00005714 const FileEntry *Entry = ToFileManager.getFile(Cache->OrigEntry->getName());
Sean Callanan238d8972014-12-10 01:26:39 +00005715 if (!Entry)
5716 return FileID();
Douglas Gregor811663e2010-02-10 00:15:17 +00005717 ToID = ToSM.createFileID(Entry, ToIncludeLoc,
5718 FromSLoc.getFile().getFileCharacteristic());
5719 } else {
5720 // FIXME: We want to re-use the existing MemoryBuffer!
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00005721 const llvm::MemoryBuffer *
5722 FromBuf = Cache->getBuffer(FromContext.getDiagnostics(), FromSM);
Rafael Espindolad87f8d72014-08-27 20:03:29 +00005723 std::unique_ptr<llvm::MemoryBuffer> ToBuf
Chris Lattner58c79342010-04-05 22:42:27 +00005724 = llvm::MemoryBuffer::getMemBufferCopy(FromBuf->getBuffer(),
Douglas Gregor811663e2010-02-10 00:15:17 +00005725 FromBuf->getBufferIdentifier());
David Blaikie50a5f972014-08-29 07:59:55 +00005726 ToID = ToSM.createFileID(std::move(ToBuf),
Rafael Espindolad87f8d72014-08-27 20:03:29 +00005727 FromSLoc.getFile().getFileCharacteristic());
Douglas Gregor811663e2010-02-10 00:15:17 +00005728 }
5729
5730
Sebastian Redl99219f12010-09-30 01:03:06 +00005731 ImportedFileIDs[FromID] = ToID;
Douglas Gregor811663e2010-02-10 00:15:17 +00005732 return ToID;
5733}
5734
Douglas Gregor0a791672011-01-18 03:11:38 +00005735void ASTImporter::ImportDefinition(Decl *From) {
5736 Decl *To = Import(From);
5737 if (!To)
5738 return;
5739
5740 if (DeclContext *FromDC = cast<DeclContext>(From)) {
5741 ASTNodeImporter Importer(*this);
Sean Callanan53a6bff2011-07-19 22:38:25 +00005742
5743 if (RecordDecl *ToRecord = dyn_cast<RecordDecl>(To)) {
5744 if (!ToRecord->getDefinition()) {
5745 Importer.ImportDefinition(cast<RecordDecl>(FromDC), ToRecord,
Douglas Gregor95d82832012-01-24 18:36:04 +00005746 ASTNodeImporter::IDK_Everything);
Sean Callanan53a6bff2011-07-19 22:38:25 +00005747 return;
5748 }
5749 }
Douglas Gregord451ea92011-07-29 23:31:30 +00005750
5751 if (EnumDecl *ToEnum = dyn_cast<EnumDecl>(To)) {
5752 if (!ToEnum->getDefinition()) {
5753 Importer.ImportDefinition(cast<EnumDecl>(FromDC), ToEnum,
Douglas Gregor2e15c842012-02-01 21:00:38 +00005754 ASTNodeImporter::IDK_Everything);
Douglas Gregord451ea92011-07-29 23:31:30 +00005755 return;
5756 }
5757 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00005758
5759 if (ObjCInterfaceDecl *ToIFace = dyn_cast<ObjCInterfaceDecl>(To)) {
5760 if (!ToIFace->getDefinition()) {
5761 Importer.ImportDefinition(cast<ObjCInterfaceDecl>(FromDC), ToIFace,
Douglas Gregor2e15c842012-02-01 21:00:38 +00005762 ASTNodeImporter::IDK_Everything);
Douglas Gregor2aa53772012-01-24 17:42:07 +00005763 return;
5764 }
5765 }
Douglas Gregord451ea92011-07-29 23:31:30 +00005766
Douglas Gregor2aa53772012-01-24 17:42:07 +00005767 if (ObjCProtocolDecl *ToProto = dyn_cast<ObjCProtocolDecl>(To)) {
5768 if (!ToProto->getDefinition()) {
5769 Importer.ImportDefinition(cast<ObjCProtocolDecl>(FromDC), ToProto,
Douglas Gregor2e15c842012-02-01 21:00:38 +00005770 ASTNodeImporter::IDK_Everything);
Douglas Gregor2aa53772012-01-24 17:42:07 +00005771 return;
5772 }
5773 }
5774
Douglas Gregor0a791672011-01-18 03:11:38 +00005775 Importer.ImportDeclContext(FromDC, true);
5776 }
5777}
5778
Douglas Gregor96e578d2010-02-05 17:54:41 +00005779DeclarationName ASTImporter::Import(DeclarationName FromName) {
5780 if (!FromName)
5781 return DeclarationName();
5782
5783 switch (FromName.getNameKind()) {
5784 case DeclarationName::Identifier:
5785 return Import(FromName.getAsIdentifierInfo());
5786
5787 case DeclarationName::ObjCZeroArgSelector:
5788 case DeclarationName::ObjCOneArgSelector:
5789 case DeclarationName::ObjCMultiArgSelector:
5790 return Import(FromName.getObjCSelector());
5791
5792 case DeclarationName::CXXConstructorName: {
5793 QualType T = Import(FromName.getCXXNameType());
5794 if (T.isNull())
5795 return DeclarationName();
5796
5797 return ToContext.DeclarationNames.getCXXConstructorName(
5798 ToContext.getCanonicalType(T));
5799 }
5800
5801 case DeclarationName::CXXDestructorName: {
5802 QualType T = Import(FromName.getCXXNameType());
5803 if (T.isNull())
5804 return DeclarationName();
5805
5806 return ToContext.DeclarationNames.getCXXDestructorName(
5807 ToContext.getCanonicalType(T));
5808 }
5809
5810 case DeclarationName::CXXConversionFunctionName: {
5811 QualType T = Import(FromName.getCXXNameType());
5812 if (T.isNull())
5813 return DeclarationName();
5814
5815 return ToContext.DeclarationNames.getCXXConversionFunctionName(
5816 ToContext.getCanonicalType(T));
5817 }
5818
5819 case DeclarationName::CXXOperatorName:
5820 return ToContext.DeclarationNames.getCXXOperatorName(
5821 FromName.getCXXOverloadedOperator());
5822
5823 case DeclarationName::CXXLiteralOperatorName:
5824 return ToContext.DeclarationNames.getCXXLiteralOperatorName(
5825 Import(FromName.getCXXLiteralIdentifier()));
5826
5827 case DeclarationName::CXXUsingDirective:
5828 // FIXME: STATICS!
5829 return DeclarationName::getUsingDirectiveName();
5830 }
5831
David Blaikiee4d798f2012-01-20 21:50:17 +00005832 llvm_unreachable("Invalid DeclarationName Kind!");
Douglas Gregor96e578d2010-02-05 17:54:41 +00005833}
5834
Douglas Gregore2e50d332010-12-01 01:36:18 +00005835IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00005836 if (!FromId)
Craig Topper36250ad2014-05-12 05:36:57 +00005837 return nullptr;
Douglas Gregor96e578d2010-02-05 17:54:41 +00005838
5839 return &ToContext.Idents.get(FromId->getName());
5840}
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00005841
Douglas Gregor43f54792010-02-17 02:12:47 +00005842Selector ASTImporter::Import(Selector FromSel) {
5843 if (FromSel.isNull())
5844 return Selector();
5845
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005846 SmallVector<IdentifierInfo *, 4> Idents;
Douglas Gregor43f54792010-02-17 02:12:47 +00005847 Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(0)));
5848 for (unsigned I = 1, N = FromSel.getNumArgs(); I < N; ++I)
5849 Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(I)));
5850 return ToContext.Selectors.getSelector(FromSel.getNumArgs(), Idents.data());
5851}
5852
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00005853DeclarationName ASTImporter::HandleNameConflict(DeclarationName Name,
5854 DeclContext *DC,
5855 unsigned IDNS,
5856 NamedDecl **Decls,
5857 unsigned NumDecls) {
5858 return Name;
5859}
5860
5861DiagnosticBuilder ASTImporter::ToDiag(SourceLocation Loc, unsigned DiagID) {
Richard Smith5bb4cdf2012-12-20 02:22:15 +00005862 if (LastDiagFromFrom)
5863 ToContext.getDiagnostics().notePriorDiagnosticFrom(
5864 FromContext.getDiagnostics());
5865 LastDiagFromFrom = false;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00005866 return ToContext.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00005867}
5868
5869DiagnosticBuilder ASTImporter::FromDiag(SourceLocation Loc, unsigned DiagID) {
Richard Smith5bb4cdf2012-12-20 02:22:15 +00005870 if (!LastDiagFromFrom)
5871 FromContext.getDiagnostics().notePriorDiagnosticFrom(
5872 ToContext.getDiagnostics());
5873 LastDiagFromFrom = true;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00005874 return FromContext.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00005875}
Douglas Gregor8cdbe642010-02-12 23:44:20 +00005876
Douglas Gregor2e15c842012-02-01 21:00:38 +00005877void ASTImporter::CompleteDecl (Decl *D) {
5878 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
5879 if (!ID->getDefinition())
5880 ID->startDefinition();
5881 }
5882 else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
5883 if (!PD->getDefinition())
5884 PD->startDefinition();
5885 }
5886 else if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
5887 if (!TD->getDefinition() && !TD->isBeingDefined()) {
5888 TD->startDefinition();
5889 TD->setCompleteDefinition(true);
5890 }
5891 }
5892 else {
5893 assert (0 && "CompleteDecl called on a Decl that can't be completed");
5894 }
5895}
5896
Douglas Gregor8cdbe642010-02-12 23:44:20 +00005897Decl *ASTImporter::Imported(Decl *From, Decl *To) {
5898 ImportedDecls[From] = To;
5899 return To;
Daniel Dunbar9ced5422010-02-13 20:24:39 +00005900}
Douglas Gregorb4964f72010-02-15 23:54:17 +00005901
Douglas Gregordd6006f2012-07-17 21:16:27 +00005902bool ASTImporter::IsStructurallyEquivalent(QualType From, QualType To,
5903 bool Complain) {
John McCall424cec92011-01-19 06:33:43 +00005904 llvm::DenseMap<const Type *, const Type *>::iterator Pos
Douglas Gregorb4964f72010-02-15 23:54:17 +00005905 = ImportedTypes.find(From.getTypePtr());
5906 if (Pos != ImportedTypes.end() && ToContext.hasSameType(Import(From), To))
5907 return true;
5908
Douglas Gregordd6006f2012-07-17 21:16:27 +00005909 StructuralEquivalenceContext Ctx(FromContext, ToContext, NonEquivalentDecls,
5910 false, Complain);
Benjamin Kramer26d19c52010-02-18 13:02:13 +00005911 return Ctx.IsStructurallyEquivalent(From, To);
Douglas Gregorb4964f72010-02-15 23:54:17 +00005912}