blob: c1dda3fcf65485c581d4dc2421f8c78f255598fa [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;
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +000032
Douglas Gregor96e578d2010-02-05 17:54:41 +000033 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);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +000067 QualType VisitInjectedClassNameType(const InjectedClassNameType *T);
Douglas Gregor96e578d2010-02-05 17:54:41 +000068 // FIXME: DependentDecltypeType
John McCall424cec92011-01-19 06:33:43 +000069 QualType VisitRecordType(const RecordType *T);
70 QualType VisitEnumType(const EnumType *T);
Sean Callanan72fe0852015-04-02 23:50:08 +000071 QualType VisitAttributedType(const AttributedType *T);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +000072 QualType VisitTemplateTypeParmType(const TemplateTypeParmType *T);
Douglas Gregor96e578d2010-02-05 17:54:41 +000073 // FIXME: SubstTemplateTypeParmType
John McCall424cec92011-01-19 06:33:43 +000074 QualType VisitTemplateSpecializationType(const TemplateSpecializationType *T);
75 QualType VisitElaboratedType(const ElaboratedType *T);
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +000076 // FIXME: DependentNameType
John McCallc392f372010-06-11 00:33:02 +000077 // FIXME: DependentTemplateSpecializationType
John McCall424cec92011-01-19 06:33:43 +000078 QualType VisitObjCInterfaceType(const ObjCInterfaceType *T);
79 QualType VisitObjCObjectType(const ObjCObjectType *T);
80 QualType VisitObjCObjectPointerType(const ObjCObjectPointerType *T);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +000081
Douglas Gregor95d82832012-01-24 18:36:04 +000082 // Importing declarations
Douglas Gregorbb7930c2010-02-10 19:54:31 +000083 bool ImportDeclParts(NamedDecl *D, DeclContext *&DC,
84 DeclContext *&LexicalDC, DeclarationName &Name,
Sean Callanan59721b32015-04-28 18:41:46 +000085 NamedDecl *&ToD, SourceLocation &Loc);
Craig Topper36250ad2014-05-12 05:36:57 +000086 void ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD = nullptr);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +000087 void ImportDeclarationNameLoc(const DeclarationNameInfo &From,
88 DeclarationNameInfo& To);
Douglas Gregor0a791672011-01-18 03:11:38 +000089 void ImportDeclContext(DeclContext *FromDC, bool ForceImport = false);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +000090
91 typedef DesignatedInitExpr::Designator Designator;
92 Designator ImportDesignator(const Designator &D);
93
Douglas Gregor2e15c842012-02-01 21:00:38 +000094
Douglas Gregor95d82832012-01-24 18:36:04 +000095 /// \brief What we should import from the definition.
96 enum ImportDefinitionKind {
97 /// \brief Import the default subset of the definition, which might be
98 /// nothing (if minimal import is set) or might be everything (if minimal
99 /// import is not set).
100 IDK_Default,
101 /// \brief Import everything.
102 IDK_Everything,
103 /// \brief Import only the bare bones needed to establish a valid
104 /// DeclContext.
105 IDK_Basic
106 };
107
Douglas Gregor2e15c842012-02-01 21:00:38 +0000108 bool shouldForceImportDeclContext(ImportDefinitionKind IDK) {
109 return IDK == IDK_Everything ||
110 (IDK == IDK_Default && !Importer.isMinimalImport());
111 }
112
Douglas Gregord451ea92011-07-29 23:31:30 +0000113 bool ImportDefinition(RecordDecl *From, RecordDecl *To,
Douglas Gregor95d82832012-01-24 18:36:04 +0000114 ImportDefinitionKind Kind = IDK_Default);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000115 bool ImportDefinition(VarDecl *From, VarDecl *To,
116 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregord451ea92011-07-29 23:31:30 +0000117 bool ImportDefinition(EnumDecl *From, EnumDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +0000118 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregor2aa53772012-01-24 17:42:07 +0000119 bool ImportDefinition(ObjCInterfaceDecl *From, ObjCInterfaceDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +0000120 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregor2aa53772012-01-24 17:42:07 +0000121 bool ImportDefinition(ObjCProtocolDecl *From, ObjCProtocolDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +0000122 ImportDefinitionKind Kind = IDK_Default);
Douglas Gregora082a492010-11-30 19:14:50 +0000123 TemplateParameterList *ImportTemplateParameterList(
124 TemplateParameterList *Params);
Douglas Gregore2e50d332010-12-01 01:36:18 +0000125 TemplateArgument ImportTemplateArgument(const TemplateArgument &From);
126 bool ImportTemplateArguments(const TemplateArgument *FromArgs,
127 unsigned NumFromArgs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000128 SmallVectorImpl<TemplateArgument> &ToArgs);
Douglas Gregordd6006f2012-07-17 21:16:27 +0000129 bool IsStructuralMatch(RecordDecl *FromRecord, RecordDecl *ToRecord,
130 bool Complain = true);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000131 bool IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar,
132 bool Complain = true);
Douglas Gregor3996e242010-02-15 22:01:00 +0000133 bool IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToRecord);
Douglas Gregor91155082012-11-14 22:29:20 +0000134 bool IsStructuralMatch(EnumConstantDecl *FromEC, EnumConstantDecl *ToEC);
Douglas Gregora082a492010-11-30 19:14:50 +0000135 bool IsStructuralMatch(ClassTemplateDecl *From, ClassTemplateDecl *To);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000136 bool IsStructuralMatch(VarTemplateDecl *From, VarTemplateDecl *To);
Douglas Gregore4c83e42010-02-09 22:48:33 +0000137 Decl *VisitDecl(Decl *D);
Argyrios Kyrtzidis544ea712016-02-18 23:08:36 +0000138 Decl *VisitAccessSpecDecl(AccessSpecDecl *D);
Sean Callanan65198272011-11-17 23:20:56 +0000139 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
Douglas Gregorf18a2c72010-02-21 18:26:36 +0000140 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Richard Smithdda56e42011-04-15 14:24:37 +0000141 Decl *VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias);
Douglas Gregor5fa74c32010-02-10 21:10:29 +0000142 Decl *VisitTypedefDecl(TypedefDecl *D);
Richard Smithdda56e42011-04-15 14:24:37 +0000143 Decl *VisitTypeAliasDecl(TypeAliasDecl *D);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000144 Decl *VisitLabelDecl(LabelDecl *D);
Douglas Gregor98c10182010-02-12 22:17:39 +0000145 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor5c73e912010-02-11 00:48:18 +0000146 Decl *VisitRecordDecl(RecordDecl *D);
Douglas Gregor98c10182010-02-12 22:17:39 +0000147 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
Douglas Gregorbb7930c2010-02-10 19:54:31 +0000148 Decl *VisitFunctionDecl(FunctionDecl *D);
Douglas Gregor00eace12010-02-21 18:29:16 +0000149 Decl *VisitCXXMethodDecl(CXXMethodDecl *D);
150 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
151 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
152 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor5c73e912010-02-11 00:48:18 +0000153 Decl *VisitFieldDecl(FieldDecl *D);
Francois Pichet783dd6e2010-11-21 06:08:52 +0000154 Decl *VisitIndirectFieldDecl(IndirectFieldDecl *D);
Douglas Gregor7244b0b2010-02-17 00:34:30 +0000155 Decl *VisitObjCIvarDecl(ObjCIvarDecl *D);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +0000156 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8b228d72010-02-17 21:22:52 +0000157 Decl *VisitImplicitParamDecl(ImplicitParamDecl *D);
Douglas Gregorbb7930c2010-02-10 19:54:31 +0000158 Decl *VisitParmVarDecl(ParmVarDecl *D);
Douglas Gregor43f54792010-02-17 02:12:47 +0000159 Decl *VisitObjCMethodDecl(ObjCMethodDecl *D);
Douglas Gregor85f3f952015-07-07 03:57:15 +0000160 Decl *VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
Douglas Gregor84c51c32010-02-18 01:47:50 +0000161 Decl *VisitObjCCategoryDecl(ObjCCategoryDecl *D);
Douglas Gregor98d156a2010-02-17 16:12:00 +0000162 Decl *VisitObjCProtocolDecl(ObjCProtocolDecl *D);
Sean Callanan0aae0412014-12-10 00:00:37 +0000163 Decl *VisitLinkageSpecDecl(LinkageSpecDecl *D);
Douglas Gregor85f3f952015-07-07 03:57:15 +0000164
165 ObjCTypeParamList *ImportObjCTypeParamList(ObjCTypeParamList *list);
Douglas Gregor45635322010-02-16 01:20:57 +0000166 Decl *VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
Douglas Gregor4da9d682010-12-07 15:32:12 +0000167 Decl *VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
Douglas Gregorda8025c2010-12-07 01:26:03 +0000168 Decl *VisitObjCImplementationDecl(ObjCImplementationDecl *D);
Douglas Gregora11c4582010-02-17 18:02:10 +0000169 Decl *VisitObjCPropertyDecl(ObjCPropertyDecl *D);
Douglas Gregor14a49e22010-12-07 18:32:03 +0000170 Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
Douglas Gregora082a492010-11-30 19:14:50 +0000171 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
172 Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
173 Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
174 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregore2e50d332010-12-01 01:36:18 +0000175 Decl *VisitClassTemplateSpecializationDecl(
176 ClassTemplateSpecializationDecl *D);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000177 Decl *VisitVarTemplateDecl(VarTemplateDecl *D);
178 Decl *VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D);
179
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000180 // Importing statements
Sean Callanan59721b32015-04-28 18:41:46 +0000181 DeclGroupRef ImportDeclGroup(DeclGroupRef DG);
182
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000183 Stmt *VisitStmt(Stmt *S);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000184 Stmt *VisitGCCAsmStmt(GCCAsmStmt *S);
Sean Callanan59721b32015-04-28 18:41:46 +0000185 Stmt *VisitDeclStmt(DeclStmt *S);
186 Stmt *VisitNullStmt(NullStmt *S);
187 Stmt *VisitCompoundStmt(CompoundStmt *S);
188 Stmt *VisitCaseStmt(CaseStmt *S);
189 Stmt *VisitDefaultStmt(DefaultStmt *S);
190 Stmt *VisitLabelStmt(LabelStmt *S);
191 Stmt *VisitAttributedStmt(AttributedStmt *S);
192 Stmt *VisitIfStmt(IfStmt *S);
193 Stmt *VisitSwitchStmt(SwitchStmt *S);
194 Stmt *VisitWhileStmt(WhileStmt *S);
195 Stmt *VisitDoStmt(DoStmt *S);
196 Stmt *VisitForStmt(ForStmt *S);
197 Stmt *VisitGotoStmt(GotoStmt *S);
198 Stmt *VisitIndirectGotoStmt(IndirectGotoStmt *S);
199 Stmt *VisitContinueStmt(ContinueStmt *S);
200 Stmt *VisitBreakStmt(BreakStmt *S);
201 Stmt *VisitReturnStmt(ReturnStmt *S);
Sean Callanan59721b32015-04-28 18:41:46 +0000202 // FIXME: MSAsmStmt
203 // FIXME: SEHExceptStmt
204 // FIXME: SEHFinallyStmt
205 // FIXME: SEHTryStmt
206 // FIXME: SEHLeaveStmt
207 // FIXME: CapturedStmt
208 Stmt *VisitCXXCatchStmt(CXXCatchStmt *S);
209 Stmt *VisitCXXTryStmt(CXXTryStmt *S);
210 Stmt *VisitCXXForRangeStmt(CXXForRangeStmt *S);
211 // FIXME: MSDependentExistsStmt
212 Stmt *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
213 Stmt *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
214 Stmt *VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S);
215 Stmt *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
216 Stmt *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
217 Stmt *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
218 Stmt *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000219
220 // Importing expressions
221 Expr *VisitExpr(Expr *E);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000222 Expr *VisitVAArgExpr(VAArgExpr *E);
223 Expr *VisitGNUNullExpr(GNUNullExpr *E);
224 Expr *VisitPredefinedExpr(PredefinedExpr *E);
Douglas Gregor52f820e2010-02-19 01:17:02 +0000225 Expr *VisitDeclRefExpr(DeclRefExpr *E);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000226 Expr *VisitImplicitValueInitExpr(ImplicitValueInitExpr *ILE);
227 Expr *VisitDesignatedInitExpr(DesignatedInitExpr *E);
228 Expr *VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E);
Douglas Gregor7eeb5972010-02-11 19:21:55 +0000229 Expr *VisitIntegerLiteral(IntegerLiteral *E);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000230 Expr *VisitFloatingLiteral(FloatingLiteral *E);
Douglas Gregor623421d2010-02-18 02:21:22 +0000231 Expr *VisitCharacterLiteral(CharacterLiteral *E);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000232 Expr *VisitStringLiteral(StringLiteral *E);
233 Expr *VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
234 Expr *VisitAtomicExpr(AtomicExpr *E);
235 Expr *VisitAddrLabelExpr(AddrLabelExpr *E);
Douglas Gregorc74247e2010-02-19 01:07:06 +0000236 Expr *VisitParenExpr(ParenExpr *E);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000237 Expr *VisitParenListExpr(ParenListExpr *E);
238 Expr *VisitStmtExpr(StmtExpr *E);
Douglas Gregorc74247e2010-02-19 01:07:06 +0000239 Expr *VisitUnaryOperator(UnaryOperator *E);
Peter Collingbournee190dee2011-03-11 19:24:49 +0000240 Expr *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E);
Douglas Gregorc74247e2010-02-19 01:07:06 +0000241 Expr *VisitBinaryOperator(BinaryOperator *E);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000242 Expr *VisitConditionalOperator(ConditionalOperator *E);
243 Expr *VisitBinaryConditionalOperator(BinaryConditionalOperator *E);
244 Expr *VisitOpaqueValueExpr(OpaqueValueExpr *E);
Douglas Gregorc74247e2010-02-19 01:07:06 +0000245 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
Douglas Gregor98c10182010-02-12 22:17:39 +0000246 Expr *VisitImplicitCastExpr(ImplicitCastExpr *E);
Douglas Gregor5481d322010-02-19 01:32:14 +0000247 Expr *VisitCStyleCastExpr(CStyleCastExpr *E);
Sean Callanan59721b32015-04-28 18:41:46 +0000248 Expr *VisitCXXConstructExpr(CXXConstructExpr *E);
Sean Callanan8bca9962016-03-28 21:43:01 +0000249 Expr *VisitCXXMemberCallExpr(CXXMemberCallExpr *E);
250 Expr *VisitCXXThisExpr(CXXThisExpr *E);
251 Expr *VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E);
Sean Callanan59721b32015-04-28 18:41:46 +0000252 Expr *VisitMemberExpr(MemberExpr *E);
253 Expr *VisitCallExpr(CallExpr *E);
Sean Callanan8bca9962016-03-28 21:43:01 +0000254 Expr *VisitInitListExpr(InitListExpr *E);
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000255
256 template<typename IIter, typename OIter>
257 void ImportArray(IIter Ibegin, IIter Iend, OIter Obegin) {
258 typedef typename std::remove_reference<decltype(*Obegin)>::type ItemT;
259 ASTImporter &ImporterRef = Importer;
260 std::transform(Ibegin, Iend, Obegin,
261 [&ImporterRef](ItemT From) -> ItemT {
262 return ImporterRef.Import(From);
Sean Callanan8bca9962016-03-28 21:43:01 +0000263 });
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000264 }
265
266 template<typename IIter, typename OIter>
267 bool ImportArrayChecked(IIter Ibegin, IIter Iend, OIter Obegin) {
268 typedef typename std::remove_reference<decltype(**Obegin)>::type ItemT;
269 ASTImporter &ImporterRef = Importer;
270 bool Failed = false;
271 std::transform(Ibegin, Iend, Obegin,
272 [&ImporterRef, &Failed](ItemT *From) -> ItemT * {
273 ItemT *To = ImporterRef.Import(From);
274 if (!To && From)
275 Failed = true;
276 return To;
277 });
278 return Failed;
Sean Callanan8bca9962016-03-28 21:43:01 +0000279 }
Douglas Gregor96e578d2010-02-05 17:54:41 +0000280 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000281}
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +0000282
Douglas Gregor3c2404b2011-11-03 18:07:07 +0000283using namespace clang;
Douglas Gregor96e578d2010-02-05 17:54:41 +0000284
285//----------------------------------------------------------------------------
Douglas Gregor3996e242010-02-15 22:01:00 +0000286// Structural Equivalence
287//----------------------------------------------------------------------------
288
289namespace {
290 struct StructuralEquivalenceContext {
291 /// \brief AST contexts for which we are checking structural equivalence.
292 ASTContext &C1, &C2;
293
Douglas Gregor3996e242010-02-15 22:01:00 +0000294 /// \brief The set of "tentative" equivalences between two canonical
295 /// declarations, mapping from a declaration in the first context to the
296 /// declaration in the second context that we believe to be equivalent.
297 llvm::DenseMap<Decl *, Decl *> TentativeEquivalences;
298
299 /// \brief Queue of declarations in the first context whose equivalence
300 /// with a declaration in the second context still needs to be verified.
301 std::deque<Decl *> DeclsToCheck;
302
Douglas Gregorb4964f72010-02-15 23:54:17 +0000303 /// \brief Declaration (from, to) pairs that are known not to be equivalent
304 /// (which we have already complained about).
305 llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls;
306
Douglas Gregor3996e242010-02-15 22:01:00 +0000307 /// \brief Whether we're being strict about the spelling of types when
308 /// unifying two types.
309 bool StrictTypeSpelling;
Douglas Gregordd6006f2012-07-17 21:16:27 +0000310
311 /// \brief Whether to complain about failures.
312 bool Complain;
313
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000314 /// \brief \c true if the last diagnostic came from C2.
315 bool LastDiagFromC2;
316
Douglas Gregor3996e242010-02-15 22:01:00 +0000317 StructuralEquivalenceContext(ASTContext &C1, ASTContext &C2,
Douglas Gregorb4964f72010-02-15 23:54:17 +0000318 llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls,
Douglas Gregordd6006f2012-07-17 21:16:27 +0000319 bool StrictTypeSpelling = false,
320 bool Complain = true)
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000321 : C1(C1), C2(C2), NonEquivalentDecls(NonEquivalentDecls),
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000322 StrictTypeSpelling(StrictTypeSpelling), Complain(Complain),
323 LastDiagFromC2(false) {}
Douglas Gregor3996e242010-02-15 22:01:00 +0000324
325 /// \brief Determine whether the two declarations are structurally
326 /// equivalent.
327 bool IsStructurallyEquivalent(Decl *D1, Decl *D2);
328
329 /// \brief Determine whether the two types are structurally equivalent.
330 bool IsStructurallyEquivalent(QualType T1, QualType T2);
331
332 private:
333 /// \brief Finish checking all of the structural equivalences.
334 ///
335 /// \returns true if an error occurred, false otherwise.
336 bool Finish();
337
338 public:
339 DiagnosticBuilder Diag1(SourceLocation Loc, unsigned DiagID) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000340 assert(Complain && "Not allowed to complain");
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000341 if (LastDiagFromC2)
342 C1.getDiagnostics().notePriorDiagnosticFrom(C2.getDiagnostics());
343 LastDiagFromC2 = false;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000344 return C1.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3996e242010-02-15 22:01:00 +0000345 }
346
347 DiagnosticBuilder Diag2(SourceLocation Loc, unsigned DiagID) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000348 assert(Complain && "Not allowed to complain");
Richard Smith5bb4cdf2012-12-20 02:22:15 +0000349 if (!LastDiagFromC2)
350 C2.getDiagnostics().notePriorDiagnosticFrom(C1.getDiagnostics());
351 LastDiagFromC2 = true;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +0000352 return C2.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3996e242010-02-15 22:01:00 +0000353 }
354 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000355}
Douglas Gregor3996e242010-02-15 22:01:00 +0000356
357static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
358 QualType T1, QualType T2);
359static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
360 Decl *D1, Decl *D2);
361
Douglas Gregor3996e242010-02-15 22:01:00 +0000362/// \brief Determine structural equivalence of two expressions.
363static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
364 Expr *E1, Expr *E2) {
365 if (!E1 || !E2)
366 return E1 == E2;
367
368 // FIXME: Actually perform a structural comparison!
369 return true;
370}
371
372/// \brief Determine whether two identifiers are equivalent.
373static bool IsStructurallyEquivalent(const IdentifierInfo *Name1,
374 const IdentifierInfo *Name2) {
375 if (!Name1 || !Name2)
376 return Name1 == Name2;
377
378 return Name1->getName() == Name2->getName();
379}
380
381/// \brief Determine whether two nested-name-specifiers are equivalent.
382static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
383 NestedNameSpecifier *NNS1,
384 NestedNameSpecifier *NNS2) {
385 // FIXME: Implement!
386 return true;
387}
388
389/// \brief Determine whether two template arguments are equivalent.
390static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
391 const TemplateArgument &Arg1,
392 const TemplateArgument &Arg2) {
Douglas Gregore2e50d332010-12-01 01:36:18 +0000393 if (Arg1.getKind() != Arg2.getKind())
394 return false;
395
396 switch (Arg1.getKind()) {
397 case TemplateArgument::Null:
398 return true;
399
400 case TemplateArgument::Type:
401 return Context.IsStructurallyEquivalent(Arg1.getAsType(), Arg2.getAsType());
Eli Friedmanb826a002012-09-26 02:36:12 +0000402
Douglas Gregore2e50d332010-12-01 01:36:18 +0000403 case TemplateArgument::Integral:
404 if (!Context.IsStructurallyEquivalent(Arg1.getIntegralType(),
405 Arg2.getIntegralType()))
406 return false;
407
Eric Christopher6dcc3762012-07-15 00:23:57 +0000408 return llvm::APSInt::isSameValue(Arg1.getAsIntegral(), Arg2.getAsIntegral());
Douglas Gregore2e50d332010-12-01 01:36:18 +0000409
410 case TemplateArgument::Declaration:
411 return Context.IsStructurallyEquivalent(Arg1.getAsDecl(), Arg2.getAsDecl());
Eli Friedmanb826a002012-09-26 02:36:12 +0000412
413 case TemplateArgument::NullPtr:
414 return true; // FIXME: Is this correct?
415
Douglas Gregore2e50d332010-12-01 01:36:18 +0000416 case TemplateArgument::Template:
417 return IsStructurallyEquivalent(Context,
418 Arg1.getAsTemplate(),
419 Arg2.getAsTemplate());
Douglas Gregore4ff4b52011-01-05 18:58:31 +0000420
421 case TemplateArgument::TemplateExpansion:
422 return IsStructurallyEquivalent(Context,
423 Arg1.getAsTemplateOrTemplatePattern(),
424 Arg2.getAsTemplateOrTemplatePattern());
425
Douglas Gregore2e50d332010-12-01 01:36:18 +0000426 case TemplateArgument::Expression:
427 return IsStructurallyEquivalent(Context,
428 Arg1.getAsExpr(), Arg2.getAsExpr());
429
430 case TemplateArgument::Pack:
431 if (Arg1.pack_size() != Arg2.pack_size())
432 return false;
433
434 for (unsigned I = 0, N = Arg1.pack_size(); I != N; ++I)
435 if (!IsStructurallyEquivalent(Context,
436 Arg1.pack_begin()[I],
437 Arg2.pack_begin()[I]))
438 return false;
439
440 return true;
441 }
442
443 llvm_unreachable("Invalid template argument kind");
Douglas Gregor3996e242010-02-15 22:01:00 +0000444}
445
446/// \brief Determine structural equivalence for the common part of array
447/// types.
448static bool IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context,
449 const ArrayType *Array1,
450 const ArrayType *Array2) {
451 if (!IsStructurallyEquivalent(Context,
452 Array1->getElementType(),
453 Array2->getElementType()))
454 return false;
455 if (Array1->getSizeModifier() != Array2->getSizeModifier())
456 return false;
457 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
458 return false;
459
460 return true;
461}
462
463/// \brief Determine structural equivalence of two types.
464static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
465 QualType T1, QualType T2) {
466 if (T1.isNull() || T2.isNull())
467 return T1.isNull() && T2.isNull();
468
469 if (!Context.StrictTypeSpelling) {
470 // We aren't being strict about token-to-token equivalence of types,
471 // so map down to the canonical type.
472 T1 = Context.C1.getCanonicalType(T1);
473 T2 = Context.C2.getCanonicalType(T2);
474 }
475
476 if (T1.getQualifiers() != T2.getQualifiers())
477 return false;
478
Douglas Gregorb4964f72010-02-15 23:54:17 +0000479 Type::TypeClass TC = T1->getTypeClass();
Douglas Gregor3996e242010-02-15 22:01:00 +0000480
Douglas Gregorb4964f72010-02-15 23:54:17 +0000481 if (T1->getTypeClass() != T2->getTypeClass()) {
482 // Compare function types with prototypes vs. without prototypes as if
483 // both did not have prototypes.
484 if (T1->getTypeClass() == Type::FunctionProto &&
485 T2->getTypeClass() == Type::FunctionNoProto)
486 TC = Type::FunctionNoProto;
487 else if (T1->getTypeClass() == Type::FunctionNoProto &&
488 T2->getTypeClass() == Type::FunctionProto)
489 TC = Type::FunctionNoProto;
490 else
491 return false;
492 }
493
494 switch (TC) {
495 case Type::Builtin:
Douglas Gregor3996e242010-02-15 22:01:00 +0000496 // FIXME: Deal with Char_S/Char_U.
497 if (cast<BuiltinType>(T1)->getKind() != cast<BuiltinType>(T2)->getKind())
498 return false;
499 break;
500
501 case Type::Complex:
502 if (!IsStructurallyEquivalent(Context,
503 cast<ComplexType>(T1)->getElementType(),
504 cast<ComplexType>(T2)->getElementType()))
505 return false;
506 break;
507
Reid Kleckner0503a872013-12-05 01:23:43 +0000508 case Type::Adjusted:
Reid Kleckner8a365022013-06-24 17:51:48 +0000509 case Type::Decayed:
510 if (!IsStructurallyEquivalent(Context,
Reid Kleckner0503a872013-12-05 01:23:43 +0000511 cast<AdjustedType>(T1)->getOriginalType(),
512 cast<AdjustedType>(T2)->getOriginalType()))
Reid Kleckner8a365022013-06-24 17:51:48 +0000513 return false;
514 break;
515
Douglas Gregor3996e242010-02-15 22:01:00 +0000516 case Type::Pointer:
517 if (!IsStructurallyEquivalent(Context,
518 cast<PointerType>(T1)->getPointeeType(),
519 cast<PointerType>(T2)->getPointeeType()))
520 return false;
521 break;
522
523 case Type::BlockPointer:
524 if (!IsStructurallyEquivalent(Context,
525 cast<BlockPointerType>(T1)->getPointeeType(),
526 cast<BlockPointerType>(T2)->getPointeeType()))
527 return false;
528 break;
529
530 case Type::LValueReference:
531 case Type::RValueReference: {
532 const ReferenceType *Ref1 = cast<ReferenceType>(T1);
533 const ReferenceType *Ref2 = cast<ReferenceType>(T2);
534 if (Ref1->isSpelledAsLValue() != Ref2->isSpelledAsLValue())
535 return false;
536 if (Ref1->isInnerRef() != Ref2->isInnerRef())
537 return false;
538 if (!IsStructurallyEquivalent(Context,
539 Ref1->getPointeeTypeAsWritten(),
540 Ref2->getPointeeTypeAsWritten()))
541 return false;
542 break;
543 }
544
545 case Type::MemberPointer: {
546 const MemberPointerType *MemPtr1 = cast<MemberPointerType>(T1);
547 const MemberPointerType *MemPtr2 = cast<MemberPointerType>(T2);
548 if (!IsStructurallyEquivalent(Context,
549 MemPtr1->getPointeeType(),
550 MemPtr2->getPointeeType()))
551 return false;
552 if (!IsStructurallyEquivalent(Context,
553 QualType(MemPtr1->getClass(), 0),
554 QualType(MemPtr2->getClass(), 0)))
555 return false;
556 break;
557 }
558
559 case Type::ConstantArray: {
560 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1);
561 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2);
Eric Christopher6dcc3762012-07-15 00:23:57 +0000562 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000563 return false;
564
565 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
566 return false;
567 break;
568 }
569
570 case Type::IncompleteArray:
571 if (!IsArrayStructurallyEquivalent(Context,
572 cast<ArrayType>(T1),
573 cast<ArrayType>(T2)))
574 return false;
575 break;
576
577 case Type::VariableArray: {
578 const VariableArrayType *Array1 = cast<VariableArrayType>(T1);
579 const VariableArrayType *Array2 = cast<VariableArrayType>(T2);
580 if (!IsStructurallyEquivalent(Context,
581 Array1->getSizeExpr(), Array2->getSizeExpr()))
582 return false;
583
584 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
585 return false;
586
587 break;
588 }
589
590 case Type::DependentSizedArray: {
591 const DependentSizedArrayType *Array1 = cast<DependentSizedArrayType>(T1);
592 const DependentSizedArrayType *Array2 = cast<DependentSizedArrayType>(T2);
593 if (!IsStructurallyEquivalent(Context,
594 Array1->getSizeExpr(), Array2->getSizeExpr()))
595 return false;
596
597 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
598 return false;
599
600 break;
601 }
602
603 case Type::DependentSizedExtVector: {
604 const DependentSizedExtVectorType *Vec1
605 = cast<DependentSizedExtVectorType>(T1);
606 const DependentSizedExtVectorType *Vec2
607 = cast<DependentSizedExtVectorType>(T2);
608 if (!IsStructurallyEquivalent(Context,
609 Vec1->getSizeExpr(), Vec2->getSizeExpr()))
610 return false;
611 if (!IsStructurallyEquivalent(Context,
612 Vec1->getElementType(),
613 Vec2->getElementType()))
614 return false;
615 break;
616 }
617
618 case Type::Vector:
619 case Type::ExtVector: {
620 const VectorType *Vec1 = cast<VectorType>(T1);
621 const VectorType *Vec2 = cast<VectorType>(T2);
622 if (!IsStructurallyEquivalent(Context,
623 Vec1->getElementType(),
624 Vec2->getElementType()))
625 return false;
626 if (Vec1->getNumElements() != Vec2->getNumElements())
627 return false;
Bob Wilsonaeb56442010-11-10 21:56:12 +0000628 if (Vec1->getVectorKind() != Vec2->getVectorKind())
Douglas Gregor3996e242010-02-15 22:01:00 +0000629 return false;
Douglas Gregor01cc4372010-02-19 01:36:36 +0000630 break;
Douglas Gregor3996e242010-02-15 22:01:00 +0000631 }
632
633 case Type::FunctionProto: {
634 const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1);
635 const FunctionProtoType *Proto2 = cast<FunctionProtoType>(T2);
Alp Toker9cacbab2014-01-20 20:26:09 +0000636 if (Proto1->getNumParams() != Proto2->getNumParams())
Douglas Gregor3996e242010-02-15 22:01:00 +0000637 return false;
Alp Toker9cacbab2014-01-20 20:26:09 +0000638 for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
639 if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
640 Proto2->getParamType(I)))
Douglas Gregor3996e242010-02-15 22:01:00 +0000641 return false;
642 }
643 if (Proto1->isVariadic() != Proto2->isVariadic())
644 return false;
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000645 if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
Douglas Gregor3996e242010-02-15 22:01:00 +0000646 return false;
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000647 if (Proto1->getExceptionSpecType() == EST_Dynamic) {
648 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
649 return false;
650 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
651 if (!IsStructurallyEquivalent(Context,
652 Proto1->getExceptionType(I),
653 Proto2->getExceptionType(I)))
654 return false;
655 }
656 } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) {
Douglas Gregor3996e242010-02-15 22:01:00 +0000657 if (!IsStructurallyEquivalent(Context,
Sebastian Redlfa453cf2011-03-12 11:50:43 +0000658 Proto1->getNoexceptExpr(),
659 Proto2->getNoexceptExpr()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000660 return false;
661 }
662 if (Proto1->getTypeQuals() != Proto2->getTypeQuals())
663 return false;
664
665 // Fall through to check the bits common with FunctionNoProtoType.
666 }
667
668 case Type::FunctionNoProto: {
669 const FunctionType *Function1 = cast<FunctionType>(T1);
670 const FunctionType *Function2 = cast<FunctionType>(T2);
Alp Toker314cc812014-01-25 16:55:45 +0000671 if (!IsStructurallyEquivalent(Context, Function1->getReturnType(),
672 Function2->getReturnType()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000673 return false;
Justin Bogner62c04de2016-03-20 16:58:03 +0000674 if (Function1->getExtInfo() != Function2->getExtInfo())
675 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000676 break;
677 }
678
679 case Type::UnresolvedUsing:
680 if (!IsStructurallyEquivalent(Context,
681 cast<UnresolvedUsingType>(T1)->getDecl(),
682 cast<UnresolvedUsingType>(T2)->getDecl()))
683 return false;
684
685 break;
John McCall81904512011-01-06 01:58:22 +0000686
687 case Type::Attributed:
688 if (!IsStructurallyEquivalent(Context,
689 cast<AttributedType>(T1)->getModifiedType(),
690 cast<AttributedType>(T2)->getModifiedType()))
691 return false;
692 if (!IsStructurallyEquivalent(Context,
693 cast<AttributedType>(T1)->getEquivalentType(),
694 cast<AttributedType>(T2)->getEquivalentType()))
695 return false;
696 break;
Douglas Gregor3996e242010-02-15 22:01:00 +0000697
Abramo Bagnara924a8f32010-12-10 16:29:40 +0000698 case Type::Paren:
699 if (!IsStructurallyEquivalent(Context,
700 cast<ParenType>(T1)->getInnerType(),
701 cast<ParenType>(T2)->getInnerType()))
702 return false;
703 break;
704
Douglas Gregor3996e242010-02-15 22:01:00 +0000705 case Type::Typedef:
706 if (!IsStructurallyEquivalent(Context,
707 cast<TypedefType>(T1)->getDecl(),
708 cast<TypedefType>(T2)->getDecl()))
709 return false;
710 break;
711
712 case Type::TypeOfExpr:
713 if (!IsStructurallyEquivalent(Context,
714 cast<TypeOfExprType>(T1)->getUnderlyingExpr(),
715 cast<TypeOfExprType>(T2)->getUnderlyingExpr()))
716 return false;
717 break;
718
719 case Type::TypeOf:
720 if (!IsStructurallyEquivalent(Context,
721 cast<TypeOfType>(T1)->getUnderlyingType(),
722 cast<TypeOfType>(T2)->getUnderlyingType()))
723 return false;
724 break;
Alexis Hunte852b102011-05-24 22:41:36 +0000725
726 case Type::UnaryTransform:
727 if (!IsStructurallyEquivalent(Context,
728 cast<UnaryTransformType>(T1)->getUnderlyingType(),
729 cast<UnaryTransformType>(T1)->getUnderlyingType()))
730 return false;
731 break;
732
Douglas Gregor3996e242010-02-15 22:01:00 +0000733 case Type::Decltype:
734 if (!IsStructurallyEquivalent(Context,
735 cast<DecltypeType>(T1)->getUnderlyingExpr(),
736 cast<DecltypeType>(T2)->getUnderlyingExpr()))
737 return false;
738 break;
739
Richard Smith30482bc2011-02-20 03:19:35 +0000740 case Type::Auto:
741 if (!IsStructurallyEquivalent(Context,
742 cast<AutoType>(T1)->getDeducedType(),
743 cast<AutoType>(T2)->getDeducedType()))
744 return false;
745 break;
746
Douglas Gregor3996e242010-02-15 22:01:00 +0000747 case Type::Record:
748 case Type::Enum:
749 if (!IsStructurallyEquivalent(Context,
750 cast<TagType>(T1)->getDecl(),
751 cast<TagType>(T2)->getDecl()))
752 return false;
753 break;
Abramo Bagnara6150c882010-05-11 21:36:43 +0000754
Douglas Gregor3996e242010-02-15 22:01:00 +0000755 case Type::TemplateTypeParm: {
756 const TemplateTypeParmType *Parm1 = cast<TemplateTypeParmType>(T1);
757 const TemplateTypeParmType *Parm2 = cast<TemplateTypeParmType>(T2);
758 if (Parm1->getDepth() != Parm2->getDepth())
759 return false;
760 if (Parm1->getIndex() != Parm2->getIndex())
761 return false;
762 if (Parm1->isParameterPack() != Parm2->isParameterPack())
763 return false;
764
765 // Names of template type parameters are never significant.
766 break;
767 }
768
769 case Type::SubstTemplateTypeParm: {
770 const SubstTemplateTypeParmType *Subst1
771 = cast<SubstTemplateTypeParmType>(T1);
772 const SubstTemplateTypeParmType *Subst2
773 = cast<SubstTemplateTypeParmType>(T2);
774 if (!IsStructurallyEquivalent(Context,
775 QualType(Subst1->getReplacedParameter(), 0),
776 QualType(Subst2->getReplacedParameter(), 0)))
777 return false;
778 if (!IsStructurallyEquivalent(Context,
779 Subst1->getReplacementType(),
780 Subst2->getReplacementType()))
781 return false;
782 break;
783 }
784
Douglas Gregorfb322d82011-01-14 05:11:40 +0000785 case Type::SubstTemplateTypeParmPack: {
786 const SubstTemplateTypeParmPackType *Subst1
787 = cast<SubstTemplateTypeParmPackType>(T1);
788 const SubstTemplateTypeParmPackType *Subst2
789 = cast<SubstTemplateTypeParmPackType>(T2);
790 if (!IsStructurallyEquivalent(Context,
791 QualType(Subst1->getReplacedParameter(), 0),
792 QualType(Subst2->getReplacedParameter(), 0)))
793 return false;
794 if (!IsStructurallyEquivalent(Context,
795 Subst1->getArgumentPack(),
796 Subst2->getArgumentPack()))
797 return false;
798 break;
799 }
Douglas Gregor3996e242010-02-15 22:01:00 +0000800 case Type::TemplateSpecialization: {
801 const TemplateSpecializationType *Spec1
802 = cast<TemplateSpecializationType>(T1);
803 const TemplateSpecializationType *Spec2
804 = cast<TemplateSpecializationType>(T2);
805 if (!IsStructurallyEquivalent(Context,
806 Spec1->getTemplateName(),
807 Spec2->getTemplateName()))
808 return false;
809 if (Spec1->getNumArgs() != Spec2->getNumArgs())
810 return false;
811 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
812 if (!IsStructurallyEquivalent(Context,
813 Spec1->getArg(I), Spec2->getArg(I)))
814 return false;
815 }
816 break;
817 }
818
Abramo Bagnara6150c882010-05-11 21:36:43 +0000819 case Type::Elaborated: {
820 const ElaboratedType *Elab1 = cast<ElaboratedType>(T1);
821 const ElaboratedType *Elab2 = cast<ElaboratedType>(T2);
822 // CHECKME: what if a keyword is ETK_None or ETK_typename ?
823 if (Elab1->getKeyword() != Elab2->getKeyword())
824 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000825 if (!IsStructurallyEquivalent(Context,
Abramo Bagnara6150c882010-05-11 21:36:43 +0000826 Elab1->getQualifier(),
827 Elab2->getQualifier()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000828 return false;
829 if (!IsStructurallyEquivalent(Context,
Abramo Bagnara6150c882010-05-11 21:36:43 +0000830 Elab1->getNamedType(),
831 Elab2->getNamedType()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000832 return false;
833 break;
834 }
835
John McCalle78aac42010-03-10 03:28:59 +0000836 case Type::InjectedClassName: {
837 const InjectedClassNameType *Inj1 = cast<InjectedClassNameType>(T1);
838 const InjectedClassNameType *Inj2 = cast<InjectedClassNameType>(T2);
839 if (!IsStructurallyEquivalent(Context,
John McCall2408e322010-04-27 00:57:59 +0000840 Inj1->getInjectedSpecializationType(),
841 Inj2->getInjectedSpecializationType()))
John McCalle78aac42010-03-10 03:28:59 +0000842 return false;
843 break;
844 }
845
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +0000846 case Type::DependentName: {
847 const DependentNameType *Typename1 = cast<DependentNameType>(T1);
848 const DependentNameType *Typename2 = cast<DependentNameType>(T2);
Douglas Gregor3996e242010-02-15 22:01:00 +0000849 if (!IsStructurallyEquivalent(Context,
850 Typename1->getQualifier(),
851 Typename2->getQualifier()))
852 return false;
853 if (!IsStructurallyEquivalent(Typename1->getIdentifier(),
854 Typename2->getIdentifier()))
855 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000856
857 break;
858 }
859
John McCallc392f372010-06-11 00:33:02 +0000860 case Type::DependentTemplateSpecialization: {
861 const DependentTemplateSpecializationType *Spec1 =
862 cast<DependentTemplateSpecializationType>(T1);
863 const DependentTemplateSpecializationType *Spec2 =
864 cast<DependentTemplateSpecializationType>(T2);
865 if (!IsStructurallyEquivalent(Context,
866 Spec1->getQualifier(),
867 Spec2->getQualifier()))
868 return false;
869 if (!IsStructurallyEquivalent(Spec1->getIdentifier(),
870 Spec2->getIdentifier()))
871 return false;
872 if (Spec1->getNumArgs() != Spec2->getNumArgs())
873 return false;
874 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
875 if (!IsStructurallyEquivalent(Context,
876 Spec1->getArg(I), Spec2->getArg(I)))
877 return false;
878 }
879 break;
880 }
Douglas Gregord2fa7662010-12-20 02:24:11 +0000881
882 case Type::PackExpansion:
883 if (!IsStructurallyEquivalent(Context,
884 cast<PackExpansionType>(T1)->getPattern(),
885 cast<PackExpansionType>(T2)->getPattern()))
886 return false;
887 break;
888
Douglas Gregor3996e242010-02-15 22:01:00 +0000889 case Type::ObjCInterface: {
890 const ObjCInterfaceType *Iface1 = cast<ObjCInterfaceType>(T1);
891 const ObjCInterfaceType *Iface2 = cast<ObjCInterfaceType>(T2);
892 if (!IsStructurallyEquivalent(Context,
893 Iface1->getDecl(), Iface2->getDecl()))
894 return false;
John McCall8b07ec22010-05-15 11:32:37 +0000895 break;
896 }
897
898 case Type::ObjCObject: {
899 const ObjCObjectType *Obj1 = cast<ObjCObjectType>(T1);
900 const ObjCObjectType *Obj2 = cast<ObjCObjectType>(T2);
901 if (!IsStructurallyEquivalent(Context,
902 Obj1->getBaseType(),
903 Obj2->getBaseType()))
Douglas Gregor3996e242010-02-15 22:01:00 +0000904 return false;
John McCall8b07ec22010-05-15 11:32:37 +0000905 if (Obj1->getNumProtocols() != Obj2->getNumProtocols())
906 return false;
907 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) {
Douglas Gregor3996e242010-02-15 22:01:00 +0000908 if (!IsStructurallyEquivalent(Context,
John McCall8b07ec22010-05-15 11:32:37 +0000909 Obj1->getProtocol(I),
910 Obj2->getProtocol(I)))
Douglas Gregor3996e242010-02-15 22:01:00 +0000911 return false;
912 }
913 break;
914 }
915
916 case Type::ObjCObjectPointer: {
917 const ObjCObjectPointerType *Ptr1 = cast<ObjCObjectPointerType>(T1);
918 const ObjCObjectPointerType *Ptr2 = cast<ObjCObjectPointerType>(T2);
919 if (!IsStructurallyEquivalent(Context,
920 Ptr1->getPointeeType(),
921 Ptr2->getPointeeType()))
922 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +0000923 break;
924 }
Eli Friedman0dfb8892011-10-06 23:00:33 +0000925
926 case Type::Atomic: {
927 if (!IsStructurallyEquivalent(Context,
928 cast<AtomicType>(T1)->getValueType(),
929 cast<AtomicType>(T2)->getValueType()))
930 return false;
931 break;
932 }
933
Xiuli Pan9c14e282016-01-09 12:53:17 +0000934 case Type::Pipe: {
935 if (!IsStructurallyEquivalent(Context,
936 cast<PipeType>(T1)->getElementType(),
937 cast<PipeType>(T2)->getElementType()))
938 return false;
939 break;
940 }
941
Douglas Gregor3996e242010-02-15 22:01:00 +0000942 } // end switch
943
944 return true;
945}
946
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000947/// \brief Determine structural equivalence of two fields.
948static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
949 FieldDecl *Field1, FieldDecl *Field2) {
950 RecordDecl *Owner2 = cast<RecordDecl>(Field2->getDeclContext());
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000951
952 // For anonymous structs/unions, match up the anonymous struct/union type
953 // declarations directly, so that we don't go off searching for anonymous
954 // types
955 if (Field1->isAnonymousStructOrUnion() &&
956 Field2->isAnonymousStructOrUnion()) {
957 RecordDecl *D1 = Field1->getType()->castAs<RecordType>()->getDecl();
958 RecordDecl *D2 = Field2->getType()->castAs<RecordType>()->getDecl();
959 return IsStructurallyEquivalent(Context, D1, D2);
960 }
Sean Callanan969c5bd2013-04-26 22:49:25 +0000961
962 // Check for equivalent field names.
963 IdentifierInfo *Name1 = Field1->getIdentifier();
964 IdentifierInfo *Name2 = Field2->getIdentifier();
965 if (!::IsStructurallyEquivalent(Name1, Name2))
966 return false;
Douglas Gregorceb32bf2012-10-26 16:45:11 +0000967
968 if (!IsStructurallyEquivalent(Context,
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000969 Field1->getType(), Field2->getType())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000970 if (Context.Complain) {
971 Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
972 << Context.C2.getTypeDeclType(Owner2);
973 Context.Diag2(Field2->getLocation(), diag::note_odr_field)
974 << Field2->getDeclName() << Field2->getType();
975 Context.Diag1(Field1->getLocation(), diag::note_odr_field)
976 << Field1->getDeclName() << Field1->getType();
977 }
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000978 return false;
979 }
980
981 if (Field1->isBitField() != Field2->isBitField()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +0000982 if (Context.Complain) {
983 Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
984 << Context.C2.getTypeDeclType(Owner2);
985 if (Field1->isBitField()) {
986 Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
987 << Field1->getDeclName() << Field1->getType()
988 << Field1->getBitWidthValue(Context.C1);
989 Context.Diag2(Field2->getLocation(), diag::note_odr_not_bit_field)
990 << Field2->getDeclName();
991 } else {
992 Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
993 << Field2->getDeclName() << Field2->getType()
994 << Field2->getBitWidthValue(Context.C2);
995 Context.Diag1(Field1->getLocation(), diag::note_odr_not_bit_field)
996 << Field1->getDeclName();
997 }
Douglas Gregor03d1ed32011-10-14 21:54:42 +0000998 }
999 return false;
1000 }
1001
1002 if (Field1->isBitField()) {
1003 // Make sure that the bit-fields are the same length.
1004 unsigned Bits1 = Field1->getBitWidthValue(Context.C1);
1005 unsigned Bits2 = Field2->getBitWidthValue(Context.C2);
1006
1007 if (Bits1 != Bits2) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001008 if (Context.Complain) {
1009 Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1010 << Context.C2.getTypeDeclType(Owner2);
1011 Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
1012 << Field2->getDeclName() << Field2->getType() << Bits2;
1013 Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
1014 << Field1->getDeclName() << Field1->getType() << Bits1;
1015 }
Douglas Gregor03d1ed32011-10-14 21:54:42 +00001016 return false;
1017 }
1018 }
1019
1020 return true;
1021}
1022
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001023/// \brief Find the index of the given anonymous struct/union within its
1024/// context.
1025///
1026/// \returns Returns the index of this anonymous struct/union in its context,
1027/// including the next assigned index (if none of them match). Returns an
1028/// empty option if the context is not a record, i.e.. if the anonymous
1029/// struct/union is at namespace or block scope.
David Blaikie05785d12013-02-20 22:23:23 +00001030static Optional<unsigned> findAnonymousStructOrUnionIndex(RecordDecl *Anon) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001031 ASTContext &Context = Anon->getASTContext();
1032 QualType AnonTy = Context.getRecordType(Anon);
1033
1034 RecordDecl *Owner = dyn_cast<RecordDecl>(Anon->getDeclContext());
1035 if (!Owner)
David Blaikie7a30dc52013-02-21 01:47:18 +00001036 return None;
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001037
1038 unsigned Index = 0;
Aaron Ballman629afae2014-03-07 19:56:05 +00001039 for (const auto *D : Owner->noload_decls()) {
1040 const auto *F = dyn_cast<FieldDecl>(D);
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001041 if (!F || !F->isAnonymousStructOrUnion())
1042 continue;
1043
1044 if (Context.hasSameType(F->getType(), AnonTy))
1045 break;
1046
1047 ++Index;
1048 }
1049
1050 return Index;
1051}
1052
Douglas Gregor3996e242010-02-15 22:01:00 +00001053/// \brief Determine structural equivalence of two records.
1054static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1055 RecordDecl *D1, RecordDecl *D2) {
1056 if (D1->isUnion() != D2->isUnion()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001057 if (Context.Complain) {
1058 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1059 << Context.C2.getTypeDeclType(D2);
1060 Context.Diag1(D1->getLocation(), diag::note_odr_tag_kind_here)
1061 << D1->getDeclName() << (unsigned)D1->getTagKind();
1062 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001063 return false;
1064 }
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001065
1066 if (D1->isAnonymousStructOrUnion() && D2->isAnonymousStructOrUnion()) {
1067 // If both anonymous structs/unions are in a record context, make sure
1068 // they occur in the same location in the context records.
David Blaikie05785d12013-02-20 22:23:23 +00001069 if (Optional<unsigned> Index1 = findAnonymousStructOrUnionIndex(D1)) {
1070 if (Optional<unsigned> Index2 = findAnonymousStructOrUnionIndex(D2)) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00001071 if (*Index1 != *Index2)
1072 return false;
1073 }
1074 }
1075 }
1076
Douglas Gregore2e50d332010-12-01 01:36:18 +00001077 // If both declarations are class template specializations, we know
1078 // the ODR applies, so check the template and template arguments.
1079 ClassTemplateSpecializationDecl *Spec1
1080 = dyn_cast<ClassTemplateSpecializationDecl>(D1);
1081 ClassTemplateSpecializationDecl *Spec2
1082 = dyn_cast<ClassTemplateSpecializationDecl>(D2);
1083 if (Spec1 && Spec2) {
1084 // Check that the specialized templates are the same.
1085 if (!IsStructurallyEquivalent(Context, Spec1->getSpecializedTemplate(),
1086 Spec2->getSpecializedTemplate()))
1087 return false;
1088
1089 // Check that the template arguments are the same.
1090 if (Spec1->getTemplateArgs().size() != Spec2->getTemplateArgs().size())
1091 return false;
1092
1093 for (unsigned I = 0, N = Spec1->getTemplateArgs().size(); I != N; ++I)
1094 if (!IsStructurallyEquivalent(Context,
1095 Spec1->getTemplateArgs().get(I),
1096 Spec2->getTemplateArgs().get(I)))
1097 return false;
1098 }
1099 // If one is a class template specialization and the other is not, these
Chris Lattner57540c52011-04-15 05:22:18 +00001100 // structures are different.
Douglas Gregore2e50d332010-12-01 01:36:18 +00001101 else if (Spec1 || Spec2)
1102 return false;
1103
Douglas Gregorb4964f72010-02-15 23:54:17 +00001104 // Compare the definitions of these two records. If either or both are
1105 // incomplete, we assume that they are equivalent.
1106 D1 = D1->getDefinition();
1107 D2 = D2->getDefinition();
1108 if (!D1 || !D2)
1109 return true;
1110
Douglas Gregor3996e242010-02-15 22:01:00 +00001111 if (CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(D1)) {
1112 if (CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(D2)) {
1113 if (D1CXX->getNumBases() != D2CXX->getNumBases()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001114 if (Context.Complain) {
1115 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1116 << Context.C2.getTypeDeclType(D2);
1117 Context.Diag2(D2->getLocation(), diag::note_odr_number_of_bases)
1118 << D2CXX->getNumBases();
1119 Context.Diag1(D1->getLocation(), diag::note_odr_number_of_bases)
1120 << D1CXX->getNumBases();
1121 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001122 return false;
1123 }
1124
1125 // Check the base classes.
1126 for (CXXRecordDecl::base_class_iterator Base1 = D1CXX->bases_begin(),
1127 BaseEnd1 = D1CXX->bases_end(),
1128 Base2 = D2CXX->bases_begin();
1129 Base1 != BaseEnd1;
1130 ++Base1, ++Base2) {
1131 if (!IsStructurallyEquivalent(Context,
1132 Base1->getType(), Base2->getType())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001133 if (Context.Complain) {
1134 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1135 << Context.C2.getTypeDeclType(D2);
1136 Context.Diag2(Base2->getLocStart(), diag::note_odr_base)
1137 << Base2->getType()
1138 << Base2->getSourceRange();
1139 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1140 << Base1->getType()
1141 << Base1->getSourceRange();
1142 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001143 return false;
1144 }
1145
1146 // Check virtual vs. non-virtual inheritance mismatch.
1147 if (Base1->isVirtual() != Base2->isVirtual()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001148 if (Context.Complain) {
1149 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1150 << Context.C2.getTypeDeclType(D2);
1151 Context.Diag2(Base2->getLocStart(),
1152 diag::note_odr_virtual_base)
1153 << Base2->isVirtual() << Base2->getSourceRange();
1154 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1155 << Base1->isVirtual()
1156 << Base1->getSourceRange();
1157 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001158 return false;
1159 }
1160 }
1161 } else if (D1CXX->getNumBases() > 0) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001162 if (Context.Complain) {
1163 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1164 << Context.C2.getTypeDeclType(D2);
1165 const CXXBaseSpecifier *Base1 = D1CXX->bases_begin();
1166 Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1167 << Base1->getType()
1168 << Base1->getSourceRange();
1169 Context.Diag2(D2->getLocation(), diag::note_odr_missing_base);
1170 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001171 return false;
1172 }
1173 }
1174
1175 // Check the fields for consistency.
Dmitri Gribenko898cff02012-05-19 17:17:26 +00001176 RecordDecl::field_iterator Field2 = D2->field_begin(),
Douglas Gregor3996e242010-02-15 22:01:00 +00001177 Field2End = D2->field_end();
Dmitri Gribenko898cff02012-05-19 17:17:26 +00001178 for (RecordDecl::field_iterator Field1 = D1->field_begin(),
Douglas Gregor3996e242010-02-15 22:01:00 +00001179 Field1End = D1->field_end();
1180 Field1 != Field1End;
1181 ++Field1, ++Field2) {
1182 if (Field2 == Field2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001183 if (Context.Complain) {
1184 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1185 << Context.C2.getTypeDeclType(D2);
1186 Context.Diag1(Field1->getLocation(), diag::note_odr_field)
1187 << Field1->getDeclName() << Field1->getType();
1188 Context.Diag2(D2->getLocation(), diag::note_odr_missing_field);
1189 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001190 return false;
1191 }
1192
David Blaikie40ed2972012-06-06 20:45:41 +00001193 if (!IsStructurallyEquivalent(Context, *Field1, *Field2))
Douglas Gregor03d1ed32011-10-14 21:54:42 +00001194 return false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001195 }
1196
1197 if (Field2 != Field2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001198 if (Context.Complain) {
1199 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1200 << Context.C2.getTypeDeclType(D2);
1201 Context.Diag2(Field2->getLocation(), diag::note_odr_field)
1202 << Field2->getDeclName() << Field2->getType();
1203 Context.Diag1(D1->getLocation(), diag::note_odr_missing_field);
1204 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001205 return false;
1206 }
1207
1208 return true;
1209}
1210
1211/// \brief Determine structural equivalence of two enums.
1212static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1213 EnumDecl *D1, EnumDecl *D2) {
1214 EnumDecl::enumerator_iterator EC2 = D2->enumerator_begin(),
1215 EC2End = D2->enumerator_end();
1216 for (EnumDecl::enumerator_iterator EC1 = D1->enumerator_begin(),
1217 EC1End = D1->enumerator_end();
1218 EC1 != EC1End; ++EC1, ++EC2) {
1219 if (EC2 == EC2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001220 if (Context.Complain) {
1221 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1222 << Context.C2.getTypeDeclType(D2);
1223 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
1224 << EC1->getDeclName()
1225 << EC1->getInitVal().toString(10);
1226 Context.Diag2(D2->getLocation(), diag::note_odr_missing_enumerator);
1227 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001228 return false;
1229 }
1230
1231 llvm::APSInt Val1 = EC1->getInitVal();
1232 llvm::APSInt Val2 = EC2->getInitVal();
Eric Christopher6dcc3762012-07-15 00:23:57 +00001233 if (!llvm::APSInt::isSameValue(Val1, Val2) ||
Douglas Gregor3996e242010-02-15 22:01:00 +00001234 !IsStructurallyEquivalent(EC1->getIdentifier(), EC2->getIdentifier())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001235 if (Context.Complain) {
1236 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1237 << Context.C2.getTypeDeclType(D2);
1238 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
1239 << EC2->getDeclName()
1240 << EC2->getInitVal().toString(10);
1241 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
1242 << EC1->getDeclName()
1243 << EC1->getInitVal().toString(10);
1244 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001245 return false;
1246 }
1247 }
1248
1249 if (EC2 != EC2End) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001250 if (Context.Complain) {
1251 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1252 << Context.C2.getTypeDeclType(D2);
1253 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
1254 << EC2->getDeclName()
1255 << EC2->getInitVal().toString(10);
1256 Context.Diag1(D1->getLocation(), diag::note_odr_missing_enumerator);
1257 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001258 return false;
1259 }
1260
1261 return true;
1262}
Douglas Gregora082a492010-11-30 19:14:50 +00001263
1264static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1265 TemplateParameterList *Params1,
1266 TemplateParameterList *Params2) {
1267 if (Params1->size() != Params2->size()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001268 if (Context.Complain) {
1269 Context.Diag2(Params2->getTemplateLoc(),
1270 diag::err_odr_different_num_template_parameters)
1271 << Params1->size() << Params2->size();
1272 Context.Diag1(Params1->getTemplateLoc(),
1273 diag::note_odr_template_parameter_list);
1274 }
Douglas Gregora082a492010-11-30 19:14:50 +00001275 return false;
1276 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001277
Douglas Gregora082a492010-11-30 19:14:50 +00001278 for (unsigned I = 0, N = Params1->size(); I != N; ++I) {
1279 if (Params1->getParam(I)->getKind() != Params2->getParam(I)->getKind()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001280 if (Context.Complain) {
1281 Context.Diag2(Params2->getParam(I)->getLocation(),
1282 diag::err_odr_different_template_parameter_kind);
1283 Context.Diag1(Params1->getParam(I)->getLocation(),
1284 diag::note_odr_template_parameter_here);
1285 }
Douglas Gregora082a492010-11-30 19:14:50 +00001286 return false;
1287 }
1288
1289 if (!Context.IsStructurallyEquivalent(Params1->getParam(I),
1290 Params2->getParam(I))) {
1291
1292 return false;
1293 }
1294 }
1295
1296 return true;
1297}
1298
1299static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1300 TemplateTypeParmDecl *D1,
1301 TemplateTypeParmDecl *D2) {
1302 if (D1->isParameterPack() != D2->isParameterPack()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001303 if (Context.Complain) {
1304 Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1305 << D2->isParameterPack();
1306 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1307 << D1->isParameterPack();
1308 }
Douglas Gregora082a492010-11-30 19:14:50 +00001309 return false;
1310 }
1311
1312 return true;
1313}
1314
1315static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1316 NonTypeTemplateParmDecl *D1,
1317 NonTypeTemplateParmDecl *D2) {
Douglas Gregora082a492010-11-30 19:14:50 +00001318 if (D1->isParameterPack() != D2->isParameterPack()) {
Douglas Gregor3c7380b2012-10-26 15:36:15 +00001319 if (Context.Complain) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001320 Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1321 << D2->isParameterPack();
1322 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1323 << D1->isParameterPack();
1324 }
Douglas Gregora082a492010-11-30 19:14:50 +00001325 return false;
1326 }
Douglas Gregora082a492010-11-30 19:14:50 +00001327
1328 // Check types.
1329 if (!Context.IsStructurallyEquivalent(D1->getType(), D2->getType())) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001330 if (Context.Complain) {
1331 Context.Diag2(D2->getLocation(),
1332 diag::err_odr_non_type_parameter_type_inconsistent)
1333 << D2->getType() << D1->getType();
1334 Context.Diag1(D1->getLocation(), diag::note_odr_value_here)
1335 << D1->getType();
1336 }
Douglas Gregora082a492010-11-30 19:14:50 +00001337 return false;
1338 }
1339
1340 return true;
1341}
1342
1343static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1344 TemplateTemplateParmDecl *D1,
1345 TemplateTemplateParmDecl *D2) {
Douglas Gregora082a492010-11-30 19:14:50 +00001346 if (D1->isParameterPack() != D2->isParameterPack()) {
Douglas Gregor069bbaf2012-10-26 15:34:11 +00001347 if (Context.Complain) {
1348 Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1349 << D2->isParameterPack();
1350 Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1351 << D1->isParameterPack();
1352 }
Douglas Gregora082a492010-11-30 19:14:50 +00001353 return false;
1354 }
Douglas Gregor3c7380b2012-10-26 15:36:15 +00001355
Douglas Gregora082a492010-11-30 19:14:50 +00001356 // Check template parameter lists.
1357 return IsStructurallyEquivalent(Context, D1->getTemplateParameters(),
1358 D2->getTemplateParameters());
1359}
1360
1361static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1362 ClassTemplateDecl *D1,
1363 ClassTemplateDecl *D2) {
1364 // Check template parameters.
1365 if (!IsStructurallyEquivalent(Context,
1366 D1->getTemplateParameters(),
1367 D2->getTemplateParameters()))
1368 return false;
1369
1370 // Check the templated declaration.
1371 return Context.IsStructurallyEquivalent(D1->getTemplatedDecl(),
1372 D2->getTemplatedDecl());
1373}
1374
Douglas Gregor3996e242010-02-15 22:01:00 +00001375/// \brief Determine structural equivalence of two declarations.
1376static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1377 Decl *D1, Decl *D2) {
1378 // FIXME: Check for known structural equivalences via a callback of some sort.
1379
Douglas Gregorb4964f72010-02-15 23:54:17 +00001380 // Check whether we already know that these two declarations are not
1381 // structurally equivalent.
1382 if (Context.NonEquivalentDecls.count(std::make_pair(D1->getCanonicalDecl(),
1383 D2->getCanonicalDecl())))
1384 return false;
1385
Douglas Gregor3996e242010-02-15 22:01:00 +00001386 // Determine whether we've already produced a tentative equivalence for D1.
1387 Decl *&EquivToD1 = Context.TentativeEquivalences[D1->getCanonicalDecl()];
1388 if (EquivToD1)
1389 return EquivToD1 == D2->getCanonicalDecl();
1390
1391 // Produce a tentative equivalence D1 <-> D2, which will be checked later.
1392 EquivToD1 = D2->getCanonicalDecl();
1393 Context.DeclsToCheck.push_back(D1->getCanonicalDecl());
1394 return true;
1395}
1396
1397bool StructuralEquivalenceContext::IsStructurallyEquivalent(Decl *D1,
1398 Decl *D2) {
1399 if (!::IsStructurallyEquivalent(*this, D1, D2))
1400 return false;
1401
1402 return !Finish();
1403}
1404
1405bool StructuralEquivalenceContext::IsStructurallyEquivalent(QualType T1,
1406 QualType T2) {
1407 if (!::IsStructurallyEquivalent(*this, T1, T2))
1408 return false;
1409
1410 return !Finish();
1411}
1412
1413bool StructuralEquivalenceContext::Finish() {
1414 while (!DeclsToCheck.empty()) {
1415 // Check the next declaration.
1416 Decl *D1 = DeclsToCheck.front();
1417 DeclsToCheck.pop_front();
1418
1419 Decl *D2 = TentativeEquivalences[D1];
1420 assert(D2 && "Unrecorded tentative equivalence?");
1421
Douglas Gregorb4964f72010-02-15 23:54:17 +00001422 bool Equivalent = true;
1423
Douglas Gregor3996e242010-02-15 22:01:00 +00001424 // FIXME: Switch on all declaration kinds. For now, we're just going to
1425 // check the obvious ones.
1426 if (RecordDecl *Record1 = dyn_cast<RecordDecl>(D1)) {
1427 if (RecordDecl *Record2 = dyn_cast<RecordDecl>(D2)) {
1428 // Check for equivalent structure names.
1429 IdentifierInfo *Name1 = Record1->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001430 if (!Name1 && Record1->getTypedefNameForAnonDecl())
1431 Name1 = Record1->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregor3996e242010-02-15 22:01:00 +00001432 IdentifierInfo *Name2 = Record2->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001433 if (!Name2 && Record2->getTypedefNameForAnonDecl())
1434 Name2 = Record2->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregorb4964f72010-02-15 23:54:17 +00001435 if (!::IsStructurallyEquivalent(Name1, Name2) ||
1436 !::IsStructurallyEquivalent(*this, Record1, Record2))
1437 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001438 } else {
1439 // Record/non-record mismatch.
Douglas Gregorb4964f72010-02-15 23:54:17 +00001440 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001441 }
Douglas Gregorb4964f72010-02-15 23:54:17 +00001442 } else if (EnumDecl *Enum1 = dyn_cast<EnumDecl>(D1)) {
Douglas Gregor3996e242010-02-15 22:01:00 +00001443 if (EnumDecl *Enum2 = dyn_cast<EnumDecl>(D2)) {
1444 // Check for equivalent enum names.
1445 IdentifierInfo *Name1 = Enum1->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001446 if (!Name1 && Enum1->getTypedefNameForAnonDecl())
1447 Name1 = Enum1->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregor3996e242010-02-15 22:01:00 +00001448 IdentifierInfo *Name2 = Enum2->getIdentifier();
Richard Smithdda56e42011-04-15 14:24:37 +00001449 if (!Name2 && Enum2->getTypedefNameForAnonDecl())
1450 Name2 = Enum2->getTypedefNameForAnonDecl()->getIdentifier();
Douglas Gregorb4964f72010-02-15 23:54:17 +00001451 if (!::IsStructurallyEquivalent(Name1, Name2) ||
1452 !::IsStructurallyEquivalent(*this, Enum1, Enum2))
1453 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001454 } else {
1455 // Enum/non-enum mismatch
Douglas Gregorb4964f72010-02-15 23:54:17 +00001456 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001457 }
Richard Smithdda56e42011-04-15 14:24:37 +00001458 } else if (TypedefNameDecl *Typedef1 = dyn_cast<TypedefNameDecl>(D1)) {
1459 if (TypedefNameDecl *Typedef2 = dyn_cast<TypedefNameDecl>(D2)) {
Douglas Gregor3996e242010-02-15 22:01:00 +00001460 if (!::IsStructurallyEquivalent(Typedef1->getIdentifier(),
Douglas Gregorb4964f72010-02-15 23:54:17 +00001461 Typedef2->getIdentifier()) ||
1462 !::IsStructurallyEquivalent(*this,
Douglas Gregor3996e242010-02-15 22:01:00 +00001463 Typedef1->getUnderlyingType(),
1464 Typedef2->getUnderlyingType()))
Douglas Gregorb4964f72010-02-15 23:54:17 +00001465 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001466 } else {
1467 // Typedef/non-typedef mismatch.
Douglas Gregorb4964f72010-02-15 23:54:17 +00001468 Equivalent = false;
Douglas Gregor3996e242010-02-15 22:01:00 +00001469 }
Douglas Gregora082a492010-11-30 19:14:50 +00001470 } else if (ClassTemplateDecl *ClassTemplate1
1471 = dyn_cast<ClassTemplateDecl>(D1)) {
1472 if (ClassTemplateDecl *ClassTemplate2 = dyn_cast<ClassTemplateDecl>(D2)) {
1473 if (!::IsStructurallyEquivalent(ClassTemplate1->getIdentifier(),
1474 ClassTemplate2->getIdentifier()) ||
1475 !::IsStructurallyEquivalent(*this, ClassTemplate1, ClassTemplate2))
1476 Equivalent = false;
1477 } else {
1478 // Class template/non-class-template mismatch.
1479 Equivalent = false;
1480 }
1481 } else if (TemplateTypeParmDecl *TTP1= dyn_cast<TemplateTypeParmDecl>(D1)) {
1482 if (TemplateTypeParmDecl *TTP2 = dyn_cast<TemplateTypeParmDecl>(D2)) {
1483 if (!::IsStructurallyEquivalent(*this, TTP1, TTP2))
1484 Equivalent = false;
1485 } else {
1486 // Kind mismatch.
1487 Equivalent = false;
1488 }
1489 } else if (NonTypeTemplateParmDecl *NTTP1
1490 = dyn_cast<NonTypeTemplateParmDecl>(D1)) {
1491 if (NonTypeTemplateParmDecl *NTTP2
1492 = dyn_cast<NonTypeTemplateParmDecl>(D2)) {
1493 if (!::IsStructurallyEquivalent(*this, NTTP1, NTTP2))
1494 Equivalent = false;
1495 } else {
1496 // Kind mismatch.
1497 Equivalent = false;
1498 }
1499 } else if (TemplateTemplateParmDecl *TTP1
1500 = dyn_cast<TemplateTemplateParmDecl>(D1)) {
1501 if (TemplateTemplateParmDecl *TTP2
1502 = dyn_cast<TemplateTemplateParmDecl>(D2)) {
1503 if (!::IsStructurallyEquivalent(*this, TTP1, TTP2))
1504 Equivalent = false;
1505 } else {
1506 // Kind mismatch.
1507 Equivalent = false;
1508 }
1509 }
1510
Douglas Gregorb4964f72010-02-15 23:54:17 +00001511 if (!Equivalent) {
1512 // Note that these two declarations are not equivalent (and we already
1513 // know about it).
1514 NonEquivalentDecls.insert(std::make_pair(D1->getCanonicalDecl(),
1515 D2->getCanonicalDecl()));
1516 return true;
1517 }
Douglas Gregor3996e242010-02-15 22:01:00 +00001518 // FIXME: Check other declaration kinds!
1519 }
1520
1521 return false;
1522}
1523
1524//----------------------------------------------------------------------------
Douglas Gregor96e578d2010-02-05 17:54:41 +00001525// Import Types
1526//----------------------------------------------------------------------------
1527
John McCall424cec92011-01-19 06:33:43 +00001528QualType ASTNodeImporter::VisitType(const Type *T) {
Douglas Gregore4c83e42010-02-09 22:48:33 +00001529 Importer.FromDiag(SourceLocation(), diag::err_unsupported_ast_node)
1530 << T->getTypeClassName();
1531 return QualType();
1532}
1533
John McCall424cec92011-01-19 06:33:43 +00001534QualType ASTNodeImporter::VisitBuiltinType(const BuiltinType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001535 switch (T->getKind()) {
Alexey Bader954ba212016-04-08 13:40:33 +00001536#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
1537 case BuiltinType::Id: \
1538 return Importer.getToContext().SingletonId;
Alexey Baderb62f1442016-04-13 08:33:41 +00001539#include "clang/Basic/OpenCLImageTypes.def"
John McCalle314e272011-10-18 21:02:43 +00001540#define SHARED_SINGLETON_TYPE(Expansion)
1541#define BUILTIN_TYPE(Id, SingletonId) \
1542 case BuiltinType::Id: return Importer.getToContext().SingletonId;
1543#include "clang/AST/BuiltinTypes.def"
1544
1545 // FIXME: for Char16, Char32, and NullPtr, make sure that the "to"
1546 // context supports C++.
1547
1548 // FIXME: for ObjCId, ObjCClass, and ObjCSel, make sure that the "to"
1549 // context supports ObjC.
1550
Douglas Gregor96e578d2010-02-05 17:54:41 +00001551 case BuiltinType::Char_U:
1552 // The context we're importing from has an unsigned 'char'. If we're
1553 // importing into a context with a signed 'char', translate to
1554 // 'unsigned char' instead.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001555 if (Importer.getToContext().getLangOpts().CharIsSigned)
Douglas Gregor96e578d2010-02-05 17:54:41 +00001556 return Importer.getToContext().UnsignedCharTy;
1557
1558 return Importer.getToContext().CharTy;
1559
Douglas Gregor96e578d2010-02-05 17:54:41 +00001560 case BuiltinType::Char_S:
1561 // The context we're importing from has an unsigned 'char'. If we're
1562 // importing into a context with a signed 'char', translate to
1563 // 'unsigned char' instead.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001564 if (!Importer.getToContext().getLangOpts().CharIsSigned)
Douglas Gregor96e578d2010-02-05 17:54:41 +00001565 return Importer.getToContext().SignedCharTy;
1566
1567 return Importer.getToContext().CharTy;
1568
Chris Lattnerad3467e2010-12-25 23:25:43 +00001569 case BuiltinType::WChar_S:
1570 case BuiltinType::WChar_U:
Douglas Gregor96e578d2010-02-05 17:54:41 +00001571 // FIXME: If not in C++, shall we translate to the C equivalent of
1572 // wchar_t?
1573 return Importer.getToContext().WCharTy;
Douglas Gregor96e578d2010-02-05 17:54:41 +00001574 }
David Blaikiee4d798f2012-01-20 21:50:17 +00001575
1576 llvm_unreachable("Invalid BuiltinType Kind!");
Douglas Gregor96e578d2010-02-05 17:54:41 +00001577}
1578
John McCall424cec92011-01-19 06:33:43 +00001579QualType ASTNodeImporter::VisitComplexType(const ComplexType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001580 QualType ToElementType = Importer.Import(T->getElementType());
1581 if (ToElementType.isNull())
1582 return QualType();
1583
1584 return Importer.getToContext().getComplexType(ToElementType);
1585}
1586
John McCall424cec92011-01-19 06:33:43 +00001587QualType ASTNodeImporter::VisitPointerType(const PointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001588 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1589 if (ToPointeeType.isNull())
1590 return QualType();
1591
1592 return Importer.getToContext().getPointerType(ToPointeeType);
1593}
1594
John McCall424cec92011-01-19 06:33:43 +00001595QualType ASTNodeImporter::VisitBlockPointerType(const BlockPointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001596 // FIXME: Check for blocks support in "to" context.
1597 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1598 if (ToPointeeType.isNull())
1599 return QualType();
1600
1601 return Importer.getToContext().getBlockPointerType(ToPointeeType);
1602}
1603
John McCall424cec92011-01-19 06:33:43 +00001604QualType
1605ASTNodeImporter::VisitLValueReferenceType(const LValueReferenceType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001606 // FIXME: Check for C++ support in "to" context.
1607 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1608 if (ToPointeeType.isNull())
1609 return QualType();
1610
1611 return Importer.getToContext().getLValueReferenceType(ToPointeeType);
1612}
1613
John McCall424cec92011-01-19 06:33:43 +00001614QualType
1615ASTNodeImporter::VisitRValueReferenceType(const RValueReferenceType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001616 // FIXME: Check for C++0x support in "to" context.
1617 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1618 if (ToPointeeType.isNull())
1619 return QualType();
1620
1621 return Importer.getToContext().getRValueReferenceType(ToPointeeType);
1622}
1623
John McCall424cec92011-01-19 06:33:43 +00001624QualType ASTNodeImporter::VisitMemberPointerType(const MemberPointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001625 // FIXME: Check for C++ support in "to" context.
1626 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1627 if (ToPointeeType.isNull())
1628 return QualType();
1629
1630 QualType ClassType = Importer.Import(QualType(T->getClass(), 0));
1631 return Importer.getToContext().getMemberPointerType(ToPointeeType,
1632 ClassType.getTypePtr());
1633}
1634
John McCall424cec92011-01-19 06:33:43 +00001635QualType ASTNodeImporter::VisitConstantArrayType(const ConstantArrayType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001636 QualType ToElementType = Importer.Import(T->getElementType());
1637 if (ToElementType.isNull())
1638 return QualType();
1639
1640 return Importer.getToContext().getConstantArrayType(ToElementType,
1641 T->getSize(),
1642 T->getSizeModifier(),
1643 T->getIndexTypeCVRQualifiers());
1644}
1645
John McCall424cec92011-01-19 06:33:43 +00001646QualType
1647ASTNodeImporter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001648 QualType ToElementType = Importer.Import(T->getElementType());
1649 if (ToElementType.isNull())
1650 return QualType();
1651
1652 return Importer.getToContext().getIncompleteArrayType(ToElementType,
1653 T->getSizeModifier(),
1654 T->getIndexTypeCVRQualifiers());
1655}
1656
John McCall424cec92011-01-19 06:33:43 +00001657QualType ASTNodeImporter::VisitVariableArrayType(const VariableArrayType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001658 QualType ToElementType = Importer.Import(T->getElementType());
1659 if (ToElementType.isNull())
1660 return QualType();
1661
1662 Expr *Size = Importer.Import(T->getSizeExpr());
1663 if (!Size)
1664 return QualType();
1665
1666 SourceRange Brackets = Importer.Import(T->getBracketsRange());
1667 return Importer.getToContext().getVariableArrayType(ToElementType, Size,
1668 T->getSizeModifier(),
1669 T->getIndexTypeCVRQualifiers(),
1670 Brackets);
1671}
1672
John McCall424cec92011-01-19 06:33:43 +00001673QualType ASTNodeImporter::VisitVectorType(const VectorType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001674 QualType ToElementType = Importer.Import(T->getElementType());
1675 if (ToElementType.isNull())
1676 return QualType();
1677
1678 return Importer.getToContext().getVectorType(ToElementType,
1679 T->getNumElements(),
Bob Wilsonaeb56442010-11-10 21:56:12 +00001680 T->getVectorKind());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001681}
1682
John McCall424cec92011-01-19 06:33:43 +00001683QualType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001684 QualType ToElementType = Importer.Import(T->getElementType());
1685 if (ToElementType.isNull())
1686 return QualType();
1687
1688 return Importer.getToContext().getExtVectorType(ToElementType,
1689 T->getNumElements());
1690}
1691
John McCall424cec92011-01-19 06:33:43 +00001692QualType
1693ASTNodeImporter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001694 // FIXME: What happens if we're importing a function without a prototype
1695 // into C++? Should we make it variadic?
Alp Toker314cc812014-01-25 16:55:45 +00001696 QualType ToResultType = Importer.Import(T->getReturnType());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001697 if (ToResultType.isNull())
1698 return QualType();
Rafael Espindolac50c27c2010-03-30 20:24:48 +00001699
Douglas Gregor96e578d2010-02-05 17:54:41 +00001700 return Importer.getToContext().getFunctionNoProtoType(ToResultType,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00001701 T->getExtInfo());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001702}
1703
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00001704QualType ASTNodeImporter::VisitFunctionProtoType(const FunctionProtoType *T) {
Alp Toker314cc812014-01-25 16:55:45 +00001705 QualType ToResultType = Importer.Import(T->getReturnType());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001706 if (ToResultType.isNull())
1707 return QualType();
1708
1709 // Import argument types
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001710 SmallVector<QualType, 4> ArgTypes;
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00001711 for (const auto &A : T->param_types()) {
1712 QualType ArgType = Importer.Import(A);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001713 if (ArgType.isNull())
1714 return QualType();
1715 ArgTypes.push_back(ArgType);
1716 }
1717
1718 // Import exception types
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001719 SmallVector<QualType, 4> ExceptionTypes;
Aaron Ballmanb088fbe2014-03-17 15:38:09 +00001720 for (const auto &E : T->exceptions()) {
1721 QualType ExceptionType = Importer.Import(E);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001722 if (ExceptionType.isNull())
1723 return QualType();
1724 ExceptionTypes.push_back(ExceptionType);
1725 }
John McCalldb40c7f2010-12-14 08:05:40 +00001726
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00001727 FunctionProtoType::ExtProtoInfo FromEPI = T->getExtProtoInfo();
1728 FunctionProtoType::ExtProtoInfo ToEPI;
1729
1730 ToEPI.ExtInfo = FromEPI.ExtInfo;
1731 ToEPI.Variadic = FromEPI.Variadic;
1732 ToEPI.HasTrailingReturn = FromEPI.HasTrailingReturn;
1733 ToEPI.TypeQuals = FromEPI.TypeQuals;
1734 ToEPI.RefQualifier = FromEPI.RefQualifier;
Richard Smith8acb4282014-07-31 21:57:55 +00001735 ToEPI.ExceptionSpec.Type = FromEPI.ExceptionSpec.Type;
1736 ToEPI.ExceptionSpec.Exceptions = ExceptionTypes;
1737 ToEPI.ExceptionSpec.NoexceptExpr =
1738 Importer.Import(FromEPI.ExceptionSpec.NoexceptExpr);
1739 ToEPI.ExceptionSpec.SourceDecl = cast_or_null<FunctionDecl>(
1740 Importer.Import(FromEPI.ExceptionSpec.SourceDecl));
1741 ToEPI.ExceptionSpec.SourceTemplate = cast_or_null<FunctionDecl>(
1742 Importer.Import(FromEPI.ExceptionSpec.SourceTemplate));
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00001743
Jordan Rose5c382722013-03-08 21:51:21 +00001744 return Importer.getToContext().getFunctionType(ToResultType, ArgTypes, ToEPI);
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00001745}
1746
Sean Callananda6df8a2011-08-11 16:56:07 +00001747QualType ASTNodeImporter::VisitParenType(const ParenType *T) {
1748 QualType ToInnerType = Importer.Import(T->getInnerType());
1749 if (ToInnerType.isNull())
1750 return QualType();
1751
1752 return Importer.getToContext().getParenType(ToInnerType);
1753}
1754
John McCall424cec92011-01-19 06:33:43 +00001755QualType ASTNodeImporter::VisitTypedefType(const TypedefType *T) {
Richard Smithdda56e42011-04-15 14:24:37 +00001756 TypedefNameDecl *ToDecl
1757 = dyn_cast_or_null<TypedefNameDecl>(Importer.Import(T->getDecl()));
Douglas Gregor96e578d2010-02-05 17:54:41 +00001758 if (!ToDecl)
1759 return QualType();
1760
1761 return Importer.getToContext().getTypeDeclType(ToDecl);
1762}
1763
John McCall424cec92011-01-19 06:33:43 +00001764QualType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001765 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1766 if (!ToExpr)
1767 return QualType();
1768
1769 return Importer.getToContext().getTypeOfExprType(ToExpr);
1770}
1771
John McCall424cec92011-01-19 06:33:43 +00001772QualType ASTNodeImporter::VisitTypeOfType(const TypeOfType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001773 QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType());
1774 if (ToUnderlyingType.isNull())
1775 return QualType();
1776
1777 return Importer.getToContext().getTypeOfType(ToUnderlyingType);
1778}
1779
John McCall424cec92011-01-19 06:33:43 +00001780QualType ASTNodeImporter::VisitDecltypeType(const DecltypeType *T) {
Richard Smith30482bc2011-02-20 03:19:35 +00001781 // FIXME: Make sure that the "to" context supports C++0x!
Douglas Gregor96e578d2010-02-05 17:54:41 +00001782 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1783 if (!ToExpr)
1784 return QualType();
1785
Douglas Gregor81495f32012-02-12 18:42:33 +00001786 QualType UnderlyingType = Importer.Import(T->getUnderlyingType());
1787 if (UnderlyingType.isNull())
1788 return QualType();
1789
1790 return Importer.getToContext().getDecltypeType(ToExpr, UnderlyingType);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001791}
1792
Alexis Hunte852b102011-05-24 22:41:36 +00001793QualType ASTNodeImporter::VisitUnaryTransformType(const UnaryTransformType *T) {
1794 QualType ToBaseType = Importer.Import(T->getBaseType());
1795 QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType());
1796 if (ToBaseType.isNull() || ToUnderlyingType.isNull())
1797 return QualType();
1798
1799 return Importer.getToContext().getUnaryTransformType(ToBaseType,
1800 ToUnderlyingType,
1801 T->getUTTKind());
1802}
1803
Richard Smith30482bc2011-02-20 03:19:35 +00001804QualType ASTNodeImporter::VisitAutoType(const AutoType *T) {
Richard Smith74aeef52013-04-26 16:15:35 +00001805 // FIXME: Make sure that the "to" context supports C++11!
Richard Smith30482bc2011-02-20 03:19:35 +00001806 QualType FromDeduced = T->getDeducedType();
1807 QualType ToDeduced;
1808 if (!FromDeduced.isNull()) {
1809 ToDeduced = Importer.Import(FromDeduced);
1810 if (ToDeduced.isNull())
1811 return QualType();
1812 }
1813
Richard Smithe301ba22015-11-11 02:02:15 +00001814 return Importer.getToContext().getAutoType(ToDeduced, T->getKeyword(),
Faisal Vali2b391ab2013-09-26 19:54:12 +00001815 /*IsDependent*/false);
Richard Smith30482bc2011-02-20 03:19:35 +00001816}
1817
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00001818QualType ASTNodeImporter::VisitInjectedClassNameType(
1819 const InjectedClassNameType *T) {
1820 CXXRecordDecl *D = cast_or_null<CXXRecordDecl>(Importer.Import(T->getDecl()));
1821 if (!D)
1822 return QualType();
1823
1824 QualType InjType = Importer.Import(T->getInjectedSpecializationType());
1825 if (InjType.isNull())
1826 return QualType();
1827
1828 // FIXME: ASTContext::getInjectedClassNameType is not suitable for AST reading
1829 // See comments in InjectedClassNameType definition for details
1830 // return Importer.getToContext().getInjectedClassNameType(D, InjType);
1831 enum {
1832 TypeAlignmentInBits = 4,
1833 TypeAlignment = 1 << TypeAlignmentInBits
1834 };
1835
1836 return QualType(new (Importer.getToContext(), TypeAlignment)
1837 InjectedClassNameType(D, InjType), 0);
1838}
1839
John McCall424cec92011-01-19 06:33:43 +00001840QualType ASTNodeImporter::VisitRecordType(const RecordType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001841 RecordDecl *ToDecl
1842 = dyn_cast_or_null<RecordDecl>(Importer.Import(T->getDecl()));
1843 if (!ToDecl)
1844 return QualType();
1845
1846 return Importer.getToContext().getTagDeclType(ToDecl);
1847}
1848
John McCall424cec92011-01-19 06:33:43 +00001849QualType ASTNodeImporter::VisitEnumType(const EnumType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001850 EnumDecl *ToDecl
1851 = dyn_cast_or_null<EnumDecl>(Importer.Import(T->getDecl()));
1852 if (!ToDecl)
1853 return QualType();
1854
1855 return Importer.getToContext().getTagDeclType(ToDecl);
1856}
1857
Sean Callanan72fe0852015-04-02 23:50:08 +00001858QualType ASTNodeImporter::VisitAttributedType(const AttributedType *T) {
1859 QualType FromModifiedType = T->getModifiedType();
1860 QualType FromEquivalentType = T->getEquivalentType();
1861 QualType ToModifiedType;
1862 QualType ToEquivalentType;
1863
1864 if (!FromModifiedType.isNull()) {
1865 ToModifiedType = Importer.Import(FromModifiedType);
1866 if (ToModifiedType.isNull())
1867 return QualType();
1868 }
1869 if (!FromEquivalentType.isNull()) {
1870 ToEquivalentType = Importer.Import(FromEquivalentType);
1871 if (ToEquivalentType.isNull())
1872 return QualType();
1873 }
1874
1875 return Importer.getToContext().getAttributedType(T->getAttrKind(),
1876 ToModifiedType, ToEquivalentType);
1877}
1878
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00001879
1880QualType ASTNodeImporter::VisitTemplateTypeParmType(
1881 const TemplateTypeParmType *T) {
1882 TemplateTypeParmDecl *ParmDecl =
1883 cast_or_null<TemplateTypeParmDecl>(Importer.Import(T->getDecl()));
1884 if (!ParmDecl && T->getDecl())
1885 return QualType();
1886
1887 return Importer.getToContext().getTemplateTypeParmType(
1888 T->getDepth(), T->getIndex(), T->isParameterPack(), ParmDecl);
1889}
1890
Douglas Gregore2e50d332010-12-01 01:36:18 +00001891QualType ASTNodeImporter::VisitTemplateSpecializationType(
John McCall424cec92011-01-19 06:33:43 +00001892 const TemplateSpecializationType *T) {
Douglas Gregore2e50d332010-12-01 01:36:18 +00001893 TemplateName ToTemplate = Importer.Import(T->getTemplateName());
1894 if (ToTemplate.isNull())
1895 return QualType();
1896
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001897 SmallVector<TemplateArgument, 2> ToTemplateArgs;
Douglas Gregore2e50d332010-12-01 01:36:18 +00001898 if (ImportTemplateArguments(T->getArgs(), T->getNumArgs(), ToTemplateArgs))
1899 return QualType();
1900
1901 QualType ToCanonType;
1902 if (!QualType(T, 0).isCanonical()) {
1903 QualType FromCanonType
1904 = Importer.getFromContext().getCanonicalType(QualType(T, 0));
1905 ToCanonType =Importer.Import(FromCanonType);
1906 if (ToCanonType.isNull())
1907 return QualType();
1908 }
1909 return Importer.getToContext().getTemplateSpecializationType(ToTemplate,
1910 ToTemplateArgs.data(),
1911 ToTemplateArgs.size(),
1912 ToCanonType);
1913}
1914
John McCall424cec92011-01-19 06:33:43 +00001915QualType ASTNodeImporter::VisitElaboratedType(const ElaboratedType *T) {
Craig Topper36250ad2014-05-12 05:36:57 +00001916 NestedNameSpecifier *ToQualifier = nullptr;
Abramo Bagnara6150c882010-05-11 21:36:43 +00001917 // Note: the qualifier in an ElaboratedType is optional.
1918 if (T->getQualifier()) {
1919 ToQualifier = Importer.Import(T->getQualifier());
1920 if (!ToQualifier)
1921 return QualType();
1922 }
Douglas Gregor96e578d2010-02-05 17:54:41 +00001923
1924 QualType ToNamedType = Importer.Import(T->getNamedType());
1925 if (ToNamedType.isNull())
1926 return QualType();
1927
Abramo Bagnara6150c882010-05-11 21:36:43 +00001928 return Importer.getToContext().getElaboratedType(T->getKeyword(),
1929 ToQualifier, ToNamedType);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001930}
1931
John McCall424cec92011-01-19 06:33:43 +00001932QualType ASTNodeImporter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001933 ObjCInterfaceDecl *Class
1934 = dyn_cast_or_null<ObjCInterfaceDecl>(Importer.Import(T->getDecl()));
1935 if (!Class)
1936 return QualType();
1937
John McCall8b07ec22010-05-15 11:32:37 +00001938 return Importer.getToContext().getObjCInterfaceType(Class);
1939}
1940
John McCall424cec92011-01-19 06:33:43 +00001941QualType ASTNodeImporter::VisitObjCObjectType(const ObjCObjectType *T) {
John McCall8b07ec22010-05-15 11:32:37 +00001942 QualType ToBaseType = Importer.Import(T->getBaseType());
1943 if (ToBaseType.isNull())
1944 return QualType();
1945
Douglas Gregore9d95f12015-07-07 03:57:35 +00001946 SmallVector<QualType, 4> TypeArgs;
Douglas Gregore83b9562015-07-07 03:57:53 +00001947 for (auto TypeArg : T->getTypeArgsAsWritten()) {
Douglas Gregore9d95f12015-07-07 03:57:35 +00001948 QualType ImportedTypeArg = Importer.Import(TypeArg);
1949 if (ImportedTypeArg.isNull())
1950 return QualType();
1951
1952 TypeArgs.push_back(ImportedTypeArg);
1953 }
1954
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001955 SmallVector<ObjCProtocolDecl *, 4> Protocols;
Aaron Ballman1683f7b2014-03-17 15:55:30 +00001956 for (auto *P : T->quals()) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001957 ObjCProtocolDecl *Protocol
Aaron Ballman1683f7b2014-03-17 15:55:30 +00001958 = dyn_cast_or_null<ObjCProtocolDecl>(Importer.Import(P));
Douglas Gregor96e578d2010-02-05 17:54:41 +00001959 if (!Protocol)
1960 return QualType();
1961 Protocols.push_back(Protocol);
1962 }
1963
Douglas Gregore9d95f12015-07-07 03:57:35 +00001964 return Importer.getToContext().getObjCObjectType(ToBaseType, TypeArgs,
Douglas Gregorab209d82015-07-07 03:58:42 +00001965 Protocols,
1966 T->isKindOfTypeAsWritten());
Douglas Gregor96e578d2010-02-05 17:54:41 +00001967}
1968
John McCall424cec92011-01-19 06:33:43 +00001969QualType
1970ASTNodeImporter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00001971 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1972 if (ToPointeeType.isNull())
1973 return QualType();
1974
John McCall8b07ec22010-05-15 11:32:37 +00001975 return Importer.getToContext().getObjCObjectPointerType(ToPointeeType);
Douglas Gregor96e578d2010-02-05 17:54:41 +00001976}
1977
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00001978//----------------------------------------------------------------------------
1979// Import Declarations
1980//----------------------------------------------------------------------------
Douglas Gregorbb7930c2010-02-10 19:54:31 +00001981bool ASTNodeImporter::ImportDeclParts(NamedDecl *D, DeclContext *&DC,
1982 DeclContext *&LexicalDC,
1983 DeclarationName &Name,
Sean Callanan59721b32015-04-28 18:41:46 +00001984 NamedDecl *&ToD,
Douglas Gregorbb7930c2010-02-10 19:54:31 +00001985 SourceLocation &Loc) {
1986 // Import the context of this declaration.
1987 DC = Importer.ImportContext(D->getDeclContext());
1988 if (!DC)
1989 return true;
1990
1991 LexicalDC = DC;
1992 if (D->getDeclContext() != D->getLexicalDeclContext()) {
1993 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
1994 if (!LexicalDC)
1995 return true;
1996 }
1997
1998 // Import the name of this declaration.
1999 Name = Importer.Import(D->getDeclName());
2000 if (D->getDeclName() && !Name)
2001 return true;
2002
2003 // Import the location of this declaration.
2004 Loc = Importer.Import(D->getLocation());
Sean Callanan59721b32015-04-28 18:41:46 +00002005 ToD = cast_or_null<NamedDecl>(Importer.GetAlreadyImportedOrNull(D));
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002006 return false;
2007}
2008
Douglas Gregord451ea92011-07-29 23:31:30 +00002009void ASTNodeImporter::ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD) {
2010 if (!FromD)
2011 return;
2012
2013 if (!ToD) {
2014 ToD = Importer.Import(FromD);
2015 if (!ToD)
2016 return;
2017 }
2018
2019 if (RecordDecl *FromRecord = dyn_cast<RecordDecl>(FromD)) {
2020 if (RecordDecl *ToRecord = cast_or_null<RecordDecl>(ToD)) {
Sean Callanan19dfc932013-01-11 23:17:47 +00002021 if (FromRecord->getDefinition() && FromRecord->isCompleteDefinition() && !ToRecord->getDefinition()) {
Douglas Gregord451ea92011-07-29 23:31:30 +00002022 ImportDefinition(FromRecord, ToRecord);
2023 }
2024 }
2025 return;
2026 }
2027
2028 if (EnumDecl *FromEnum = dyn_cast<EnumDecl>(FromD)) {
2029 if (EnumDecl *ToEnum = cast_or_null<EnumDecl>(ToD)) {
2030 if (FromEnum->getDefinition() && !ToEnum->getDefinition()) {
2031 ImportDefinition(FromEnum, ToEnum);
2032 }
2033 }
2034 return;
2035 }
2036}
2037
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002038void
2039ASTNodeImporter::ImportDeclarationNameLoc(const DeclarationNameInfo &From,
2040 DeclarationNameInfo& To) {
2041 // NOTE: To.Name and To.Loc are already imported.
2042 // We only have to import To.LocInfo.
2043 switch (To.getName().getNameKind()) {
2044 case DeclarationName::Identifier:
2045 case DeclarationName::ObjCZeroArgSelector:
2046 case DeclarationName::ObjCOneArgSelector:
2047 case DeclarationName::ObjCMultiArgSelector:
2048 case DeclarationName::CXXUsingDirective:
2049 return;
2050
2051 case DeclarationName::CXXOperatorName: {
2052 SourceRange Range = From.getCXXOperatorNameRange();
2053 To.setCXXOperatorNameRange(Importer.Import(Range));
2054 return;
2055 }
2056 case DeclarationName::CXXLiteralOperatorName: {
2057 SourceLocation Loc = From.getCXXLiteralOperatorNameLoc();
2058 To.setCXXLiteralOperatorNameLoc(Importer.Import(Loc));
2059 return;
2060 }
2061 case DeclarationName::CXXConstructorName:
2062 case DeclarationName::CXXDestructorName:
2063 case DeclarationName::CXXConversionFunctionName: {
2064 TypeSourceInfo *FromTInfo = From.getNamedTypeInfo();
2065 To.setNamedTypeInfo(Importer.Import(FromTInfo));
2066 return;
2067 }
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002068 }
Douglas Gregor07216d12011-11-02 20:52:01 +00002069 llvm_unreachable("Unknown name kind.");
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002070}
2071
Douglas Gregor2e15c842012-02-01 21:00:38 +00002072void ASTNodeImporter::ImportDeclContext(DeclContext *FromDC, bool ForceImport) {
Douglas Gregor0a791672011-01-18 03:11:38 +00002073 if (Importer.isMinimalImport() && !ForceImport) {
Sean Callanan81d577c2011-07-22 23:46:03 +00002074 Importer.ImportContext(FromDC);
Douglas Gregor0a791672011-01-18 03:11:38 +00002075 return;
2076 }
2077
Aaron Ballman629afae2014-03-07 19:56:05 +00002078 for (auto *From : FromDC->decls())
2079 Importer.Import(From);
Douglas Gregor968d6332010-02-21 18:24:45 +00002080}
2081
Douglas Gregord451ea92011-07-29 23:31:30 +00002082bool ASTNodeImporter::ImportDefinition(RecordDecl *From, RecordDecl *To,
Douglas Gregor95d82832012-01-24 18:36:04 +00002083 ImportDefinitionKind Kind) {
2084 if (To->getDefinition() || To->isBeingDefined()) {
2085 if (Kind == IDK_Everything)
2086 ImportDeclContext(From, /*ForceImport=*/true);
2087
Douglas Gregore2e50d332010-12-01 01:36:18 +00002088 return false;
Douglas Gregor95d82832012-01-24 18:36:04 +00002089 }
Douglas Gregore2e50d332010-12-01 01:36:18 +00002090
2091 To->startDefinition();
2092
2093 // Add base classes.
2094 if (CXXRecordDecl *ToCXX = dyn_cast<CXXRecordDecl>(To)) {
2095 CXXRecordDecl *FromCXX = cast<CXXRecordDecl>(From);
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002096
2097 struct CXXRecordDecl::DefinitionData &ToData = ToCXX->data();
2098 struct CXXRecordDecl::DefinitionData &FromData = FromCXX->data();
2099 ToData.UserDeclaredConstructor = FromData.UserDeclaredConstructor;
Richard Smith328aae52012-11-30 05:11:39 +00002100 ToData.UserDeclaredSpecialMembers = FromData.UserDeclaredSpecialMembers;
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002101 ToData.Aggregate = FromData.Aggregate;
2102 ToData.PlainOldData = FromData.PlainOldData;
2103 ToData.Empty = FromData.Empty;
2104 ToData.Polymorphic = FromData.Polymorphic;
2105 ToData.Abstract = FromData.Abstract;
2106 ToData.IsStandardLayout = FromData.IsStandardLayout;
2107 ToData.HasNoNonEmptyBases = FromData.HasNoNonEmptyBases;
2108 ToData.HasPrivateFields = FromData.HasPrivateFields;
2109 ToData.HasProtectedFields = FromData.HasProtectedFields;
2110 ToData.HasPublicFields = FromData.HasPublicFields;
2111 ToData.HasMutableFields = FromData.HasMutableFields;
Richard Smithab44d5b2013-12-10 08:25:00 +00002112 ToData.HasVariantMembers = FromData.HasVariantMembers;
Richard Smith561fb152012-02-25 07:33:38 +00002113 ToData.HasOnlyCMembers = FromData.HasOnlyCMembers;
Richard Smithe2648ba2012-05-07 01:07:30 +00002114 ToData.HasInClassInitializer = FromData.HasInClassInitializer;
Richard Smith593f9932012-12-08 02:01:17 +00002115 ToData.HasUninitializedReferenceMember
2116 = FromData.HasUninitializedReferenceMember;
Nico Weber6a6376b2016-02-19 01:52:46 +00002117 ToData.HasUninitializedFields = FromData.HasUninitializedFields;
Richard Smith12e79312016-05-13 06:47:56 +00002118 ToData.HasInheritedConstructor = FromData.HasInheritedConstructor;
2119 ToData.HasInheritedAssignment = FromData.HasInheritedAssignment;
Richard Smith6b02d462012-12-08 08:32:28 +00002120 ToData.NeedOverloadResolutionForMoveConstructor
2121 = FromData.NeedOverloadResolutionForMoveConstructor;
2122 ToData.NeedOverloadResolutionForMoveAssignment
2123 = FromData.NeedOverloadResolutionForMoveAssignment;
2124 ToData.NeedOverloadResolutionForDestructor
2125 = FromData.NeedOverloadResolutionForDestructor;
2126 ToData.DefaultedMoveConstructorIsDeleted
2127 = FromData.DefaultedMoveConstructorIsDeleted;
2128 ToData.DefaultedMoveAssignmentIsDeleted
2129 = FromData.DefaultedMoveAssignmentIsDeleted;
2130 ToData.DefaultedDestructorIsDeleted = FromData.DefaultedDestructorIsDeleted;
Richard Smith328aae52012-11-30 05:11:39 +00002131 ToData.HasTrivialSpecialMembers = FromData.HasTrivialSpecialMembers;
2132 ToData.HasIrrelevantDestructor = FromData.HasIrrelevantDestructor;
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002133 ToData.HasConstexprNonCopyMoveConstructor
2134 = FromData.HasConstexprNonCopyMoveConstructor;
Nico Weber72c57f42016-02-24 20:58:14 +00002135 ToData.HasDefaultedDefaultConstructor
2136 = FromData.HasDefaultedDefaultConstructor;
Richard Smith561fb152012-02-25 07:33:38 +00002137 ToData.DefaultedDefaultConstructorIsConstexpr
2138 = FromData.DefaultedDefaultConstructorIsConstexpr;
Richard Smith561fb152012-02-25 07:33:38 +00002139 ToData.HasConstexprDefaultConstructor
2140 = FromData.HasConstexprDefaultConstructor;
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002141 ToData.HasNonLiteralTypeFieldsOrBases
2142 = FromData.HasNonLiteralTypeFieldsOrBases;
Richard Smith561fb152012-02-25 07:33:38 +00002143 // ComputedVisibleConversions not imported.
Douglas Gregor3c2404b2011-11-03 18:07:07 +00002144 ToData.UserProvidedDefaultConstructor
2145 = FromData.UserProvidedDefaultConstructor;
Richard Smith328aae52012-11-30 05:11:39 +00002146 ToData.DeclaredSpecialMembers = FromData.DeclaredSpecialMembers;
Richard Smith1c33fe82012-11-28 06:23:12 +00002147 ToData.ImplicitCopyConstructorHasConstParam
2148 = FromData.ImplicitCopyConstructorHasConstParam;
2149 ToData.ImplicitCopyAssignmentHasConstParam
2150 = FromData.ImplicitCopyAssignmentHasConstParam;
2151 ToData.HasDeclaredCopyConstructorWithConstParam
2152 = FromData.HasDeclaredCopyConstructorWithConstParam;
2153 ToData.HasDeclaredCopyAssignmentWithConstParam
2154 = FromData.HasDeclaredCopyAssignmentWithConstParam;
Richard Smith561fb152012-02-25 07:33:38 +00002155 ToData.IsLambda = FromData.IsLambda;
2156
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002157 SmallVector<CXXBaseSpecifier *, 4> Bases;
Aaron Ballman574705e2014-03-13 15:41:46 +00002158 for (const auto &Base1 : FromCXX->bases()) {
2159 QualType T = Importer.Import(Base1.getType());
Douglas Gregore2e50d332010-12-01 01:36:18 +00002160 if (T.isNull())
Douglas Gregor96303ea2010-12-02 19:33:37 +00002161 return true;
Douglas Gregor752a5952011-01-03 22:36:02 +00002162
2163 SourceLocation EllipsisLoc;
Aaron Ballman574705e2014-03-13 15:41:46 +00002164 if (Base1.isPackExpansion())
2165 EllipsisLoc = Importer.Import(Base1.getEllipsisLoc());
Douglas Gregord451ea92011-07-29 23:31:30 +00002166
2167 // Ensure that we have a definition for the base.
Aaron Ballman574705e2014-03-13 15:41:46 +00002168 ImportDefinitionIfNeeded(Base1.getType()->getAsCXXRecordDecl());
Douglas Gregord451ea92011-07-29 23:31:30 +00002169
Douglas Gregore2e50d332010-12-01 01:36:18 +00002170 Bases.push_back(
2171 new (Importer.getToContext())
Aaron Ballman574705e2014-03-13 15:41:46 +00002172 CXXBaseSpecifier(Importer.Import(Base1.getSourceRange()),
2173 Base1.isVirtual(),
2174 Base1.isBaseOfClass(),
2175 Base1.getAccessSpecifierAsWritten(),
2176 Importer.Import(Base1.getTypeSourceInfo()),
Douglas Gregor752a5952011-01-03 22:36:02 +00002177 EllipsisLoc));
Douglas Gregore2e50d332010-12-01 01:36:18 +00002178 }
2179 if (!Bases.empty())
Craig Toppere6337e12015-12-25 00:36:02 +00002180 ToCXX->setBases(Bases.data(), Bases.size());
Douglas Gregore2e50d332010-12-01 01:36:18 +00002181 }
2182
Douglas Gregor2e15c842012-02-01 21:00:38 +00002183 if (shouldForceImportDeclContext(Kind))
Douglas Gregor95d82832012-01-24 18:36:04 +00002184 ImportDeclContext(From, /*ForceImport=*/true);
2185
Douglas Gregore2e50d332010-12-01 01:36:18 +00002186 To->completeDefinition();
Douglas Gregor96303ea2010-12-02 19:33:37 +00002187 return false;
Douglas Gregore2e50d332010-12-01 01:36:18 +00002188}
2189
Larisse Voufo39a1e502013-08-06 01:03:05 +00002190bool ASTNodeImporter::ImportDefinition(VarDecl *From, VarDecl *To,
2191 ImportDefinitionKind Kind) {
Sean Callanan59721b32015-04-28 18:41:46 +00002192 if (To->getAnyInitializer())
Larisse Voufo39a1e502013-08-06 01:03:05 +00002193 return false;
2194
2195 // FIXME: Can we really import any initializer? Alternatively, we could force
2196 // ourselves to import every declaration of a variable and then only use
2197 // getInit() here.
2198 To->setInit(Importer.Import(const_cast<Expr *>(From->getAnyInitializer())));
2199
2200 // FIXME: Other bits to merge?
2201
2202 return false;
2203}
2204
Douglas Gregord451ea92011-07-29 23:31:30 +00002205bool ASTNodeImporter::ImportDefinition(EnumDecl *From, EnumDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +00002206 ImportDefinitionKind Kind) {
2207 if (To->getDefinition() || To->isBeingDefined()) {
2208 if (Kind == IDK_Everything)
2209 ImportDeclContext(From, /*ForceImport=*/true);
Douglas Gregord451ea92011-07-29 23:31:30 +00002210 return false;
Douglas Gregor2e15c842012-02-01 21:00:38 +00002211 }
Douglas Gregord451ea92011-07-29 23:31:30 +00002212
2213 To->startDefinition();
2214
2215 QualType T = Importer.Import(Importer.getFromContext().getTypeDeclType(From));
2216 if (T.isNull())
2217 return true;
2218
2219 QualType ToPromotionType = Importer.Import(From->getPromotionType());
2220 if (ToPromotionType.isNull())
2221 return true;
Douglas Gregor2e15c842012-02-01 21:00:38 +00002222
2223 if (shouldForceImportDeclContext(Kind))
2224 ImportDeclContext(From, /*ForceImport=*/true);
Douglas Gregord451ea92011-07-29 23:31:30 +00002225
2226 // FIXME: we might need to merge the number of positive or negative bits
2227 // if the enumerator lists don't match.
2228 To->completeDefinition(T, ToPromotionType,
2229 From->getNumPositiveBits(),
2230 From->getNumNegativeBits());
2231 return false;
2232}
2233
Douglas Gregora082a492010-11-30 19:14:50 +00002234TemplateParameterList *ASTNodeImporter::ImportTemplateParameterList(
2235 TemplateParameterList *Params) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002236 SmallVector<NamedDecl *, 4> ToParams;
Douglas Gregora082a492010-11-30 19:14:50 +00002237 ToParams.reserve(Params->size());
2238 for (TemplateParameterList::iterator P = Params->begin(),
2239 PEnd = Params->end();
2240 P != PEnd; ++P) {
2241 Decl *To = Importer.Import(*P);
2242 if (!To)
Craig Topper36250ad2014-05-12 05:36:57 +00002243 return nullptr;
2244
Douglas Gregora082a492010-11-30 19:14:50 +00002245 ToParams.push_back(cast<NamedDecl>(To));
2246 }
2247
2248 return TemplateParameterList::Create(Importer.getToContext(),
2249 Importer.Import(Params->getTemplateLoc()),
2250 Importer.Import(Params->getLAngleLoc()),
David Majnemer902f8c62015-12-27 07:16:27 +00002251 ToParams,
Douglas Gregora082a492010-11-30 19:14:50 +00002252 Importer.Import(Params->getRAngleLoc()));
2253}
2254
Douglas Gregore2e50d332010-12-01 01:36:18 +00002255TemplateArgument
2256ASTNodeImporter::ImportTemplateArgument(const TemplateArgument &From) {
2257 switch (From.getKind()) {
2258 case TemplateArgument::Null:
2259 return TemplateArgument();
2260
2261 case TemplateArgument::Type: {
2262 QualType ToType = Importer.Import(From.getAsType());
2263 if (ToType.isNull())
2264 return TemplateArgument();
2265 return TemplateArgument(ToType);
2266 }
2267
2268 case TemplateArgument::Integral: {
2269 QualType ToType = Importer.Import(From.getIntegralType());
2270 if (ToType.isNull())
2271 return TemplateArgument();
Benjamin Kramer6003ad52012-06-07 15:09:51 +00002272 return TemplateArgument(From, ToType);
Douglas Gregore2e50d332010-12-01 01:36:18 +00002273 }
2274
Eli Friedmanb826a002012-09-26 02:36:12 +00002275 case TemplateArgument::Declaration: {
David Blaikie3c7dd6b2014-10-22 19:54:16 +00002276 ValueDecl *To = cast_or_null<ValueDecl>(Importer.Import(From.getAsDecl()));
2277 QualType ToType = Importer.Import(From.getParamTypeForDecl());
2278 if (!To || ToType.isNull())
2279 return TemplateArgument();
2280 return TemplateArgument(To, ToType);
Eli Friedmanb826a002012-09-26 02:36:12 +00002281 }
2282
2283 case TemplateArgument::NullPtr: {
2284 QualType ToType = Importer.Import(From.getNullPtrType());
2285 if (ToType.isNull())
2286 return TemplateArgument();
2287 return TemplateArgument(ToType, /*isNullPtr*/true);
2288 }
2289
Douglas Gregore2e50d332010-12-01 01:36:18 +00002290 case TemplateArgument::Template: {
2291 TemplateName ToTemplate = Importer.Import(From.getAsTemplate());
2292 if (ToTemplate.isNull())
2293 return TemplateArgument();
2294
2295 return TemplateArgument(ToTemplate);
2296 }
Douglas Gregore4ff4b52011-01-05 18:58:31 +00002297
2298 case TemplateArgument::TemplateExpansion: {
2299 TemplateName ToTemplate
2300 = Importer.Import(From.getAsTemplateOrTemplatePattern());
2301 if (ToTemplate.isNull())
2302 return TemplateArgument();
2303
Douglas Gregore1d60df2011-01-14 23:41:42 +00002304 return TemplateArgument(ToTemplate, From.getNumTemplateExpansions());
Douglas Gregore4ff4b52011-01-05 18:58:31 +00002305 }
2306
Douglas Gregore2e50d332010-12-01 01:36:18 +00002307 case TemplateArgument::Expression:
2308 if (Expr *ToExpr = Importer.Import(From.getAsExpr()))
2309 return TemplateArgument(ToExpr);
2310 return TemplateArgument();
2311
2312 case TemplateArgument::Pack: {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002313 SmallVector<TemplateArgument, 2> ToPack;
Douglas Gregore2e50d332010-12-01 01:36:18 +00002314 ToPack.reserve(From.pack_size());
2315 if (ImportTemplateArguments(From.pack_begin(), From.pack_size(), ToPack))
2316 return TemplateArgument();
Benjamin Kramercce63472015-08-05 09:40:22 +00002317
2318 return TemplateArgument(
2319 llvm::makeArrayRef(ToPack).copy(Importer.getToContext()));
Douglas Gregore2e50d332010-12-01 01:36:18 +00002320 }
2321 }
2322
2323 llvm_unreachable("Invalid template argument kind");
Douglas Gregore2e50d332010-12-01 01:36:18 +00002324}
2325
2326bool ASTNodeImporter::ImportTemplateArguments(const TemplateArgument *FromArgs,
2327 unsigned NumFromArgs,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002328 SmallVectorImpl<TemplateArgument> &ToArgs) {
Douglas Gregore2e50d332010-12-01 01:36:18 +00002329 for (unsigned I = 0; I != NumFromArgs; ++I) {
2330 TemplateArgument To = ImportTemplateArgument(FromArgs[I]);
2331 if (To.isNull() && !FromArgs[I].isNull())
2332 return true;
2333
2334 ToArgs.push_back(To);
2335 }
2336
2337 return false;
2338}
2339
Douglas Gregor5c73e912010-02-11 00:48:18 +00002340bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord,
Douglas Gregordd6006f2012-07-17 21:16:27 +00002341 RecordDecl *ToRecord, bool Complain) {
Sean Callananc665c9e2013-10-09 21:45:11 +00002342 // Eliminate a potential failure point where we attempt to re-import
2343 // something we're trying to import while completing ToRecord.
2344 Decl *ToOrigin = Importer.GetOriginalDecl(ToRecord);
2345 if (ToOrigin) {
2346 RecordDecl *ToOriginRecord = dyn_cast<RecordDecl>(ToOrigin);
2347 if (ToOriginRecord)
2348 ToRecord = ToOriginRecord;
2349 }
2350
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002351 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
Sean Callananc665c9e2013-10-09 21:45:11 +00002352 ToRecord->getASTContext(),
Douglas Gregordd6006f2012-07-17 21:16:27 +00002353 Importer.getNonEquivalentDecls(),
2354 false, Complain);
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002355 return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002356}
2357
Larisse Voufo39a1e502013-08-06 01:03:05 +00002358bool ASTNodeImporter::IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar,
2359 bool Complain) {
2360 StructuralEquivalenceContext Ctx(
2361 Importer.getFromContext(), Importer.getToContext(),
2362 Importer.getNonEquivalentDecls(), false, Complain);
2363 return Ctx.IsStructurallyEquivalent(FromVar, ToVar);
2364}
2365
Douglas Gregor98c10182010-02-12 22:17:39 +00002366bool ASTNodeImporter::IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToEnum) {
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002367 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
Douglas Gregor3996e242010-02-15 22:01:00 +00002368 Importer.getToContext(),
Douglas Gregorb4964f72010-02-15 23:54:17 +00002369 Importer.getNonEquivalentDecls());
Benjamin Kramer26d19c52010-02-18 13:02:13 +00002370 return Ctx.IsStructurallyEquivalent(FromEnum, ToEnum);
Douglas Gregor98c10182010-02-12 22:17:39 +00002371}
2372
Douglas Gregor91155082012-11-14 22:29:20 +00002373bool ASTNodeImporter::IsStructuralMatch(EnumConstantDecl *FromEC,
2374 EnumConstantDecl *ToEC)
2375{
2376 const llvm::APSInt &FromVal = FromEC->getInitVal();
2377 const llvm::APSInt &ToVal = ToEC->getInitVal();
2378
2379 return FromVal.isSigned() == ToVal.isSigned() &&
2380 FromVal.getBitWidth() == ToVal.getBitWidth() &&
2381 FromVal == ToVal;
2382}
2383
2384bool ASTNodeImporter::IsStructuralMatch(ClassTemplateDecl *From,
Douglas Gregora082a492010-11-30 19:14:50 +00002385 ClassTemplateDecl *To) {
2386 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2387 Importer.getToContext(),
2388 Importer.getNonEquivalentDecls());
2389 return Ctx.IsStructurallyEquivalent(From, To);
2390}
2391
Larisse Voufo39a1e502013-08-06 01:03:05 +00002392bool ASTNodeImporter::IsStructuralMatch(VarTemplateDecl *From,
2393 VarTemplateDecl *To) {
2394 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2395 Importer.getToContext(),
2396 Importer.getNonEquivalentDecls());
2397 return Ctx.IsStructurallyEquivalent(From, To);
2398}
2399
Douglas Gregore4c83e42010-02-09 22:48:33 +00002400Decl *ASTNodeImporter::VisitDecl(Decl *D) {
Douglas Gregor811663e2010-02-10 00:15:17 +00002401 Importer.FromDiag(D->getLocation(), diag::err_unsupported_ast_node)
Douglas Gregore4c83e42010-02-09 22:48:33 +00002402 << D->getDeclKindName();
Craig Topper36250ad2014-05-12 05:36:57 +00002403 return nullptr;
Douglas Gregore4c83e42010-02-09 22:48:33 +00002404}
2405
Sean Callanan65198272011-11-17 23:20:56 +00002406Decl *ASTNodeImporter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
2407 TranslationUnitDecl *ToD =
2408 Importer.getToContext().getTranslationUnitDecl();
2409
2410 Importer.Imported(D, ToD);
2411
2412 return ToD;
2413}
2414
Argyrios Kyrtzidis544ea712016-02-18 23:08:36 +00002415Decl *ASTNodeImporter::VisitAccessSpecDecl(AccessSpecDecl *D) {
2416
2417 SourceLocation Loc = Importer.Import(D->getLocation());
2418 SourceLocation ColonLoc = Importer.Import(D->getColonLoc());
2419
2420 // Import the context of this declaration.
2421 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
2422 if (!DC)
2423 return nullptr;
2424
2425 AccessSpecDecl *accessSpecDecl
2426 = AccessSpecDecl::Create(Importer.getToContext(), D->getAccess(),
2427 DC, Loc, ColonLoc);
2428
2429 if (!accessSpecDecl)
2430 return nullptr;
2431
2432 // Lexical DeclContext and Semantic DeclContext
2433 // is always the same for the accessSpec.
2434 accessSpecDecl->setLexicalDeclContext(DC);
2435 DC->addDeclInternal(accessSpecDecl);
2436
2437 return accessSpecDecl;
2438}
2439
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002440Decl *ASTNodeImporter::VisitNamespaceDecl(NamespaceDecl *D) {
2441 // Import the major distinguishing characteristics of this namespace.
2442 DeclContext *DC, *LexicalDC;
2443 DeclarationName Name;
2444 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002445 NamedDecl *ToD;
2446 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002447 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002448 if (ToD)
2449 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002450
2451 NamespaceDecl *MergeWithNamespace = nullptr;
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002452 if (!Name) {
2453 // This is an anonymous namespace. Adopt an existing anonymous
2454 // namespace if we can.
2455 // FIXME: Not testable.
2456 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2457 MergeWithNamespace = TU->getAnonymousNamespace();
2458 else
2459 MergeWithNamespace = cast<NamespaceDecl>(DC)->getAnonymousNamespace();
2460 } else {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002461 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002462 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002463 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002464 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2465 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Namespace))
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002466 continue;
2467
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002468 if (NamespaceDecl *FoundNS = dyn_cast<NamespaceDecl>(FoundDecls[I])) {
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002469 MergeWithNamespace = FoundNS;
2470 ConflictingDecls.clear();
2471 break;
2472 }
2473
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002474 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002475 }
2476
2477 if (!ConflictingDecls.empty()) {
John McCalle87beb22010-04-23 18:46:30 +00002478 Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Namespace,
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002479 ConflictingDecls.data(),
2480 ConflictingDecls.size());
2481 }
2482 }
2483
2484 // Create the "to" namespace, if needed.
2485 NamespaceDecl *ToNamespace = MergeWithNamespace;
2486 if (!ToNamespace) {
Abramo Bagnarab5545be2011-03-08 12:38:20 +00002487 ToNamespace = NamespaceDecl::Create(Importer.getToContext(), DC,
Douglas Gregore57e7522012-01-07 09:11:48 +00002488 D->isInline(),
Abramo Bagnarab5545be2011-03-08 12:38:20 +00002489 Importer.Import(D->getLocStart()),
Douglas Gregore57e7522012-01-07 09:11:48 +00002490 Loc, Name.getAsIdentifierInfo(),
Craig Topper36250ad2014-05-12 05:36:57 +00002491 /*PrevDecl=*/nullptr);
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002492 ToNamespace->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00002493 LexicalDC->addDeclInternal(ToNamespace);
Douglas Gregorf18a2c72010-02-21 18:26:36 +00002494
2495 // If this is an anonymous namespace, register it as the anonymous
2496 // namespace within its context.
2497 if (!Name) {
2498 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2499 TU->setAnonymousNamespace(ToNamespace);
2500 else
2501 cast<NamespaceDecl>(DC)->setAnonymousNamespace(ToNamespace);
2502 }
2503 }
2504 Importer.Imported(D, ToNamespace);
2505
2506 ImportDeclContext(D);
2507
2508 return ToNamespace;
2509}
2510
Richard Smithdda56e42011-04-15 14:24:37 +00002511Decl *ASTNodeImporter::VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias) {
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002512 // Import the major distinguishing characteristics of this typedef.
2513 DeclContext *DC, *LexicalDC;
2514 DeclarationName Name;
2515 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002516 NamedDecl *ToD;
2517 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002518 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002519 if (ToD)
2520 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002521
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002522 // If this typedef is not in block scope, determine whether we've
2523 // seen a typedef with the same name (that we can merge with) or any
2524 // other entity by that name (which name lookup could conflict with).
2525 if (!DC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002526 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002527 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002528 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002529 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002530 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2531 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002532 continue;
Richard Smithdda56e42011-04-15 14:24:37 +00002533 if (TypedefNameDecl *FoundTypedef =
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002534 dyn_cast<TypedefNameDecl>(FoundDecls[I])) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00002535 if (Importer.IsStructurallyEquivalent(D->getUnderlyingType(),
2536 FoundTypedef->getUnderlyingType()))
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002537 return Importer.Imported(D, FoundTypedef);
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002538 }
2539
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002540 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002541 }
2542
2543 if (!ConflictingDecls.empty()) {
2544 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2545 ConflictingDecls.data(),
2546 ConflictingDecls.size());
2547 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00002548 return nullptr;
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002549 }
2550 }
2551
Douglas Gregorb4964f72010-02-15 23:54:17 +00002552 // Import the underlying type of this typedef;
2553 QualType T = Importer.Import(D->getUnderlyingType());
2554 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002555 return nullptr;
2556
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002557 // Create the new typedef node.
2558 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Abramo Bagnarab3185b02011-03-06 15:48:19 +00002559 SourceLocation StartL = Importer.Import(D->getLocStart());
Richard Smithdda56e42011-04-15 14:24:37 +00002560 TypedefNameDecl *ToTypedef;
2561 if (IsAlias)
Douglas Gregor03d1ed32011-10-14 21:54:42 +00002562 ToTypedef = TypeAliasDecl::Create(Importer.getToContext(), DC,
2563 StartL, Loc,
2564 Name.getAsIdentifierInfo(),
2565 TInfo);
2566 else
Richard Smithdda56e42011-04-15 14:24:37 +00002567 ToTypedef = TypedefDecl::Create(Importer.getToContext(), DC,
2568 StartL, Loc,
2569 Name.getAsIdentifierInfo(),
2570 TInfo);
Douglas Gregor03d1ed32011-10-14 21:54:42 +00002571
Douglas Gregordd483172010-02-22 17:42:47 +00002572 ToTypedef->setAccess(D->getAccess());
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002573 ToTypedef->setLexicalDeclContext(LexicalDC);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002574 Importer.Imported(D, ToTypedef);
Sean Callanan95e74be2011-10-21 02:57:43 +00002575 LexicalDC->addDeclInternal(ToTypedef);
Douglas Gregorb4964f72010-02-15 23:54:17 +00002576
Douglas Gregor5fa74c32010-02-10 21:10:29 +00002577 return ToTypedef;
2578}
2579
Richard Smithdda56e42011-04-15 14:24:37 +00002580Decl *ASTNodeImporter::VisitTypedefDecl(TypedefDecl *D) {
2581 return VisitTypedefNameDecl(D, /*IsAlias=*/false);
2582}
2583
2584Decl *ASTNodeImporter::VisitTypeAliasDecl(TypeAliasDecl *D) {
2585 return VisitTypedefNameDecl(D, /*IsAlias=*/true);
2586}
2587
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00002588Decl *ASTNodeImporter::VisitLabelDecl(LabelDecl *D) {
2589 // Import the major distinguishing characteristics of this label.
2590 DeclContext *DC, *LexicalDC;
2591 DeclarationName Name;
2592 SourceLocation Loc;
2593 NamedDecl *ToD;
2594 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2595 return nullptr;
2596 if (ToD)
2597 return ToD;
2598
2599 assert(LexicalDC->isFunctionOrMethod());
2600
2601 LabelDecl *ToLabel = D->isGnuLocal()
2602 ? LabelDecl::Create(Importer.getToContext(),
2603 DC, Importer.Import(D->getLocation()),
2604 Name.getAsIdentifierInfo(),
2605 Importer.Import(D->getLocStart()))
2606 : LabelDecl::Create(Importer.getToContext(),
2607 DC, Importer.Import(D->getLocation()),
2608 Name.getAsIdentifierInfo());
2609 Importer.Imported(D, ToLabel);
2610
2611 LabelStmt *Label = cast_or_null<LabelStmt>(Importer.Import(D->getStmt()));
2612 if (!Label)
2613 return nullptr;
2614
2615 ToLabel->setStmt(Label);
2616 ToLabel->setLexicalDeclContext(LexicalDC);
2617 LexicalDC->addDeclInternal(ToLabel);
2618 return ToLabel;
2619}
2620
Douglas Gregor98c10182010-02-12 22:17:39 +00002621Decl *ASTNodeImporter::VisitEnumDecl(EnumDecl *D) {
2622 // Import the major distinguishing characteristics of this enum.
2623 DeclContext *DC, *LexicalDC;
2624 DeclarationName Name;
2625 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002626 NamedDecl *ToD;
2627 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002628 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002629 if (ToD)
2630 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002631
Douglas Gregor98c10182010-02-12 22:17:39 +00002632 // Figure out what enum name we're looking for.
2633 unsigned IDNS = Decl::IDNS_Tag;
2634 DeclarationName SearchName = Name;
Richard Smithdda56e42011-04-15 14:24:37 +00002635 if (!SearchName && D->getTypedefNameForAnonDecl()) {
2636 SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName());
Douglas Gregor98c10182010-02-12 22:17:39 +00002637 IDNS = Decl::IDNS_Ordinary;
David Blaikiebbafb8a2012-03-11 07:00:24 +00002638 } else if (Importer.getToContext().getLangOpts().CPlusPlus)
Douglas Gregor98c10182010-02-12 22:17:39 +00002639 IDNS |= Decl::IDNS_Ordinary;
2640
2641 // We may already have an enum of the same name; try to find and match it.
2642 if (!DC->isFunctionOrMethod() && SearchName) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002643 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002644 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002645 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002646 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2647 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor98c10182010-02-12 22:17:39 +00002648 continue;
2649
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002650 Decl *Found = FoundDecls[I];
Richard Smithdda56e42011-04-15 14:24:37 +00002651 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
Douglas Gregor98c10182010-02-12 22:17:39 +00002652 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
2653 Found = Tag->getDecl();
2654 }
2655
2656 if (EnumDecl *FoundEnum = dyn_cast<EnumDecl>(Found)) {
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002657 if (IsStructuralMatch(D, FoundEnum))
2658 return Importer.Imported(D, FoundEnum);
Douglas Gregor98c10182010-02-12 22:17:39 +00002659 }
2660
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002661 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor98c10182010-02-12 22:17:39 +00002662 }
2663
2664 if (!ConflictingDecls.empty()) {
2665 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2666 ConflictingDecls.data(),
2667 ConflictingDecls.size());
2668 }
2669 }
2670
2671 // Create the enum declaration.
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002672 EnumDecl *D2 = EnumDecl::Create(Importer.getToContext(), DC,
2673 Importer.Import(D->getLocStart()),
Craig Topper36250ad2014-05-12 05:36:57 +00002674 Loc, Name.getAsIdentifierInfo(), nullptr,
Abramo Bagnara0e05e242010-12-03 18:54:17 +00002675 D->isScoped(), D->isScopedUsingClassTag(),
2676 D->isFixed());
John McCall3e11ebe2010-03-15 10:12:16 +00002677 // Import the qualifier, if any.
Douglas Gregor14454802011-02-25 02:25:35 +00002678 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregordd483172010-02-22 17:42:47 +00002679 D2->setAccess(D->getAccess());
Douglas Gregor3996e242010-02-15 22:01:00 +00002680 D2->setLexicalDeclContext(LexicalDC);
2681 Importer.Imported(D, D2);
Sean Callanan95e74be2011-10-21 02:57:43 +00002682 LexicalDC->addDeclInternal(D2);
Douglas Gregor98c10182010-02-12 22:17:39 +00002683
2684 // Import the integer type.
2685 QualType ToIntegerType = Importer.Import(D->getIntegerType());
2686 if (ToIntegerType.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002687 return nullptr;
Douglas Gregor3996e242010-02-15 22:01:00 +00002688 D2->setIntegerType(ToIntegerType);
Douglas Gregor98c10182010-02-12 22:17:39 +00002689
2690 // Import the definition
John McCallf937c022011-10-07 06:10:15 +00002691 if (D->isCompleteDefinition() && ImportDefinition(D, D2))
Craig Topper36250ad2014-05-12 05:36:57 +00002692 return nullptr;
Douglas Gregor98c10182010-02-12 22:17:39 +00002693
Douglas Gregor3996e242010-02-15 22:01:00 +00002694 return D2;
Douglas Gregor98c10182010-02-12 22:17:39 +00002695}
2696
Douglas Gregor5c73e912010-02-11 00:48:18 +00002697Decl *ASTNodeImporter::VisitRecordDecl(RecordDecl *D) {
2698 // If this record has a definition in the translation unit we're coming from,
2699 // but this particular declaration is not that definition, import the
2700 // definition and map to that.
Douglas Gregor0a5a2212010-02-11 01:04:33 +00002701 TagDecl *Definition = D->getDefinition();
Douglas Gregor5c73e912010-02-11 00:48:18 +00002702 if (Definition && Definition != D) {
2703 Decl *ImportedDef = Importer.Import(Definition);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002704 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00002705 return nullptr;
2706
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002707 return Importer.Imported(D, ImportedDef);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002708 }
2709
2710 // Import the major distinguishing characteristics of this record.
2711 DeclContext *DC, *LexicalDC;
2712 DeclarationName Name;
2713 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002714 NamedDecl *ToD;
2715 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002716 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002717 if (ToD)
2718 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00002719
Douglas Gregor5c73e912010-02-11 00:48:18 +00002720 // Figure out what structure name we're looking for.
2721 unsigned IDNS = Decl::IDNS_Tag;
2722 DeclarationName SearchName = Name;
Richard Smithdda56e42011-04-15 14:24:37 +00002723 if (!SearchName && D->getTypedefNameForAnonDecl()) {
2724 SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName());
Douglas Gregor5c73e912010-02-11 00:48:18 +00002725 IDNS = Decl::IDNS_Ordinary;
David Blaikiebbafb8a2012-03-11 07:00:24 +00002726 } else if (Importer.getToContext().getLangOpts().CPlusPlus)
Douglas Gregor5c73e912010-02-11 00:48:18 +00002727 IDNS |= Decl::IDNS_Ordinary;
2728
2729 // We may already have a record of the same name; try to find and match it.
Craig Topper36250ad2014-05-12 05:36:57 +00002730 RecordDecl *AdoptDecl = nullptr;
Douglas Gregordd6006f2012-07-17 21:16:27 +00002731 if (!DC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002732 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002733 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002734 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002735 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2736 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor5c73e912010-02-11 00:48:18 +00002737 continue;
2738
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002739 Decl *Found = FoundDecls[I];
Richard Smithdda56e42011-04-15 14:24:37 +00002740 if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
Douglas Gregor5c73e912010-02-11 00:48:18 +00002741 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
2742 Found = Tag->getDecl();
2743 }
2744
2745 if (RecordDecl *FoundRecord = dyn_cast<RecordDecl>(Found)) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002746 if (D->isAnonymousStructOrUnion() &&
2747 FoundRecord->isAnonymousStructOrUnion()) {
2748 // If both anonymous structs/unions are in a record context, make sure
2749 // they occur in the same location in the context records.
David Blaikie05785d12013-02-20 22:23:23 +00002750 if (Optional<unsigned> Index1
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002751 = findAnonymousStructOrUnionIndex(D)) {
David Blaikie05785d12013-02-20 22:23:23 +00002752 if (Optional<unsigned> Index2 =
2753 findAnonymousStructOrUnionIndex(FoundRecord)) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00002754 if (*Index1 != *Index2)
2755 continue;
2756 }
2757 }
2758 }
2759
Douglas Gregor25791052010-02-12 00:09:27 +00002760 if (RecordDecl *FoundDef = FoundRecord->getDefinition()) {
Douglas Gregordd6006f2012-07-17 21:16:27 +00002761 if ((SearchName && !D->isCompleteDefinition())
2762 || (D->isCompleteDefinition() &&
2763 D->isAnonymousStructOrUnion()
2764 == FoundDef->isAnonymousStructOrUnion() &&
2765 IsStructuralMatch(D, FoundDef))) {
Douglas Gregor25791052010-02-12 00:09:27 +00002766 // The record types structurally match, or the "from" translation
2767 // unit only had a forward declaration anyway; call it the same
2768 // function.
2769 // FIXME: For C++, we should also merge methods here.
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002770 return Importer.Imported(D, FoundDef);
Douglas Gregor25791052010-02-12 00:09:27 +00002771 }
Douglas Gregordd6006f2012-07-17 21:16:27 +00002772 } else if (!D->isCompleteDefinition()) {
Douglas Gregor25791052010-02-12 00:09:27 +00002773 // We have a forward declaration of this type, so adopt that forward
2774 // declaration rather than building a new one.
Sean Callananc94711c2014-03-04 18:11:50 +00002775
2776 // If one or both can be completed from external storage then try one
2777 // last time to complete and compare them before doing this.
2778
2779 if (FoundRecord->hasExternalLexicalStorage() &&
2780 !FoundRecord->isCompleteDefinition())
2781 FoundRecord->getASTContext().getExternalSource()->CompleteType(FoundRecord);
2782 if (D->hasExternalLexicalStorage())
2783 D->getASTContext().getExternalSource()->CompleteType(D);
2784
2785 if (FoundRecord->isCompleteDefinition() &&
2786 D->isCompleteDefinition() &&
2787 !IsStructuralMatch(D, FoundRecord))
2788 continue;
2789
Douglas Gregor25791052010-02-12 00:09:27 +00002790 AdoptDecl = FoundRecord;
2791 continue;
Douglas Gregordd6006f2012-07-17 21:16:27 +00002792 } else if (!SearchName) {
2793 continue;
2794 }
Douglas Gregor5c73e912010-02-11 00:48:18 +00002795 }
2796
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002797 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002798 }
2799
Douglas Gregordd6006f2012-07-17 21:16:27 +00002800 if (!ConflictingDecls.empty() && SearchName) {
Douglas Gregor5c73e912010-02-11 00:48:18 +00002801 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2802 ConflictingDecls.data(),
2803 ConflictingDecls.size());
2804 }
2805 }
2806
2807 // Create the record declaration.
Douglas Gregor3996e242010-02-15 22:01:00 +00002808 RecordDecl *D2 = AdoptDecl;
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002809 SourceLocation StartLoc = Importer.Import(D->getLocStart());
Douglas Gregor3996e242010-02-15 22:01:00 +00002810 if (!D2) {
Sean Callanan8bca9962016-03-28 21:43:01 +00002811 CXXRecordDecl *D2CXX = nullptr;
2812 if (CXXRecordDecl *DCXX = llvm::dyn_cast<CXXRecordDecl>(D)) {
2813 if (DCXX->isLambda()) {
2814 TypeSourceInfo *TInfo = Importer.Import(DCXX->getLambdaTypeInfo());
2815 D2CXX = CXXRecordDecl::CreateLambda(Importer.getToContext(),
2816 DC, TInfo, Loc,
2817 DCXX->isDependentLambda(),
2818 DCXX->isGenericLambda(),
2819 DCXX->getLambdaCaptureDefault());
2820 Decl *CDecl = Importer.Import(DCXX->getLambdaContextDecl());
2821 if (DCXX->getLambdaContextDecl() && !CDecl)
2822 return nullptr;
Sean Callanan041cceb2016-05-14 05:43:57 +00002823 D2CXX->setLambdaMangling(DCXX->getLambdaManglingNumber(), CDecl);
2824 } else if (DCXX->isInjectedClassName()) {
2825 // We have to be careful to do a similar dance to the one in
2826 // Sema::ActOnStartCXXMemberDeclarations
2827 CXXRecordDecl *const PrevDecl = nullptr;
2828 const bool DelayTypeCreation = true;
2829 D2CXX = CXXRecordDecl::Create(
2830 Importer.getToContext(), D->getTagKind(), DC, StartLoc, Loc,
2831 Name.getAsIdentifierInfo(), PrevDecl, DelayTypeCreation);
2832 Importer.getToContext().getTypeDeclType(
2833 D2CXX, llvm::dyn_cast<CXXRecordDecl>(DC));
Sean Callanan8bca9962016-03-28 21:43:01 +00002834 } else {
2835 D2CXX = CXXRecordDecl::Create(Importer.getToContext(),
2836 D->getTagKind(),
2837 DC, StartLoc, Loc,
2838 Name.getAsIdentifierInfo());
2839 }
Douglas Gregor3996e242010-02-15 22:01:00 +00002840 D2 = D2CXX;
Douglas Gregordd483172010-02-22 17:42:47 +00002841 D2->setAccess(D->getAccess());
Douglas Gregor25791052010-02-12 00:09:27 +00002842 } else {
Douglas Gregor3996e242010-02-15 22:01:00 +00002843 D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(),
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002844 DC, StartLoc, Loc, Name.getAsIdentifierInfo());
Douglas Gregor5c73e912010-02-11 00:48:18 +00002845 }
Douglas Gregor14454802011-02-25 02:25:35 +00002846
2847 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregor3996e242010-02-15 22:01:00 +00002848 D2->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00002849 LexicalDC->addDeclInternal(D2);
Douglas Gregordd6006f2012-07-17 21:16:27 +00002850 if (D->isAnonymousStructOrUnion())
2851 D2->setAnonymousStructOrUnion(true);
Douglas Gregor5c73e912010-02-11 00:48:18 +00002852 }
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002853
Douglas Gregor3996e242010-02-15 22:01:00 +00002854 Importer.Imported(D, D2);
Douglas Gregor25791052010-02-12 00:09:27 +00002855
Douglas Gregor95d82832012-01-24 18:36:04 +00002856 if (D->isCompleteDefinition() && ImportDefinition(D, D2, IDK_Default))
Craig Topper36250ad2014-05-12 05:36:57 +00002857 return nullptr;
2858
Douglas Gregor3996e242010-02-15 22:01:00 +00002859 return D2;
Douglas Gregor5c73e912010-02-11 00:48:18 +00002860}
2861
Douglas Gregor98c10182010-02-12 22:17:39 +00002862Decl *ASTNodeImporter::VisitEnumConstantDecl(EnumConstantDecl *D) {
2863 // Import the major distinguishing characteristics of this enumerator.
2864 DeclContext *DC, *LexicalDC;
2865 DeclarationName Name;
2866 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002867 NamedDecl *ToD;
2868 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002869 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002870 if (ToD)
2871 return ToD;
Douglas Gregorb4964f72010-02-15 23:54:17 +00002872
2873 QualType T = Importer.Import(D->getType());
2874 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00002875 return nullptr;
Douglas Gregorb4964f72010-02-15 23:54:17 +00002876
Douglas Gregor98c10182010-02-12 22:17:39 +00002877 // Determine whether there are any other declarations with the same name and
2878 // in the same context.
2879 if (!LexicalDC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002880 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregor98c10182010-02-12 22:17:39 +00002881 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002882 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002883 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002884 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2885 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor98c10182010-02-12 22:17:39 +00002886 continue;
Douglas Gregor91155082012-11-14 22:29:20 +00002887
2888 if (EnumConstantDecl *FoundEnumConstant
2889 = dyn_cast<EnumConstantDecl>(FoundDecls[I])) {
2890 if (IsStructuralMatch(D, FoundEnumConstant))
2891 return Importer.Imported(D, FoundEnumConstant);
2892 }
2893
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002894 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor98c10182010-02-12 22:17:39 +00002895 }
2896
2897 if (!ConflictingDecls.empty()) {
2898 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2899 ConflictingDecls.data(),
2900 ConflictingDecls.size());
2901 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00002902 return nullptr;
Douglas Gregor98c10182010-02-12 22:17:39 +00002903 }
2904 }
2905
2906 Expr *Init = Importer.Import(D->getInitExpr());
2907 if (D->getInitExpr() && !Init)
Craig Topper36250ad2014-05-12 05:36:57 +00002908 return nullptr;
2909
Douglas Gregor98c10182010-02-12 22:17:39 +00002910 EnumConstantDecl *ToEnumerator
2911 = EnumConstantDecl::Create(Importer.getToContext(), cast<EnumDecl>(DC), Loc,
2912 Name.getAsIdentifierInfo(), T,
2913 Init, D->getInitVal());
Douglas Gregordd483172010-02-22 17:42:47 +00002914 ToEnumerator->setAccess(D->getAccess());
Douglas Gregor98c10182010-02-12 22:17:39 +00002915 ToEnumerator->setLexicalDeclContext(LexicalDC);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002916 Importer.Imported(D, ToEnumerator);
Sean Callanan95e74be2011-10-21 02:57:43 +00002917 LexicalDC->addDeclInternal(ToEnumerator);
Douglas Gregor98c10182010-02-12 22:17:39 +00002918 return ToEnumerator;
2919}
Douglas Gregor5c73e912010-02-11 00:48:18 +00002920
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002921Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) {
2922 // Import the major distinguishing characteristics of this function.
2923 DeclContext *DC, *LexicalDC;
2924 DeclarationName Name;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002925 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00002926 NamedDecl *ToD;
2927 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00002928 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00002929 if (ToD)
2930 return ToD;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002931
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002932 // Try to find a function in our own ("to") context with the same name, same
2933 // type, and in the same context as the function we're importing.
2934 if (!LexicalDC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002935 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002936 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002937 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00002938 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002939 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2940 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002941 continue;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00002942
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002943 if (FunctionDecl *FoundFunction = dyn_cast<FunctionDecl>(FoundDecls[I])) {
Rafael Espindola3ae00052013-05-13 00:12:11 +00002944 if (FoundFunction->hasExternalFormalLinkage() &&
2945 D->hasExternalFormalLinkage()) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00002946 if (Importer.IsStructurallyEquivalent(D->getType(),
2947 FoundFunction->getType())) {
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002948 // FIXME: Actually try to merge the body and other attributes.
Douglas Gregor8cdbe642010-02-12 23:44:20 +00002949 return Importer.Imported(D, FoundFunction);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002950 }
2951
2952 // FIXME: Check for overloading more carefully, e.g., by boosting
2953 // Sema::IsOverload out to the AST library.
2954
2955 // Function overloading is okay in C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002956 if (Importer.getToContext().getLangOpts().CPlusPlus)
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002957 continue;
2958
2959 // Complain about inconsistent function types.
2960 Importer.ToDiag(Loc, diag::err_odr_function_type_inconsistent)
Douglas Gregorb4964f72010-02-15 23:54:17 +00002961 << Name << D->getType() << FoundFunction->getType();
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002962 Importer.ToDiag(FoundFunction->getLocation(),
2963 diag::note_odr_value_here)
2964 << FoundFunction->getType();
2965 }
2966 }
2967
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00002968 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002969 }
2970
2971 if (!ConflictingDecls.empty()) {
2972 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2973 ConflictingDecls.data(),
2974 ConflictingDecls.size());
2975 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00002976 return nullptr;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00002977 }
Douglas Gregor62d311f2010-02-09 19:21:46 +00002978 }
Douglas Gregorb4964f72010-02-15 23:54:17 +00002979
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002980 DeclarationNameInfo NameInfo(Name, Loc);
2981 // Import additional name location/type info.
2982 ImportDeclarationNameLoc(D->getNameInfo(), NameInfo);
2983
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002984 QualType FromTy = D->getType();
2985 bool usedDifferentExceptionSpec = false;
2986
2987 if (const FunctionProtoType *
2988 FromFPT = D->getType()->getAs<FunctionProtoType>()) {
2989 FunctionProtoType::ExtProtoInfo FromEPI = FromFPT->getExtProtoInfo();
2990 // FunctionProtoType::ExtProtoInfo's ExceptionSpecDecl can point to the
2991 // FunctionDecl that we are importing the FunctionProtoType for.
2992 // To avoid an infinite recursion when importing, create the FunctionDecl
2993 // with a simplified function type and update it afterwards.
Richard Smith8acb4282014-07-31 21:57:55 +00002994 if (FromEPI.ExceptionSpec.SourceDecl ||
2995 FromEPI.ExceptionSpec.SourceTemplate ||
2996 FromEPI.ExceptionSpec.NoexceptExpr) {
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00002997 FunctionProtoType::ExtProtoInfo DefaultEPI;
2998 FromTy = Importer.getFromContext().getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00002999 FromFPT->getReturnType(), FromFPT->getParamTypes(), DefaultEPI);
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00003000 usedDifferentExceptionSpec = true;
3001 }
3002 }
3003
Douglas Gregorb4964f72010-02-15 23:54:17 +00003004 // Import the type.
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00003005 QualType T = Importer.Import(FromTy);
Douglas Gregorb4964f72010-02-15 23:54:17 +00003006 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003007 return nullptr;
3008
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003009 // Import the function parameters.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003010 SmallVector<ParmVarDecl *, 8> Parameters;
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +00003011 for (auto P : D->params()) {
3012 ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(P));
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003013 if (!ToP)
Craig Topper36250ad2014-05-12 05:36:57 +00003014 return nullptr;
3015
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003016 Parameters.push_back(ToP);
3017 }
3018
3019 // Create the imported function.
3020 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Craig Topper36250ad2014-05-12 05:36:57 +00003021 FunctionDecl *ToFunction = nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003022 SourceLocation InnerLocStart = Importer.Import(D->getInnerLocStart());
Douglas Gregor00eace12010-02-21 18:29:16 +00003023 if (CXXConstructorDecl *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) {
3024 ToFunction = CXXConstructorDecl::Create(Importer.getToContext(),
3025 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00003026 InnerLocStart,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003027 NameInfo, T, TInfo,
Douglas Gregor00eace12010-02-21 18:29:16 +00003028 FromConstructor->isExplicit(),
3029 D->isInlineSpecified(),
Richard Smitha77a0a62011-08-15 21:04:07 +00003030 D->isImplicit(),
3031 D->isConstexpr());
Sean Callanan55d486d2016-05-14 05:20:31 +00003032 if (unsigned NumInitializers = FromConstructor->getNumCtorInitializers()) {
3033 SmallVector<CXXCtorInitializer *, 4> CtorInitializers;
3034 for (CXXCtorInitializer *I : FromConstructor->inits()) {
3035 CXXCtorInitializer *ToI =
3036 cast_or_null<CXXCtorInitializer>(Importer.Import(I));
3037 if (!ToI && I)
3038 return nullptr;
3039 CtorInitializers.push_back(ToI);
3040 }
3041 CXXCtorInitializer **Memory =
3042 new (Importer.getToContext()) CXXCtorInitializer *[NumInitializers];
3043 std::copy(CtorInitializers.begin(), CtorInitializers.end(), Memory);
3044 CXXConstructorDecl *ToCtor = llvm::cast<CXXConstructorDecl>(ToFunction);
3045 ToCtor->setCtorInitializers(Memory);
3046 ToCtor->setNumCtorInitializers(NumInitializers);
3047 }
Douglas Gregor00eace12010-02-21 18:29:16 +00003048 } else if (isa<CXXDestructorDecl>(D)) {
3049 ToFunction = CXXDestructorDecl::Create(Importer.getToContext(),
3050 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00003051 InnerLocStart,
Craig Silversteinaf8808d2010-10-21 00:44:50 +00003052 NameInfo, T, TInfo,
Douglas Gregor00eace12010-02-21 18:29:16 +00003053 D->isInlineSpecified(),
3054 D->isImplicit());
3055 } else if (CXXConversionDecl *FromConversion
3056 = dyn_cast<CXXConversionDecl>(D)) {
3057 ToFunction = CXXConversionDecl::Create(Importer.getToContext(),
3058 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00003059 InnerLocStart,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003060 NameInfo, T, TInfo,
Douglas Gregor00eace12010-02-21 18:29:16 +00003061 D->isInlineSpecified(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00003062 FromConversion->isExplicit(),
Richard Smitha77a0a62011-08-15 21:04:07 +00003063 D->isConstexpr(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00003064 Importer.Import(D->getLocEnd()));
Douglas Gregora50ad132010-11-29 16:04:58 +00003065 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
3066 ToFunction = CXXMethodDecl::Create(Importer.getToContext(),
3067 cast<CXXRecordDecl>(DC),
Sean Callanan59721b32015-04-28 18:41:46 +00003068 InnerLocStart,
Douglas Gregora50ad132010-11-29 16:04:58 +00003069 NameInfo, T, TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003070 Method->getStorageClass(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00003071 Method->isInlineSpecified(),
Richard Smitha77a0a62011-08-15 21:04:07 +00003072 D->isConstexpr(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00003073 Importer.Import(D->getLocEnd()));
Douglas Gregor00eace12010-02-21 18:29:16 +00003074 } else {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003075 ToFunction = FunctionDecl::Create(Importer.getToContext(), DC,
Sean Callanan59721b32015-04-28 18:41:46 +00003076 InnerLocStart,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00003077 NameInfo, T, TInfo, D->getStorageClass(),
Douglas Gregor00eace12010-02-21 18:29:16 +00003078 D->isInlineSpecified(),
Richard Smitha77a0a62011-08-15 21:04:07 +00003079 D->hasWrittenPrototype(),
3080 D->isConstexpr());
Douglas Gregor00eace12010-02-21 18:29:16 +00003081 }
John McCall3e11ebe2010-03-15 10:12:16 +00003082
3083 // Import the qualifier, if any.
Douglas Gregor14454802011-02-25 02:25:35 +00003084 ToFunction->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregordd483172010-02-22 17:42:47 +00003085 ToFunction->setAccess(D->getAccess());
Douglas Gregor43f54792010-02-17 02:12:47 +00003086 ToFunction->setLexicalDeclContext(LexicalDC);
John McCall08432c82011-01-27 02:37:01 +00003087 ToFunction->setVirtualAsWritten(D->isVirtualAsWritten());
3088 ToFunction->setTrivial(D->isTrivial());
3089 ToFunction->setPure(D->isPure());
Douglas Gregor43f54792010-02-17 02:12:47 +00003090 Importer.Imported(D, ToFunction);
Douglas Gregor62d311f2010-02-09 19:21:46 +00003091
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003092 // Set the parameters.
3093 for (unsigned I = 0, N = Parameters.size(); I != N; ++I) {
Douglas Gregor43f54792010-02-17 02:12:47 +00003094 Parameters[I]->setOwningFunction(ToFunction);
Sean Callanan95e74be2011-10-21 02:57:43 +00003095 ToFunction->addDeclInternal(Parameters[I]);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003096 }
David Blaikie9c70e042011-09-21 18:16:56 +00003097 ToFunction->setParams(Parameters);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003098
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00003099 if (usedDifferentExceptionSpec) {
3100 // Update FunctionProtoType::ExtProtoInfo.
3101 QualType T = Importer.Import(D->getType());
3102 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003103 return nullptr;
Argyrios Kyrtzidis2f458532012-09-25 19:26:39 +00003104 ToFunction->setType(T);
Argyrios Kyrtzidisb41791d2012-09-22 01:58:06 +00003105 }
3106
Sean Callanan59721b32015-04-28 18:41:46 +00003107 // Import the body, if any.
3108 if (Stmt *FromBody = D->getBody()) {
3109 if (Stmt *ToBody = Importer.Import(FromBody)) {
3110 ToFunction->setBody(ToBody);
3111 }
3112 }
3113
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003114 // FIXME: Other bits to merge?
Douglas Gregor0eaa2bf2010-10-01 23:55:07 +00003115
3116 // Add this function to the lexical context.
Sean Callanan95e74be2011-10-21 02:57:43 +00003117 LexicalDC->addDeclInternal(ToFunction);
Douglas Gregor0eaa2bf2010-10-01 23:55:07 +00003118
Douglas Gregor43f54792010-02-17 02:12:47 +00003119 return ToFunction;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003120}
3121
Douglas Gregor00eace12010-02-21 18:29:16 +00003122Decl *ASTNodeImporter::VisitCXXMethodDecl(CXXMethodDecl *D) {
3123 return VisitFunctionDecl(D);
3124}
3125
3126Decl *ASTNodeImporter::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
3127 return VisitCXXMethodDecl(D);
3128}
3129
3130Decl *ASTNodeImporter::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
3131 return VisitCXXMethodDecl(D);
3132}
3133
3134Decl *ASTNodeImporter::VisitCXXConversionDecl(CXXConversionDecl *D) {
3135 return VisitCXXMethodDecl(D);
3136}
3137
Douglas Gregorceb32bf2012-10-26 16:45:11 +00003138static unsigned getFieldIndex(Decl *F) {
3139 RecordDecl *Owner = dyn_cast<RecordDecl>(F->getDeclContext());
3140 if (!Owner)
3141 return 0;
3142
3143 unsigned Index = 1;
Aaron Ballman629afae2014-03-07 19:56:05 +00003144 for (const auto *D : Owner->noload_decls()) {
3145 if (D == F)
Douglas Gregorceb32bf2012-10-26 16:45:11 +00003146 return Index;
3147
3148 if (isa<FieldDecl>(*D) || isa<IndirectFieldDecl>(*D))
3149 ++Index;
3150 }
3151
3152 return Index;
3153}
3154
Douglas Gregor5c73e912010-02-11 00:48:18 +00003155Decl *ASTNodeImporter::VisitFieldDecl(FieldDecl *D) {
3156 // Import the major distinguishing characteristics of a variable.
3157 DeclContext *DC, *LexicalDC;
3158 DeclarationName Name;
Douglas Gregor5c73e912010-02-11 00:48:18 +00003159 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003160 NamedDecl *ToD;
3161 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003162 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003163 if (ToD)
3164 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003165
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003166 // Determine whether we've already imported this field.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003167 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003168 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003169 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3170 if (FieldDecl *FoundField = dyn_cast<FieldDecl>(FoundDecls[I])) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00003171 // For anonymous fields, match up by index.
3172 if (!Name && getFieldIndex(D) != getFieldIndex(FoundField))
3173 continue;
3174
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003175 if (Importer.IsStructurallyEquivalent(D->getType(),
3176 FoundField->getType())) {
3177 Importer.Imported(D, FoundField);
3178 return FoundField;
3179 }
3180
3181 Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent)
3182 << Name << D->getType() << FoundField->getType();
3183 Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
3184 << FoundField->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003185 return nullptr;
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003186 }
3187 }
3188
Douglas Gregorb4964f72010-02-15 23:54:17 +00003189 // Import the type.
3190 QualType T = Importer.Import(D->getType());
3191 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003192 return nullptr;
3193
Douglas Gregor5c73e912010-02-11 00:48:18 +00003194 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3195 Expr *BitWidth = Importer.Import(D->getBitWidth());
3196 if (!BitWidth && D->getBitWidth())
Craig Topper36250ad2014-05-12 05:36:57 +00003197 return nullptr;
3198
Abramo Bagnaradff19302011-03-08 08:55:46 +00003199 FieldDecl *ToField = FieldDecl::Create(Importer.getToContext(), DC,
3200 Importer.Import(D->getInnerLocStart()),
Douglas Gregor5c73e912010-02-11 00:48:18 +00003201 Loc, Name.getAsIdentifierInfo(),
Richard Smith938f40b2011-06-11 17:19:42 +00003202 T, TInfo, BitWidth, D->isMutable(),
Richard Smith2b013182012-06-10 03:12:00 +00003203 D->getInClassInitStyle());
Douglas Gregordd483172010-02-22 17:42:47 +00003204 ToField->setAccess(D->getAccess());
Douglas Gregor5c73e912010-02-11 00:48:18 +00003205 ToField->setLexicalDeclContext(LexicalDC);
Sean Callanan3a83ea72016-03-03 02:22:05 +00003206 if (Expr *FromInitializer = D->getInClassInitializer()) {
Sean Callananbb33f582016-03-03 01:21:28 +00003207 Expr *ToInitializer = Importer.Import(FromInitializer);
3208 if (ToInitializer)
3209 ToField->setInClassInitializer(ToInitializer);
3210 else
3211 return nullptr;
3212 }
Douglas Gregorceb32bf2012-10-26 16:45:11 +00003213 ToField->setImplicit(D->isImplicit());
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003214 Importer.Imported(D, ToField);
Sean Callanan95e74be2011-10-21 02:57:43 +00003215 LexicalDC->addDeclInternal(ToField);
Douglas Gregor5c73e912010-02-11 00:48:18 +00003216 return ToField;
3217}
3218
Francois Pichet783dd6e2010-11-21 06:08:52 +00003219Decl *ASTNodeImporter::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
3220 // Import the major distinguishing characteristics of a variable.
3221 DeclContext *DC, *LexicalDC;
3222 DeclarationName Name;
3223 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003224 NamedDecl *ToD;
3225 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003226 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003227 if (ToD)
3228 return ToD;
Francois Pichet783dd6e2010-11-21 06:08:52 +00003229
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003230 // Determine whether we've already imported this field.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003231 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003232 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003233 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003234 if (IndirectFieldDecl *FoundField
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003235 = dyn_cast<IndirectFieldDecl>(FoundDecls[I])) {
Douglas Gregorceb32bf2012-10-26 16:45:11 +00003236 // For anonymous indirect fields, match up by index.
3237 if (!Name && getFieldIndex(D) != getFieldIndex(FoundField))
3238 continue;
3239
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003240 if (Importer.IsStructurallyEquivalent(D->getType(),
Douglas Gregordd6006f2012-07-17 21:16:27 +00003241 FoundField->getType(),
David Blaikie7d170102013-05-15 07:37:26 +00003242 !Name.isEmpty())) {
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003243 Importer.Imported(D, FoundField);
3244 return FoundField;
3245 }
Douglas Gregordd6006f2012-07-17 21:16:27 +00003246
3247 // If there are more anonymous fields to check, continue.
3248 if (!Name && I < N-1)
3249 continue;
3250
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003251 Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent)
3252 << Name << D->getType() << FoundField->getType();
3253 Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
3254 << FoundField->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003255 return nullptr;
Douglas Gregor03d1ed32011-10-14 21:54:42 +00003256 }
3257 }
3258
Francois Pichet783dd6e2010-11-21 06:08:52 +00003259 // Import the type.
3260 QualType T = Importer.Import(D->getType());
3261 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003262 return nullptr;
Francois Pichet783dd6e2010-11-21 06:08:52 +00003263
3264 NamedDecl **NamedChain =
3265 new (Importer.getToContext())NamedDecl*[D->getChainingSize()];
3266
3267 unsigned i = 0;
Aaron Ballman29c94602014-03-07 18:36:15 +00003268 for (auto *PI : D->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +00003269 Decl *D = Importer.Import(PI);
Francois Pichet783dd6e2010-11-21 06:08:52 +00003270 if (!D)
Craig Topper36250ad2014-05-12 05:36:57 +00003271 return nullptr;
Francois Pichet783dd6e2010-11-21 06:08:52 +00003272 NamedChain[i++] = cast<NamedDecl>(D);
3273 }
3274
3275 IndirectFieldDecl *ToIndirectField = IndirectFieldDecl::Create(
Aaron Ballman260995b2014-10-15 16:58:18 +00003276 Importer.getToContext(), DC, Loc, Name.getAsIdentifierInfo(), T,
3277 NamedChain, D->getChainingSize());
3278
3279 for (const auto *Attr : D->attrs())
3280 ToIndirectField->addAttr(Attr->clone(Importer.getToContext()));
3281
Francois Pichet783dd6e2010-11-21 06:08:52 +00003282 ToIndirectField->setAccess(D->getAccess());
3283 ToIndirectField->setLexicalDeclContext(LexicalDC);
3284 Importer.Imported(D, ToIndirectField);
Sean Callanan95e74be2011-10-21 02:57:43 +00003285 LexicalDC->addDeclInternal(ToIndirectField);
Francois Pichet783dd6e2010-11-21 06:08:52 +00003286 return ToIndirectField;
3287}
3288
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003289Decl *ASTNodeImporter::VisitObjCIvarDecl(ObjCIvarDecl *D) {
3290 // Import the major distinguishing characteristics of an ivar.
3291 DeclContext *DC, *LexicalDC;
3292 DeclarationName Name;
3293 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003294 NamedDecl *ToD;
3295 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003296 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003297 if (ToD)
3298 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003299
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003300 // Determine whether we've already imported this ivar
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003301 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003302 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003303 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3304 if (ObjCIvarDecl *FoundIvar = dyn_cast<ObjCIvarDecl>(FoundDecls[I])) {
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003305 if (Importer.IsStructurallyEquivalent(D->getType(),
3306 FoundIvar->getType())) {
3307 Importer.Imported(D, FoundIvar);
3308 return FoundIvar;
3309 }
3310
3311 Importer.ToDiag(Loc, diag::err_odr_ivar_type_inconsistent)
3312 << Name << D->getType() << FoundIvar->getType();
3313 Importer.ToDiag(FoundIvar->getLocation(), diag::note_odr_value_here)
3314 << FoundIvar->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003315 return nullptr;
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003316 }
3317 }
3318
3319 // Import the type.
3320 QualType T = Importer.Import(D->getType());
3321 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003322 return nullptr;
3323
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003324 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3325 Expr *BitWidth = Importer.Import(D->getBitWidth());
3326 if (!BitWidth && D->getBitWidth())
Craig Topper36250ad2014-05-12 05:36:57 +00003327 return nullptr;
3328
Daniel Dunbarfe3ead72010-04-02 20:10:03 +00003329 ObjCIvarDecl *ToIvar = ObjCIvarDecl::Create(Importer.getToContext(),
3330 cast<ObjCContainerDecl>(DC),
Abramo Bagnaradff19302011-03-08 08:55:46 +00003331 Importer.Import(D->getInnerLocStart()),
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003332 Loc, Name.getAsIdentifierInfo(),
3333 T, TInfo, D->getAccessControl(),
Argyrios Kyrtzidis2080d902014-01-03 18:32:18 +00003334 BitWidth, D->getSynthesize());
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003335 ToIvar->setLexicalDeclContext(LexicalDC);
3336 Importer.Imported(D, ToIvar);
Sean Callanan95e74be2011-10-21 02:57:43 +00003337 LexicalDC->addDeclInternal(ToIvar);
Douglas Gregor7244b0b2010-02-17 00:34:30 +00003338 return ToIvar;
3339
3340}
3341
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003342Decl *ASTNodeImporter::VisitVarDecl(VarDecl *D) {
3343 // Import the major distinguishing characteristics of a variable.
3344 DeclContext *DC, *LexicalDC;
3345 DeclarationName Name;
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003346 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003347 NamedDecl *ToD;
3348 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003349 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003350 if (ToD)
3351 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003352
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003353 // Try to find a variable in our own ("to") context with the same name and
3354 // in the same context as the variable we're importing.
Douglas Gregor62d311f2010-02-09 19:21:46 +00003355 if (D->isFileVarDecl()) {
Craig Topper36250ad2014-05-12 05:36:57 +00003356 VarDecl *MergeWithVar = nullptr;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003357 SmallVector<NamedDecl *, 4> ConflictingDecls;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003358 unsigned IDNS = Decl::IDNS_Ordinary;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003359 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003360 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003361 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3362 if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003363 continue;
3364
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003365 if (VarDecl *FoundVar = dyn_cast<VarDecl>(FoundDecls[I])) {
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003366 // We have found a variable that we may need to merge with. Check it.
Rafael Espindola3ae00052013-05-13 00:12:11 +00003367 if (FoundVar->hasExternalFormalLinkage() &&
3368 D->hasExternalFormalLinkage()) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00003369 if (Importer.IsStructurallyEquivalent(D->getType(),
3370 FoundVar->getType())) {
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003371 MergeWithVar = FoundVar;
3372 break;
3373 }
3374
Douglas Gregor56521c52010-02-12 17:23:39 +00003375 const ArrayType *FoundArray
3376 = Importer.getToContext().getAsArrayType(FoundVar->getType());
3377 const ArrayType *TArray
Douglas Gregorb4964f72010-02-15 23:54:17 +00003378 = Importer.getToContext().getAsArrayType(D->getType());
Douglas Gregor56521c52010-02-12 17:23:39 +00003379 if (FoundArray && TArray) {
3380 if (isa<IncompleteArrayType>(FoundArray) &&
3381 isa<ConstantArrayType>(TArray)) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00003382 // Import the type.
3383 QualType T = Importer.Import(D->getType());
3384 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003385 return nullptr;
3386
Douglas Gregor56521c52010-02-12 17:23:39 +00003387 FoundVar->setType(T);
3388 MergeWithVar = FoundVar;
3389 break;
3390 } else if (isa<IncompleteArrayType>(TArray) &&
3391 isa<ConstantArrayType>(FoundArray)) {
3392 MergeWithVar = FoundVar;
3393 break;
Douglas Gregor2fbe5582010-02-10 17:16:49 +00003394 }
3395 }
3396
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003397 Importer.ToDiag(Loc, diag::err_odr_variable_type_inconsistent)
Douglas Gregorb4964f72010-02-15 23:54:17 +00003398 << Name << D->getType() << FoundVar->getType();
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003399 Importer.ToDiag(FoundVar->getLocation(), diag::note_odr_value_here)
3400 << FoundVar->getType();
3401 }
3402 }
3403
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003404 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003405 }
3406
3407 if (MergeWithVar) {
3408 // An equivalent variable with external linkage has been found. Link
3409 // the two declarations, then merge them.
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003410 Importer.Imported(D, MergeWithVar);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003411
3412 if (VarDecl *DDef = D->getDefinition()) {
3413 if (VarDecl *ExistingDef = MergeWithVar->getDefinition()) {
3414 Importer.ToDiag(ExistingDef->getLocation(),
3415 diag::err_odr_variable_multiple_def)
3416 << Name;
3417 Importer.FromDiag(DDef->getLocation(), diag::note_odr_defined_here);
3418 } else {
3419 Expr *Init = Importer.Import(DDef->getInit());
Douglas Gregord5058122010-02-11 01:19:42 +00003420 MergeWithVar->setInit(Init);
Richard Smithd0b4dd62011-12-19 06:19:21 +00003421 if (DDef->isInitKnownICE()) {
3422 EvaluatedStmt *Eval = MergeWithVar->ensureEvaluatedStmt();
3423 Eval->CheckedICE = true;
3424 Eval->IsICE = DDef->isInitICE();
3425 }
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003426 }
3427 }
3428
3429 return MergeWithVar;
3430 }
3431
3432 if (!ConflictingDecls.empty()) {
3433 Name = Importer.HandleNameConflict(Name, DC, IDNS,
3434 ConflictingDecls.data(),
3435 ConflictingDecls.size());
3436 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00003437 return nullptr;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003438 }
3439 }
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00003440
Douglas Gregorb4964f72010-02-15 23:54:17 +00003441 // Import the type.
3442 QualType T = Importer.Import(D->getType());
3443 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003444 return nullptr;
3445
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003446 // Create the imported variable.
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00003447 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Abramo Bagnaradff19302011-03-08 08:55:46 +00003448 VarDecl *ToVar = VarDecl::Create(Importer.getToContext(), DC,
3449 Importer.Import(D->getInnerLocStart()),
3450 Loc, Name.getAsIdentifierInfo(),
3451 T, TInfo,
Rafael Espindola6ae7e502013-04-03 19:27:57 +00003452 D->getStorageClass());
Douglas Gregor14454802011-02-25 02:25:35 +00003453 ToVar->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregordd483172010-02-22 17:42:47 +00003454 ToVar->setAccess(D->getAccess());
Douglas Gregor62d311f2010-02-09 19:21:46 +00003455 ToVar->setLexicalDeclContext(LexicalDC);
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003456 Importer.Imported(D, ToVar);
Sean Callanan95e74be2011-10-21 02:57:43 +00003457 LexicalDC->addDeclInternal(ToVar);
Douglas Gregor62d311f2010-02-09 19:21:46 +00003458
Sean Callanan59721b32015-04-28 18:41:46 +00003459 if (!D->isFileVarDecl() &&
3460 D->isUsed())
3461 ToVar->setIsUsed();
3462
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003463 // Merge the initializer.
Larisse Voufo39a1e502013-08-06 01:03:05 +00003464 if (ImportDefinition(D, ToVar))
Craig Topper36250ad2014-05-12 05:36:57 +00003465 return nullptr;
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003466
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00003467 return ToVar;
3468}
3469
Douglas Gregor8b228d72010-02-17 21:22:52 +00003470Decl *ASTNodeImporter::VisitImplicitParamDecl(ImplicitParamDecl *D) {
3471 // Parameters are created in the translation unit's context, then moved
3472 // into the function declaration's context afterward.
3473 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
3474
3475 // Import the name of this declaration.
3476 DeclarationName Name = Importer.Import(D->getDeclName());
3477 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00003478 return nullptr;
3479
Douglas Gregor8b228d72010-02-17 21:22:52 +00003480 // Import the location of this declaration.
3481 SourceLocation Loc = Importer.Import(D->getLocation());
3482
3483 // Import the parameter's type.
3484 QualType T = Importer.Import(D->getType());
3485 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003486 return nullptr;
3487
Douglas Gregor8b228d72010-02-17 21:22:52 +00003488 // Create the imported parameter.
3489 ImplicitParamDecl *ToParm
3490 = ImplicitParamDecl::Create(Importer.getToContext(), DC,
3491 Loc, Name.getAsIdentifierInfo(),
3492 T);
3493 return Importer.Imported(D, ToParm);
3494}
3495
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003496Decl *ASTNodeImporter::VisitParmVarDecl(ParmVarDecl *D) {
3497 // Parameters are created in the translation unit's context, then moved
3498 // into the function declaration's context afterward.
3499 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
3500
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00003501 // Import the name of this declaration.
3502 DeclarationName Name = Importer.Import(D->getDeclName());
3503 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00003504 return nullptr;
3505
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003506 // Import the location of this declaration.
3507 SourceLocation Loc = Importer.Import(D->getLocation());
3508
3509 // Import the parameter's type.
3510 QualType T = Importer.Import(D->getType());
3511 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003512 return nullptr;
3513
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003514 // Create the imported parameter.
3515 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3516 ParmVarDecl *ToParm = ParmVarDecl::Create(Importer.getToContext(), DC,
Abramo Bagnaradff19302011-03-08 08:55:46 +00003517 Importer.Import(D->getInnerLocStart()),
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003518 Loc, Name.getAsIdentifierInfo(),
3519 T, TInfo, D->getStorageClass(),
Craig Topper36250ad2014-05-12 05:36:57 +00003520 /*FIXME: Default argument*/nullptr);
John McCallf3cd6652010-03-12 18:31:32 +00003521 ToParm->setHasInheritedDefaultArg(D->hasInheritedDefaultArg());
Sean Callanan59721b32015-04-28 18:41:46 +00003522
3523 if (D->isUsed())
3524 ToParm->setIsUsed();
3525
Douglas Gregor8cdbe642010-02-12 23:44:20 +00003526 return Importer.Imported(D, ToParm);
Douglas Gregorbb7930c2010-02-10 19:54:31 +00003527}
3528
Douglas Gregor43f54792010-02-17 02:12:47 +00003529Decl *ASTNodeImporter::VisitObjCMethodDecl(ObjCMethodDecl *D) {
3530 // Import the major distinguishing characteristics of a method.
3531 DeclContext *DC, *LexicalDC;
3532 DeclarationName Name;
3533 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003534 NamedDecl *ToD;
3535 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003536 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003537 if (ToD)
3538 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003539
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003540 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003541 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003542 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3543 if (ObjCMethodDecl *FoundMethod = dyn_cast<ObjCMethodDecl>(FoundDecls[I])) {
Douglas Gregor43f54792010-02-17 02:12:47 +00003544 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod())
3545 continue;
3546
3547 // Check return types.
Alp Toker314cc812014-01-25 16:55:45 +00003548 if (!Importer.IsStructurallyEquivalent(D->getReturnType(),
3549 FoundMethod->getReturnType())) {
Douglas Gregor43f54792010-02-17 02:12:47 +00003550 Importer.ToDiag(Loc, diag::err_odr_objc_method_result_type_inconsistent)
Alp Toker314cc812014-01-25 16:55:45 +00003551 << D->isInstanceMethod() << Name << D->getReturnType()
3552 << FoundMethod->getReturnType();
Douglas Gregor43f54792010-02-17 02:12:47 +00003553 Importer.ToDiag(FoundMethod->getLocation(),
3554 diag::note_odr_objc_method_here)
3555 << D->isInstanceMethod() << Name;
Craig Topper36250ad2014-05-12 05:36:57 +00003556 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003557 }
3558
3559 // Check the number of parameters.
3560 if (D->param_size() != FoundMethod->param_size()) {
3561 Importer.ToDiag(Loc, diag::err_odr_objc_method_num_params_inconsistent)
3562 << D->isInstanceMethod() << Name
3563 << D->param_size() << FoundMethod->param_size();
3564 Importer.ToDiag(FoundMethod->getLocation(),
3565 diag::note_odr_objc_method_here)
3566 << D->isInstanceMethod() << Name;
Craig Topper36250ad2014-05-12 05:36:57 +00003567 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003568 }
3569
3570 // Check parameter types.
3571 for (ObjCMethodDecl::param_iterator P = D->param_begin(),
3572 PEnd = D->param_end(), FoundP = FoundMethod->param_begin();
3573 P != PEnd; ++P, ++FoundP) {
3574 if (!Importer.IsStructurallyEquivalent((*P)->getType(),
3575 (*FoundP)->getType())) {
3576 Importer.FromDiag((*P)->getLocation(),
3577 diag::err_odr_objc_method_param_type_inconsistent)
3578 << D->isInstanceMethod() << Name
3579 << (*P)->getType() << (*FoundP)->getType();
3580 Importer.ToDiag((*FoundP)->getLocation(), diag::note_odr_value_here)
3581 << (*FoundP)->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00003582 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003583 }
3584 }
3585
3586 // Check variadic/non-variadic.
3587 // Check the number of parameters.
3588 if (D->isVariadic() != FoundMethod->isVariadic()) {
3589 Importer.ToDiag(Loc, diag::err_odr_objc_method_variadic_inconsistent)
3590 << D->isInstanceMethod() << Name;
3591 Importer.ToDiag(FoundMethod->getLocation(),
3592 diag::note_odr_objc_method_here)
3593 << D->isInstanceMethod() << Name;
Craig Topper36250ad2014-05-12 05:36:57 +00003594 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003595 }
3596
3597 // FIXME: Any other bits we need to merge?
3598 return Importer.Imported(D, FoundMethod);
3599 }
3600 }
3601
3602 // Import the result type.
Alp Toker314cc812014-01-25 16:55:45 +00003603 QualType ResultTy = Importer.Import(D->getReturnType());
Douglas Gregor43f54792010-02-17 02:12:47 +00003604 if (ResultTy.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00003605 return nullptr;
Douglas Gregor43f54792010-02-17 02:12:47 +00003606
Alp Toker314cc812014-01-25 16:55:45 +00003607 TypeSourceInfo *ReturnTInfo = Importer.Import(D->getReturnTypeSourceInfo());
Douglas Gregor12852d92010-03-08 14:59:44 +00003608
Alp Toker314cc812014-01-25 16:55:45 +00003609 ObjCMethodDecl *ToMethod = ObjCMethodDecl::Create(
3610 Importer.getToContext(), Loc, Importer.Import(D->getLocEnd()),
3611 Name.getObjCSelector(), ResultTy, ReturnTInfo, DC, D->isInstanceMethod(),
3612 D->isVariadic(), D->isPropertyAccessor(), D->isImplicit(), D->isDefined(),
3613 D->getImplementationControl(), D->hasRelatedResultType());
Douglas Gregor43f54792010-02-17 02:12:47 +00003614
3615 // FIXME: When we decide to merge method definitions, we'll need to
3616 // deal with implicit parameters.
3617
3618 // Import the parameters
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003619 SmallVector<ParmVarDecl *, 5> ToParams;
Aaron Ballman43b68be2014-03-07 17:50:17 +00003620 for (auto *FromP : D->params()) {
3621 ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(FromP));
Douglas Gregor43f54792010-02-17 02:12:47 +00003622 if (!ToP)
Craig Topper36250ad2014-05-12 05:36:57 +00003623 return nullptr;
3624
Douglas Gregor43f54792010-02-17 02:12:47 +00003625 ToParams.push_back(ToP);
3626 }
3627
3628 // Set the parameters.
3629 for (unsigned I = 0, N = ToParams.size(); I != N; ++I) {
3630 ToParams[I]->setOwningFunction(ToMethod);
Sean Callanan95e74be2011-10-21 02:57:43 +00003631 ToMethod->addDeclInternal(ToParams[I]);
Douglas Gregor43f54792010-02-17 02:12:47 +00003632 }
Argyrios Kyrtzidisb8c3aaf2011-10-03 06:37:04 +00003633 SmallVector<SourceLocation, 12> SelLocs;
3634 D->getSelectorLocs(SelLocs);
3635 ToMethod->setMethodParams(Importer.getToContext(), ToParams, SelLocs);
Douglas Gregor43f54792010-02-17 02:12:47 +00003636
3637 ToMethod->setLexicalDeclContext(LexicalDC);
3638 Importer.Imported(D, ToMethod);
Sean Callanan95e74be2011-10-21 02:57:43 +00003639 LexicalDC->addDeclInternal(ToMethod);
Douglas Gregor43f54792010-02-17 02:12:47 +00003640 return ToMethod;
3641}
3642
Douglas Gregor85f3f952015-07-07 03:57:15 +00003643Decl *ASTNodeImporter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) {
3644 // Import the major distinguishing characteristics of a category.
3645 DeclContext *DC, *LexicalDC;
3646 DeclarationName Name;
3647 SourceLocation Loc;
3648 NamedDecl *ToD;
3649 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3650 return nullptr;
3651 if (ToD)
3652 return ToD;
3653
3654 TypeSourceInfo *BoundInfo = Importer.Import(D->getTypeSourceInfo());
3655 if (!BoundInfo)
3656 return nullptr;
3657
3658 ObjCTypeParamDecl *Result = ObjCTypeParamDecl::Create(
3659 Importer.getToContext(), DC,
Douglas Gregor1ac1b632015-07-07 03:58:54 +00003660 D->getVariance(),
3661 Importer.Import(D->getVarianceLoc()),
Douglas Gregore83b9562015-07-07 03:57:53 +00003662 D->getIndex(),
Douglas Gregor85f3f952015-07-07 03:57:15 +00003663 Importer.Import(D->getLocation()),
3664 Name.getAsIdentifierInfo(),
3665 Importer.Import(D->getColonLoc()),
3666 BoundInfo);
3667 Importer.Imported(D, Result);
3668 Result->setLexicalDeclContext(LexicalDC);
3669 return Result;
3670}
3671
Douglas Gregor84c51c32010-02-18 01:47:50 +00003672Decl *ASTNodeImporter::VisitObjCCategoryDecl(ObjCCategoryDecl *D) {
3673 // Import the major distinguishing characteristics of a category.
3674 DeclContext *DC, *LexicalDC;
3675 DeclarationName Name;
3676 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003677 NamedDecl *ToD;
3678 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003679 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003680 if (ToD)
3681 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00003682
Douglas Gregor84c51c32010-02-18 01:47:50 +00003683 ObjCInterfaceDecl *ToInterface
3684 = cast_or_null<ObjCInterfaceDecl>(Importer.Import(D->getClassInterface()));
3685 if (!ToInterface)
Craig Topper36250ad2014-05-12 05:36:57 +00003686 return nullptr;
3687
Douglas Gregor84c51c32010-02-18 01:47:50 +00003688 // Determine if we've already encountered this category.
3689 ObjCCategoryDecl *MergeWithCategory
3690 = ToInterface->FindCategoryDeclaration(Name.getAsIdentifierInfo());
3691 ObjCCategoryDecl *ToCategory = MergeWithCategory;
3692 if (!ToCategory) {
3693 ToCategory = ObjCCategoryDecl::Create(Importer.getToContext(), DC,
Argyrios Kyrtzidis52f53fb2011-10-04 04:48:02 +00003694 Importer.Import(D->getAtStartLoc()),
Douglas Gregor84c51c32010-02-18 01:47:50 +00003695 Loc,
3696 Importer.Import(D->getCategoryNameLoc()),
Argyrios Kyrtzidis3a5094b2011-08-30 19:43:26 +00003697 Name.getAsIdentifierInfo(),
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00003698 ToInterface,
Douglas Gregorab7f0b32015-07-07 06:20:12 +00003699 /*TypeParamList=*/nullptr,
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00003700 Importer.Import(D->getIvarLBraceLoc()),
3701 Importer.Import(D->getIvarRBraceLoc()));
Douglas Gregor84c51c32010-02-18 01:47:50 +00003702 ToCategory->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00003703 LexicalDC->addDeclInternal(ToCategory);
Douglas Gregor84c51c32010-02-18 01:47:50 +00003704 Importer.Imported(D, ToCategory);
Douglas Gregorab7f0b32015-07-07 06:20:12 +00003705 // Import the type parameter list after calling Imported, to avoid
3706 // loops when bringing in their DeclContext.
3707 ToCategory->setTypeParamList(ImportObjCTypeParamList(
3708 D->getTypeParamList()));
Douglas Gregor84c51c32010-02-18 01:47:50 +00003709
Douglas Gregor84c51c32010-02-18 01:47:50 +00003710 // Import protocols
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003711 SmallVector<ObjCProtocolDecl *, 4> Protocols;
3712 SmallVector<SourceLocation, 4> ProtocolLocs;
Douglas Gregor84c51c32010-02-18 01:47:50 +00003713 ObjCCategoryDecl::protocol_loc_iterator FromProtoLoc
3714 = D->protocol_loc_begin();
3715 for (ObjCCategoryDecl::protocol_iterator FromProto = D->protocol_begin(),
3716 FromProtoEnd = D->protocol_end();
3717 FromProto != FromProtoEnd;
3718 ++FromProto, ++FromProtoLoc) {
3719 ObjCProtocolDecl *ToProto
3720 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3721 if (!ToProto)
Craig Topper36250ad2014-05-12 05:36:57 +00003722 return nullptr;
Douglas Gregor84c51c32010-02-18 01:47:50 +00003723 Protocols.push_back(ToProto);
3724 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3725 }
3726
3727 // FIXME: If we're merging, make sure that the protocol list is the same.
3728 ToCategory->setProtocolList(Protocols.data(), Protocols.size(),
3729 ProtocolLocs.data(), Importer.getToContext());
3730
3731 } else {
3732 Importer.Imported(D, ToCategory);
3733 }
3734
3735 // Import all of the members of this category.
Douglas Gregor968d6332010-02-21 18:24:45 +00003736 ImportDeclContext(D);
Douglas Gregor84c51c32010-02-18 01:47:50 +00003737
3738 // If we have an implementation, import it as well.
3739 if (D->getImplementation()) {
3740 ObjCCategoryImplDecl *Impl
Douglas Gregor35fd7bc2010-12-08 16:41:55 +00003741 = cast_or_null<ObjCCategoryImplDecl>(
3742 Importer.Import(D->getImplementation()));
Douglas Gregor84c51c32010-02-18 01:47:50 +00003743 if (!Impl)
Craig Topper36250ad2014-05-12 05:36:57 +00003744 return nullptr;
3745
Douglas Gregor84c51c32010-02-18 01:47:50 +00003746 ToCategory->setImplementation(Impl);
3747 }
3748
3749 return ToCategory;
3750}
3751
Douglas Gregor2aa53772012-01-24 17:42:07 +00003752bool ASTNodeImporter::ImportDefinition(ObjCProtocolDecl *From,
3753 ObjCProtocolDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +00003754 ImportDefinitionKind Kind) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003755 if (To->getDefinition()) {
Douglas Gregor2e15c842012-02-01 21:00:38 +00003756 if (shouldForceImportDeclContext(Kind))
3757 ImportDeclContext(From);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003758 return false;
3759 }
3760
3761 // Start the protocol definition
3762 To->startDefinition();
3763
3764 // Import protocols
3765 SmallVector<ObjCProtocolDecl *, 4> Protocols;
3766 SmallVector<SourceLocation, 4> ProtocolLocs;
3767 ObjCProtocolDecl::protocol_loc_iterator
3768 FromProtoLoc = From->protocol_loc_begin();
3769 for (ObjCProtocolDecl::protocol_iterator FromProto = From->protocol_begin(),
3770 FromProtoEnd = From->protocol_end();
3771 FromProto != FromProtoEnd;
3772 ++FromProto, ++FromProtoLoc) {
3773 ObjCProtocolDecl *ToProto
3774 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3775 if (!ToProto)
3776 return true;
3777 Protocols.push_back(ToProto);
3778 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3779 }
3780
3781 // FIXME: If we're merging, make sure that the protocol list is the same.
3782 To->setProtocolList(Protocols.data(), Protocols.size(),
3783 ProtocolLocs.data(), Importer.getToContext());
3784
Douglas Gregor2e15c842012-02-01 21:00:38 +00003785 if (shouldForceImportDeclContext(Kind)) {
3786 // Import all of the members of this protocol.
3787 ImportDeclContext(From, /*ForceImport=*/true);
3788 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00003789 return false;
3790}
3791
Douglas Gregor98d156a2010-02-17 16:12:00 +00003792Decl *ASTNodeImporter::VisitObjCProtocolDecl(ObjCProtocolDecl *D) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003793 // If this protocol has a definition in the translation unit we're coming
3794 // from, but this particular declaration is not that definition, import the
3795 // definition and map to that.
3796 ObjCProtocolDecl *Definition = D->getDefinition();
3797 if (Definition && Definition != D) {
3798 Decl *ImportedDef = Importer.Import(Definition);
3799 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00003800 return nullptr;
3801
Douglas Gregor2aa53772012-01-24 17:42:07 +00003802 return Importer.Imported(D, ImportedDef);
3803 }
3804
Douglas Gregor84c51c32010-02-18 01:47:50 +00003805 // Import the major distinguishing characteristics of a protocol.
Douglas Gregor98d156a2010-02-17 16:12:00 +00003806 DeclContext *DC, *LexicalDC;
3807 DeclarationName Name;
3808 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00003809 NamedDecl *ToD;
3810 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00003811 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00003812 if (ToD)
3813 return ToD;
Douglas Gregor98d156a2010-02-17 16:12:00 +00003814
Craig Topper36250ad2014-05-12 05:36:57 +00003815 ObjCProtocolDecl *MergeWithProtocol = nullptr;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003816 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00003817 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003818 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3819 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_ObjCProtocol))
Douglas Gregor98d156a2010-02-17 16:12:00 +00003820 continue;
3821
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00003822 if ((MergeWithProtocol = dyn_cast<ObjCProtocolDecl>(FoundDecls[I])))
Douglas Gregor98d156a2010-02-17 16:12:00 +00003823 break;
3824 }
3825
3826 ObjCProtocolDecl *ToProto = MergeWithProtocol;
Douglas Gregor2aa53772012-01-24 17:42:07 +00003827 if (!ToProto) {
3828 ToProto = ObjCProtocolDecl::Create(Importer.getToContext(), DC,
3829 Name.getAsIdentifierInfo(), Loc,
3830 Importer.Import(D->getAtStartLoc()),
Craig Topper36250ad2014-05-12 05:36:57 +00003831 /*PrevDecl=*/nullptr);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003832 ToProto->setLexicalDeclContext(LexicalDC);
3833 LexicalDC->addDeclInternal(ToProto);
Douglas Gregor98d156a2010-02-17 16:12:00 +00003834 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00003835
3836 Importer.Imported(D, ToProto);
Douglas Gregor98d156a2010-02-17 16:12:00 +00003837
Douglas Gregor2aa53772012-01-24 17:42:07 +00003838 if (D->isThisDeclarationADefinition() && ImportDefinition(D, ToProto))
Craig Topper36250ad2014-05-12 05:36:57 +00003839 return nullptr;
3840
Douglas Gregor98d156a2010-02-17 16:12:00 +00003841 return ToProto;
3842}
3843
Sean Callanan0aae0412014-12-10 00:00:37 +00003844Decl *ASTNodeImporter::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
3845 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
3846 DeclContext *LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
3847
3848 SourceLocation ExternLoc = Importer.Import(D->getExternLoc());
3849 SourceLocation LangLoc = Importer.Import(D->getLocation());
3850
3851 bool HasBraces = D->hasBraces();
3852
Sean Callananb12a8552014-12-10 21:22:20 +00003853 LinkageSpecDecl *ToLinkageSpec =
3854 LinkageSpecDecl::Create(Importer.getToContext(),
3855 DC,
3856 ExternLoc,
3857 LangLoc,
3858 D->getLanguage(),
3859 HasBraces);
Sean Callanan0aae0412014-12-10 00:00:37 +00003860
3861 if (HasBraces) {
3862 SourceLocation RBraceLoc = Importer.Import(D->getRBraceLoc());
3863 ToLinkageSpec->setRBraceLoc(RBraceLoc);
3864 }
3865
3866 ToLinkageSpec->setLexicalDeclContext(LexicalDC);
3867 LexicalDC->addDeclInternal(ToLinkageSpec);
3868
3869 Importer.Imported(D, ToLinkageSpec);
3870
3871 return ToLinkageSpec;
3872}
3873
Douglas Gregor2aa53772012-01-24 17:42:07 +00003874bool ASTNodeImporter::ImportDefinition(ObjCInterfaceDecl *From,
3875 ObjCInterfaceDecl *To,
Douglas Gregor2e15c842012-02-01 21:00:38 +00003876 ImportDefinitionKind Kind) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003877 if (To->getDefinition()) {
3878 // Check consistency of superclass.
3879 ObjCInterfaceDecl *FromSuper = From->getSuperClass();
3880 if (FromSuper) {
3881 FromSuper = cast_or_null<ObjCInterfaceDecl>(Importer.Import(FromSuper));
3882 if (!FromSuper)
3883 return true;
3884 }
3885
3886 ObjCInterfaceDecl *ToSuper = To->getSuperClass();
3887 if ((bool)FromSuper != (bool)ToSuper ||
3888 (FromSuper && !declaresSameEntity(FromSuper, ToSuper))) {
3889 Importer.ToDiag(To->getLocation(),
3890 diag::err_odr_objc_superclass_inconsistent)
3891 << To->getDeclName();
3892 if (ToSuper)
3893 Importer.ToDiag(To->getSuperClassLoc(), diag::note_odr_objc_superclass)
3894 << To->getSuperClass()->getDeclName();
3895 else
3896 Importer.ToDiag(To->getLocation(),
3897 diag::note_odr_objc_missing_superclass);
3898 if (From->getSuperClass())
3899 Importer.FromDiag(From->getSuperClassLoc(),
3900 diag::note_odr_objc_superclass)
3901 << From->getSuperClass()->getDeclName();
3902 else
3903 Importer.FromDiag(From->getLocation(),
3904 diag::note_odr_objc_missing_superclass);
3905 }
3906
Douglas Gregor2e15c842012-02-01 21:00:38 +00003907 if (shouldForceImportDeclContext(Kind))
3908 ImportDeclContext(From);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003909 return false;
3910 }
3911
3912 // Start the definition.
3913 To->startDefinition();
3914
3915 // If this class has a superclass, import it.
3916 if (From->getSuperClass()) {
Douglas Gregore9d95f12015-07-07 03:57:35 +00003917 TypeSourceInfo *SuperTInfo = Importer.Import(From->getSuperClassTInfo());
3918 if (!SuperTInfo)
Douglas Gregor2aa53772012-01-24 17:42:07 +00003919 return true;
Douglas Gregore9d95f12015-07-07 03:57:35 +00003920
3921 To->setSuperClass(SuperTInfo);
Douglas Gregor2aa53772012-01-24 17:42:07 +00003922 }
3923
3924 // Import protocols
3925 SmallVector<ObjCProtocolDecl *, 4> Protocols;
3926 SmallVector<SourceLocation, 4> ProtocolLocs;
3927 ObjCInterfaceDecl::protocol_loc_iterator
3928 FromProtoLoc = From->protocol_loc_begin();
3929
3930 for (ObjCInterfaceDecl::protocol_iterator FromProto = From->protocol_begin(),
3931 FromProtoEnd = From->protocol_end();
3932 FromProto != FromProtoEnd;
3933 ++FromProto, ++FromProtoLoc) {
3934 ObjCProtocolDecl *ToProto
3935 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3936 if (!ToProto)
3937 return true;
3938 Protocols.push_back(ToProto);
3939 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3940 }
3941
3942 // FIXME: If we're merging, make sure that the protocol list is the same.
3943 To->setProtocolList(Protocols.data(), Protocols.size(),
3944 ProtocolLocs.data(), Importer.getToContext());
3945
3946 // Import categories. When the categories themselves are imported, they'll
3947 // hook themselves into this interface.
Aaron Ballman15063e12014-03-13 21:35:02 +00003948 for (auto *Cat : From->known_categories())
3949 Importer.Import(Cat);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00003950
Douglas Gregor2aa53772012-01-24 17:42:07 +00003951 // If we have an @implementation, import it as well.
3952 if (From->getImplementation()) {
3953 ObjCImplementationDecl *Impl = cast_or_null<ObjCImplementationDecl>(
3954 Importer.Import(From->getImplementation()));
3955 if (!Impl)
3956 return true;
3957
3958 To->setImplementation(Impl);
3959 }
3960
Douglas Gregor2e15c842012-02-01 21:00:38 +00003961 if (shouldForceImportDeclContext(Kind)) {
3962 // Import all of the members of this class.
3963 ImportDeclContext(From, /*ForceImport=*/true);
3964 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00003965 return false;
3966}
3967
Douglas Gregor85f3f952015-07-07 03:57:15 +00003968ObjCTypeParamList *
3969ASTNodeImporter::ImportObjCTypeParamList(ObjCTypeParamList *list) {
3970 if (!list)
3971 return nullptr;
3972
3973 SmallVector<ObjCTypeParamDecl *, 4> toTypeParams;
3974 for (auto fromTypeParam : *list) {
3975 auto toTypeParam = cast_or_null<ObjCTypeParamDecl>(
3976 Importer.Import(fromTypeParam));
3977 if (!toTypeParam)
3978 return nullptr;
3979
3980 toTypeParams.push_back(toTypeParam);
3981 }
3982
3983 return ObjCTypeParamList::create(Importer.getToContext(),
3984 Importer.Import(list->getLAngleLoc()),
3985 toTypeParams,
3986 Importer.Import(list->getRAngleLoc()));
3987}
3988
Douglas Gregor45635322010-02-16 01:20:57 +00003989Decl *ASTNodeImporter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
Douglas Gregor2aa53772012-01-24 17:42:07 +00003990 // If this class has a definition in the translation unit we're coming from,
3991 // but this particular declaration is not that definition, import the
3992 // definition and map to that.
3993 ObjCInterfaceDecl *Definition = D->getDefinition();
3994 if (Definition && Definition != D) {
3995 Decl *ImportedDef = Importer.Import(Definition);
3996 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00003997 return nullptr;
3998
Douglas Gregor2aa53772012-01-24 17:42:07 +00003999 return Importer.Imported(D, ImportedDef);
4000 }
4001
Douglas Gregor45635322010-02-16 01:20:57 +00004002 // Import the major distinguishing characteristics of an @interface.
4003 DeclContext *DC, *LexicalDC;
4004 DeclarationName Name;
4005 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00004006 NamedDecl *ToD;
4007 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00004008 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00004009 if (ToD)
4010 return ToD;
Douglas Gregor45635322010-02-16 01:20:57 +00004011
Douglas Gregor2aa53772012-01-24 17:42:07 +00004012 // Look for an existing interface with the same name.
Craig Topper36250ad2014-05-12 05:36:57 +00004013 ObjCInterfaceDecl *MergeWithIface = nullptr;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004014 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00004015 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004016 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4017 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
Douglas Gregor45635322010-02-16 01:20:57 +00004018 continue;
4019
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004020 if ((MergeWithIface = dyn_cast<ObjCInterfaceDecl>(FoundDecls[I])))
Douglas Gregor45635322010-02-16 01:20:57 +00004021 break;
4022 }
4023
Douglas Gregor2aa53772012-01-24 17:42:07 +00004024 // Create an interface declaration, if one does not already exist.
Douglas Gregor45635322010-02-16 01:20:57 +00004025 ObjCInterfaceDecl *ToIface = MergeWithIface;
Douglas Gregor2aa53772012-01-24 17:42:07 +00004026 if (!ToIface) {
4027 ToIface = ObjCInterfaceDecl::Create(Importer.getToContext(), DC,
4028 Importer.Import(D->getAtStartLoc()),
Douglas Gregor85f3f952015-07-07 03:57:15 +00004029 Name.getAsIdentifierInfo(),
Douglas Gregorab7f0b32015-07-07 06:20:12 +00004030 /*TypeParamList=*/nullptr,
Craig Topper36250ad2014-05-12 05:36:57 +00004031 /*PrevDecl=*/nullptr, Loc,
Douglas Gregor2aa53772012-01-24 17:42:07 +00004032 D->isImplicitInterfaceDecl());
4033 ToIface->setLexicalDeclContext(LexicalDC);
4034 LexicalDC->addDeclInternal(ToIface);
Douglas Gregor45635322010-02-16 01:20:57 +00004035 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00004036 Importer.Imported(D, ToIface);
Douglas Gregorab7f0b32015-07-07 06:20:12 +00004037 // Import the type parameter list after calling Imported, to avoid
4038 // loops when bringing in their DeclContext.
4039 ToIface->setTypeParamList(ImportObjCTypeParamList(
4040 D->getTypeParamListAsWritten()));
Douglas Gregor45635322010-02-16 01:20:57 +00004041
Douglas Gregor2aa53772012-01-24 17:42:07 +00004042 if (D->isThisDeclarationADefinition() && ImportDefinition(D, ToIface))
Craig Topper36250ad2014-05-12 05:36:57 +00004043 return nullptr;
4044
Douglas Gregor98d156a2010-02-17 16:12:00 +00004045 return ToIface;
Douglas Gregor45635322010-02-16 01:20:57 +00004046}
4047
Douglas Gregor4da9d682010-12-07 15:32:12 +00004048Decl *ASTNodeImporter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
4049 ObjCCategoryDecl *Category = cast_or_null<ObjCCategoryDecl>(
4050 Importer.Import(D->getCategoryDecl()));
4051 if (!Category)
Craig Topper36250ad2014-05-12 05:36:57 +00004052 return nullptr;
4053
Douglas Gregor4da9d682010-12-07 15:32:12 +00004054 ObjCCategoryImplDecl *ToImpl = Category->getImplementation();
4055 if (!ToImpl) {
4056 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
4057 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00004058 return nullptr;
4059
Argyrios Kyrtzidis4996f5f2011-12-09 00:31:40 +00004060 SourceLocation CategoryNameLoc = Importer.Import(D->getCategoryNameLoc());
Douglas Gregor4da9d682010-12-07 15:32:12 +00004061 ToImpl = ObjCCategoryImplDecl::Create(Importer.getToContext(), DC,
Douglas Gregor4da9d682010-12-07 15:32:12 +00004062 Importer.Import(D->getIdentifier()),
Argyrios Kyrtzidis52f53fb2011-10-04 04:48:02 +00004063 Category->getClassInterface(),
4064 Importer.Import(D->getLocation()),
Argyrios Kyrtzidis4996f5f2011-12-09 00:31:40 +00004065 Importer.Import(D->getAtStartLoc()),
4066 CategoryNameLoc);
Douglas Gregor4da9d682010-12-07 15:32:12 +00004067
4068 DeclContext *LexicalDC = DC;
4069 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4070 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4071 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004072 return nullptr;
4073
Douglas Gregor4da9d682010-12-07 15:32:12 +00004074 ToImpl->setLexicalDeclContext(LexicalDC);
4075 }
4076
Sean Callanan95e74be2011-10-21 02:57:43 +00004077 LexicalDC->addDeclInternal(ToImpl);
Douglas Gregor4da9d682010-12-07 15:32:12 +00004078 Category->setImplementation(ToImpl);
4079 }
4080
4081 Importer.Imported(D, ToImpl);
Douglas Gregor35fd7bc2010-12-08 16:41:55 +00004082 ImportDeclContext(D);
Douglas Gregor4da9d682010-12-07 15:32:12 +00004083 return ToImpl;
4084}
4085
Douglas Gregorda8025c2010-12-07 01:26:03 +00004086Decl *ASTNodeImporter::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
4087 // Find the corresponding interface.
4088 ObjCInterfaceDecl *Iface = cast_or_null<ObjCInterfaceDecl>(
4089 Importer.Import(D->getClassInterface()));
4090 if (!Iface)
Craig Topper36250ad2014-05-12 05:36:57 +00004091 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00004092
4093 // Import the superclass, if any.
Craig Topper36250ad2014-05-12 05:36:57 +00004094 ObjCInterfaceDecl *Super = nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00004095 if (D->getSuperClass()) {
4096 Super = cast_or_null<ObjCInterfaceDecl>(
4097 Importer.Import(D->getSuperClass()));
4098 if (!Super)
Craig Topper36250ad2014-05-12 05:36:57 +00004099 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00004100 }
4101
4102 ObjCImplementationDecl *Impl = Iface->getImplementation();
4103 if (!Impl) {
4104 // We haven't imported an implementation yet. Create a new @implementation
4105 // now.
4106 Impl = ObjCImplementationDecl::Create(Importer.getToContext(),
4107 Importer.ImportContext(D->getDeclContext()),
Argyrios Kyrtzidis52f53fb2011-10-04 04:48:02 +00004108 Iface, Super,
Douglas Gregorda8025c2010-12-07 01:26:03 +00004109 Importer.Import(D->getLocation()),
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00004110 Importer.Import(D->getAtStartLoc()),
Argyrios Kyrtzidis5d2ce842013-05-03 22:31:26 +00004111 Importer.Import(D->getSuperClassLoc()),
Fariborz Jahaniana7765fe2012-02-20 20:09:20 +00004112 Importer.Import(D->getIvarLBraceLoc()),
4113 Importer.Import(D->getIvarRBraceLoc()));
Douglas Gregorda8025c2010-12-07 01:26:03 +00004114
4115 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4116 DeclContext *LexicalDC
4117 = Importer.ImportContext(D->getLexicalDeclContext());
4118 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004119 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00004120 Impl->setLexicalDeclContext(LexicalDC);
4121 }
4122
4123 // Associate the implementation with the class it implements.
4124 Iface->setImplementation(Impl);
4125 Importer.Imported(D, Iface->getImplementation());
4126 } else {
4127 Importer.Imported(D, Iface->getImplementation());
4128
4129 // Verify that the existing @implementation has the same superclass.
4130 if ((Super && !Impl->getSuperClass()) ||
4131 (!Super && Impl->getSuperClass()) ||
Craig Topperdcfc60f2014-05-07 06:57:44 +00004132 (Super && Impl->getSuperClass() &&
4133 !declaresSameEntity(Super->getCanonicalDecl(),
4134 Impl->getSuperClass()))) {
4135 Importer.ToDiag(Impl->getLocation(),
4136 diag::err_odr_objc_superclass_inconsistent)
4137 << Iface->getDeclName();
4138 // FIXME: It would be nice to have the location of the superclass
4139 // below.
4140 if (Impl->getSuperClass())
4141 Importer.ToDiag(Impl->getLocation(),
4142 diag::note_odr_objc_superclass)
4143 << Impl->getSuperClass()->getDeclName();
4144 else
4145 Importer.ToDiag(Impl->getLocation(),
4146 diag::note_odr_objc_missing_superclass);
4147 if (D->getSuperClass())
4148 Importer.FromDiag(D->getLocation(),
Douglas Gregorda8025c2010-12-07 01:26:03 +00004149 diag::note_odr_objc_superclass)
Craig Topperdcfc60f2014-05-07 06:57:44 +00004150 << D->getSuperClass()->getDeclName();
4151 else
4152 Importer.FromDiag(D->getLocation(),
Douglas Gregorda8025c2010-12-07 01:26:03 +00004153 diag::note_odr_objc_missing_superclass);
Craig Topper36250ad2014-05-12 05:36:57 +00004154 return nullptr;
Douglas Gregorda8025c2010-12-07 01:26:03 +00004155 }
4156 }
4157
4158 // Import all of the members of this @implementation.
4159 ImportDeclContext(D);
4160
4161 return Impl;
4162}
4163
Douglas Gregora11c4582010-02-17 18:02:10 +00004164Decl *ASTNodeImporter::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
4165 // Import the major distinguishing characteristics of an @property.
4166 DeclContext *DC, *LexicalDC;
4167 DeclarationName Name;
4168 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00004169 NamedDecl *ToD;
4170 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00004171 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00004172 if (ToD)
4173 return ToD;
Douglas Gregora11c4582010-02-17 18:02:10 +00004174
4175 // Check whether we have already imported this property.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004176 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00004177 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004178 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
Douglas Gregora11c4582010-02-17 18:02:10 +00004179 if (ObjCPropertyDecl *FoundProp
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004180 = dyn_cast<ObjCPropertyDecl>(FoundDecls[I])) {
Douglas Gregora11c4582010-02-17 18:02:10 +00004181 // Check property types.
4182 if (!Importer.IsStructurallyEquivalent(D->getType(),
4183 FoundProp->getType())) {
4184 Importer.ToDiag(Loc, diag::err_odr_objc_property_type_inconsistent)
4185 << Name << D->getType() << FoundProp->getType();
4186 Importer.ToDiag(FoundProp->getLocation(), diag::note_odr_value_here)
4187 << FoundProp->getType();
Craig Topper36250ad2014-05-12 05:36:57 +00004188 return nullptr;
Douglas Gregora11c4582010-02-17 18:02:10 +00004189 }
4190
4191 // FIXME: Check property attributes, getters, setters, etc.?
4192
4193 // Consider these properties to be equivalent.
4194 Importer.Imported(D, FoundProp);
4195 return FoundProp;
4196 }
4197 }
4198
4199 // Import the type.
Douglas Gregor813a0662015-06-19 18:14:38 +00004200 TypeSourceInfo *TSI = Importer.Import(D->getTypeSourceInfo());
4201 if (!TSI)
Craig Topper36250ad2014-05-12 05:36:57 +00004202 return nullptr;
Douglas Gregora11c4582010-02-17 18:02:10 +00004203
4204 // Create the new property.
4205 ObjCPropertyDecl *ToProperty
4206 = ObjCPropertyDecl::Create(Importer.getToContext(), DC, Loc,
4207 Name.getAsIdentifierInfo(),
4208 Importer.Import(D->getAtLoc()),
Fariborz Jahanian86c2f5c2012-02-29 22:18:55 +00004209 Importer.Import(D->getLParenLoc()),
Douglas Gregor813a0662015-06-19 18:14:38 +00004210 Importer.Import(D->getType()),
4211 TSI,
Douglas Gregora11c4582010-02-17 18:02:10 +00004212 D->getPropertyImplementation());
4213 Importer.Imported(D, ToProperty);
4214 ToProperty->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00004215 LexicalDC->addDeclInternal(ToProperty);
Douglas Gregora11c4582010-02-17 18:02:10 +00004216
4217 ToProperty->setPropertyAttributes(D->getPropertyAttributes());
Fariborz Jahanian3bf0ded2010-06-22 23:20:40 +00004218 ToProperty->setPropertyAttributesAsWritten(
4219 D->getPropertyAttributesAsWritten());
Douglas Gregora11c4582010-02-17 18:02:10 +00004220 ToProperty->setGetterName(Importer.Import(D->getGetterName()));
4221 ToProperty->setSetterName(Importer.Import(D->getSetterName()));
4222 ToProperty->setGetterMethodDecl(
4223 cast_or_null<ObjCMethodDecl>(Importer.Import(D->getGetterMethodDecl())));
4224 ToProperty->setSetterMethodDecl(
4225 cast_or_null<ObjCMethodDecl>(Importer.Import(D->getSetterMethodDecl())));
4226 ToProperty->setPropertyIvarDecl(
4227 cast_or_null<ObjCIvarDecl>(Importer.Import(D->getPropertyIvarDecl())));
4228 return ToProperty;
4229}
4230
Douglas Gregor14a49e22010-12-07 18:32:03 +00004231Decl *ASTNodeImporter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
4232 ObjCPropertyDecl *Property = cast_or_null<ObjCPropertyDecl>(
4233 Importer.Import(D->getPropertyDecl()));
4234 if (!Property)
Craig Topper36250ad2014-05-12 05:36:57 +00004235 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004236
4237 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
4238 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00004239 return nullptr;
4240
Douglas Gregor14a49e22010-12-07 18:32:03 +00004241 // Import the lexical declaration context.
4242 DeclContext *LexicalDC = DC;
4243 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4244 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4245 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004246 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004247 }
4248
4249 ObjCImplDecl *InImpl = dyn_cast<ObjCImplDecl>(LexicalDC);
4250 if (!InImpl)
Craig Topper36250ad2014-05-12 05:36:57 +00004251 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004252
4253 // Import the ivar (for an @synthesize).
Craig Topper36250ad2014-05-12 05:36:57 +00004254 ObjCIvarDecl *Ivar = nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004255 if (D->getPropertyIvarDecl()) {
4256 Ivar = cast_or_null<ObjCIvarDecl>(
4257 Importer.Import(D->getPropertyIvarDecl()));
4258 if (!Ivar)
Craig Topper36250ad2014-05-12 05:36:57 +00004259 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004260 }
4261
4262 ObjCPropertyImplDecl *ToImpl
Manman Ren5b786402016-01-28 18:49:28 +00004263 = InImpl->FindPropertyImplDecl(Property->getIdentifier(),
4264 Property->getQueryKind());
Douglas Gregor14a49e22010-12-07 18:32:03 +00004265 if (!ToImpl) {
4266 ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC,
4267 Importer.Import(D->getLocStart()),
4268 Importer.Import(D->getLocation()),
4269 Property,
4270 D->getPropertyImplementation(),
4271 Ivar,
4272 Importer.Import(D->getPropertyIvarDeclLoc()));
4273 ToImpl->setLexicalDeclContext(LexicalDC);
4274 Importer.Imported(D, ToImpl);
Sean Callanan95e74be2011-10-21 02:57:43 +00004275 LexicalDC->addDeclInternal(ToImpl);
Douglas Gregor14a49e22010-12-07 18:32:03 +00004276 } else {
4277 // Check that we have the same kind of property implementation (@synthesize
4278 // vs. @dynamic).
4279 if (D->getPropertyImplementation() != ToImpl->getPropertyImplementation()) {
4280 Importer.ToDiag(ToImpl->getLocation(),
4281 diag::err_odr_objc_property_impl_kind_inconsistent)
4282 << Property->getDeclName()
4283 << (ToImpl->getPropertyImplementation()
4284 == ObjCPropertyImplDecl::Dynamic);
4285 Importer.FromDiag(D->getLocation(),
4286 diag::note_odr_objc_property_impl_kind)
4287 << D->getPropertyDecl()->getDeclName()
4288 << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic);
Craig Topper36250ad2014-05-12 05:36:57 +00004289 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004290 }
4291
4292 // For @synthesize, check that we have the same
4293 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize &&
4294 Ivar != ToImpl->getPropertyIvarDecl()) {
4295 Importer.ToDiag(ToImpl->getPropertyIvarDeclLoc(),
4296 diag::err_odr_objc_synthesize_ivar_inconsistent)
4297 << Property->getDeclName()
4298 << ToImpl->getPropertyIvarDecl()->getDeclName()
4299 << Ivar->getDeclName();
4300 Importer.FromDiag(D->getPropertyIvarDeclLoc(),
4301 diag::note_odr_objc_synthesize_ivar_here)
4302 << D->getPropertyIvarDecl()->getDeclName();
Craig Topper36250ad2014-05-12 05:36:57 +00004303 return nullptr;
Douglas Gregor14a49e22010-12-07 18:32:03 +00004304 }
4305
4306 // Merge the existing implementation with the new implementation.
4307 Importer.Imported(D, ToImpl);
4308 }
4309
4310 return ToImpl;
4311}
4312
Douglas Gregora082a492010-11-30 19:14:50 +00004313Decl *ASTNodeImporter::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
4314 // For template arguments, we adopt the translation unit as our declaration
4315 // context. This context will be fixed when the actual template declaration
4316 // is created.
4317
4318 // FIXME: Import default argument.
4319 return TemplateTypeParmDecl::Create(Importer.getToContext(),
4320 Importer.getToContext().getTranslationUnitDecl(),
Abramo Bagnarab3185b02011-03-06 15:48:19 +00004321 Importer.Import(D->getLocStart()),
Douglas Gregora082a492010-11-30 19:14:50 +00004322 Importer.Import(D->getLocation()),
4323 D->getDepth(),
4324 D->getIndex(),
4325 Importer.Import(D->getIdentifier()),
4326 D->wasDeclaredWithTypename(),
4327 D->isParameterPack());
4328}
4329
4330Decl *
4331ASTNodeImporter::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
4332 // Import the name of this declaration.
4333 DeclarationName Name = Importer.Import(D->getDeclName());
4334 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004335 return nullptr;
4336
Douglas Gregora082a492010-11-30 19:14:50 +00004337 // Import the location of this declaration.
4338 SourceLocation Loc = Importer.Import(D->getLocation());
4339
4340 // Import the type of this declaration.
4341 QualType T = Importer.Import(D->getType());
4342 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00004343 return nullptr;
4344
Douglas Gregora082a492010-11-30 19:14:50 +00004345 // Import type-source information.
4346 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
4347 if (D->getTypeSourceInfo() && !TInfo)
Craig Topper36250ad2014-05-12 05:36:57 +00004348 return nullptr;
4349
Douglas Gregora082a492010-11-30 19:14:50 +00004350 // FIXME: Import default argument.
4351
4352 return NonTypeTemplateParmDecl::Create(Importer.getToContext(),
4353 Importer.getToContext().getTranslationUnitDecl(),
Abramo Bagnaradff19302011-03-08 08:55:46 +00004354 Importer.Import(D->getInnerLocStart()),
Douglas Gregora082a492010-11-30 19:14:50 +00004355 Loc, D->getDepth(), D->getPosition(),
4356 Name.getAsIdentifierInfo(),
Douglas Gregorda3cc0d2010-12-23 23:51:58 +00004357 T, D->isParameterPack(), TInfo);
Douglas Gregora082a492010-11-30 19:14:50 +00004358}
4359
4360Decl *
4361ASTNodeImporter::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
4362 // Import the name of this declaration.
4363 DeclarationName Name = Importer.Import(D->getDeclName());
4364 if (D->getDeclName() && !Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004365 return nullptr;
4366
Douglas Gregora082a492010-11-30 19:14:50 +00004367 // Import the location of this declaration.
4368 SourceLocation Loc = Importer.Import(D->getLocation());
4369
4370 // Import template parameters.
4371 TemplateParameterList *TemplateParams
4372 = ImportTemplateParameterList(D->getTemplateParameters());
4373 if (!TemplateParams)
Craig Topper36250ad2014-05-12 05:36:57 +00004374 return nullptr;
4375
Douglas Gregora082a492010-11-30 19:14:50 +00004376 // FIXME: Import default argument.
4377
4378 return TemplateTemplateParmDecl::Create(Importer.getToContext(),
4379 Importer.getToContext().getTranslationUnitDecl(),
4380 Loc, D->getDepth(), D->getPosition(),
Douglas Gregorf5500772011-01-05 15:48:55 +00004381 D->isParameterPack(),
Douglas Gregora082a492010-11-30 19:14:50 +00004382 Name.getAsIdentifierInfo(),
4383 TemplateParams);
4384}
4385
4386Decl *ASTNodeImporter::VisitClassTemplateDecl(ClassTemplateDecl *D) {
4387 // If this record has a definition in the translation unit we're coming from,
4388 // but this particular declaration is not that definition, import the
4389 // definition and map to that.
4390 CXXRecordDecl *Definition
4391 = cast_or_null<CXXRecordDecl>(D->getTemplatedDecl()->getDefinition());
4392 if (Definition && Definition != D->getTemplatedDecl()) {
4393 Decl *ImportedDef
4394 = Importer.Import(Definition->getDescribedClassTemplate());
4395 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004396 return nullptr;
4397
Douglas Gregora082a492010-11-30 19:14:50 +00004398 return Importer.Imported(D, ImportedDef);
4399 }
4400
4401 // Import the major distinguishing characteristics of this class template.
4402 DeclContext *DC, *LexicalDC;
4403 DeclarationName Name;
4404 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00004405 NamedDecl *ToD;
4406 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00004407 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00004408 if (ToD)
4409 return ToD;
Craig Topper36250ad2014-05-12 05:36:57 +00004410
Douglas Gregora082a492010-11-30 19:14:50 +00004411 // We may already have a template of the same name; try to find and match it.
4412 if (!DC->isFunctionOrMethod()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004413 SmallVector<NamedDecl *, 4> ConflictingDecls;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004414 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00004415 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004416 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4417 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
Douglas Gregora082a492010-11-30 19:14:50 +00004418 continue;
4419
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004420 Decl *Found = FoundDecls[I];
Douglas Gregora082a492010-11-30 19:14:50 +00004421 if (ClassTemplateDecl *FoundTemplate
4422 = dyn_cast<ClassTemplateDecl>(Found)) {
4423 if (IsStructuralMatch(D, FoundTemplate)) {
4424 // The class templates structurally match; call it the same template.
4425 // FIXME: We may be filling in a forward declaration here. Handle
4426 // this case!
4427 Importer.Imported(D->getTemplatedDecl(),
4428 FoundTemplate->getTemplatedDecl());
4429 return Importer.Imported(D, FoundTemplate);
4430 }
4431 }
4432
Douglas Gregor9e0a5b32011-10-15 00:10:27 +00004433 ConflictingDecls.push_back(FoundDecls[I]);
Douglas Gregora082a492010-11-30 19:14:50 +00004434 }
4435
4436 if (!ConflictingDecls.empty()) {
4437 Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Ordinary,
4438 ConflictingDecls.data(),
4439 ConflictingDecls.size());
4440 }
4441
4442 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004443 return nullptr;
Douglas Gregora082a492010-11-30 19:14:50 +00004444 }
4445
4446 CXXRecordDecl *DTemplated = D->getTemplatedDecl();
4447
4448 // Create the declaration that is being templated.
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00004449 // Create the declaration that is being templated.
4450 CXXRecordDecl *D2Templated = cast_or_null<CXXRecordDecl>(
4451 Importer.Import(DTemplated));
4452 if (!D2Templated)
4453 return nullptr;
4454
4455 // Resolve possible cyclic import.
4456 if (Decl *AlreadyImported = Importer.GetAlreadyImportedOrNull(D))
4457 return AlreadyImported;
4458
Douglas Gregora082a492010-11-30 19:14:50 +00004459 // Create the class template declaration itself.
4460 TemplateParameterList *TemplateParams
4461 = ImportTemplateParameterList(D->getTemplateParameters());
4462 if (!TemplateParams)
Craig Topper36250ad2014-05-12 05:36:57 +00004463 return nullptr;
4464
Douglas Gregora082a492010-11-30 19:14:50 +00004465 ClassTemplateDecl *D2 = ClassTemplateDecl::Create(Importer.getToContext(), DC,
4466 Loc, Name, TemplateParams,
4467 D2Templated,
Craig Topper36250ad2014-05-12 05:36:57 +00004468 /*PrevDecl=*/nullptr);
Douglas Gregora082a492010-11-30 19:14:50 +00004469 D2Templated->setDescribedClassTemplate(D2);
4470
4471 D2->setAccess(D->getAccess());
4472 D2->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00004473 LexicalDC->addDeclInternal(D2);
Douglas Gregora082a492010-11-30 19:14:50 +00004474
4475 // Note the relationship between the class templates.
4476 Importer.Imported(D, D2);
4477 Importer.Imported(DTemplated, D2Templated);
4478
John McCallf937c022011-10-07 06:10:15 +00004479 if (DTemplated->isCompleteDefinition() &&
4480 !D2Templated->isCompleteDefinition()) {
Douglas Gregora082a492010-11-30 19:14:50 +00004481 // FIXME: Import definition!
4482 }
4483
4484 return D2;
4485}
4486
Douglas Gregore2e50d332010-12-01 01:36:18 +00004487Decl *ASTNodeImporter::VisitClassTemplateSpecializationDecl(
4488 ClassTemplateSpecializationDecl *D) {
4489 // If this record has a definition in the translation unit we're coming from,
4490 // but this particular declaration is not that definition, import the
4491 // definition and map to that.
4492 TagDecl *Definition = D->getDefinition();
4493 if (Definition && Definition != D) {
4494 Decl *ImportedDef = Importer.Import(Definition);
4495 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004496 return nullptr;
4497
Douglas Gregore2e50d332010-12-01 01:36:18 +00004498 return Importer.Imported(D, ImportedDef);
4499 }
4500
4501 ClassTemplateDecl *ClassTemplate
4502 = cast_or_null<ClassTemplateDecl>(Importer.Import(
4503 D->getSpecializedTemplate()));
4504 if (!ClassTemplate)
Craig Topper36250ad2014-05-12 05:36:57 +00004505 return nullptr;
4506
Douglas Gregore2e50d332010-12-01 01:36:18 +00004507 // Import the context of this declaration.
4508 DeclContext *DC = ClassTemplate->getDeclContext();
4509 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00004510 return nullptr;
4511
Douglas Gregore2e50d332010-12-01 01:36:18 +00004512 DeclContext *LexicalDC = DC;
4513 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4514 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4515 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004516 return nullptr;
Douglas Gregore2e50d332010-12-01 01:36:18 +00004517 }
4518
4519 // Import the location of this declaration.
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004520 SourceLocation StartLoc = Importer.Import(D->getLocStart());
4521 SourceLocation IdLoc = Importer.Import(D->getLocation());
Douglas Gregore2e50d332010-12-01 01:36:18 +00004522
4523 // Import template arguments.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004524 SmallVector<TemplateArgument, 2> TemplateArgs;
Douglas Gregore2e50d332010-12-01 01:36:18 +00004525 if (ImportTemplateArguments(D->getTemplateArgs().data(),
4526 D->getTemplateArgs().size(),
4527 TemplateArgs))
Craig Topper36250ad2014-05-12 05:36:57 +00004528 return nullptr;
4529
Douglas Gregore2e50d332010-12-01 01:36:18 +00004530 // Try to find an existing specialization with these template arguments.
Craig Topper36250ad2014-05-12 05:36:57 +00004531 void *InsertPos = nullptr;
Douglas Gregore2e50d332010-12-01 01:36:18 +00004532 ClassTemplateSpecializationDecl *D2
Craig Topper7e0daca2014-06-26 04:58:53 +00004533 = ClassTemplate->findSpecialization(TemplateArgs, InsertPos);
Douglas Gregore2e50d332010-12-01 01:36:18 +00004534 if (D2) {
4535 // We already have a class template specialization with these template
4536 // arguments.
4537
4538 // FIXME: Check for specialization vs. instantiation errors.
4539
4540 if (RecordDecl *FoundDef = D2->getDefinition()) {
John McCallf937c022011-10-07 06:10:15 +00004541 if (!D->isCompleteDefinition() || IsStructuralMatch(D, FoundDef)) {
Douglas Gregore2e50d332010-12-01 01:36:18 +00004542 // The record types structurally match, or the "from" translation
4543 // unit only had a forward declaration anyway; call it the same
4544 // function.
4545 return Importer.Imported(D, FoundDef);
4546 }
4547 }
4548 } else {
4549 // Create a new specialization.
4550 D2 = ClassTemplateSpecializationDecl::Create(Importer.getToContext(),
4551 D->getTagKind(), DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00004552 StartLoc, IdLoc,
4553 ClassTemplate,
Douglas Gregore2e50d332010-12-01 01:36:18 +00004554 TemplateArgs.data(),
4555 TemplateArgs.size(),
Craig Topper36250ad2014-05-12 05:36:57 +00004556 /*PrevDecl=*/nullptr);
Douglas Gregore2e50d332010-12-01 01:36:18 +00004557 D2->setSpecializationKind(D->getSpecializationKind());
4558
4559 // Add this specialization to the class template.
4560 ClassTemplate->AddSpecialization(D2, InsertPos);
4561
4562 // Import the qualifier, if any.
Douglas Gregor14454802011-02-25 02:25:35 +00004563 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
Douglas Gregore2e50d332010-12-01 01:36:18 +00004564
4565 // Add the specialization to this context.
4566 D2->setLexicalDeclContext(LexicalDC);
Sean Callanan95e74be2011-10-21 02:57:43 +00004567 LexicalDC->addDeclInternal(D2);
Douglas Gregore2e50d332010-12-01 01:36:18 +00004568 }
4569 Importer.Imported(D, D2);
4570
John McCallf937c022011-10-07 06:10:15 +00004571 if (D->isCompleteDefinition() && ImportDefinition(D, D2))
Craig Topper36250ad2014-05-12 05:36:57 +00004572 return nullptr;
4573
Douglas Gregore2e50d332010-12-01 01:36:18 +00004574 return D2;
4575}
4576
Larisse Voufo39a1e502013-08-06 01:03:05 +00004577Decl *ASTNodeImporter::VisitVarTemplateDecl(VarTemplateDecl *D) {
4578 // If this variable has a definition in the translation unit we're coming
4579 // from,
4580 // but this particular declaration is not that definition, import the
4581 // definition and map to that.
4582 VarDecl *Definition =
4583 cast_or_null<VarDecl>(D->getTemplatedDecl()->getDefinition());
4584 if (Definition && Definition != D->getTemplatedDecl()) {
4585 Decl *ImportedDef = Importer.Import(Definition->getDescribedVarTemplate());
4586 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004587 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004588
4589 return Importer.Imported(D, ImportedDef);
4590 }
4591
4592 // Import the major distinguishing characteristics of this variable template.
4593 DeclContext *DC, *LexicalDC;
4594 DeclarationName Name;
4595 SourceLocation Loc;
Sean Callanan59721b32015-04-28 18:41:46 +00004596 NamedDecl *ToD;
4597 if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
Craig Topper36250ad2014-05-12 05:36:57 +00004598 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00004599 if (ToD)
4600 return ToD;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004601
4602 // We may already have a template of the same name; try to find and match it.
4603 assert(!DC->isFunctionOrMethod() &&
4604 "Variable templates cannot be declared at function scope");
4605 SmallVector<NamedDecl *, 4> ConflictingDecls;
4606 SmallVector<NamedDecl *, 2> FoundDecls;
Sean Callanan49475322014-12-10 03:09:41 +00004607 DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004608 for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4609 if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
4610 continue;
4611
4612 Decl *Found = FoundDecls[I];
4613 if (VarTemplateDecl *FoundTemplate = dyn_cast<VarTemplateDecl>(Found)) {
4614 if (IsStructuralMatch(D, FoundTemplate)) {
4615 // The variable templates structurally match; call it the same template.
4616 Importer.Imported(D->getTemplatedDecl(),
4617 FoundTemplate->getTemplatedDecl());
4618 return Importer.Imported(D, FoundTemplate);
4619 }
4620 }
4621
4622 ConflictingDecls.push_back(FoundDecls[I]);
4623 }
4624
4625 if (!ConflictingDecls.empty()) {
4626 Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Ordinary,
4627 ConflictingDecls.data(),
4628 ConflictingDecls.size());
4629 }
4630
4631 if (!Name)
Craig Topper36250ad2014-05-12 05:36:57 +00004632 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004633
4634 VarDecl *DTemplated = D->getTemplatedDecl();
4635
4636 // Import the type.
4637 QualType T = Importer.Import(DTemplated->getType());
4638 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00004639 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004640
4641 // Create the declaration that is being templated.
4642 SourceLocation StartLoc = Importer.Import(DTemplated->getLocStart());
4643 SourceLocation IdLoc = Importer.Import(DTemplated->getLocation());
4644 TypeSourceInfo *TInfo = Importer.Import(DTemplated->getTypeSourceInfo());
4645 VarDecl *D2Templated = VarDecl::Create(Importer.getToContext(), DC, StartLoc,
4646 IdLoc, Name.getAsIdentifierInfo(), T,
4647 TInfo, DTemplated->getStorageClass());
4648 D2Templated->setAccess(DTemplated->getAccess());
4649 D2Templated->setQualifierInfo(Importer.Import(DTemplated->getQualifierLoc()));
4650 D2Templated->setLexicalDeclContext(LexicalDC);
4651
4652 // Importer.Imported(DTemplated, D2Templated);
4653 // LexicalDC->addDeclInternal(D2Templated);
4654
4655 // Merge the initializer.
4656 if (ImportDefinition(DTemplated, D2Templated))
Craig Topper36250ad2014-05-12 05:36:57 +00004657 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004658
4659 // Create the variable template declaration itself.
4660 TemplateParameterList *TemplateParams =
4661 ImportTemplateParameterList(D->getTemplateParameters());
4662 if (!TemplateParams)
Craig Topper36250ad2014-05-12 05:36:57 +00004663 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004664
4665 VarTemplateDecl *D2 = VarTemplateDecl::Create(
Richard Smithbeef3452014-01-16 23:39:20 +00004666 Importer.getToContext(), DC, Loc, Name, TemplateParams, D2Templated);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004667 D2Templated->setDescribedVarTemplate(D2);
4668
4669 D2->setAccess(D->getAccess());
4670 D2->setLexicalDeclContext(LexicalDC);
4671 LexicalDC->addDeclInternal(D2);
4672
4673 // Note the relationship between the variable templates.
4674 Importer.Imported(D, D2);
4675 Importer.Imported(DTemplated, D2Templated);
4676
4677 if (DTemplated->isThisDeclarationADefinition() &&
4678 !D2Templated->isThisDeclarationADefinition()) {
4679 // FIXME: Import definition!
4680 }
4681
4682 return D2;
4683}
4684
4685Decl *ASTNodeImporter::VisitVarTemplateSpecializationDecl(
4686 VarTemplateSpecializationDecl *D) {
4687 // If this record has a definition in the translation unit we're coming from,
4688 // but this particular declaration is not that definition, import the
4689 // definition and map to that.
4690 VarDecl *Definition = D->getDefinition();
4691 if (Definition && Definition != D) {
4692 Decl *ImportedDef = Importer.Import(Definition);
4693 if (!ImportedDef)
Craig Topper36250ad2014-05-12 05:36:57 +00004694 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004695
4696 return Importer.Imported(D, ImportedDef);
4697 }
4698
4699 VarTemplateDecl *VarTemplate = cast_or_null<VarTemplateDecl>(
4700 Importer.Import(D->getSpecializedTemplate()));
4701 if (!VarTemplate)
Craig Topper36250ad2014-05-12 05:36:57 +00004702 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004703
4704 // Import the context of this declaration.
4705 DeclContext *DC = VarTemplate->getDeclContext();
4706 if (!DC)
Craig Topper36250ad2014-05-12 05:36:57 +00004707 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004708
4709 DeclContext *LexicalDC = DC;
4710 if (D->getDeclContext() != D->getLexicalDeclContext()) {
4711 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4712 if (!LexicalDC)
Craig Topper36250ad2014-05-12 05:36:57 +00004713 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004714 }
4715
4716 // Import the location of this declaration.
4717 SourceLocation StartLoc = Importer.Import(D->getLocStart());
4718 SourceLocation IdLoc = Importer.Import(D->getLocation());
4719
4720 // Import template arguments.
4721 SmallVector<TemplateArgument, 2> TemplateArgs;
4722 if (ImportTemplateArguments(D->getTemplateArgs().data(),
4723 D->getTemplateArgs().size(), TemplateArgs))
Craig Topper36250ad2014-05-12 05:36:57 +00004724 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004725
4726 // Try to find an existing specialization with these template arguments.
Craig Topper36250ad2014-05-12 05:36:57 +00004727 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004728 VarTemplateSpecializationDecl *D2 = VarTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00004729 TemplateArgs, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004730 if (D2) {
4731 // We already have a variable template specialization with these template
4732 // arguments.
4733
4734 // FIXME: Check for specialization vs. instantiation errors.
4735
4736 if (VarDecl *FoundDef = D2->getDefinition()) {
4737 if (!D->isThisDeclarationADefinition() ||
4738 IsStructuralMatch(D, FoundDef)) {
4739 // The record types structurally match, or the "from" translation
4740 // unit only had a forward declaration anyway; call it the same
4741 // variable.
4742 return Importer.Imported(D, FoundDef);
4743 }
4744 }
4745 } else {
4746
4747 // Import the type.
4748 QualType T = Importer.Import(D->getType());
4749 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00004750 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004751 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
4752
4753 // Create a new specialization.
4754 D2 = VarTemplateSpecializationDecl::Create(
4755 Importer.getToContext(), DC, StartLoc, IdLoc, VarTemplate, T, TInfo,
4756 D->getStorageClass(), TemplateArgs.data(), TemplateArgs.size());
4757 D2->setSpecializationKind(D->getSpecializationKind());
4758 D2->setTemplateArgsInfo(D->getTemplateArgsInfo());
4759
4760 // Add this specialization to the class template.
4761 VarTemplate->AddSpecialization(D2, InsertPos);
4762
4763 // Import the qualifier, if any.
4764 D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
4765
4766 // Add the specialization to this context.
4767 D2->setLexicalDeclContext(LexicalDC);
4768 LexicalDC->addDeclInternal(D2);
4769 }
4770 Importer.Imported(D, D2);
4771
4772 if (D->isThisDeclarationADefinition() && ImportDefinition(D, D2))
Craig Topper36250ad2014-05-12 05:36:57 +00004773 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004774
4775 return D2;
4776}
4777
Douglas Gregor7eeb5972010-02-11 19:21:55 +00004778//----------------------------------------------------------------------------
4779// Import Statements
4780//----------------------------------------------------------------------------
4781
Sean Callanan59721b32015-04-28 18:41:46 +00004782DeclGroupRef ASTNodeImporter::ImportDeclGroup(DeclGroupRef DG) {
4783 if (DG.isNull())
4784 return DeclGroupRef::Create(Importer.getToContext(), nullptr, 0);
4785 size_t NumDecls = DG.end() - DG.begin();
4786 SmallVector<Decl *, 1> ToDecls(NumDecls);
4787 auto &_Importer = this->Importer;
4788 std::transform(DG.begin(), DG.end(), ToDecls.begin(),
4789 [&_Importer](Decl *D) -> Decl * {
4790 return _Importer.Import(D);
4791 });
4792 return DeclGroupRef::Create(Importer.getToContext(),
4793 ToDecls.begin(),
4794 NumDecls);
4795}
4796
4797 Stmt *ASTNodeImporter::VisitStmt(Stmt *S) {
4798 Importer.FromDiag(S->getLocStart(), diag::err_unsupported_ast_node)
4799 << S->getStmtClassName();
4800 return nullptr;
4801 }
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00004802
4803
4804Stmt *ASTNodeImporter::VisitGCCAsmStmt(GCCAsmStmt *S) {
4805 SmallVector<IdentifierInfo *, 4> Names;
4806 for (unsigned I = 0, E = S->getNumOutputs(); I != E; I++) {
4807 IdentifierInfo *ToII = Importer.Import(S->getOutputIdentifier(I));
4808 if (!ToII)
4809 return nullptr;
4810 Names.push_back(ToII);
4811 }
4812 for (unsigned I = 0, E = S->getNumInputs(); I != E; I++) {
4813 IdentifierInfo *ToII = Importer.Import(S->getInputIdentifier(I));
4814 if (!ToII)
4815 return nullptr;
4816 Names.push_back(ToII);
4817 }
4818
4819 SmallVector<StringLiteral *, 4> Clobbers;
4820 for (unsigned I = 0, E = S->getNumClobbers(); I != E; I++) {
4821 StringLiteral *Clobber = cast_or_null<StringLiteral>(
4822 Importer.Import(S->getClobberStringLiteral(I)));
4823 if (!Clobber)
4824 return nullptr;
4825 Clobbers.push_back(Clobber);
4826 }
4827
4828 SmallVector<StringLiteral *, 4> Constraints;
4829 for (unsigned I = 0, E = S->getNumOutputs(); I != E; I++) {
4830 StringLiteral *Output = cast_or_null<StringLiteral>(
4831 Importer.Import(S->getOutputConstraintLiteral(I)));
4832 if (!Output)
4833 return nullptr;
4834 Constraints.push_back(Output);
4835 }
4836
4837 for (unsigned I = 0, E = S->getNumInputs(); I != E; I++) {
4838 StringLiteral *Input = cast_or_null<StringLiteral>(
4839 Importer.Import(S->getInputConstraintLiteral(I)));
4840 if (!Input)
4841 return nullptr;
4842 Constraints.push_back(Input);
4843 }
4844
4845 SmallVector<Expr *, 4> Exprs(S->getNumOutputs() + S->getNumInputs());
4846 if (ImportArrayChecked(S->begin_outputs(), S->end_outputs(), Exprs.begin()))
4847 return nullptr;
4848
4849 if (ImportArrayChecked(S->begin_inputs(), S->end_inputs(),
4850 Exprs.begin() + S->getNumOutputs()))
4851 return nullptr;
4852
4853 StringLiteral *AsmStr = cast_or_null<StringLiteral>(
4854 Importer.Import(S->getAsmString()));
4855 if (!AsmStr)
4856 return nullptr;
4857
4858 return new (Importer.getToContext()) GCCAsmStmt(
4859 Importer.getToContext(),
4860 Importer.Import(S->getAsmLoc()),
4861 S->isSimple(),
4862 S->isVolatile(),
4863 S->getNumOutputs(),
4864 S->getNumInputs(),
4865 Names.data(),
4866 Constraints.data(),
4867 Exprs.data(),
4868 AsmStr,
4869 S->getNumClobbers(),
4870 Clobbers.data(),
4871 Importer.Import(S->getRParenLoc()));
4872}
4873
Sean Callanan59721b32015-04-28 18:41:46 +00004874Stmt *ASTNodeImporter::VisitDeclStmt(DeclStmt *S) {
4875 DeclGroupRef ToDG = ImportDeclGroup(S->getDeclGroup());
4876 for (Decl *ToD : ToDG) {
4877 if (!ToD)
4878 return nullptr;
4879 }
4880 SourceLocation ToStartLoc = Importer.Import(S->getStartLoc());
4881 SourceLocation ToEndLoc = Importer.Import(S->getEndLoc());
4882 return new (Importer.getToContext()) DeclStmt(ToDG, ToStartLoc, ToEndLoc);
4883}
4884
4885Stmt *ASTNodeImporter::VisitNullStmt(NullStmt *S) {
4886 SourceLocation ToSemiLoc = Importer.Import(S->getSemiLoc());
4887 return new (Importer.getToContext()) NullStmt(ToSemiLoc,
4888 S->hasLeadingEmptyMacro());
4889}
4890
4891Stmt *ASTNodeImporter::VisitCompoundStmt(CompoundStmt *S) {
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00004892 llvm::SmallVector<Stmt *, 8> ToStmts(S->size());
Sean Callanan8bca9962016-03-28 21:43:01 +00004893
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00004894 if (ImportArrayChecked(S->body_begin(), S->body_end(), ToStmts.begin()))
Sean Callanan8bca9962016-03-28 21:43:01 +00004895 return nullptr;
4896
Sean Callanan59721b32015-04-28 18:41:46 +00004897 SourceLocation ToLBraceLoc = Importer.Import(S->getLBracLoc());
4898 SourceLocation ToRBraceLoc = Importer.Import(S->getRBracLoc());
4899 return new (Importer.getToContext()) CompoundStmt(Importer.getToContext(),
4900 ToStmts,
4901 ToLBraceLoc, ToRBraceLoc);
4902}
4903
4904Stmt *ASTNodeImporter::VisitCaseStmt(CaseStmt *S) {
4905 Expr *ToLHS = Importer.Import(S->getLHS());
4906 if (!ToLHS)
4907 return nullptr;
4908 Expr *ToRHS = Importer.Import(S->getRHS());
4909 if (!ToRHS && S->getRHS())
4910 return nullptr;
4911 SourceLocation ToCaseLoc = Importer.Import(S->getCaseLoc());
4912 SourceLocation ToEllipsisLoc = Importer.Import(S->getEllipsisLoc());
4913 SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4914 return new (Importer.getToContext()) CaseStmt(ToLHS, ToRHS,
4915 ToCaseLoc, ToEllipsisLoc,
4916 ToColonLoc);
4917}
4918
4919Stmt *ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) {
4920 SourceLocation ToDefaultLoc = Importer.Import(S->getDefaultLoc());
4921 SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4922 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4923 if (!ToSubStmt && S->getSubStmt())
4924 return nullptr;
4925 return new (Importer.getToContext()) DefaultStmt(ToDefaultLoc, ToColonLoc,
4926 ToSubStmt);
4927}
4928
4929Stmt *ASTNodeImporter::VisitLabelStmt(LabelStmt *S) {
4930 SourceLocation ToIdentLoc = Importer.Import(S->getIdentLoc());
4931 LabelDecl *ToLabelDecl =
4932 cast_or_null<LabelDecl>(Importer.Import(S->getDecl()));
4933 if (!ToLabelDecl && S->getDecl())
4934 return nullptr;
4935 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4936 if (!ToSubStmt && S->getSubStmt())
4937 return nullptr;
4938 return new (Importer.getToContext()) LabelStmt(ToIdentLoc, ToLabelDecl,
4939 ToSubStmt);
4940}
4941
4942Stmt *ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) {
4943 SourceLocation ToAttrLoc = Importer.Import(S->getAttrLoc());
4944 ArrayRef<const Attr*> FromAttrs(S->getAttrs());
4945 SmallVector<const Attr *, 1> ToAttrs(FromAttrs.size());
4946 ASTContext &_ToContext = Importer.getToContext();
4947 std::transform(FromAttrs.begin(), FromAttrs.end(), ToAttrs.begin(),
4948 [&_ToContext](const Attr *A) -> const Attr * {
4949 return A->clone(_ToContext);
4950 });
4951 for (const Attr *ToA : ToAttrs) {
4952 if (!ToA)
4953 return nullptr;
4954 }
4955 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4956 if (!ToSubStmt && S->getSubStmt())
4957 return nullptr;
4958 return AttributedStmt::Create(Importer.getToContext(), ToAttrLoc,
4959 ToAttrs, ToSubStmt);
4960}
4961
4962Stmt *ASTNodeImporter::VisitIfStmt(IfStmt *S) {
4963 SourceLocation ToIfLoc = Importer.Import(S->getIfLoc());
4964 VarDecl *ToConditionVariable = nullptr;
4965 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4966 ToConditionVariable =
4967 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4968 if (!ToConditionVariable)
4969 return nullptr;
4970 }
4971 Expr *ToCondition = Importer.Import(S->getCond());
4972 if (!ToCondition && S->getCond())
4973 return nullptr;
4974 Stmt *ToThenStmt = Importer.Import(S->getThen());
4975 if (!ToThenStmt && S->getThen())
4976 return nullptr;
4977 SourceLocation ToElseLoc = Importer.Import(S->getElseLoc());
4978 Stmt *ToElseStmt = Importer.Import(S->getElse());
4979 if (!ToElseStmt && S->getElse())
4980 return nullptr;
4981 return new (Importer.getToContext()) IfStmt(Importer.getToContext(),
4982 ToIfLoc, ToConditionVariable,
4983 ToCondition, ToThenStmt,
4984 ToElseLoc, ToElseStmt);
4985}
4986
4987Stmt *ASTNodeImporter::VisitSwitchStmt(SwitchStmt *S) {
4988 VarDecl *ToConditionVariable = nullptr;
4989 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4990 ToConditionVariable =
4991 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4992 if (!ToConditionVariable)
4993 return nullptr;
4994 }
4995 Expr *ToCondition = Importer.Import(S->getCond());
4996 if (!ToCondition && S->getCond())
4997 return nullptr;
4998 SwitchStmt *ToStmt = new (Importer.getToContext()) SwitchStmt(
4999 Importer.getToContext(), ToConditionVariable,
5000 ToCondition);
5001 Stmt *ToBody = Importer.Import(S->getBody());
5002 if (!ToBody && S->getBody())
5003 return nullptr;
5004 ToStmt->setBody(ToBody);
5005 ToStmt->setSwitchLoc(Importer.Import(S->getSwitchLoc()));
5006 // Now we have to re-chain the cases.
5007 SwitchCase *LastChainedSwitchCase = nullptr;
5008 for (SwitchCase *SC = S->getSwitchCaseList(); SC != nullptr;
5009 SC = SC->getNextSwitchCase()) {
5010 SwitchCase *ToSC = dyn_cast_or_null<SwitchCase>(Importer.Import(SC));
5011 if (!ToSC)
5012 return nullptr;
5013 if (LastChainedSwitchCase)
5014 LastChainedSwitchCase->setNextSwitchCase(ToSC);
5015 else
5016 ToStmt->setSwitchCaseList(ToSC);
5017 LastChainedSwitchCase = ToSC;
5018 }
5019 return ToStmt;
5020}
5021
5022Stmt *ASTNodeImporter::VisitWhileStmt(WhileStmt *S) {
5023 VarDecl *ToConditionVariable = nullptr;
5024 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
5025 ToConditionVariable =
5026 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
5027 if (!ToConditionVariable)
5028 return nullptr;
5029 }
5030 Expr *ToCondition = Importer.Import(S->getCond());
5031 if (!ToCondition && S->getCond())
5032 return nullptr;
5033 Stmt *ToBody = Importer.Import(S->getBody());
5034 if (!ToBody && S->getBody())
5035 return nullptr;
5036 SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc());
5037 return new (Importer.getToContext()) WhileStmt(Importer.getToContext(),
5038 ToConditionVariable,
5039 ToCondition, ToBody,
5040 ToWhileLoc);
5041}
5042
5043Stmt *ASTNodeImporter::VisitDoStmt(DoStmt *S) {
5044 Stmt *ToBody = Importer.Import(S->getBody());
5045 if (!ToBody && S->getBody())
5046 return nullptr;
5047 Expr *ToCondition = Importer.Import(S->getCond());
5048 if (!ToCondition && S->getCond())
5049 return nullptr;
5050 SourceLocation ToDoLoc = Importer.Import(S->getDoLoc());
5051 SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc());
5052 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
5053 return new (Importer.getToContext()) DoStmt(ToBody, ToCondition,
5054 ToDoLoc, ToWhileLoc,
5055 ToRParenLoc);
5056}
5057
5058Stmt *ASTNodeImporter::VisitForStmt(ForStmt *S) {
5059 Stmt *ToInit = Importer.Import(S->getInit());
5060 if (!ToInit && S->getInit())
5061 return nullptr;
5062 Expr *ToCondition = Importer.Import(S->getCond());
5063 if (!ToCondition && S->getCond())
5064 return nullptr;
5065 VarDecl *ToConditionVariable = nullptr;
5066 if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
5067 ToConditionVariable =
5068 dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
5069 if (!ToConditionVariable)
5070 return nullptr;
5071 }
5072 Expr *ToInc = Importer.Import(S->getInc());
5073 if (!ToInc && S->getInc())
5074 return nullptr;
5075 Stmt *ToBody = Importer.Import(S->getBody());
5076 if (!ToBody && S->getBody())
5077 return nullptr;
5078 SourceLocation ToForLoc = Importer.Import(S->getForLoc());
5079 SourceLocation ToLParenLoc = Importer.Import(S->getLParenLoc());
5080 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
5081 return new (Importer.getToContext()) ForStmt(Importer.getToContext(),
5082 ToInit, ToCondition,
5083 ToConditionVariable,
5084 ToInc, ToBody,
5085 ToForLoc, ToLParenLoc,
5086 ToRParenLoc);
5087}
5088
5089Stmt *ASTNodeImporter::VisitGotoStmt(GotoStmt *S) {
5090 LabelDecl *ToLabel = nullptr;
5091 if (LabelDecl *FromLabel = S->getLabel()) {
5092 ToLabel = dyn_cast_or_null<LabelDecl>(Importer.Import(FromLabel));
5093 if (!ToLabel)
5094 return nullptr;
5095 }
5096 SourceLocation ToGotoLoc = Importer.Import(S->getGotoLoc());
5097 SourceLocation ToLabelLoc = Importer.Import(S->getLabelLoc());
5098 return new (Importer.getToContext()) GotoStmt(ToLabel,
5099 ToGotoLoc, ToLabelLoc);
5100}
5101
5102Stmt *ASTNodeImporter::VisitIndirectGotoStmt(IndirectGotoStmt *S) {
5103 SourceLocation ToGotoLoc = Importer.Import(S->getGotoLoc());
5104 SourceLocation ToStarLoc = Importer.Import(S->getStarLoc());
5105 Expr *ToTarget = Importer.Import(S->getTarget());
5106 if (!ToTarget && S->getTarget())
5107 return nullptr;
5108 return new (Importer.getToContext()) IndirectGotoStmt(ToGotoLoc, ToStarLoc,
5109 ToTarget);
5110}
5111
5112Stmt *ASTNodeImporter::VisitContinueStmt(ContinueStmt *S) {
5113 SourceLocation ToContinueLoc = Importer.Import(S->getContinueLoc());
5114 return new (Importer.getToContext()) ContinueStmt(ToContinueLoc);
5115}
5116
5117Stmt *ASTNodeImporter::VisitBreakStmt(BreakStmt *S) {
5118 SourceLocation ToBreakLoc = Importer.Import(S->getBreakLoc());
5119 return new (Importer.getToContext()) BreakStmt(ToBreakLoc);
5120}
5121
5122Stmt *ASTNodeImporter::VisitReturnStmt(ReturnStmt *S) {
5123 SourceLocation ToRetLoc = Importer.Import(S->getReturnLoc());
5124 Expr *ToRetExpr = Importer.Import(S->getRetValue());
5125 if (!ToRetExpr && S->getRetValue())
5126 return nullptr;
5127 VarDecl *NRVOCandidate = const_cast<VarDecl*>(S->getNRVOCandidate());
5128 VarDecl *ToNRVOCandidate = cast_or_null<VarDecl>(Importer.Import(NRVOCandidate));
5129 if (!ToNRVOCandidate && NRVOCandidate)
5130 return nullptr;
5131 return new (Importer.getToContext()) ReturnStmt(ToRetLoc, ToRetExpr,
5132 ToNRVOCandidate);
5133}
5134
5135Stmt *ASTNodeImporter::VisitCXXCatchStmt(CXXCatchStmt *S) {
5136 SourceLocation ToCatchLoc = Importer.Import(S->getCatchLoc());
5137 VarDecl *ToExceptionDecl = nullptr;
5138 if (VarDecl *FromExceptionDecl = S->getExceptionDecl()) {
5139 ToExceptionDecl =
5140 dyn_cast_or_null<VarDecl>(Importer.Import(FromExceptionDecl));
5141 if (!ToExceptionDecl)
5142 return nullptr;
5143 }
5144 Stmt *ToHandlerBlock = Importer.Import(S->getHandlerBlock());
5145 if (!ToHandlerBlock && S->getHandlerBlock())
5146 return nullptr;
5147 return new (Importer.getToContext()) CXXCatchStmt(ToCatchLoc,
5148 ToExceptionDecl,
5149 ToHandlerBlock);
5150}
5151
5152Stmt *ASTNodeImporter::VisitCXXTryStmt(CXXTryStmt *S) {
5153 SourceLocation ToTryLoc = Importer.Import(S->getTryLoc());
5154 Stmt *ToTryBlock = Importer.Import(S->getTryBlock());
5155 if (!ToTryBlock && S->getTryBlock())
5156 return nullptr;
5157 SmallVector<Stmt *, 1> ToHandlers(S->getNumHandlers());
5158 for (unsigned HI = 0, HE = S->getNumHandlers(); HI != HE; ++HI) {
5159 CXXCatchStmt *FromHandler = S->getHandler(HI);
5160 if (Stmt *ToHandler = Importer.Import(FromHandler))
5161 ToHandlers[HI] = ToHandler;
5162 else
5163 return nullptr;
5164 }
5165 return CXXTryStmt::Create(Importer.getToContext(), ToTryLoc, ToTryBlock,
5166 ToHandlers);
5167}
5168
5169Stmt *ASTNodeImporter::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
5170 DeclStmt *ToRange =
5171 dyn_cast_or_null<DeclStmt>(Importer.Import(S->getRangeStmt()));
5172 if (!ToRange && S->getRangeStmt())
5173 return nullptr;
Richard Smith01694c32016-03-20 10:33:40 +00005174 DeclStmt *ToBegin =
5175 dyn_cast_or_null<DeclStmt>(Importer.Import(S->getBeginStmt()));
5176 if (!ToBegin && S->getBeginStmt())
5177 return nullptr;
5178 DeclStmt *ToEnd =
5179 dyn_cast_or_null<DeclStmt>(Importer.Import(S->getEndStmt()));
5180 if (!ToEnd && S->getEndStmt())
Sean Callanan59721b32015-04-28 18:41:46 +00005181 return nullptr;
5182 Expr *ToCond = Importer.Import(S->getCond());
5183 if (!ToCond && S->getCond())
5184 return nullptr;
5185 Expr *ToInc = Importer.Import(S->getInc());
5186 if (!ToInc && S->getInc())
5187 return nullptr;
5188 DeclStmt *ToLoopVar =
5189 dyn_cast_or_null<DeclStmt>(Importer.Import(S->getLoopVarStmt()));
5190 if (!ToLoopVar && S->getLoopVarStmt())
5191 return nullptr;
5192 Stmt *ToBody = Importer.Import(S->getBody());
5193 if (!ToBody && S->getBody())
5194 return nullptr;
5195 SourceLocation ToForLoc = Importer.Import(S->getForLoc());
Richard Smith9f690bd2015-10-27 06:02:45 +00005196 SourceLocation ToCoawaitLoc = Importer.Import(S->getCoawaitLoc());
Sean Callanan59721b32015-04-28 18:41:46 +00005197 SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
5198 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
Richard Smith01694c32016-03-20 10:33:40 +00005199 return new (Importer.getToContext()) CXXForRangeStmt(ToRange, ToBegin, ToEnd,
Sean Callanan59721b32015-04-28 18:41:46 +00005200 ToCond, ToInc,
5201 ToLoopVar, ToBody,
Richard Smith9f690bd2015-10-27 06:02:45 +00005202 ToForLoc, ToCoawaitLoc,
5203 ToColonLoc, ToRParenLoc);
Sean Callanan59721b32015-04-28 18:41:46 +00005204}
5205
5206Stmt *ASTNodeImporter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
5207 Stmt *ToElem = Importer.Import(S->getElement());
5208 if (!ToElem && S->getElement())
5209 return nullptr;
5210 Expr *ToCollect = Importer.Import(S->getCollection());
5211 if (!ToCollect && S->getCollection())
5212 return nullptr;
5213 Stmt *ToBody = Importer.Import(S->getBody());
5214 if (!ToBody && S->getBody())
5215 return nullptr;
5216 SourceLocation ToForLoc = Importer.Import(S->getForLoc());
5217 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
5218 return new (Importer.getToContext()) ObjCForCollectionStmt(ToElem,
5219 ToCollect,
5220 ToBody, ToForLoc,
5221 ToRParenLoc);
5222}
5223
5224Stmt *ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
5225 SourceLocation ToAtCatchLoc = Importer.Import(S->getAtCatchLoc());
5226 SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
5227 VarDecl *ToExceptionDecl = nullptr;
5228 if (VarDecl *FromExceptionDecl = S->getCatchParamDecl()) {
5229 ToExceptionDecl =
5230 dyn_cast_or_null<VarDecl>(Importer.Import(FromExceptionDecl));
5231 if (!ToExceptionDecl)
5232 return nullptr;
5233 }
5234 Stmt *ToBody = Importer.Import(S->getCatchBody());
5235 if (!ToBody && S->getCatchBody())
5236 return nullptr;
5237 return new (Importer.getToContext()) ObjCAtCatchStmt(ToAtCatchLoc,
5238 ToRParenLoc,
5239 ToExceptionDecl,
5240 ToBody);
5241}
5242
5243Stmt *ASTNodeImporter::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S) {
5244 SourceLocation ToAtFinallyLoc = Importer.Import(S->getAtFinallyLoc());
5245 Stmt *ToAtFinallyStmt = Importer.Import(S->getFinallyBody());
5246 if (!ToAtFinallyStmt && S->getFinallyBody())
5247 return nullptr;
5248 return new (Importer.getToContext()) ObjCAtFinallyStmt(ToAtFinallyLoc,
5249 ToAtFinallyStmt);
5250}
5251
5252Stmt *ASTNodeImporter::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
5253 SourceLocation ToAtTryLoc = Importer.Import(S->getAtTryLoc());
5254 Stmt *ToAtTryStmt = Importer.Import(S->getTryBody());
5255 if (!ToAtTryStmt && S->getTryBody())
5256 return nullptr;
5257 SmallVector<Stmt *, 1> ToCatchStmts(S->getNumCatchStmts());
5258 for (unsigned CI = 0, CE = S->getNumCatchStmts(); CI != CE; ++CI) {
5259 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI);
5260 if (Stmt *ToCatchStmt = Importer.Import(FromCatchStmt))
5261 ToCatchStmts[CI] = ToCatchStmt;
5262 else
5263 return nullptr;
5264 }
5265 Stmt *ToAtFinallyStmt = Importer.Import(S->getFinallyStmt());
5266 if (!ToAtFinallyStmt && S->getFinallyStmt())
5267 return nullptr;
5268 return ObjCAtTryStmt::Create(Importer.getToContext(),
5269 ToAtTryLoc, ToAtTryStmt,
5270 ToCatchStmts.begin(), ToCatchStmts.size(),
5271 ToAtFinallyStmt);
5272}
5273
5274Stmt *ASTNodeImporter::VisitObjCAtSynchronizedStmt
5275 (ObjCAtSynchronizedStmt *S) {
5276 SourceLocation ToAtSynchronizedLoc =
5277 Importer.Import(S->getAtSynchronizedLoc());
5278 Expr *ToSynchExpr = Importer.Import(S->getSynchExpr());
5279 if (!ToSynchExpr && S->getSynchExpr())
5280 return nullptr;
5281 Stmt *ToSynchBody = Importer.Import(S->getSynchBody());
5282 if (!ToSynchBody && S->getSynchBody())
5283 return nullptr;
5284 return new (Importer.getToContext()) ObjCAtSynchronizedStmt(
5285 ToAtSynchronizedLoc, ToSynchExpr, ToSynchBody);
5286}
5287
5288Stmt *ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
5289 SourceLocation ToAtThrowLoc = Importer.Import(S->getThrowLoc());
5290 Expr *ToThrow = Importer.Import(S->getThrowExpr());
5291 if (!ToThrow && S->getThrowExpr())
5292 return nullptr;
5293 return new (Importer.getToContext()) ObjCAtThrowStmt(ToAtThrowLoc, ToThrow);
5294}
5295
5296Stmt *ASTNodeImporter::VisitObjCAutoreleasePoolStmt
5297 (ObjCAutoreleasePoolStmt *S) {
5298 SourceLocation ToAtLoc = Importer.Import(S->getAtLoc());
5299 Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
5300 if (!ToSubStmt && S->getSubStmt())
5301 return nullptr;
5302 return new (Importer.getToContext()) ObjCAutoreleasePoolStmt(ToAtLoc,
5303 ToSubStmt);
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005304}
5305
5306//----------------------------------------------------------------------------
5307// Import Expressions
5308//----------------------------------------------------------------------------
5309Expr *ASTNodeImporter::VisitExpr(Expr *E) {
5310 Importer.FromDiag(E->getLocStart(), diag::err_unsupported_ast_node)
5311 << E->getStmtClassName();
Craig Topper36250ad2014-05-12 05:36:57 +00005312 return nullptr;
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005313}
5314
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005315Expr *ASTNodeImporter::VisitVAArgExpr(VAArgExpr *E) {
5316 QualType T = Importer.Import(E->getType());
5317 if (T.isNull())
5318 return nullptr;
5319
5320 Expr *SubExpr = Importer.Import(E->getSubExpr());
5321 if (!SubExpr && E->getSubExpr())
5322 return nullptr;
5323
5324 TypeSourceInfo *TInfo = Importer.Import(E->getWrittenTypeInfo());
5325 if (!TInfo)
5326 return nullptr;
5327
5328 return new (Importer.getToContext()) VAArgExpr(
5329 Importer.Import(E->getBuiltinLoc()), SubExpr, TInfo,
5330 Importer.Import(E->getRParenLoc()), T, E->isMicrosoftABI());
5331}
5332
5333
5334Expr *ASTNodeImporter::VisitGNUNullExpr(GNUNullExpr *E) {
5335 QualType T = Importer.Import(E->getType());
5336 if (T.isNull())
5337 return nullptr;
5338
5339 return new (Importer.getToContext()) GNUNullExpr(
5340 T, Importer.Import(E->getExprLoc()));
5341}
5342
5343Expr *ASTNodeImporter::VisitPredefinedExpr(PredefinedExpr *E) {
5344 QualType T = Importer.Import(E->getType());
5345 if (T.isNull())
5346 return nullptr;
5347
5348 StringLiteral *SL = cast_or_null<StringLiteral>(
5349 Importer.Import(E->getFunctionName()));
5350 if (!SL && E->getFunctionName())
5351 return nullptr;
5352
5353 return new (Importer.getToContext()) PredefinedExpr(
5354 Importer.Import(E->getExprLoc()), T, E->getIdentType(), SL);
5355}
5356
Douglas Gregor52f820e2010-02-19 01:17:02 +00005357Expr *ASTNodeImporter::VisitDeclRefExpr(DeclRefExpr *E) {
Douglas Gregor52f820e2010-02-19 01:17:02 +00005358 ValueDecl *ToD = cast_or_null<ValueDecl>(Importer.Import(E->getDecl()));
5359 if (!ToD)
Craig Topper36250ad2014-05-12 05:36:57 +00005360 return nullptr;
Chandler Carruth8d26bb02011-05-01 23:48:14 +00005361
Craig Topper36250ad2014-05-12 05:36:57 +00005362 NamedDecl *FoundD = nullptr;
Chandler Carruth8d26bb02011-05-01 23:48:14 +00005363 if (E->getDecl() != E->getFoundDecl()) {
5364 FoundD = cast_or_null<NamedDecl>(Importer.Import(E->getFoundDecl()));
5365 if (!FoundD)
Craig Topper36250ad2014-05-12 05:36:57 +00005366 return nullptr;
Chandler Carruth8d26bb02011-05-01 23:48:14 +00005367 }
Douglas Gregor52f820e2010-02-19 01:17:02 +00005368
5369 QualType T = Importer.Import(E->getType());
5370 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005371 return nullptr;
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005372
5373 DeclRefExpr *DRE = DeclRefExpr::Create(Importer.getToContext(),
5374 Importer.Import(E->getQualifierLoc()),
Abramo Bagnara7945c982012-01-27 09:46:47 +00005375 Importer.Import(E->getTemplateKeywordLoc()),
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005376 ToD,
Alexey Bataev19acc3d2015-01-12 10:17:46 +00005377 E->refersToEnclosingVariableOrCapture(),
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005378 Importer.Import(E->getLocation()),
5379 T, E->getValueKind(),
5380 FoundD,
Craig Topper36250ad2014-05-12 05:36:57 +00005381 /*FIXME:TemplateArgs=*/nullptr);
Abramo Bagnara635ed24e2011-10-05 07:56:41 +00005382 if (E->hadMultipleCandidates())
5383 DRE->setHadMultipleCandidates(true);
5384 return DRE;
Douglas Gregor52f820e2010-02-19 01:17:02 +00005385}
5386
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005387Expr *ASTNodeImporter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
5388 QualType T = Importer.Import(E->getType());
5389 if (T.isNull())
5390 return NULL;
5391
5392 return new (Importer.getToContext()) ImplicitValueInitExpr(T);
5393}
5394
5395ASTNodeImporter::Designator
5396ASTNodeImporter::ImportDesignator(const Designator &D) {
5397 if (D.isFieldDesignator()) {
5398 IdentifierInfo *ToFieldName = Importer.Import(D.getFieldName());
5399 // Caller checks for import error
5400 return Designator(ToFieldName, Importer.Import(D.getDotLoc()),
5401 Importer.Import(D.getFieldLoc()));
5402 }
5403 if (D.isArrayDesignator())
5404 return Designator(D.getFirstExprIndex(),
5405 Importer.Import(D.getLBracketLoc()),
5406 Importer.Import(D.getRBracketLoc()));
5407
5408 assert(D.isArrayRangeDesignator());
5409 return Designator(D.getFirstExprIndex(),
5410 Importer.Import(D.getLBracketLoc()),
5411 Importer.Import(D.getEllipsisLoc()),
5412 Importer.Import(D.getRBracketLoc()));
5413}
5414
5415
5416Expr *ASTNodeImporter::VisitDesignatedInitExpr(DesignatedInitExpr *DIE) {
5417 Expr *Init = cast_or_null<Expr>(Importer.Import(DIE->getInit()));
5418 if (!Init)
5419 return nullptr;
5420
5421 SmallVector<Expr *, 4> IndexExprs(DIE->getNumSubExprs() - 1);
5422 // List elements from the second, the first is Init itself
5423 for (unsigned I = 1, E = DIE->getNumSubExprs(); I < E; I++) {
5424 if (Expr *Arg = cast_or_null<Expr>(Importer.Import(DIE->getSubExpr(I))))
5425 IndexExprs[I - 1] = Arg;
5426 else
5427 return nullptr;
5428 }
5429
5430 SmallVector<Designator, 4> Designators(DIE->size());
5431 std::transform(DIE->designators_begin(), DIE->designators_end(),
5432 Designators.begin(),
5433 [this](const Designator &D) -> Designator {
5434 return ImportDesignator(D);
5435 });
5436
5437 for (auto I = DIE->designators_begin(), E = DIE->designators_end(); I != E;
5438 ++I)
5439 if (I->isFieldDesignator() && !I->getFieldName())
5440 return nullptr;
5441
5442 return DesignatedInitExpr::Create(
5443 Importer.getToContext(), Designators.data(), Designators.size(),
5444 IndexExprs, Importer.Import(DIE->getEqualOrColonLoc()),
5445 DIE->usesGNUSyntax(), Init);
5446}
5447
5448Expr *ASTNodeImporter::VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E) {
5449 QualType T = Importer.Import(E->getType());
5450 if (T.isNull())
5451 return nullptr;
5452
5453 return new (Importer.getToContext())
5454 CXXNullPtrLiteralExpr(T, Importer.Import(E->getLocation()));
5455}
5456
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005457Expr *ASTNodeImporter::VisitIntegerLiteral(IntegerLiteral *E) {
5458 QualType T = Importer.Import(E->getType());
5459 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005460 return nullptr;
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005461
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00005462 return IntegerLiteral::Create(Importer.getToContext(),
5463 E->getValue(), T,
5464 Importer.Import(E->getLocation()));
Douglas Gregor7eeb5972010-02-11 19:21:55 +00005465}
5466
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005467Expr *ASTNodeImporter::VisitFloatingLiteral(FloatingLiteral *E) {
5468 QualType T = Importer.Import(E->getType());
5469 if (T.isNull())
5470 return nullptr;
5471
5472 return FloatingLiteral::Create(Importer.getToContext(),
5473 E->getValue(), E->isExact(), T,
5474 Importer.Import(E->getLocation()));
5475}
5476
Douglas Gregor623421d2010-02-18 02:21:22 +00005477Expr *ASTNodeImporter::VisitCharacterLiteral(CharacterLiteral *E) {
5478 QualType T = Importer.Import(E->getType());
5479 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005480 return nullptr;
5481
Douglas Gregorfb65e592011-07-27 05:40:30 +00005482 return new (Importer.getToContext()) CharacterLiteral(E->getValue(),
5483 E->getKind(), T,
Douglas Gregor623421d2010-02-18 02:21:22 +00005484 Importer.Import(E->getLocation()));
5485}
5486
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005487Expr *ASTNodeImporter::VisitStringLiteral(StringLiteral *E) {
5488 QualType T = Importer.Import(E->getType());
5489 if (T.isNull())
5490 return nullptr;
5491
5492 SmallVector<SourceLocation, 4> Locations(E->getNumConcatenated());
5493 ImportArray(E->tokloc_begin(), E->tokloc_end(), Locations.begin());
5494
5495 return StringLiteral::Create(Importer.getToContext(), E->getBytes(),
5496 E->getKind(), E->isPascal(), T,
5497 Locations.data(), Locations.size());
5498}
5499
5500Expr *ASTNodeImporter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
5501 QualType T = Importer.Import(E->getType());
5502 if (T.isNull())
5503 return nullptr;
5504
5505 TypeSourceInfo *TInfo = Importer.Import(E->getTypeSourceInfo());
5506 if (!TInfo)
5507 return nullptr;
5508
5509 Expr *Init = Importer.Import(E->getInitializer());
5510 if (!Init)
5511 return nullptr;
5512
5513 return new (Importer.getToContext()) CompoundLiteralExpr(
5514 Importer.Import(E->getLParenLoc()), TInfo, T, E->getValueKind(),
5515 Init, E->isFileScope());
5516}
5517
5518Expr *ASTNodeImporter::VisitAtomicExpr(AtomicExpr *E) {
5519 QualType T = Importer.Import(E->getType());
5520 if (T.isNull())
5521 return nullptr;
5522
5523 SmallVector<Expr *, 6> Exprs(E->getNumSubExprs());
5524 if (ImportArrayChecked(
5525 E->getSubExprs(), E->getSubExprs() + E->getNumSubExprs(),
5526 Exprs.begin()))
5527 return nullptr;
5528
5529 return new (Importer.getToContext()) AtomicExpr(
5530 Importer.Import(E->getBuiltinLoc()), Exprs, T, E->getOp(),
5531 Importer.Import(E->getRParenLoc()));
5532}
5533
5534Expr *ASTNodeImporter::VisitAddrLabelExpr(AddrLabelExpr *E) {
5535 QualType T = Importer.Import(E->getType());
5536 if (T.isNull())
5537 return nullptr;
5538
5539 LabelDecl *ToLabel = cast_or_null<LabelDecl>(Importer.Import(E->getLabel()));
5540 if (!ToLabel)
5541 return nullptr;
5542
5543 return new (Importer.getToContext()) AddrLabelExpr(
5544 Importer.Import(E->getAmpAmpLoc()), Importer.Import(E->getLabelLoc()),
5545 ToLabel, T);
5546}
5547
Douglas Gregorc74247e2010-02-19 01:07:06 +00005548Expr *ASTNodeImporter::VisitParenExpr(ParenExpr *E) {
5549 Expr *SubExpr = Importer.Import(E->getSubExpr());
5550 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005551 return nullptr;
5552
Douglas Gregorc74247e2010-02-19 01:07:06 +00005553 return new (Importer.getToContext())
5554 ParenExpr(Importer.Import(E->getLParen()),
5555 Importer.Import(E->getRParen()),
5556 SubExpr);
5557}
5558
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005559Expr *ASTNodeImporter::VisitParenListExpr(ParenListExpr *E) {
5560 SmallVector<Expr *, 4> Exprs(E->getNumExprs());
5561 if (ImportArrayChecked(
5562 E->getExprs(), E->getExprs() + E->getNumExprs(), Exprs.begin()))
5563 return nullptr;
5564
5565 return new (Importer.getToContext()) ParenListExpr(
5566 Importer.getToContext(), Importer.Import(E->getLParenLoc()),
5567 Exprs, Importer.Import(E->getLParenLoc()));
5568}
5569
5570Expr *ASTNodeImporter::VisitStmtExpr(StmtExpr *E) {
5571 QualType T = Importer.Import(E->getType());
5572 if (T.isNull())
5573 return nullptr;
5574
5575 CompoundStmt *ToSubStmt = cast_or_null<CompoundStmt>(
5576 Importer.Import(E->getSubStmt()));
5577 if (!ToSubStmt && E->getSubStmt())
5578 return nullptr;
5579
5580 return new (Importer.getToContext()) StmtExpr(ToSubStmt, T,
5581 Importer.Import(E->getLParenLoc()), Importer.Import(E->getRParenLoc()));
5582}
5583
Douglas Gregorc74247e2010-02-19 01:07:06 +00005584Expr *ASTNodeImporter::VisitUnaryOperator(UnaryOperator *E) {
5585 QualType T = Importer.Import(E->getType());
5586 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005587 return nullptr;
Douglas Gregorc74247e2010-02-19 01:07:06 +00005588
5589 Expr *SubExpr = Importer.Import(E->getSubExpr());
5590 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005591 return nullptr;
5592
Douglas Gregorc74247e2010-02-19 01:07:06 +00005593 return new (Importer.getToContext()) UnaryOperator(SubExpr, E->getOpcode(),
John McCall7decc9e2010-11-18 06:31:45 +00005594 T, E->getValueKind(),
5595 E->getObjectKind(),
Douglas Gregorc74247e2010-02-19 01:07:06 +00005596 Importer.Import(E->getOperatorLoc()));
5597}
5598
Peter Collingbournee190dee2011-03-11 19:24:49 +00005599Expr *ASTNodeImporter::VisitUnaryExprOrTypeTraitExpr(
5600 UnaryExprOrTypeTraitExpr *E) {
Douglas Gregord8552cd2010-02-19 01:24:23 +00005601 QualType ResultType = Importer.Import(E->getType());
5602
5603 if (E->isArgumentType()) {
5604 TypeSourceInfo *TInfo = Importer.Import(E->getArgumentTypeInfo());
5605 if (!TInfo)
Craig Topper36250ad2014-05-12 05:36:57 +00005606 return nullptr;
5607
Peter Collingbournee190dee2011-03-11 19:24:49 +00005608 return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(),
5609 TInfo, ResultType,
Douglas Gregord8552cd2010-02-19 01:24:23 +00005610 Importer.Import(E->getOperatorLoc()),
5611 Importer.Import(E->getRParenLoc()));
5612 }
5613
5614 Expr *SubExpr = Importer.Import(E->getArgumentExpr());
5615 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005616 return nullptr;
5617
Peter Collingbournee190dee2011-03-11 19:24:49 +00005618 return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(),
5619 SubExpr, ResultType,
Douglas Gregord8552cd2010-02-19 01:24:23 +00005620 Importer.Import(E->getOperatorLoc()),
5621 Importer.Import(E->getRParenLoc()));
5622}
5623
Douglas Gregorc74247e2010-02-19 01:07:06 +00005624Expr *ASTNodeImporter::VisitBinaryOperator(BinaryOperator *E) {
5625 QualType T = Importer.Import(E->getType());
5626 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005627 return nullptr;
Douglas Gregorc74247e2010-02-19 01:07:06 +00005628
5629 Expr *LHS = Importer.Import(E->getLHS());
5630 if (!LHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005631 return nullptr;
5632
Douglas Gregorc74247e2010-02-19 01:07:06 +00005633 Expr *RHS = Importer.Import(E->getRHS());
5634 if (!RHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005635 return nullptr;
5636
Douglas Gregorc74247e2010-02-19 01:07:06 +00005637 return new (Importer.getToContext()) BinaryOperator(LHS, RHS, E->getOpcode(),
John McCall7decc9e2010-11-18 06:31:45 +00005638 T, E->getValueKind(),
5639 E->getObjectKind(),
Lang Hames5de91cc2012-10-02 04:45:10 +00005640 Importer.Import(E->getOperatorLoc()),
5641 E->isFPContractable());
Douglas Gregorc74247e2010-02-19 01:07:06 +00005642}
5643
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005644Expr *ASTNodeImporter::VisitConditionalOperator(ConditionalOperator *E) {
5645 QualType T = Importer.Import(E->getType());
5646 if (T.isNull())
5647 return nullptr;
5648
5649 Expr *ToLHS = Importer.Import(E->getLHS());
5650 if (!ToLHS)
5651 return nullptr;
5652
5653 Expr *ToRHS = Importer.Import(E->getRHS());
5654 if (!ToRHS)
5655 return nullptr;
5656
5657 Expr *ToCond = Importer.Import(E->getCond());
5658 if (!ToCond)
5659 return nullptr;
5660
5661 return new (Importer.getToContext()) ConditionalOperator(
5662 ToCond, Importer.Import(E->getQuestionLoc()),
5663 ToLHS, Importer.Import(E->getColonLoc()),
5664 ToRHS, T, E->getValueKind(), E->getObjectKind());
5665}
5666
5667Expr *ASTNodeImporter::VisitBinaryConditionalOperator(
5668 BinaryConditionalOperator *E) {
5669 QualType T = Importer.Import(E->getType());
5670 if (T.isNull())
5671 return nullptr;
5672
5673 Expr *Common = Importer.Import(E->getCommon());
5674 if (!Common)
5675 return nullptr;
5676
5677 Expr *Cond = Importer.Import(E->getCond());
5678 if (!Cond)
5679 return nullptr;
5680
5681 OpaqueValueExpr *OpaqueValue = cast_or_null<OpaqueValueExpr>(
5682 Importer.Import(E->getOpaqueValue()));
5683 if (!OpaqueValue)
5684 return nullptr;
5685
5686 Expr *TrueExpr = Importer.Import(E->getTrueExpr());
5687 if (!TrueExpr)
5688 return nullptr;
5689
5690 Expr *FalseExpr = Importer.Import(E->getFalseExpr());
5691 if (!FalseExpr)
5692 return nullptr;
5693
5694 return new (Importer.getToContext()) BinaryConditionalOperator(
5695 Common, OpaqueValue, Cond, TrueExpr, FalseExpr,
5696 Importer.Import(E->getQuestionLoc()), Importer.Import(E->getColonLoc()),
5697 T, E->getValueKind(), E->getObjectKind());
5698}
5699
5700Expr *ASTNodeImporter::VisitOpaqueValueExpr(OpaqueValueExpr *E) {
5701 QualType T = Importer.Import(E->getType());
5702 if (T.isNull())
5703 return nullptr;
5704
5705 Expr *SourceExpr = Importer.Import(E->getSourceExpr());
5706 if (!SourceExpr && E->getSourceExpr())
5707 return nullptr;
5708
5709 return new (Importer.getToContext()) OpaqueValueExpr(
5710 Importer.Import(E->getExprLoc()), T, E->getValueKind(),
5711 E->getObjectKind(), SourceExpr);
5712}
5713
Douglas Gregorc74247e2010-02-19 01:07:06 +00005714Expr *ASTNodeImporter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
5715 QualType T = Importer.Import(E->getType());
5716 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005717 return nullptr;
5718
Douglas Gregorc74247e2010-02-19 01:07:06 +00005719 QualType CompLHSType = Importer.Import(E->getComputationLHSType());
5720 if (CompLHSType.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005721 return nullptr;
5722
Douglas Gregorc74247e2010-02-19 01:07:06 +00005723 QualType CompResultType = Importer.Import(E->getComputationResultType());
5724 if (CompResultType.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005725 return nullptr;
5726
Douglas Gregorc74247e2010-02-19 01:07:06 +00005727 Expr *LHS = Importer.Import(E->getLHS());
5728 if (!LHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005729 return nullptr;
5730
Douglas Gregorc74247e2010-02-19 01:07:06 +00005731 Expr *RHS = Importer.Import(E->getRHS());
5732 if (!RHS)
Craig Topper36250ad2014-05-12 05:36:57 +00005733 return nullptr;
5734
Douglas Gregorc74247e2010-02-19 01:07:06 +00005735 return new (Importer.getToContext())
5736 CompoundAssignOperator(LHS, RHS, E->getOpcode(),
John McCall7decc9e2010-11-18 06:31:45 +00005737 T, E->getValueKind(),
5738 E->getObjectKind(),
5739 CompLHSType, CompResultType,
Lang Hames5de91cc2012-10-02 04:45:10 +00005740 Importer.Import(E->getOperatorLoc()),
5741 E->isFPContractable());
Douglas Gregorc74247e2010-02-19 01:07:06 +00005742}
5743
Benjamin Kramer8aef5962011-03-26 12:38:21 +00005744static bool ImportCastPath(CastExpr *E, CXXCastPath &Path) {
John McCallcf142162010-08-07 06:22:56 +00005745 if (E->path_empty()) return false;
5746
5747 // TODO: import cast paths
5748 return true;
5749}
5750
Douglas Gregor98c10182010-02-12 22:17:39 +00005751Expr *ASTNodeImporter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
5752 QualType T = Importer.Import(E->getType());
5753 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005754 return nullptr;
Douglas Gregor98c10182010-02-12 22:17:39 +00005755
5756 Expr *SubExpr = Importer.Import(E->getSubExpr());
5757 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005758 return nullptr;
John McCallcf142162010-08-07 06:22:56 +00005759
5760 CXXCastPath BasePath;
5761 if (ImportCastPath(E, BasePath))
Craig Topper36250ad2014-05-12 05:36:57 +00005762 return nullptr;
John McCallcf142162010-08-07 06:22:56 +00005763
5764 return ImplicitCastExpr::Create(Importer.getToContext(), T, E->getCastKind(),
John McCall2536c6d2010-08-25 10:28:54 +00005765 SubExpr, &BasePath, E->getValueKind());
Douglas Gregor98c10182010-02-12 22:17:39 +00005766}
5767
Douglas Gregor5481d322010-02-19 01:32:14 +00005768Expr *ASTNodeImporter::VisitCStyleCastExpr(CStyleCastExpr *E) {
5769 QualType T = Importer.Import(E->getType());
5770 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00005771 return nullptr;
5772
Douglas Gregor5481d322010-02-19 01:32:14 +00005773 Expr *SubExpr = Importer.Import(E->getSubExpr());
5774 if (!SubExpr)
Craig Topper36250ad2014-05-12 05:36:57 +00005775 return nullptr;
Douglas Gregor5481d322010-02-19 01:32:14 +00005776
5777 TypeSourceInfo *TInfo = Importer.Import(E->getTypeInfoAsWritten());
5778 if (!TInfo && E->getTypeInfoAsWritten())
Craig Topper36250ad2014-05-12 05:36:57 +00005779 return nullptr;
5780
John McCallcf142162010-08-07 06:22:56 +00005781 CXXCastPath BasePath;
5782 if (ImportCastPath(E, BasePath))
Craig Topper36250ad2014-05-12 05:36:57 +00005783 return nullptr;
John McCallcf142162010-08-07 06:22:56 +00005784
John McCall7decc9e2010-11-18 06:31:45 +00005785 return CStyleCastExpr::Create(Importer.getToContext(), T,
5786 E->getValueKind(), E->getCastKind(),
John McCallcf142162010-08-07 06:22:56 +00005787 SubExpr, &BasePath, TInfo,
5788 Importer.Import(E->getLParenLoc()),
5789 Importer.Import(E->getRParenLoc()));
Douglas Gregor5481d322010-02-19 01:32:14 +00005790}
5791
Sean Callanan59721b32015-04-28 18:41:46 +00005792Expr *ASTNodeImporter::VisitCXXConstructExpr(CXXConstructExpr *E) {
5793 QualType T = Importer.Import(E->getType());
5794 if (T.isNull())
5795 return nullptr;
5796
Richard Smithc2bebe92016-05-11 20:37:46 +00005797 NamedDecl *ToFound =
5798 dyn_cast<NamedDecl>(Importer.Import(E->getFoundDecl()));
5799 if (!ToFound)
5800 return nullptr;
5801
Sean Callanan59721b32015-04-28 18:41:46 +00005802 CXXConstructorDecl *ToCCD =
5803 dyn_cast<CXXConstructorDecl>(Importer.Import(E->getConstructor()));
Richard Smithc2bebe92016-05-11 20:37:46 +00005804 if (!ToCCD)
Sean Callanan59721b32015-04-28 18:41:46 +00005805 return nullptr;
5806
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005807 SmallVector<Expr *, 6> ToArgs(E->getNumArgs());
5808 if (ImportArrayChecked(E->getArgs(), E->getArgs() + E->getNumArgs(),
5809 ToArgs.begin()))
Sean Callanan8bca9962016-03-28 21:43:01 +00005810 return nullptr;
Sean Callanan59721b32015-04-28 18:41:46 +00005811
5812 return CXXConstructExpr::Create(Importer.getToContext(), T,
5813 Importer.Import(E->getLocation()),
Richard Smithc2bebe92016-05-11 20:37:46 +00005814 ToFound, ToCCD, E->isElidable(),
Sean Callanan59721b32015-04-28 18:41:46 +00005815 ToArgs, E->hadMultipleCandidates(),
5816 E->isListInitialization(),
5817 E->isStdInitListInitialization(),
5818 E->requiresZeroInitialization(),
5819 E->getConstructionKind(),
5820 Importer.Import(E->getParenOrBraceRange()));
5821}
5822
Sean Callanan8bca9962016-03-28 21:43:01 +00005823Expr *ASTNodeImporter::VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
5824 QualType T = Importer.Import(E->getType());
5825 if (T.isNull())
5826 return nullptr;
5827
5828 Expr *ToFn = Importer.Import(E->getCallee());
5829 if (!ToFn)
5830 return nullptr;
5831
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005832 SmallVector<Expr *, 4> ToArgs(E->getNumArgs());
Sean Callanan8bca9962016-03-28 21:43:01 +00005833
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005834 if (ImportArrayChecked(E->arg_begin(), E->arg_end(), ToArgs.begin()))
Sean Callanan8bca9962016-03-28 21:43:01 +00005835 return nullptr;
5836
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005837 return new (Importer.getToContext()) CXXMemberCallExpr(
5838 Importer.getToContext(), ToFn, ToArgs, T, E->getValueKind(),
5839 Importer.Import(E->getRParenLoc()));
Sean Callanan8bca9962016-03-28 21:43:01 +00005840}
5841
5842Expr *ASTNodeImporter::VisitCXXThisExpr(CXXThisExpr *E) {
5843 QualType T = Importer.Import(E->getType());
5844 if (T.isNull())
5845 return nullptr;
5846
5847 return new (Importer.getToContext())
5848 CXXThisExpr(Importer.Import(E->getLocation()), T, E->isImplicit());
5849}
5850
5851Expr *ASTNodeImporter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) {
5852 QualType T = Importer.Import(E->getType());
5853 if (T.isNull())
5854 return nullptr;
5855
5856 return new (Importer.getToContext())
5857 CXXBoolLiteralExpr(E->getValue(), T, Importer.Import(E->getLocation()));
5858}
5859
5860
Sean Callanan59721b32015-04-28 18:41:46 +00005861Expr *ASTNodeImporter::VisitMemberExpr(MemberExpr *E) {
5862 QualType T = Importer.Import(E->getType());
5863 if (T.isNull())
5864 return nullptr;
5865
5866 Expr *ToBase = Importer.Import(E->getBase());
5867 if (!ToBase && E->getBase())
5868 return nullptr;
5869
5870 ValueDecl *ToMember = dyn_cast<ValueDecl>(Importer.Import(E->getMemberDecl()));
5871 if (!ToMember && E->getMemberDecl())
5872 return nullptr;
5873
5874 DeclAccessPair ToFoundDecl = DeclAccessPair::make(
5875 dyn_cast<NamedDecl>(Importer.Import(E->getFoundDecl().getDecl())),
5876 E->getFoundDecl().getAccess());
5877
5878 DeclarationNameInfo ToMemberNameInfo(
5879 Importer.Import(E->getMemberNameInfo().getName()),
5880 Importer.Import(E->getMemberNameInfo().getLoc()));
5881
5882 if (E->hasExplicitTemplateArgs()) {
5883 return nullptr; // FIXME: handle template arguments
5884 }
5885
5886 return MemberExpr::Create(Importer.getToContext(), ToBase,
5887 E->isArrow(),
5888 Importer.Import(E->getOperatorLoc()),
5889 Importer.Import(E->getQualifierLoc()),
5890 Importer.Import(E->getTemplateKeywordLoc()),
5891 ToMember, ToFoundDecl, ToMemberNameInfo,
5892 nullptr, T, E->getValueKind(),
5893 E->getObjectKind());
5894}
5895
5896Expr *ASTNodeImporter::VisitCallExpr(CallExpr *E) {
5897 QualType T = Importer.Import(E->getType());
5898 if (T.isNull())
5899 return nullptr;
5900
5901 Expr *ToCallee = Importer.Import(E->getCallee());
5902 if (!ToCallee && E->getCallee())
5903 return nullptr;
5904
5905 unsigned NumArgs = E->getNumArgs();
5906
5907 llvm::SmallVector<Expr *, 2> ToArgs(NumArgs);
5908
5909 for (unsigned ai = 0, ae = NumArgs; ai != ae; ++ai) {
5910 Expr *FromArg = E->getArg(ai);
5911 Expr *ToArg = Importer.Import(FromArg);
5912 if (!ToArg)
5913 return nullptr;
5914 ToArgs[ai] = ToArg;
5915 }
5916
5917 Expr **ToArgs_Copied = new (Importer.getToContext())
5918 Expr*[NumArgs];
5919
5920 for (unsigned ai = 0, ae = NumArgs; ai != ae; ++ai)
5921 ToArgs_Copied[ai] = ToArgs[ai];
5922
5923 return new (Importer.getToContext())
5924 CallExpr(Importer.getToContext(), ToCallee,
Craig Topperc005cc02015-09-27 03:44:08 +00005925 llvm::makeArrayRef(ToArgs_Copied, NumArgs), T, E->getValueKind(),
Sean Callanan59721b32015-04-28 18:41:46 +00005926 Importer.Import(E->getRParenLoc()));
5927}
5928
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005929Expr *ASTNodeImporter::VisitInitListExpr(InitListExpr *ILE) {
5930 QualType T = Importer.Import(ILE->getType());
Sean Callanan8bca9962016-03-28 21:43:01 +00005931 if (T.isNull())
5932 return nullptr;
Sean Callanan8bca9962016-03-28 21:43:01 +00005933
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005934 llvm::SmallVector<Expr *, 4> Exprs(ILE->getNumInits());
5935 if (ImportArrayChecked(
5936 ILE->getInits(), ILE->getInits() + ILE->getNumInits(), Exprs.begin()))
Sean Callanan8bca9962016-03-28 21:43:01 +00005937 return nullptr;
Sean Callanan8bca9962016-03-28 21:43:01 +00005938
Artem Dergachev4e7c6fd2016-04-14 11:51:27 +00005939 ASTContext &ToCtx = Importer.getToContext();
5940 InitListExpr *To = new (ToCtx) InitListExpr(
5941 ToCtx, Importer.Import(ILE->getLBraceLoc()),
5942 Exprs, Importer.Import(ILE->getLBraceLoc()));
5943 To->setType(T);
5944
5945 if (ILE->hasArrayFiller()) {
5946 Expr *Filler = Importer.Import(ILE->getArrayFiller());
5947 if (!Filler)
5948 return nullptr;
5949 To->setArrayFiller(Filler);
5950 }
5951
5952 if (FieldDecl *FromFD = ILE->getInitializedFieldInUnion()) {
5953 FieldDecl *ToFD = cast_or_null<FieldDecl>(Importer.Import(FromFD));
5954 if (!ToFD)
5955 return nullptr;
5956 To->setInitializedFieldInUnion(ToFD);
5957 }
5958
5959 if (InitListExpr *SyntForm = ILE->getSyntacticForm()) {
5960 InitListExpr *ToSyntForm = cast_or_null<InitListExpr>(
5961 Importer.Import(SyntForm));
5962 if (!ToSyntForm)
5963 return nullptr;
5964 To->setSyntacticForm(ToSyntForm);
5965 }
5966
5967 To->sawArrayRangeDesignator(ILE->hadArrayRangeDesignator());
5968 To->setValueDependent(ILE->isValueDependent());
5969 To->setInstantiationDependent(ILE->isInstantiationDependent());
5970
5971 return To;
Sean Callanan8bca9962016-03-28 21:43:01 +00005972}
5973
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00005974ASTImporter::ASTImporter(ASTContext &ToContext, FileManager &ToFileManager,
Douglas Gregor0a791672011-01-18 03:11:38 +00005975 ASTContext &FromContext, FileManager &FromFileManager,
5976 bool MinimalImport)
Douglas Gregor96e578d2010-02-05 17:54:41 +00005977 : ToContext(ToContext), FromContext(FromContext),
Douglas Gregor0a791672011-01-18 03:11:38 +00005978 ToFileManager(ToFileManager), FromFileManager(FromFileManager),
Richard Smith5bb4cdf2012-12-20 02:22:15 +00005979 Minimal(MinimalImport), LastDiagFromFrom(false)
Douglas Gregor0a791672011-01-18 03:11:38 +00005980{
Douglas Gregor62d311f2010-02-09 19:21:46 +00005981 ImportedDecls[FromContext.getTranslationUnitDecl()]
5982 = ToContext.getTranslationUnitDecl();
5983}
5984
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +00005985ASTImporter::~ASTImporter() { }
Douglas Gregor96e578d2010-02-05 17:54:41 +00005986
5987QualType ASTImporter::Import(QualType FromT) {
5988 if (FromT.isNull())
5989 return QualType();
John McCall424cec92011-01-19 06:33:43 +00005990
5991 const Type *fromTy = FromT.getTypePtr();
Douglas Gregor96e578d2010-02-05 17:54:41 +00005992
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005993 // Check whether we've already imported this type.
John McCall424cec92011-01-19 06:33:43 +00005994 llvm::DenseMap<const Type *, const Type *>::iterator Pos
5995 = ImportedTypes.find(fromTy);
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005996 if (Pos != ImportedTypes.end())
John McCall424cec92011-01-19 06:33:43 +00005997 return ToContext.getQualifiedType(Pos->second, FromT.getLocalQualifiers());
Douglas Gregor96e578d2010-02-05 17:54:41 +00005998
Douglas Gregorf65bbb32010-02-08 15:18:58 +00005999 // Import the type
Douglas Gregor96e578d2010-02-05 17:54:41 +00006000 ASTNodeImporter Importer(*this);
John McCall424cec92011-01-19 06:33:43 +00006001 QualType ToT = Importer.Visit(fromTy);
Douglas Gregor96e578d2010-02-05 17:54:41 +00006002 if (ToT.isNull())
6003 return ToT;
6004
Douglas Gregorf65bbb32010-02-08 15:18:58 +00006005 // Record the imported type.
John McCall424cec92011-01-19 06:33:43 +00006006 ImportedTypes[fromTy] = ToT.getTypePtr();
Douglas Gregorf65bbb32010-02-08 15:18:58 +00006007
John McCall424cec92011-01-19 06:33:43 +00006008 return ToContext.getQualifiedType(ToT, FromT.getLocalQualifiers());
Douglas Gregor96e578d2010-02-05 17:54:41 +00006009}
6010
Douglas Gregor62d311f2010-02-09 19:21:46 +00006011TypeSourceInfo *ASTImporter::Import(TypeSourceInfo *FromTSI) {
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00006012 if (!FromTSI)
6013 return FromTSI;
6014
6015 // FIXME: For now we just create a "trivial" type source info based
Nick Lewycky19b9f952010-07-26 16:56:01 +00006016 // on the type and a single location. Implement a real version of this.
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00006017 QualType T = Import(FromTSI->getType());
6018 if (T.isNull())
Craig Topper36250ad2014-05-12 05:36:57 +00006019 return nullptr;
Douglas Gregorfa7a0e52010-02-10 17:47:19 +00006020
6021 return ToContext.getTrivialTypeSourceInfo(T,
Douglas Gregore9d95f12015-07-07 03:57:35 +00006022 Import(FromTSI->getTypeLoc().getLocStart()));
Douglas Gregor62d311f2010-02-09 19:21:46 +00006023}
6024
Sean Callanan59721b32015-04-28 18:41:46 +00006025Decl *ASTImporter::GetAlreadyImportedOrNull(Decl *FromD) {
6026 llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD);
6027 if (Pos != ImportedDecls.end()) {
6028 Decl *ToD = Pos->second;
6029 ASTNodeImporter(*this).ImportDefinitionIfNeeded(FromD, ToD);
6030 return ToD;
6031 } else {
6032 return nullptr;
6033 }
6034}
6035
Douglas Gregor62d311f2010-02-09 19:21:46 +00006036Decl *ASTImporter::Import(Decl *FromD) {
6037 if (!FromD)
Craig Topper36250ad2014-05-12 05:36:57 +00006038 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00006039
Douglas Gregord451ea92011-07-29 23:31:30 +00006040 ASTNodeImporter Importer(*this);
6041
Douglas Gregor62d311f2010-02-09 19:21:46 +00006042 // Check whether we've already imported this declaration.
6043 llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD);
Douglas Gregord451ea92011-07-29 23:31:30 +00006044 if (Pos != ImportedDecls.end()) {
6045 Decl *ToD = Pos->second;
6046 Importer.ImportDefinitionIfNeeded(FromD, ToD);
6047 return ToD;
6048 }
Douglas Gregor62d311f2010-02-09 19:21:46 +00006049
6050 // Import the type
Douglas Gregor62d311f2010-02-09 19:21:46 +00006051 Decl *ToD = Importer.Visit(FromD);
6052 if (!ToD)
Craig Topper36250ad2014-05-12 05:36:57 +00006053 return nullptr;
6054
Douglas Gregor62d311f2010-02-09 19:21:46 +00006055 // Record the imported declaration.
6056 ImportedDecls[FromD] = ToD;
Douglas Gregorb4964f72010-02-15 23:54:17 +00006057
6058 if (TagDecl *FromTag = dyn_cast<TagDecl>(FromD)) {
6059 // Keep track of anonymous tags that have an associated typedef.
Richard Smithdda56e42011-04-15 14:24:37 +00006060 if (FromTag->getTypedefNameForAnonDecl())
Douglas Gregorb4964f72010-02-15 23:54:17 +00006061 AnonTagsWithPendingTypedefs.push_back(FromTag);
Richard Smithdda56e42011-04-15 14:24:37 +00006062 } else if (TypedefNameDecl *FromTypedef = dyn_cast<TypedefNameDecl>(FromD)) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00006063 // When we've finished transforming a typedef, see whether it was the
6064 // typedef for an anonymous tag.
Craig Topper2341c0d2013-07-04 03:08:24 +00006065 for (SmallVectorImpl<TagDecl *>::iterator
Douglas Gregorb4964f72010-02-15 23:54:17 +00006066 FromTag = AnonTagsWithPendingTypedefs.begin(),
6067 FromTagEnd = AnonTagsWithPendingTypedefs.end();
6068 FromTag != FromTagEnd; ++FromTag) {
Richard Smithdda56e42011-04-15 14:24:37 +00006069 if ((*FromTag)->getTypedefNameForAnonDecl() == FromTypedef) {
Douglas Gregorb4964f72010-02-15 23:54:17 +00006070 if (TagDecl *ToTag = cast_or_null<TagDecl>(Import(*FromTag))) {
6071 // We found the typedef for an anonymous tag; link them.
Richard Smithdda56e42011-04-15 14:24:37 +00006072 ToTag->setTypedefNameForAnonDecl(cast<TypedefNameDecl>(ToD));
Douglas Gregorb4964f72010-02-15 23:54:17 +00006073 AnonTagsWithPendingTypedefs.erase(FromTag);
6074 break;
6075 }
6076 }
6077 }
6078 }
6079
Douglas Gregor62d311f2010-02-09 19:21:46 +00006080 return ToD;
6081}
6082
6083DeclContext *ASTImporter::ImportContext(DeclContext *FromDC) {
6084 if (!FromDC)
6085 return FromDC;
6086
Douglas Gregor95d82832012-01-24 18:36:04 +00006087 DeclContext *ToDC = cast_or_null<DeclContext>(Import(cast<Decl>(FromDC)));
Douglas Gregor2e15c842012-02-01 21:00:38 +00006088 if (!ToDC)
Craig Topper36250ad2014-05-12 05:36:57 +00006089 return nullptr;
6090
Douglas Gregor2e15c842012-02-01 21:00:38 +00006091 // When we're using a record/enum/Objective-C class/protocol as a context, we
6092 // need it to have a definition.
6093 if (RecordDecl *ToRecord = dyn_cast<RecordDecl>(ToDC)) {
Douglas Gregor63db9712012-01-25 01:13:20 +00006094 RecordDecl *FromRecord = cast<RecordDecl>(FromDC);
Douglas Gregor2e15c842012-02-01 21:00:38 +00006095 if (ToRecord->isCompleteDefinition()) {
6096 // Do nothing.
6097 } else if (FromRecord->isCompleteDefinition()) {
6098 ASTNodeImporter(*this).ImportDefinition(FromRecord, ToRecord,
6099 ASTNodeImporter::IDK_Basic);
6100 } else {
6101 CompleteDecl(ToRecord);
6102 }
6103 } else if (EnumDecl *ToEnum = dyn_cast<EnumDecl>(ToDC)) {
6104 EnumDecl *FromEnum = cast<EnumDecl>(FromDC);
6105 if (ToEnum->isCompleteDefinition()) {
6106 // Do nothing.
6107 } else if (FromEnum->isCompleteDefinition()) {
6108 ASTNodeImporter(*this).ImportDefinition(FromEnum, ToEnum,
6109 ASTNodeImporter::IDK_Basic);
6110 } else {
6111 CompleteDecl(ToEnum);
6112 }
6113 } else if (ObjCInterfaceDecl *ToClass = dyn_cast<ObjCInterfaceDecl>(ToDC)) {
6114 ObjCInterfaceDecl *FromClass = cast<ObjCInterfaceDecl>(FromDC);
6115 if (ToClass->getDefinition()) {
6116 // Do nothing.
6117 } else if (ObjCInterfaceDecl *FromDef = FromClass->getDefinition()) {
6118 ASTNodeImporter(*this).ImportDefinition(FromDef, ToClass,
6119 ASTNodeImporter::IDK_Basic);
6120 } else {
6121 CompleteDecl(ToClass);
6122 }
6123 } else if (ObjCProtocolDecl *ToProto = dyn_cast<ObjCProtocolDecl>(ToDC)) {
6124 ObjCProtocolDecl *FromProto = cast<ObjCProtocolDecl>(FromDC);
6125 if (ToProto->getDefinition()) {
6126 // Do nothing.
6127 } else if (ObjCProtocolDecl *FromDef = FromProto->getDefinition()) {
6128 ASTNodeImporter(*this).ImportDefinition(FromDef, ToProto,
6129 ASTNodeImporter::IDK_Basic);
6130 } else {
6131 CompleteDecl(ToProto);
6132 }
Douglas Gregor95d82832012-01-24 18:36:04 +00006133 }
6134
6135 return ToDC;
Douglas Gregor62d311f2010-02-09 19:21:46 +00006136}
6137
6138Expr *ASTImporter::Import(Expr *FromE) {
6139 if (!FromE)
Craig Topper36250ad2014-05-12 05:36:57 +00006140 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00006141
6142 return cast_or_null<Expr>(Import(cast<Stmt>(FromE)));
6143}
6144
6145Stmt *ASTImporter::Import(Stmt *FromS) {
6146 if (!FromS)
Craig Topper36250ad2014-05-12 05:36:57 +00006147 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00006148
Douglas Gregor7eeb5972010-02-11 19:21:55 +00006149 // Check whether we've already imported this declaration.
6150 llvm::DenseMap<Stmt *, Stmt *>::iterator Pos = ImportedStmts.find(FromS);
6151 if (Pos != ImportedStmts.end())
6152 return Pos->second;
6153
6154 // Import the type
6155 ASTNodeImporter Importer(*this);
6156 Stmt *ToS = Importer.Visit(FromS);
6157 if (!ToS)
Craig Topper36250ad2014-05-12 05:36:57 +00006158 return nullptr;
6159
Douglas Gregor7eeb5972010-02-11 19:21:55 +00006160 // Record the imported declaration.
6161 ImportedStmts[FromS] = ToS;
6162 return ToS;
Douglas Gregor62d311f2010-02-09 19:21:46 +00006163}
6164
6165NestedNameSpecifier *ASTImporter::Import(NestedNameSpecifier *FromNNS) {
6166 if (!FromNNS)
Craig Topper36250ad2014-05-12 05:36:57 +00006167 return nullptr;
Douglas Gregor62d311f2010-02-09 19:21:46 +00006168
Douglas Gregor90ebf252011-04-27 16:48:40 +00006169 NestedNameSpecifier *prefix = Import(FromNNS->getPrefix());
6170
6171 switch (FromNNS->getKind()) {
6172 case NestedNameSpecifier::Identifier:
6173 if (IdentifierInfo *II = Import(FromNNS->getAsIdentifier())) {
6174 return NestedNameSpecifier::Create(ToContext, prefix, II);
6175 }
Craig Topper36250ad2014-05-12 05:36:57 +00006176 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00006177
6178 case NestedNameSpecifier::Namespace:
6179 if (NamespaceDecl *NS =
6180 cast<NamespaceDecl>(Import(FromNNS->getAsNamespace()))) {
6181 return NestedNameSpecifier::Create(ToContext, prefix, NS);
6182 }
Craig Topper36250ad2014-05-12 05:36:57 +00006183 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00006184
6185 case NestedNameSpecifier::NamespaceAlias:
6186 if (NamespaceAliasDecl *NSAD =
6187 cast<NamespaceAliasDecl>(Import(FromNNS->getAsNamespaceAlias()))) {
6188 return NestedNameSpecifier::Create(ToContext, prefix, NSAD);
6189 }
Craig Topper36250ad2014-05-12 05:36:57 +00006190 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00006191
6192 case NestedNameSpecifier::Global:
6193 return NestedNameSpecifier::GlobalSpecifier(ToContext);
6194
Nikola Smiljanic67860242014-09-26 00:28:20 +00006195 case NestedNameSpecifier::Super:
6196 if (CXXRecordDecl *RD =
6197 cast<CXXRecordDecl>(Import(FromNNS->getAsRecordDecl()))) {
6198 return NestedNameSpecifier::SuperSpecifier(ToContext, RD);
6199 }
6200 return nullptr;
6201
Douglas Gregor90ebf252011-04-27 16:48:40 +00006202 case NestedNameSpecifier::TypeSpec:
6203 case NestedNameSpecifier::TypeSpecWithTemplate: {
6204 QualType T = Import(QualType(FromNNS->getAsType(), 0u));
6205 if (!T.isNull()) {
6206 bool bTemplate = FromNNS->getKind() ==
6207 NestedNameSpecifier::TypeSpecWithTemplate;
6208 return NestedNameSpecifier::Create(ToContext, prefix,
6209 bTemplate, T.getTypePtr());
6210 }
6211 }
Craig Topper36250ad2014-05-12 05:36:57 +00006212 return nullptr;
Douglas Gregor90ebf252011-04-27 16:48:40 +00006213 }
6214
6215 llvm_unreachable("Invalid nested name specifier kind");
Douglas Gregor62d311f2010-02-09 19:21:46 +00006216}
6217
Douglas Gregor14454802011-02-25 02:25:35 +00006218NestedNameSpecifierLoc ASTImporter::Import(NestedNameSpecifierLoc FromNNS) {
6219 // FIXME: Implement!
6220 return NestedNameSpecifierLoc();
6221}
6222
Douglas Gregore2e50d332010-12-01 01:36:18 +00006223TemplateName ASTImporter::Import(TemplateName From) {
6224 switch (From.getKind()) {
6225 case TemplateName::Template:
6226 if (TemplateDecl *ToTemplate
6227 = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl())))
6228 return TemplateName(ToTemplate);
6229
6230 return TemplateName();
6231
6232 case TemplateName::OverloadedTemplate: {
6233 OverloadedTemplateStorage *FromStorage = From.getAsOverloadedTemplate();
6234 UnresolvedSet<2> ToTemplates;
6235 for (OverloadedTemplateStorage::iterator I = FromStorage->begin(),
6236 E = FromStorage->end();
6237 I != E; ++I) {
6238 if (NamedDecl *To = cast_or_null<NamedDecl>(Import(*I)))
6239 ToTemplates.addDecl(To);
6240 else
6241 return TemplateName();
6242 }
6243 return ToContext.getOverloadedTemplateName(ToTemplates.begin(),
6244 ToTemplates.end());
6245 }
6246
6247 case TemplateName::QualifiedTemplate: {
6248 QualifiedTemplateName *QTN = From.getAsQualifiedTemplateName();
6249 NestedNameSpecifier *Qualifier = Import(QTN->getQualifier());
6250 if (!Qualifier)
6251 return TemplateName();
6252
6253 if (TemplateDecl *ToTemplate
6254 = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl())))
6255 return ToContext.getQualifiedTemplateName(Qualifier,
6256 QTN->hasTemplateKeyword(),
6257 ToTemplate);
6258
6259 return TemplateName();
6260 }
6261
6262 case TemplateName::DependentTemplate: {
6263 DependentTemplateName *DTN = From.getAsDependentTemplateName();
6264 NestedNameSpecifier *Qualifier = Import(DTN->getQualifier());
6265 if (!Qualifier)
6266 return TemplateName();
6267
6268 if (DTN->isIdentifier()) {
6269 return ToContext.getDependentTemplateName(Qualifier,
6270 Import(DTN->getIdentifier()));
6271 }
6272
6273 return ToContext.getDependentTemplateName(Qualifier, DTN->getOperator());
6274 }
John McCalld9dfe3a2011-06-30 08:33:18 +00006275
6276 case TemplateName::SubstTemplateTemplateParm: {
6277 SubstTemplateTemplateParmStorage *subst
6278 = From.getAsSubstTemplateTemplateParm();
6279 TemplateTemplateParmDecl *param
6280 = cast_or_null<TemplateTemplateParmDecl>(Import(subst->getParameter()));
6281 if (!param)
6282 return TemplateName();
6283
6284 TemplateName replacement = Import(subst->getReplacement());
6285 if (replacement.isNull()) return TemplateName();
6286
6287 return ToContext.getSubstTemplateTemplateParm(param, replacement);
6288 }
Douglas Gregor5590be02011-01-15 06:45:20 +00006289
6290 case TemplateName::SubstTemplateTemplateParmPack: {
6291 SubstTemplateTemplateParmPackStorage *SubstPack
6292 = From.getAsSubstTemplateTemplateParmPack();
6293 TemplateTemplateParmDecl *Param
6294 = cast_or_null<TemplateTemplateParmDecl>(
6295 Import(SubstPack->getParameterPack()));
6296 if (!Param)
6297 return TemplateName();
6298
6299 ASTNodeImporter Importer(*this);
6300 TemplateArgument ArgPack
6301 = Importer.ImportTemplateArgument(SubstPack->getArgumentPack());
6302 if (ArgPack.isNull())
6303 return TemplateName();
6304
6305 return ToContext.getSubstTemplateTemplateParmPack(Param, ArgPack);
6306 }
Douglas Gregore2e50d332010-12-01 01:36:18 +00006307 }
6308
6309 llvm_unreachable("Invalid template name kind");
Douglas Gregore2e50d332010-12-01 01:36:18 +00006310}
6311
Douglas Gregor62d311f2010-02-09 19:21:46 +00006312SourceLocation ASTImporter::Import(SourceLocation FromLoc) {
6313 if (FromLoc.isInvalid())
6314 return SourceLocation();
6315
Douglas Gregor811663e2010-02-10 00:15:17 +00006316 SourceManager &FromSM = FromContext.getSourceManager();
6317
6318 // For now, map everything down to its spelling location, so that we
Chandler Carruth25366412011-07-15 00:04:35 +00006319 // don't have to import macro expansions.
6320 // FIXME: Import macro expansions!
Douglas Gregor811663e2010-02-10 00:15:17 +00006321 FromLoc = FromSM.getSpellingLoc(FromLoc);
6322 std::pair<FileID, unsigned> Decomposed = FromSM.getDecomposedLoc(FromLoc);
6323 SourceManager &ToSM = ToContext.getSourceManager();
Sean Callanan238d8972014-12-10 01:26:39 +00006324 FileID ToFileID = Import(Decomposed.first);
6325 if (ToFileID.isInvalid())
6326 return SourceLocation();
Sean Callanan59721b32015-04-28 18:41:46 +00006327 SourceLocation ret = ToSM.getLocForStartOfFile(ToFileID)
6328 .getLocWithOffset(Decomposed.second);
6329 return ret;
Douglas Gregor62d311f2010-02-09 19:21:46 +00006330}
6331
6332SourceRange ASTImporter::Import(SourceRange FromRange) {
6333 return SourceRange(Import(FromRange.getBegin()), Import(FromRange.getEnd()));
6334}
6335
Douglas Gregor811663e2010-02-10 00:15:17 +00006336FileID ASTImporter::Import(FileID FromID) {
Sebastian Redl99219f12010-09-30 01:03:06 +00006337 llvm::DenseMap<FileID, FileID>::iterator Pos
6338 = ImportedFileIDs.find(FromID);
Douglas Gregor811663e2010-02-10 00:15:17 +00006339 if (Pos != ImportedFileIDs.end())
6340 return Pos->second;
6341
6342 SourceManager &FromSM = FromContext.getSourceManager();
6343 SourceManager &ToSM = ToContext.getSourceManager();
6344 const SrcMgr::SLocEntry &FromSLoc = FromSM.getSLocEntry(FromID);
Chandler Carruth25366412011-07-15 00:04:35 +00006345 assert(FromSLoc.isFile() && "Cannot handle macro expansions yet");
Douglas Gregor811663e2010-02-10 00:15:17 +00006346
6347 // Include location of this file.
6348 SourceLocation ToIncludeLoc = Import(FromSLoc.getFile().getIncludeLoc());
6349
6350 // Map the FileID for to the "to" source manager.
6351 FileID ToID;
6352 const SrcMgr::ContentCache *Cache = FromSLoc.getFile().getContentCache();
Sean Callanan25d34af2015-04-30 00:44:21 +00006353 if (Cache->OrigEntry && Cache->OrigEntry->getDir()) {
Douglas Gregor811663e2010-02-10 00:15:17 +00006354 // FIXME: We probably want to use getVirtualFile(), so we don't hit the
6355 // disk again
6356 // FIXME: We definitely want to re-use the existing MemoryBuffer, rather
6357 // than mmap the files several times.
Argyrios Kyrtzidis11e6f0a2011-03-05 01:03:53 +00006358 const FileEntry *Entry = ToFileManager.getFile(Cache->OrigEntry->getName());
Sean Callanan238d8972014-12-10 01:26:39 +00006359 if (!Entry)
6360 return FileID();
Douglas Gregor811663e2010-02-10 00:15:17 +00006361 ToID = ToSM.createFileID(Entry, ToIncludeLoc,
6362 FromSLoc.getFile().getFileCharacteristic());
6363 } else {
6364 // FIXME: We want to re-use the existing MemoryBuffer!
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00006365 const llvm::MemoryBuffer *
6366 FromBuf = Cache->getBuffer(FromContext.getDiagnostics(), FromSM);
Rafael Espindolad87f8d72014-08-27 20:03:29 +00006367 std::unique_ptr<llvm::MemoryBuffer> ToBuf
Chris Lattner58c79342010-04-05 22:42:27 +00006368 = llvm::MemoryBuffer::getMemBufferCopy(FromBuf->getBuffer(),
Douglas Gregor811663e2010-02-10 00:15:17 +00006369 FromBuf->getBufferIdentifier());
David Blaikie50a5f972014-08-29 07:59:55 +00006370 ToID = ToSM.createFileID(std::move(ToBuf),
Rafael Espindolad87f8d72014-08-27 20:03:29 +00006371 FromSLoc.getFile().getFileCharacteristic());
Douglas Gregor811663e2010-02-10 00:15:17 +00006372 }
6373
6374
Sebastian Redl99219f12010-09-30 01:03:06 +00006375 ImportedFileIDs[FromID] = ToID;
Douglas Gregor811663e2010-02-10 00:15:17 +00006376 return ToID;
6377}
6378
Sean Callanan55d486d2016-05-14 05:20:31 +00006379CXXCtorInitializer *ASTImporter::Import(CXXCtorInitializer *From) {
6380 Expr *ToExpr = Import(From->getInit());
6381 if (!ToExpr && From->getInit())
6382 return nullptr;
6383
6384 if (From->isBaseInitializer()) {
6385 TypeSourceInfo *ToTInfo = Import(From->getTypeSourceInfo());
6386 if (!ToTInfo && From->getTypeSourceInfo())
6387 return nullptr;
6388
6389 return new (ToContext) CXXCtorInitializer(
6390 ToContext, ToTInfo, From->isBaseVirtual(), Import(From->getLParenLoc()),
6391 ToExpr, Import(From->getRParenLoc()),
6392 From->isPackExpansion() ? Import(From->getEllipsisLoc())
6393 : SourceLocation());
6394 } else if (From->isMemberInitializer()) {
6395 FieldDecl *ToField =
6396 llvm::cast_or_null<FieldDecl>(Import(From->getMember()));
6397 if (!ToField && From->getMember())
6398 return nullptr;
6399
6400 return new (ToContext) CXXCtorInitializer(
6401 ToContext, ToField, Import(From->getMemberLocation()),
6402 Import(From->getLParenLoc()), ToExpr, Import(From->getRParenLoc()));
6403 } else if (From->isIndirectMemberInitializer()) {
6404 IndirectFieldDecl *ToIField = llvm::cast_or_null<IndirectFieldDecl>(
6405 Import(From->getIndirectMember()));
6406 if (!ToIField && From->getIndirectMember())
6407 return nullptr;
6408
6409 return new (ToContext) CXXCtorInitializer(
6410 ToContext, ToIField, Import(From->getMemberLocation()),
6411 Import(From->getLParenLoc()), ToExpr, Import(From->getRParenLoc()));
6412 } else if (From->isDelegatingInitializer()) {
6413 TypeSourceInfo *ToTInfo = Import(From->getTypeSourceInfo());
6414 if (!ToTInfo && From->getTypeSourceInfo())
6415 return nullptr;
6416
6417 return new (ToContext)
6418 CXXCtorInitializer(ToContext, ToTInfo, Import(From->getLParenLoc()),
6419 ToExpr, Import(From->getRParenLoc()));
6420 } else if (unsigned NumArrayIndices = From->getNumArrayIndices()) {
6421 FieldDecl *ToField =
6422 llvm::cast_or_null<FieldDecl>(Import(From->getMember()));
6423 if (!ToField && From->getMember())
6424 return nullptr;
6425
6426 SmallVector<VarDecl *, 4> ToAIs(NumArrayIndices);
6427
6428 for (unsigned AII = 0; AII < NumArrayIndices; ++AII) {
6429 VarDecl *ToArrayIndex =
6430 dyn_cast_or_null<VarDecl>(Import(From->getArrayIndex(AII)));
6431 if (!ToArrayIndex && From->getArrayIndex(AII))
6432 return nullptr;
6433 }
6434
6435 return CXXCtorInitializer::Create(
6436 ToContext, ToField, Import(From->getMemberLocation()),
6437 Import(From->getLParenLoc()), ToExpr, Import(From->getRParenLoc()),
6438 ToAIs.data(), NumArrayIndices);
6439 } else {
6440 return nullptr;
6441 }
6442}
6443
6444
Douglas Gregor0a791672011-01-18 03:11:38 +00006445void ASTImporter::ImportDefinition(Decl *From) {
6446 Decl *To = Import(From);
6447 if (!To)
6448 return;
6449
6450 if (DeclContext *FromDC = cast<DeclContext>(From)) {
6451 ASTNodeImporter Importer(*this);
Sean Callanan53a6bff2011-07-19 22:38:25 +00006452
6453 if (RecordDecl *ToRecord = dyn_cast<RecordDecl>(To)) {
6454 if (!ToRecord->getDefinition()) {
6455 Importer.ImportDefinition(cast<RecordDecl>(FromDC), ToRecord,
Douglas Gregor95d82832012-01-24 18:36:04 +00006456 ASTNodeImporter::IDK_Everything);
Sean Callanan53a6bff2011-07-19 22:38:25 +00006457 return;
6458 }
6459 }
Douglas Gregord451ea92011-07-29 23:31:30 +00006460
6461 if (EnumDecl *ToEnum = dyn_cast<EnumDecl>(To)) {
6462 if (!ToEnum->getDefinition()) {
6463 Importer.ImportDefinition(cast<EnumDecl>(FromDC), ToEnum,
Douglas Gregor2e15c842012-02-01 21:00:38 +00006464 ASTNodeImporter::IDK_Everything);
Douglas Gregord451ea92011-07-29 23:31:30 +00006465 return;
6466 }
6467 }
Douglas Gregor2aa53772012-01-24 17:42:07 +00006468
6469 if (ObjCInterfaceDecl *ToIFace = dyn_cast<ObjCInterfaceDecl>(To)) {
6470 if (!ToIFace->getDefinition()) {
6471 Importer.ImportDefinition(cast<ObjCInterfaceDecl>(FromDC), ToIFace,
Douglas Gregor2e15c842012-02-01 21:00:38 +00006472 ASTNodeImporter::IDK_Everything);
Douglas Gregor2aa53772012-01-24 17:42:07 +00006473 return;
6474 }
6475 }
Douglas Gregord451ea92011-07-29 23:31:30 +00006476
Douglas Gregor2aa53772012-01-24 17:42:07 +00006477 if (ObjCProtocolDecl *ToProto = dyn_cast<ObjCProtocolDecl>(To)) {
6478 if (!ToProto->getDefinition()) {
6479 Importer.ImportDefinition(cast<ObjCProtocolDecl>(FromDC), ToProto,
Douglas Gregor2e15c842012-02-01 21:00:38 +00006480 ASTNodeImporter::IDK_Everything);
Douglas Gregor2aa53772012-01-24 17:42:07 +00006481 return;
6482 }
6483 }
6484
Douglas Gregor0a791672011-01-18 03:11:38 +00006485 Importer.ImportDeclContext(FromDC, true);
6486 }
6487}
6488
Douglas Gregor96e578d2010-02-05 17:54:41 +00006489DeclarationName ASTImporter::Import(DeclarationName FromName) {
6490 if (!FromName)
6491 return DeclarationName();
6492
6493 switch (FromName.getNameKind()) {
6494 case DeclarationName::Identifier:
6495 return Import(FromName.getAsIdentifierInfo());
6496
6497 case DeclarationName::ObjCZeroArgSelector:
6498 case DeclarationName::ObjCOneArgSelector:
6499 case DeclarationName::ObjCMultiArgSelector:
6500 return Import(FromName.getObjCSelector());
6501
6502 case DeclarationName::CXXConstructorName: {
6503 QualType T = Import(FromName.getCXXNameType());
6504 if (T.isNull())
6505 return DeclarationName();
6506
6507 return ToContext.DeclarationNames.getCXXConstructorName(
6508 ToContext.getCanonicalType(T));
6509 }
6510
6511 case DeclarationName::CXXDestructorName: {
6512 QualType T = Import(FromName.getCXXNameType());
6513 if (T.isNull())
6514 return DeclarationName();
6515
6516 return ToContext.DeclarationNames.getCXXDestructorName(
6517 ToContext.getCanonicalType(T));
6518 }
6519
6520 case DeclarationName::CXXConversionFunctionName: {
6521 QualType T = Import(FromName.getCXXNameType());
6522 if (T.isNull())
6523 return DeclarationName();
6524
6525 return ToContext.DeclarationNames.getCXXConversionFunctionName(
6526 ToContext.getCanonicalType(T));
6527 }
6528
6529 case DeclarationName::CXXOperatorName:
6530 return ToContext.DeclarationNames.getCXXOperatorName(
6531 FromName.getCXXOverloadedOperator());
6532
6533 case DeclarationName::CXXLiteralOperatorName:
6534 return ToContext.DeclarationNames.getCXXLiteralOperatorName(
6535 Import(FromName.getCXXLiteralIdentifier()));
6536
6537 case DeclarationName::CXXUsingDirective:
6538 // FIXME: STATICS!
6539 return DeclarationName::getUsingDirectiveName();
6540 }
6541
David Blaikiee4d798f2012-01-20 21:50:17 +00006542 llvm_unreachable("Invalid DeclarationName Kind!");
Douglas Gregor96e578d2010-02-05 17:54:41 +00006543}
6544
Douglas Gregore2e50d332010-12-01 01:36:18 +00006545IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) {
Douglas Gregor96e578d2010-02-05 17:54:41 +00006546 if (!FromId)
Craig Topper36250ad2014-05-12 05:36:57 +00006547 return nullptr;
Douglas Gregor96e578d2010-02-05 17:54:41 +00006548
6549 return &ToContext.Idents.get(FromId->getName());
6550}
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00006551
Douglas Gregor43f54792010-02-17 02:12:47 +00006552Selector ASTImporter::Import(Selector FromSel) {
6553 if (FromSel.isNull())
6554 return Selector();
6555
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006556 SmallVector<IdentifierInfo *, 4> Idents;
Douglas Gregor43f54792010-02-17 02:12:47 +00006557 Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(0)));
6558 for (unsigned I = 1, N = FromSel.getNumArgs(); I < N; ++I)
6559 Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(I)));
6560 return ToContext.Selectors.getSelector(FromSel.getNumArgs(), Idents.data());
6561}
6562
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00006563DeclarationName ASTImporter::HandleNameConflict(DeclarationName Name,
6564 DeclContext *DC,
6565 unsigned IDNS,
6566 NamedDecl **Decls,
6567 unsigned NumDecls) {
6568 return Name;
6569}
6570
6571DiagnosticBuilder ASTImporter::ToDiag(SourceLocation Loc, unsigned DiagID) {
Richard Smith5bb4cdf2012-12-20 02:22:15 +00006572 if (LastDiagFromFrom)
6573 ToContext.getDiagnostics().notePriorDiagnosticFrom(
6574 FromContext.getDiagnostics());
6575 LastDiagFromFrom = false;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00006576 return ToContext.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00006577}
6578
6579DiagnosticBuilder ASTImporter::FromDiag(SourceLocation Loc, unsigned DiagID) {
Richard Smith5bb4cdf2012-12-20 02:22:15 +00006580 if (!LastDiagFromFrom)
6581 FromContext.getDiagnostics().notePriorDiagnosticFrom(
6582 ToContext.getDiagnostics());
6583 LastDiagFromFrom = true;
Argyrios Kyrtzidisd0040642010-11-18 20:06:41 +00006584 return FromContext.getDiagnostics().Report(Loc, DiagID);
Douglas Gregor3aed6cd2010-02-08 21:09:39 +00006585}
Douglas Gregor8cdbe642010-02-12 23:44:20 +00006586
Douglas Gregor2e15c842012-02-01 21:00:38 +00006587void ASTImporter::CompleteDecl (Decl *D) {
6588 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
6589 if (!ID->getDefinition())
6590 ID->startDefinition();
6591 }
6592 else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
6593 if (!PD->getDefinition())
6594 PD->startDefinition();
6595 }
6596 else if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
6597 if (!TD->getDefinition() && !TD->isBeingDefined()) {
6598 TD->startDefinition();
6599 TD->setCompleteDefinition(true);
6600 }
6601 }
6602 else {
6603 assert (0 && "CompleteDecl called on a Decl that can't be completed");
6604 }
6605}
6606
Douglas Gregor8cdbe642010-02-12 23:44:20 +00006607Decl *ASTImporter::Imported(Decl *From, Decl *To) {
Sean Callanan8bca9962016-03-28 21:43:01 +00006608 if (From->hasAttrs()) {
6609 for (Attr *FromAttr : From->getAttrs())
6610 To->addAttr(FromAttr->clone(To->getASTContext()));
6611 }
6612 if (From->isUsed()) {
6613 To->setIsUsed();
6614 }
Douglas Gregor8cdbe642010-02-12 23:44:20 +00006615 ImportedDecls[From] = To;
6616 return To;
Daniel Dunbar9ced5422010-02-13 20:24:39 +00006617}
Douglas Gregorb4964f72010-02-15 23:54:17 +00006618
Douglas Gregordd6006f2012-07-17 21:16:27 +00006619bool ASTImporter::IsStructurallyEquivalent(QualType From, QualType To,
6620 bool Complain) {
John McCall424cec92011-01-19 06:33:43 +00006621 llvm::DenseMap<const Type *, const Type *>::iterator Pos
Douglas Gregorb4964f72010-02-15 23:54:17 +00006622 = ImportedTypes.find(From.getTypePtr());
6623 if (Pos != ImportedTypes.end() && ToContext.hasSameType(Import(From), To))
6624 return true;
6625
Douglas Gregordd6006f2012-07-17 21:16:27 +00006626 StructuralEquivalenceContext Ctx(FromContext, ToContext, NonEquivalentDecls,
6627 false, Complain);
Benjamin Kramer26d19c52010-02-18 13:02:13 +00006628 return Ctx.IsStructurallyEquivalent(From, To);
Douglas Gregorb4964f72010-02-15 23:54:17 +00006629}