]> granicus.if.org Git - clang/blob - lib/AST/ASTImporter.cpp
Substitute type arguments into uses of Objective-C interface members.
[clang] / lib / AST / ASTImporter.cpp
1 //===--- ASTImporter.cpp - Importing ASTs from other Contexts ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file defines the ASTImporter class which imports AST nodes from one
11 //  context into another context.
12 //
13 //===----------------------------------------------------------------------===//
14 #include "clang/AST/ASTImporter.h"
15 #include "clang/AST/ASTContext.h"
16 #include "clang/AST/ASTDiagnostic.h"
17 #include "clang/AST/DeclCXX.h"
18 #include "clang/AST/DeclObjC.h"
19 #include "clang/AST/DeclVisitor.h"
20 #include "clang/AST/StmtVisitor.h"
21 #include "clang/AST/TypeVisitor.h"
22 #include "clang/Basic/FileManager.h"
23 #include "clang/Basic/SourceManager.h"
24 #include "llvm/Support/MemoryBuffer.h"
25 #include <deque>
26
27 namespace clang {
28   class ASTNodeImporter : public TypeVisitor<ASTNodeImporter, QualType>,
29                           public DeclVisitor<ASTNodeImporter, Decl *>,
30                           public StmtVisitor<ASTNodeImporter, Stmt *> {
31     ASTImporter &Importer;
32     
33   public:
34     explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { }
35     
36     using TypeVisitor<ASTNodeImporter, QualType>::Visit;
37     using DeclVisitor<ASTNodeImporter, Decl *>::Visit;
38     using StmtVisitor<ASTNodeImporter, Stmt *>::Visit;
39
40     // Importing types
41     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);
52     // FIXME: DependentSizedArrayType
53     // FIXME: DependentSizedExtVectorType
54     QualType VisitVectorType(const VectorType *T);
55     QualType VisitExtVectorType(const ExtVectorType *T);
56     QualType VisitFunctionNoProtoType(const FunctionNoProtoType *T);
57     QualType VisitFunctionProtoType(const FunctionProtoType *T);
58     // FIXME: UnresolvedUsingType
59     QualType VisitParenType(const ParenType *T);
60     QualType VisitTypedefType(const TypedefType *T);
61     QualType VisitTypeOfExprType(const TypeOfExprType *T);
62     // FIXME: DependentTypeOfExprType
63     QualType VisitTypeOfType(const TypeOfType *T);
64     QualType VisitDecltypeType(const DecltypeType *T);
65     QualType VisitUnaryTransformType(const UnaryTransformType *T);
66     QualType VisitAutoType(const AutoType *T);
67     // FIXME: DependentDecltypeType
68     QualType VisitRecordType(const RecordType *T);
69     QualType VisitEnumType(const EnumType *T);
70     QualType VisitAttributedType(const AttributedType *T);
71     // FIXME: TemplateTypeParmType
72     // FIXME: SubstTemplateTypeParmType
73     QualType VisitTemplateSpecializationType(const TemplateSpecializationType *T);
74     QualType VisitElaboratedType(const ElaboratedType *T);
75     // FIXME: DependentNameType
76     // FIXME: DependentTemplateSpecializationType
77     QualType VisitObjCInterfaceType(const ObjCInterfaceType *T);
78     QualType VisitObjCObjectType(const ObjCObjectType *T);
79     QualType VisitObjCObjectPointerType(const ObjCObjectPointerType *T);
80                             
81     // Importing declarations                            
82     bool ImportDeclParts(NamedDecl *D, DeclContext *&DC, 
83                          DeclContext *&LexicalDC, DeclarationName &Name, 
84                          NamedDecl *&ToD, SourceLocation &Loc);
85     void ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD = nullptr);
86     void ImportDeclarationNameLoc(const DeclarationNameInfo &From,
87                                   DeclarationNameInfo& To);
88     void ImportDeclContext(DeclContext *FromDC, bool ForceImport = false);
89                         
90     /// \brief What we should import from the definition.
91     enum ImportDefinitionKind { 
92       /// \brief Import the default subset of the definition, which might be
93       /// nothing (if minimal import is set) or might be everything (if minimal
94       /// import is not set).
95       IDK_Default,
96       /// \brief Import everything.
97       IDK_Everything,
98       /// \brief Import only the bare bones needed to establish a valid
99       /// DeclContext.
100       IDK_Basic
101     };
102
103     bool shouldForceImportDeclContext(ImportDefinitionKind IDK) {
104       return IDK == IDK_Everything ||
105              (IDK == IDK_Default && !Importer.isMinimalImport());
106     }
107
108     bool ImportDefinition(RecordDecl *From, RecordDecl *To, 
109                           ImportDefinitionKind Kind = IDK_Default);
110     bool ImportDefinition(VarDecl *From, VarDecl *To,
111                           ImportDefinitionKind Kind = IDK_Default);
112     bool ImportDefinition(EnumDecl *From, EnumDecl *To,
113                           ImportDefinitionKind Kind = IDK_Default);
114     bool ImportDefinition(ObjCInterfaceDecl *From, ObjCInterfaceDecl *To,
115                           ImportDefinitionKind Kind = IDK_Default);
116     bool ImportDefinition(ObjCProtocolDecl *From, ObjCProtocolDecl *To,
117                           ImportDefinitionKind Kind = IDK_Default);
118     TemplateParameterList *ImportTemplateParameterList(
119                                                  TemplateParameterList *Params);
120     TemplateArgument ImportTemplateArgument(const TemplateArgument &From);
121     bool ImportTemplateArguments(const TemplateArgument *FromArgs,
122                                  unsigned NumFromArgs,
123                                SmallVectorImpl<TemplateArgument> &ToArgs);
124     bool IsStructuralMatch(RecordDecl *FromRecord, RecordDecl *ToRecord,
125                            bool Complain = true);
126     bool IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar,
127                            bool Complain = true);
128     bool IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToRecord);
129     bool IsStructuralMatch(EnumConstantDecl *FromEC, EnumConstantDecl *ToEC);
130     bool IsStructuralMatch(ClassTemplateDecl *From, ClassTemplateDecl *To);
131     bool IsStructuralMatch(VarTemplateDecl *From, VarTemplateDecl *To);
132     Decl *VisitDecl(Decl *D);
133     Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
134     Decl *VisitNamespaceDecl(NamespaceDecl *D);
135     Decl *VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias);
136     Decl *VisitTypedefDecl(TypedefDecl *D);
137     Decl *VisitTypeAliasDecl(TypeAliasDecl *D);
138     Decl *VisitEnumDecl(EnumDecl *D);
139     Decl *VisitRecordDecl(RecordDecl *D);
140     Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
141     Decl *VisitFunctionDecl(FunctionDecl *D);
142     Decl *VisitCXXMethodDecl(CXXMethodDecl *D);
143     Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
144     Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
145     Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
146     Decl *VisitFieldDecl(FieldDecl *D);
147     Decl *VisitIndirectFieldDecl(IndirectFieldDecl *D);
148     Decl *VisitObjCIvarDecl(ObjCIvarDecl *D);
149     Decl *VisitVarDecl(VarDecl *D);
150     Decl *VisitImplicitParamDecl(ImplicitParamDecl *D);
151     Decl *VisitParmVarDecl(ParmVarDecl *D);
152     Decl *VisitObjCMethodDecl(ObjCMethodDecl *D);
153     Decl *VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
154     Decl *VisitObjCCategoryDecl(ObjCCategoryDecl *D);
155     Decl *VisitObjCProtocolDecl(ObjCProtocolDecl *D);
156     Decl *VisitLinkageSpecDecl(LinkageSpecDecl *D);
157
158     ObjCTypeParamList *ImportObjCTypeParamList(ObjCTypeParamList *list);
159     Decl *VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
160     Decl *VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
161     Decl *VisitObjCImplementationDecl(ObjCImplementationDecl *D);
162     Decl *VisitObjCPropertyDecl(ObjCPropertyDecl *D);
163     Decl *VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
164     Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
165     Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
166     Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
167     Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
168     Decl *VisitClassTemplateSpecializationDecl(
169                                             ClassTemplateSpecializationDecl *D);
170     Decl *VisitVarTemplateDecl(VarTemplateDecl *D);
171     Decl *VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D);
172
173     // Importing statements
174     DeclGroupRef ImportDeclGroup(DeclGroupRef DG);
175
176     Stmt *VisitStmt(Stmt *S);
177     Stmt *VisitDeclStmt(DeclStmt *S);
178     Stmt *VisitNullStmt(NullStmt *S);
179     Stmt *VisitCompoundStmt(CompoundStmt *S);
180     Stmt *VisitCaseStmt(CaseStmt *S);
181     Stmt *VisitDefaultStmt(DefaultStmt *S);
182     Stmt *VisitLabelStmt(LabelStmt *S);
183     Stmt *VisitAttributedStmt(AttributedStmt *S);
184     Stmt *VisitIfStmt(IfStmt *S);
185     Stmt *VisitSwitchStmt(SwitchStmt *S);
186     Stmt *VisitWhileStmt(WhileStmt *S);
187     Stmt *VisitDoStmt(DoStmt *S);
188     Stmt *VisitForStmt(ForStmt *S);
189     Stmt *VisitGotoStmt(GotoStmt *S);
190     Stmt *VisitIndirectGotoStmt(IndirectGotoStmt *S);
191     Stmt *VisitContinueStmt(ContinueStmt *S);
192     Stmt *VisitBreakStmt(BreakStmt *S);
193     Stmt *VisitReturnStmt(ReturnStmt *S);
194     // FIXME: GCCAsmStmt
195     // FIXME: MSAsmStmt
196     // FIXME: SEHExceptStmt
197     // FIXME: SEHFinallyStmt
198     // FIXME: SEHTryStmt
199     // FIXME: SEHLeaveStmt
200     // FIXME: CapturedStmt
201     Stmt *VisitCXXCatchStmt(CXXCatchStmt *S);
202     Stmt *VisitCXXTryStmt(CXXTryStmt *S);
203     Stmt *VisitCXXForRangeStmt(CXXForRangeStmt *S);
204     // FIXME: MSDependentExistsStmt
205     Stmt *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
206     Stmt *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
207     Stmt *VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S);
208     Stmt *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
209     Stmt *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
210     Stmt *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
211     Stmt *VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S);
212
213     // Importing expressions
214     Expr *VisitExpr(Expr *E);
215     Expr *VisitDeclRefExpr(DeclRefExpr *E);
216     Expr *VisitIntegerLiteral(IntegerLiteral *E);
217     Expr *VisitCharacterLiteral(CharacterLiteral *E);
218     Expr *VisitParenExpr(ParenExpr *E);
219     Expr *VisitUnaryOperator(UnaryOperator *E);
220     Expr *VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E);
221     Expr *VisitBinaryOperator(BinaryOperator *E);
222     Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
223     Expr *VisitImplicitCastExpr(ImplicitCastExpr *E);
224     Expr *VisitCStyleCastExpr(CStyleCastExpr *E);
225     Expr *VisitCXXConstructExpr(CXXConstructExpr *E);
226     Expr *VisitMemberExpr(MemberExpr *E);
227     Expr *VisitCallExpr(CallExpr *E);
228   };
229 }
230 using namespace clang;
231
232 //----------------------------------------------------------------------------
233 // Structural Equivalence
234 //----------------------------------------------------------------------------
235
236 namespace {
237   struct StructuralEquivalenceContext {
238     /// \brief AST contexts for which we are checking structural equivalence.
239     ASTContext &C1, &C2;
240     
241     /// \brief The set of "tentative" equivalences between two canonical 
242     /// declarations, mapping from a declaration in the first context to the
243     /// declaration in the second context that we believe to be equivalent.
244     llvm::DenseMap<Decl *, Decl *> TentativeEquivalences;
245     
246     /// \brief Queue of declarations in the first context whose equivalence
247     /// with a declaration in the second context still needs to be verified.
248     std::deque<Decl *> DeclsToCheck;
249     
250     /// \brief Declaration (from, to) pairs that are known not to be equivalent
251     /// (which we have already complained about).
252     llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls;
253     
254     /// \brief Whether we're being strict about the spelling of types when 
255     /// unifying two types.
256     bool StrictTypeSpelling;
257
258     /// \brief Whether to complain about failures.
259     bool Complain;
260
261     /// \brief \c true if the last diagnostic came from C2.
262     bool LastDiagFromC2;
263
264     StructuralEquivalenceContext(ASTContext &C1, ASTContext &C2,
265                llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls,
266                                  bool StrictTypeSpelling = false,
267                                  bool Complain = true)
268       : C1(C1), C2(C2), NonEquivalentDecls(NonEquivalentDecls),
269         StrictTypeSpelling(StrictTypeSpelling), Complain(Complain),
270         LastDiagFromC2(false) {}
271
272     /// \brief Determine whether the two declarations are structurally
273     /// equivalent.
274     bool IsStructurallyEquivalent(Decl *D1, Decl *D2);
275     
276     /// \brief Determine whether the two types are structurally equivalent.
277     bool IsStructurallyEquivalent(QualType T1, QualType T2);
278
279   private:
280     /// \brief Finish checking all of the structural equivalences.
281     ///
282     /// \returns true if an error occurred, false otherwise.
283     bool Finish();
284     
285   public:
286     DiagnosticBuilder Diag1(SourceLocation Loc, unsigned DiagID) {
287       assert(Complain && "Not allowed to complain");
288       if (LastDiagFromC2)
289         C1.getDiagnostics().notePriorDiagnosticFrom(C2.getDiagnostics());
290       LastDiagFromC2 = false;
291       return C1.getDiagnostics().Report(Loc, DiagID);
292     }
293
294     DiagnosticBuilder Diag2(SourceLocation Loc, unsigned DiagID) {
295       assert(Complain && "Not allowed to complain");
296       if (!LastDiagFromC2)
297         C2.getDiagnostics().notePriorDiagnosticFrom(C1.getDiagnostics());
298       LastDiagFromC2 = true;
299       return C2.getDiagnostics().Report(Loc, DiagID);
300     }
301   };
302 }
303
304 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
305                                      QualType T1, QualType T2);
306 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
307                                      Decl *D1, Decl *D2);
308
309 /// \brief Determine structural equivalence of two expressions.
310 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
311                                      Expr *E1, Expr *E2) {
312   if (!E1 || !E2)
313     return E1 == E2;
314   
315   // FIXME: Actually perform a structural comparison!
316   return true;
317 }
318
319 /// \brief Determine whether two identifiers are equivalent.
320 static bool IsStructurallyEquivalent(const IdentifierInfo *Name1,
321                                      const IdentifierInfo *Name2) {
322   if (!Name1 || !Name2)
323     return Name1 == Name2;
324   
325   return Name1->getName() == Name2->getName();
326 }
327
328 /// \brief Determine whether two nested-name-specifiers are equivalent.
329 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
330                                      NestedNameSpecifier *NNS1,
331                                      NestedNameSpecifier *NNS2) {
332   // FIXME: Implement!
333   return true;
334 }
335
336 /// \brief Determine whether two template arguments are equivalent.
337 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
338                                      const TemplateArgument &Arg1,
339                                      const TemplateArgument &Arg2) {
340   if (Arg1.getKind() != Arg2.getKind())
341     return false;
342
343   switch (Arg1.getKind()) {
344   case TemplateArgument::Null:
345     return true;
346       
347   case TemplateArgument::Type:
348     return Context.IsStructurallyEquivalent(Arg1.getAsType(), Arg2.getAsType());
349
350   case TemplateArgument::Integral:
351     if (!Context.IsStructurallyEquivalent(Arg1.getIntegralType(), 
352                                           Arg2.getIntegralType()))
353       return false;
354     
355     return llvm::APSInt::isSameValue(Arg1.getAsIntegral(), Arg2.getAsIntegral());
356       
357   case TemplateArgument::Declaration:
358     return Context.IsStructurallyEquivalent(Arg1.getAsDecl(), Arg2.getAsDecl());
359
360   case TemplateArgument::NullPtr:
361     return true; // FIXME: Is this correct?
362
363   case TemplateArgument::Template:
364     return IsStructurallyEquivalent(Context, 
365                                     Arg1.getAsTemplate(), 
366                                     Arg2.getAsTemplate());
367
368   case TemplateArgument::TemplateExpansion:
369     return IsStructurallyEquivalent(Context, 
370                                     Arg1.getAsTemplateOrTemplatePattern(), 
371                                     Arg2.getAsTemplateOrTemplatePattern());
372
373   case TemplateArgument::Expression:
374     return IsStructurallyEquivalent(Context, 
375                                     Arg1.getAsExpr(), Arg2.getAsExpr());
376       
377   case TemplateArgument::Pack:
378     if (Arg1.pack_size() != Arg2.pack_size())
379       return false;
380       
381     for (unsigned I = 0, N = Arg1.pack_size(); I != N; ++I)
382       if (!IsStructurallyEquivalent(Context, 
383                                     Arg1.pack_begin()[I],
384                                     Arg2.pack_begin()[I]))
385         return false;
386       
387     return true;
388   }
389   
390   llvm_unreachable("Invalid template argument kind");
391 }
392
393 /// \brief Determine structural equivalence for the common part of array 
394 /// types.
395 static bool IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context,
396                                           const ArrayType *Array1, 
397                                           const ArrayType *Array2) {
398   if (!IsStructurallyEquivalent(Context, 
399                                 Array1->getElementType(), 
400                                 Array2->getElementType()))
401     return false;
402   if (Array1->getSizeModifier() != Array2->getSizeModifier())
403     return false;
404   if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
405     return false;
406   
407   return true;
408 }
409
410 /// \brief Determine structural equivalence of two types.
411 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
412                                      QualType T1, QualType T2) {
413   if (T1.isNull() || T2.isNull())
414     return T1.isNull() && T2.isNull();
415   
416   if (!Context.StrictTypeSpelling) {
417     // We aren't being strict about token-to-token equivalence of types,
418     // so map down to the canonical type.
419     T1 = Context.C1.getCanonicalType(T1);
420     T2 = Context.C2.getCanonicalType(T2);
421   }
422   
423   if (T1.getQualifiers() != T2.getQualifiers())
424     return false;
425   
426   Type::TypeClass TC = T1->getTypeClass();
427   
428   if (T1->getTypeClass() != T2->getTypeClass()) {
429     // Compare function types with prototypes vs. without prototypes as if
430     // both did not have prototypes.
431     if (T1->getTypeClass() == Type::FunctionProto &&
432         T2->getTypeClass() == Type::FunctionNoProto)
433       TC = Type::FunctionNoProto;
434     else if (T1->getTypeClass() == Type::FunctionNoProto &&
435              T2->getTypeClass() == Type::FunctionProto)
436       TC = Type::FunctionNoProto;
437     else
438       return false;
439   }
440   
441   switch (TC) {
442   case Type::Builtin:
443     // FIXME: Deal with Char_S/Char_U. 
444     if (cast<BuiltinType>(T1)->getKind() != cast<BuiltinType>(T2)->getKind())
445       return false;
446     break;
447   
448   case Type::Complex:
449     if (!IsStructurallyEquivalent(Context,
450                                   cast<ComplexType>(T1)->getElementType(),
451                                   cast<ComplexType>(T2)->getElementType()))
452       return false;
453     break;
454   
455   case Type::Adjusted:
456   case Type::Decayed:
457     if (!IsStructurallyEquivalent(Context,
458                                   cast<AdjustedType>(T1)->getOriginalType(),
459                                   cast<AdjustedType>(T2)->getOriginalType()))
460       return false;
461     break;
462
463   case Type::Pointer:
464     if (!IsStructurallyEquivalent(Context,
465                                   cast<PointerType>(T1)->getPointeeType(),
466                                   cast<PointerType>(T2)->getPointeeType()))
467       return false;
468     break;
469
470   case Type::BlockPointer:
471     if (!IsStructurallyEquivalent(Context,
472                                   cast<BlockPointerType>(T1)->getPointeeType(),
473                                   cast<BlockPointerType>(T2)->getPointeeType()))
474       return false;
475     break;
476
477   case Type::LValueReference:
478   case Type::RValueReference: {
479     const ReferenceType *Ref1 = cast<ReferenceType>(T1);
480     const ReferenceType *Ref2 = cast<ReferenceType>(T2);
481     if (Ref1->isSpelledAsLValue() != Ref2->isSpelledAsLValue())
482       return false;
483     if (Ref1->isInnerRef() != Ref2->isInnerRef())
484       return false;
485     if (!IsStructurallyEquivalent(Context,
486                                   Ref1->getPointeeTypeAsWritten(),
487                                   Ref2->getPointeeTypeAsWritten()))
488       return false;
489     break;
490   }
491       
492   case Type::MemberPointer: {
493     const MemberPointerType *MemPtr1 = cast<MemberPointerType>(T1);
494     const MemberPointerType *MemPtr2 = cast<MemberPointerType>(T2);
495     if (!IsStructurallyEquivalent(Context,
496                                   MemPtr1->getPointeeType(),
497                                   MemPtr2->getPointeeType()))
498       return false;
499     if (!IsStructurallyEquivalent(Context,
500                                   QualType(MemPtr1->getClass(), 0),
501                                   QualType(MemPtr2->getClass(), 0)))
502       return false;
503     break;
504   }
505       
506   case Type::ConstantArray: {
507     const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1);
508     const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2);
509     if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
510       return false;
511     
512     if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
513       return false;
514     break;
515   }
516
517   case Type::IncompleteArray:
518     if (!IsArrayStructurallyEquivalent(Context, 
519                                        cast<ArrayType>(T1), 
520                                        cast<ArrayType>(T2)))
521       return false;
522     break;
523       
524   case Type::VariableArray: {
525     const VariableArrayType *Array1 = cast<VariableArrayType>(T1);
526     const VariableArrayType *Array2 = cast<VariableArrayType>(T2);
527     if (!IsStructurallyEquivalent(Context, 
528                                   Array1->getSizeExpr(), Array2->getSizeExpr()))
529       return false;
530     
531     if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
532       return false;
533     
534     break;
535   }
536   
537   case Type::DependentSizedArray: {
538     const DependentSizedArrayType *Array1 = cast<DependentSizedArrayType>(T1);
539     const DependentSizedArrayType *Array2 = cast<DependentSizedArrayType>(T2);
540     if (!IsStructurallyEquivalent(Context, 
541                                   Array1->getSizeExpr(), Array2->getSizeExpr()))
542       return false;
543     
544     if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
545       return false;
546     
547     break;
548   }
549       
550   case Type::DependentSizedExtVector: {
551     const DependentSizedExtVectorType *Vec1
552       = cast<DependentSizedExtVectorType>(T1);
553     const DependentSizedExtVectorType *Vec2
554       = cast<DependentSizedExtVectorType>(T2);
555     if (!IsStructurallyEquivalent(Context, 
556                                   Vec1->getSizeExpr(), Vec2->getSizeExpr()))
557       return false;
558     if (!IsStructurallyEquivalent(Context, 
559                                   Vec1->getElementType(), 
560                                   Vec2->getElementType()))
561       return false;
562     break;
563   }
564    
565   case Type::Vector: 
566   case Type::ExtVector: {
567     const VectorType *Vec1 = cast<VectorType>(T1);
568     const VectorType *Vec2 = cast<VectorType>(T2);
569     if (!IsStructurallyEquivalent(Context, 
570                                   Vec1->getElementType(),
571                                   Vec2->getElementType()))
572       return false;
573     if (Vec1->getNumElements() != Vec2->getNumElements())
574       return false;
575     if (Vec1->getVectorKind() != Vec2->getVectorKind())
576       return false;
577     break;
578   }
579
580   case Type::FunctionProto: {
581     const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1);
582     const FunctionProtoType *Proto2 = cast<FunctionProtoType>(T2);
583     if (Proto1->getNumParams() != Proto2->getNumParams())
584       return false;
585     for (unsigned I = 0, N = Proto1->getNumParams(); I != N; ++I) {
586       if (!IsStructurallyEquivalent(Context, Proto1->getParamType(I),
587                                     Proto2->getParamType(I)))
588         return false;
589     }
590     if (Proto1->isVariadic() != Proto2->isVariadic())
591       return false;
592     if (Proto1->getExceptionSpecType() != Proto2->getExceptionSpecType())
593       return false;
594     if (Proto1->getExceptionSpecType() == EST_Dynamic) {
595       if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
596         return false;
597       for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
598         if (!IsStructurallyEquivalent(Context,
599                                       Proto1->getExceptionType(I),
600                                       Proto2->getExceptionType(I)))
601           return false;
602       }
603     } else if (Proto1->getExceptionSpecType() == EST_ComputedNoexcept) {
604       if (!IsStructurallyEquivalent(Context,
605                                     Proto1->getNoexceptExpr(),
606                                     Proto2->getNoexceptExpr()))
607         return false;
608     }
609     if (Proto1->getTypeQuals() != Proto2->getTypeQuals())
610       return false;
611     
612     // Fall through to check the bits common with FunctionNoProtoType.
613   }
614       
615   case Type::FunctionNoProto: {
616     const FunctionType *Function1 = cast<FunctionType>(T1);
617     const FunctionType *Function2 = cast<FunctionType>(T2);
618     if (!IsStructurallyEquivalent(Context, Function1->getReturnType(),
619                                   Function2->getReturnType()))
620       return false;
621       if (Function1->getExtInfo() != Function2->getExtInfo())
622         return false;
623     break;
624   }
625    
626   case Type::UnresolvedUsing:
627     if (!IsStructurallyEquivalent(Context,
628                                   cast<UnresolvedUsingType>(T1)->getDecl(),
629                                   cast<UnresolvedUsingType>(T2)->getDecl()))
630       return false;
631       
632     break;
633
634   case Type::Attributed:
635     if (!IsStructurallyEquivalent(Context,
636                                   cast<AttributedType>(T1)->getModifiedType(),
637                                   cast<AttributedType>(T2)->getModifiedType()))
638       return false;
639     if (!IsStructurallyEquivalent(Context,
640                                 cast<AttributedType>(T1)->getEquivalentType(),
641                                 cast<AttributedType>(T2)->getEquivalentType()))
642       return false;
643     break;
644       
645   case Type::Paren:
646     if (!IsStructurallyEquivalent(Context,
647                                   cast<ParenType>(T1)->getInnerType(),
648                                   cast<ParenType>(T2)->getInnerType()))
649       return false;
650     break;
651
652   case Type::Typedef:
653     if (!IsStructurallyEquivalent(Context,
654                                   cast<TypedefType>(T1)->getDecl(),
655                                   cast<TypedefType>(T2)->getDecl()))
656       return false;
657     break;
658       
659   case Type::TypeOfExpr:
660     if (!IsStructurallyEquivalent(Context,
661                                 cast<TypeOfExprType>(T1)->getUnderlyingExpr(),
662                                 cast<TypeOfExprType>(T2)->getUnderlyingExpr()))
663       return false;
664     break;
665       
666   case Type::TypeOf:
667     if (!IsStructurallyEquivalent(Context,
668                                   cast<TypeOfType>(T1)->getUnderlyingType(),
669                                   cast<TypeOfType>(T2)->getUnderlyingType()))
670       return false;
671     break;
672
673   case Type::UnaryTransform:
674     if (!IsStructurallyEquivalent(Context,
675                              cast<UnaryTransformType>(T1)->getUnderlyingType(),
676                              cast<UnaryTransformType>(T1)->getUnderlyingType()))
677       return false;
678     break;
679
680   case Type::Decltype:
681     if (!IsStructurallyEquivalent(Context,
682                                   cast<DecltypeType>(T1)->getUnderlyingExpr(),
683                                   cast<DecltypeType>(T2)->getUnderlyingExpr()))
684       return false;
685     break;
686
687   case Type::Auto:
688     if (!IsStructurallyEquivalent(Context,
689                                   cast<AutoType>(T1)->getDeducedType(),
690                                   cast<AutoType>(T2)->getDeducedType()))
691       return false;
692     break;
693
694   case Type::Record:
695   case Type::Enum:
696     if (!IsStructurallyEquivalent(Context,
697                                   cast<TagType>(T1)->getDecl(),
698                                   cast<TagType>(T2)->getDecl()))
699       return false;
700     break;
701
702   case Type::TemplateTypeParm: {
703     const TemplateTypeParmType *Parm1 = cast<TemplateTypeParmType>(T1);
704     const TemplateTypeParmType *Parm2 = cast<TemplateTypeParmType>(T2);
705     if (Parm1->getDepth() != Parm2->getDepth())
706       return false;
707     if (Parm1->getIndex() != Parm2->getIndex())
708       return false;
709     if (Parm1->isParameterPack() != Parm2->isParameterPack())
710       return false;
711     
712     // Names of template type parameters are never significant.
713     break;
714   }
715       
716   case Type::SubstTemplateTypeParm: {
717     const SubstTemplateTypeParmType *Subst1
718       = cast<SubstTemplateTypeParmType>(T1);
719     const SubstTemplateTypeParmType *Subst2
720       = cast<SubstTemplateTypeParmType>(T2);
721     if (!IsStructurallyEquivalent(Context,
722                                   QualType(Subst1->getReplacedParameter(), 0),
723                                   QualType(Subst2->getReplacedParameter(), 0)))
724       return false;
725     if (!IsStructurallyEquivalent(Context, 
726                                   Subst1->getReplacementType(),
727                                   Subst2->getReplacementType()))
728       return false;
729     break;
730   }
731
732   case Type::SubstTemplateTypeParmPack: {
733     const SubstTemplateTypeParmPackType *Subst1
734       = cast<SubstTemplateTypeParmPackType>(T1);
735     const SubstTemplateTypeParmPackType *Subst2
736       = cast<SubstTemplateTypeParmPackType>(T2);
737     if (!IsStructurallyEquivalent(Context,
738                                   QualType(Subst1->getReplacedParameter(), 0),
739                                   QualType(Subst2->getReplacedParameter(), 0)))
740       return false;
741     if (!IsStructurallyEquivalent(Context, 
742                                   Subst1->getArgumentPack(),
743                                   Subst2->getArgumentPack()))
744       return false;
745     break;
746   }
747   case Type::TemplateSpecialization: {
748     const TemplateSpecializationType *Spec1
749       = cast<TemplateSpecializationType>(T1);
750     const TemplateSpecializationType *Spec2
751       = cast<TemplateSpecializationType>(T2);
752     if (!IsStructurallyEquivalent(Context,
753                                   Spec1->getTemplateName(),
754                                   Spec2->getTemplateName()))
755       return false;
756     if (Spec1->getNumArgs() != Spec2->getNumArgs())
757       return false;
758     for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
759       if (!IsStructurallyEquivalent(Context, 
760                                     Spec1->getArg(I), Spec2->getArg(I)))
761         return false;
762     }
763     break;
764   }
765       
766   case Type::Elaborated: {
767     const ElaboratedType *Elab1 = cast<ElaboratedType>(T1);
768     const ElaboratedType *Elab2 = cast<ElaboratedType>(T2);
769     // CHECKME: what if a keyword is ETK_None or ETK_typename ?
770     if (Elab1->getKeyword() != Elab2->getKeyword())
771       return false;
772     if (!IsStructurallyEquivalent(Context, 
773                                   Elab1->getQualifier(), 
774                                   Elab2->getQualifier()))
775       return false;
776     if (!IsStructurallyEquivalent(Context,
777                                   Elab1->getNamedType(),
778                                   Elab2->getNamedType()))
779       return false;
780     break;
781   }
782
783   case Type::InjectedClassName: {
784     const InjectedClassNameType *Inj1 = cast<InjectedClassNameType>(T1);
785     const InjectedClassNameType *Inj2 = cast<InjectedClassNameType>(T2);
786     if (!IsStructurallyEquivalent(Context,
787                                   Inj1->getInjectedSpecializationType(),
788                                   Inj2->getInjectedSpecializationType()))
789       return false;
790     break;
791   }
792
793   case Type::DependentName: {
794     const DependentNameType *Typename1 = cast<DependentNameType>(T1);
795     const DependentNameType *Typename2 = cast<DependentNameType>(T2);
796     if (!IsStructurallyEquivalent(Context, 
797                                   Typename1->getQualifier(),
798                                   Typename2->getQualifier()))
799       return false;
800     if (!IsStructurallyEquivalent(Typename1->getIdentifier(),
801                                   Typename2->getIdentifier()))
802       return false;
803     
804     break;
805   }
806   
807   case Type::DependentTemplateSpecialization: {
808     const DependentTemplateSpecializationType *Spec1 =
809       cast<DependentTemplateSpecializationType>(T1);
810     const DependentTemplateSpecializationType *Spec2 =
811       cast<DependentTemplateSpecializationType>(T2);
812     if (!IsStructurallyEquivalent(Context, 
813                                   Spec1->getQualifier(),
814                                   Spec2->getQualifier()))
815       return false;
816     if (!IsStructurallyEquivalent(Spec1->getIdentifier(),
817                                   Spec2->getIdentifier()))
818       return false;
819     if (Spec1->getNumArgs() != Spec2->getNumArgs())
820       return false;
821     for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
822       if (!IsStructurallyEquivalent(Context,
823                                     Spec1->getArg(I), Spec2->getArg(I)))
824         return false;
825     }
826     break;
827   }
828
829   case Type::PackExpansion:
830     if (!IsStructurallyEquivalent(Context,
831                                   cast<PackExpansionType>(T1)->getPattern(),
832                                   cast<PackExpansionType>(T2)->getPattern()))
833       return false;
834     break;
835
836   case Type::ObjCInterface: {
837     const ObjCInterfaceType *Iface1 = cast<ObjCInterfaceType>(T1);
838     const ObjCInterfaceType *Iface2 = cast<ObjCInterfaceType>(T2);
839     if (!IsStructurallyEquivalent(Context, 
840                                   Iface1->getDecl(), Iface2->getDecl()))
841       return false;
842     break;
843   }
844
845   case Type::ObjCObject: {
846     const ObjCObjectType *Obj1 = cast<ObjCObjectType>(T1);
847     const ObjCObjectType *Obj2 = cast<ObjCObjectType>(T2);
848     if (!IsStructurallyEquivalent(Context,
849                                   Obj1->getBaseType(),
850                                   Obj2->getBaseType()))
851       return false;
852     if (Obj1->getNumProtocols() != Obj2->getNumProtocols())
853       return false;
854     for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) {
855       if (!IsStructurallyEquivalent(Context,
856                                     Obj1->getProtocol(I),
857                                     Obj2->getProtocol(I)))
858         return false;
859     }
860     break;
861   }
862
863   case Type::ObjCObjectPointer: {
864     const ObjCObjectPointerType *Ptr1 = cast<ObjCObjectPointerType>(T1);
865     const ObjCObjectPointerType *Ptr2 = cast<ObjCObjectPointerType>(T2);
866     if (!IsStructurallyEquivalent(Context, 
867                                   Ptr1->getPointeeType(),
868                                   Ptr2->getPointeeType()))
869       return false;
870     break;
871   }
872
873   case Type::Atomic: {
874     if (!IsStructurallyEquivalent(Context,
875                                   cast<AtomicType>(T1)->getValueType(),
876                                   cast<AtomicType>(T2)->getValueType()))
877       return false;
878     break;
879   }
880
881   } // end switch
882
883   return true;
884 }
885
886 /// \brief Determine structural equivalence of two fields.
887 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
888                                      FieldDecl *Field1, FieldDecl *Field2) {
889   RecordDecl *Owner2 = cast<RecordDecl>(Field2->getDeclContext());
890
891   // For anonymous structs/unions, match up the anonymous struct/union type
892   // declarations directly, so that we don't go off searching for anonymous
893   // types
894   if (Field1->isAnonymousStructOrUnion() &&
895       Field2->isAnonymousStructOrUnion()) {
896     RecordDecl *D1 = Field1->getType()->castAs<RecordType>()->getDecl();
897     RecordDecl *D2 = Field2->getType()->castAs<RecordType>()->getDecl();
898     return IsStructurallyEquivalent(Context, D1, D2);
899   }
900     
901   // Check for equivalent field names.
902   IdentifierInfo *Name1 = Field1->getIdentifier();
903   IdentifierInfo *Name2 = Field2->getIdentifier();
904   if (!::IsStructurallyEquivalent(Name1, Name2))
905     return false;
906
907   if (!IsStructurallyEquivalent(Context,
908                                 Field1->getType(), Field2->getType())) {
909     if (Context.Complain) {
910       Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
911         << Context.C2.getTypeDeclType(Owner2);
912       Context.Diag2(Field2->getLocation(), diag::note_odr_field)
913         << Field2->getDeclName() << Field2->getType();
914       Context.Diag1(Field1->getLocation(), diag::note_odr_field)
915         << Field1->getDeclName() << Field1->getType();
916     }
917     return false;
918   }
919   
920   if (Field1->isBitField() != Field2->isBitField()) {
921     if (Context.Complain) {
922       Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
923         << Context.C2.getTypeDeclType(Owner2);
924       if (Field1->isBitField()) {
925         Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
926         << Field1->getDeclName() << Field1->getType()
927         << Field1->getBitWidthValue(Context.C1);
928         Context.Diag2(Field2->getLocation(), diag::note_odr_not_bit_field)
929         << Field2->getDeclName();
930       } else {
931         Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
932         << Field2->getDeclName() << Field2->getType()
933         << Field2->getBitWidthValue(Context.C2);
934         Context.Diag1(Field1->getLocation(), diag::note_odr_not_bit_field)
935         << Field1->getDeclName();
936       }
937     }
938     return false;
939   }
940   
941   if (Field1->isBitField()) {
942     // Make sure that the bit-fields are the same length.
943     unsigned Bits1 = Field1->getBitWidthValue(Context.C1);
944     unsigned Bits2 = Field2->getBitWidthValue(Context.C2);
945     
946     if (Bits1 != Bits2) {
947       if (Context.Complain) {
948         Context.Diag2(Owner2->getLocation(), diag::warn_odr_tag_type_inconsistent)
949           << Context.C2.getTypeDeclType(Owner2);
950         Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
951           << Field2->getDeclName() << Field2->getType() << Bits2;
952         Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
953           << Field1->getDeclName() << Field1->getType() << Bits1;
954       }
955       return false;
956     }
957   }
958
959   return true;
960 }
961
962 /// \brief Find the index of the given anonymous struct/union within its
963 /// context.
964 ///
965 /// \returns Returns the index of this anonymous struct/union in its context,
966 /// including the next assigned index (if none of them match). Returns an
967 /// empty option if the context is not a record, i.e.. if the anonymous
968 /// struct/union is at namespace or block scope.
969 static Optional<unsigned> findAnonymousStructOrUnionIndex(RecordDecl *Anon) {
970   ASTContext &Context = Anon->getASTContext();
971   QualType AnonTy = Context.getRecordType(Anon);
972
973   RecordDecl *Owner = dyn_cast<RecordDecl>(Anon->getDeclContext());
974   if (!Owner)
975     return None;
976
977   unsigned Index = 0;
978   for (const auto *D : Owner->noload_decls()) {
979     const auto *F = dyn_cast<FieldDecl>(D);
980     if (!F || !F->isAnonymousStructOrUnion())
981       continue;
982
983     if (Context.hasSameType(F->getType(), AnonTy))
984       break;
985
986     ++Index;
987   }
988
989   return Index;
990 }
991
992 /// \brief Determine structural equivalence of two records.
993 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
994                                      RecordDecl *D1, RecordDecl *D2) {
995   if (D1->isUnion() != D2->isUnion()) {
996     if (Context.Complain) {
997       Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
998         << Context.C2.getTypeDeclType(D2);
999       Context.Diag1(D1->getLocation(), diag::note_odr_tag_kind_here)
1000         << D1->getDeclName() << (unsigned)D1->getTagKind();
1001     }
1002     return false;
1003   }
1004
1005   if (D1->isAnonymousStructOrUnion() && D2->isAnonymousStructOrUnion()) {
1006     // If both anonymous structs/unions are in a record context, make sure
1007     // they occur in the same location in the context records.
1008     if (Optional<unsigned> Index1 = findAnonymousStructOrUnionIndex(D1)) {
1009       if (Optional<unsigned> Index2 = findAnonymousStructOrUnionIndex(D2)) {
1010         if (*Index1 != *Index2)
1011           return false;
1012       }
1013     }
1014   }
1015
1016   // If both declarations are class template specializations, we know
1017   // the ODR applies, so check the template and template arguments.
1018   ClassTemplateSpecializationDecl *Spec1
1019     = dyn_cast<ClassTemplateSpecializationDecl>(D1);
1020   ClassTemplateSpecializationDecl *Spec2
1021     = dyn_cast<ClassTemplateSpecializationDecl>(D2);
1022   if (Spec1 && Spec2) {
1023     // Check that the specialized templates are the same.
1024     if (!IsStructurallyEquivalent(Context, Spec1->getSpecializedTemplate(),
1025                                   Spec2->getSpecializedTemplate()))
1026       return false;
1027     
1028     // Check that the template arguments are the same.
1029     if (Spec1->getTemplateArgs().size() != Spec2->getTemplateArgs().size())
1030       return false;
1031     
1032     for (unsigned I = 0, N = Spec1->getTemplateArgs().size(); I != N; ++I)
1033       if (!IsStructurallyEquivalent(Context, 
1034                                     Spec1->getTemplateArgs().get(I),
1035                                     Spec2->getTemplateArgs().get(I)))
1036         return false;
1037   }  
1038   // If one is a class template specialization and the other is not, these
1039   // structures are different.
1040   else if (Spec1 || Spec2)
1041     return false;
1042
1043   // Compare the definitions of these two records. If either or both are
1044   // incomplete, we assume that they are equivalent.
1045   D1 = D1->getDefinition();
1046   D2 = D2->getDefinition();
1047   if (!D1 || !D2)
1048     return true;
1049   
1050   if (CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(D1)) {
1051     if (CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(D2)) {
1052       if (D1CXX->getNumBases() != D2CXX->getNumBases()) {
1053         if (Context.Complain) {
1054           Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1055             << Context.C2.getTypeDeclType(D2);
1056           Context.Diag2(D2->getLocation(), diag::note_odr_number_of_bases)
1057             << D2CXX->getNumBases();
1058           Context.Diag1(D1->getLocation(), diag::note_odr_number_of_bases)
1059             << D1CXX->getNumBases();
1060         }
1061         return false;
1062       }
1063       
1064       // Check the base classes. 
1065       for (CXXRecordDecl::base_class_iterator Base1 = D1CXX->bases_begin(), 
1066                                            BaseEnd1 = D1CXX->bases_end(),
1067                                                 Base2 = D2CXX->bases_begin();
1068            Base1 != BaseEnd1;
1069            ++Base1, ++Base2) {        
1070         if (!IsStructurallyEquivalent(Context, 
1071                                       Base1->getType(), Base2->getType())) {
1072           if (Context.Complain) {
1073             Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1074               << Context.C2.getTypeDeclType(D2);
1075             Context.Diag2(Base2->getLocStart(), diag::note_odr_base)
1076               << Base2->getType()
1077               << Base2->getSourceRange();
1078             Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1079               << Base1->getType()
1080               << Base1->getSourceRange();
1081           }
1082           return false;
1083         }
1084         
1085         // Check virtual vs. non-virtual inheritance mismatch.
1086         if (Base1->isVirtual() != Base2->isVirtual()) {
1087           if (Context.Complain) {
1088             Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1089               << Context.C2.getTypeDeclType(D2);
1090             Context.Diag2(Base2->getLocStart(),
1091                           diag::note_odr_virtual_base)
1092               << Base2->isVirtual() << Base2->getSourceRange();
1093             Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1094               << Base1->isVirtual()
1095               << Base1->getSourceRange();
1096           }
1097           return false;
1098         }
1099       }
1100     } else if (D1CXX->getNumBases() > 0) {
1101       if (Context.Complain) {
1102         Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1103           << Context.C2.getTypeDeclType(D2);
1104         const CXXBaseSpecifier *Base1 = D1CXX->bases_begin();
1105         Context.Diag1(Base1->getLocStart(), diag::note_odr_base)
1106           << Base1->getType()
1107           << Base1->getSourceRange();
1108         Context.Diag2(D2->getLocation(), diag::note_odr_missing_base);
1109       }
1110       return false;
1111     }
1112   }
1113   
1114   // Check the fields for consistency.
1115   RecordDecl::field_iterator Field2 = D2->field_begin(),
1116                              Field2End = D2->field_end();
1117   for (RecordDecl::field_iterator Field1 = D1->field_begin(),
1118                                   Field1End = D1->field_end();
1119        Field1 != Field1End;
1120        ++Field1, ++Field2) {
1121     if (Field2 == Field2End) {
1122       if (Context.Complain) {
1123         Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1124           << Context.C2.getTypeDeclType(D2);
1125         Context.Diag1(Field1->getLocation(), diag::note_odr_field)
1126           << Field1->getDeclName() << Field1->getType();
1127         Context.Diag2(D2->getLocation(), diag::note_odr_missing_field);
1128       }
1129       return false;
1130     }
1131     
1132     if (!IsStructurallyEquivalent(Context, *Field1, *Field2))
1133       return false;    
1134   }
1135   
1136   if (Field2 != Field2End) {
1137     if (Context.Complain) {
1138       Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1139         << Context.C2.getTypeDeclType(D2);
1140       Context.Diag2(Field2->getLocation(), diag::note_odr_field)
1141         << Field2->getDeclName() << Field2->getType();
1142       Context.Diag1(D1->getLocation(), diag::note_odr_missing_field);
1143     }
1144     return false;
1145   }
1146   
1147   return true;
1148 }
1149      
1150 /// \brief Determine structural equivalence of two enums.
1151 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1152                                      EnumDecl *D1, EnumDecl *D2) {
1153   EnumDecl::enumerator_iterator EC2 = D2->enumerator_begin(),
1154                              EC2End = D2->enumerator_end();
1155   for (EnumDecl::enumerator_iterator EC1 = D1->enumerator_begin(),
1156                                   EC1End = D1->enumerator_end();
1157        EC1 != EC1End; ++EC1, ++EC2) {
1158     if (EC2 == EC2End) {
1159       if (Context.Complain) {
1160         Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1161           << Context.C2.getTypeDeclType(D2);
1162         Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
1163           << EC1->getDeclName() 
1164           << EC1->getInitVal().toString(10);
1165         Context.Diag2(D2->getLocation(), diag::note_odr_missing_enumerator);
1166       }
1167       return false;
1168     }
1169     
1170     llvm::APSInt Val1 = EC1->getInitVal();
1171     llvm::APSInt Val2 = EC2->getInitVal();
1172     if (!llvm::APSInt::isSameValue(Val1, Val2) || 
1173         !IsStructurallyEquivalent(EC1->getIdentifier(), EC2->getIdentifier())) {
1174       if (Context.Complain) {
1175         Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1176           << Context.C2.getTypeDeclType(D2);
1177         Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
1178           << EC2->getDeclName() 
1179           << EC2->getInitVal().toString(10);
1180         Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
1181           << EC1->getDeclName() 
1182           << EC1->getInitVal().toString(10);
1183       }
1184       return false;
1185     }
1186   }
1187   
1188   if (EC2 != EC2End) {
1189     if (Context.Complain) {
1190       Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
1191         << Context.C2.getTypeDeclType(D2);
1192       Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
1193         << EC2->getDeclName() 
1194         << EC2->getInitVal().toString(10);
1195       Context.Diag1(D1->getLocation(), diag::note_odr_missing_enumerator);
1196     }
1197     return false;
1198   }
1199   
1200   return true;
1201 }
1202
1203 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1204                                      TemplateParameterList *Params1,
1205                                      TemplateParameterList *Params2) {
1206   if (Params1->size() != Params2->size()) {
1207     if (Context.Complain) {
1208       Context.Diag2(Params2->getTemplateLoc(), 
1209                     diag::err_odr_different_num_template_parameters)
1210         << Params1->size() << Params2->size();
1211       Context.Diag1(Params1->getTemplateLoc(), 
1212                     diag::note_odr_template_parameter_list);
1213     }
1214     return false;
1215   }
1216   
1217   for (unsigned I = 0, N = Params1->size(); I != N; ++I) {
1218     if (Params1->getParam(I)->getKind() != Params2->getParam(I)->getKind()) {
1219       if (Context.Complain) {
1220         Context.Diag2(Params2->getParam(I)->getLocation(), 
1221                       diag::err_odr_different_template_parameter_kind);
1222         Context.Diag1(Params1->getParam(I)->getLocation(),
1223                       diag::note_odr_template_parameter_here);
1224       }
1225       return false;
1226     }
1227     
1228     if (!Context.IsStructurallyEquivalent(Params1->getParam(I),
1229                                           Params2->getParam(I))) {
1230       
1231       return false;
1232     }
1233   }
1234   
1235   return true;
1236 }
1237
1238 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1239                                      TemplateTypeParmDecl *D1,
1240                                      TemplateTypeParmDecl *D2) {
1241   if (D1->isParameterPack() != D2->isParameterPack()) {
1242     if (Context.Complain) {
1243       Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1244         << D2->isParameterPack();
1245       Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1246         << D1->isParameterPack();
1247     }
1248     return false;
1249   }
1250   
1251   return true;
1252 }
1253
1254 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1255                                      NonTypeTemplateParmDecl *D1,
1256                                      NonTypeTemplateParmDecl *D2) {
1257   if (D1->isParameterPack() != D2->isParameterPack()) {
1258     if (Context.Complain) {
1259       Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1260         << D2->isParameterPack();
1261       Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1262         << D1->isParameterPack();
1263     }
1264     return false;
1265   }
1266   
1267   // Check types.
1268   if (!Context.IsStructurallyEquivalent(D1->getType(), D2->getType())) {
1269     if (Context.Complain) {
1270       Context.Diag2(D2->getLocation(),
1271                     diag::err_odr_non_type_parameter_type_inconsistent)
1272         << D2->getType() << D1->getType();
1273       Context.Diag1(D1->getLocation(), diag::note_odr_value_here)
1274         << D1->getType();
1275     }
1276     return false;
1277   }
1278   
1279   return true;
1280 }
1281
1282 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1283                                      TemplateTemplateParmDecl *D1,
1284                                      TemplateTemplateParmDecl *D2) {
1285   if (D1->isParameterPack() != D2->isParameterPack()) {
1286     if (Context.Complain) {
1287       Context.Diag2(D2->getLocation(), diag::err_odr_parameter_pack_non_pack)
1288         << D2->isParameterPack();
1289       Context.Diag1(D1->getLocation(), diag::note_odr_parameter_pack_non_pack)
1290         << D1->isParameterPack();
1291     }
1292     return false;
1293   }
1294
1295   // Check template parameter lists.
1296   return IsStructurallyEquivalent(Context, D1->getTemplateParameters(),
1297                                   D2->getTemplateParameters());
1298 }
1299
1300 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1301                                      ClassTemplateDecl *D1, 
1302                                      ClassTemplateDecl *D2) {
1303   // Check template parameters.
1304   if (!IsStructurallyEquivalent(Context,
1305                                 D1->getTemplateParameters(),
1306                                 D2->getTemplateParameters()))
1307     return false;
1308   
1309   // Check the templated declaration.
1310   return Context.IsStructurallyEquivalent(D1->getTemplatedDecl(), 
1311                                           D2->getTemplatedDecl());
1312 }
1313
1314 /// \brief Determine structural equivalence of two declarations.
1315 static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
1316                                      Decl *D1, Decl *D2) {
1317   // FIXME: Check for known structural equivalences via a callback of some sort.
1318   
1319   // Check whether we already know that these two declarations are not
1320   // structurally equivalent.
1321   if (Context.NonEquivalentDecls.count(std::make_pair(D1->getCanonicalDecl(),
1322                                                       D2->getCanonicalDecl())))
1323     return false;
1324   
1325   // Determine whether we've already produced a tentative equivalence for D1.
1326   Decl *&EquivToD1 = Context.TentativeEquivalences[D1->getCanonicalDecl()];
1327   if (EquivToD1)
1328     return EquivToD1 == D2->getCanonicalDecl();
1329   
1330   // Produce a tentative equivalence D1 <-> D2, which will be checked later.
1331   EquivToD1 = D2->getCanonicalDecl();
1332   Context.DeclsToCheck.push_back(D1->getCanonicalDecl());
1333   return true;
1334 }
1335
1336 bool StructuralEquivalenceContext::IsStructurallyEquivalent(Decl *D1, 
1337                                                             Decl *D2) {
1338   if (!::IsStructurallyEquivalent(*this, D1, D2))
1339     return false;
1340   
1341   return !Finish();
1342 }
1343
1344 bool StructuralEquivalenceContext::IsStructurallyEquivalent(QualType T1, 
1345                                                             QualType T2) {
1346   if (!::IsStructurallyEquivalent(*this, T1, T2))
1347     return false;
1348   
1349   return !Finish();
1350 }
1351
1352 bool StructuralEquivalenceContext::Finish() {
1353   while (!DeclsToCheck.empty()) {
1354     // Check the next declaration.
1355     Decl *D1 = DeclsToCheck.front();
1356     DeclsToCheck.pop_front();
1357     
1358     Decl *D2 = TentativeEquivalences[D1];
1359     assert(D2 && "Unrecorded tentative equivalence?");
1360     
1361     bool Equivalent = true;
1362     
1363     // FIXME: Switch on all declaration kinds. For now, we're just going to
1364     // check the obvious ones.
1365     if (RecordDecl *Record1 = dyn_cast<RecordDecl>(D1)) {
1366       if (RecordDecl *Record2 = dyn_cast<RecordDecl>(D2)) {
1367         // Check for equivalent structure names.
1368         IdentifierInfo *Name1 = Record1->getIdentifier();
1369         if (!Name1 && Record1->getTypedefNameForAnonDecl())
1370           Name1 = Record1->getTypedefNameForAnonDecl()->getIdentifier();
1371         IdentifierInfo *Name2 = Record2->getIdentifier();
1372         if (!Name2 && Record2->getTypedefNameForAnonDecl())
1373           Name2 = Record2->getTypedefNameForAnonDecl()->getIdentifier();
1374         if (!::IsStructurallyEquivalent(Name1, Name2) ||
1375             !::IsStructurallyEquivalent(*this, Record1, Record2))
1376           Equivalent = false;
1377       } else {
1378         // Record/non-record mismatch.
1379         Equivalent = false;
1380       }
1381     } else if (EnumDecl *Enum1 = dyn_cast<EnumDecl>(D1)) {
1382       if (EnumDecl *Enum2 = dyn_cast<EnumDecl>(D2)) {
1383         // Check for equivalent enum names.
1384         IdentifierInfo *Name1 = Enum1->getIdentifier();
1385         if (!Name1 && Enum1->getTypedefNameForAnonDecl())
1386           Name1 = Enum1->getTypedefNameForAnonDecl()->getIdentifier();
1387         IdentifierInfo *Name2 = Enum2->getIdentifier();
1388         if (!Name2 && Enum2->getTypedefNameForAnonDecl())
1389           Name2 = Enum2->getTypedefNameForAnonDecl()->getIdentifier();
1390         if (!::IsStructurallyEquivalent(Name1, Name2) ||
1391             !::IsStructurallyEquivalent(*this, Enum1, Enum2))
1392           Equivalent = false;
1393       } else {
1394         // Enum/non-enum mismatch
1395         Equivalent = false;
1396       }
1397     } else if (TypedefNameDecl *Typedef1 = dyn_cast<TypedefNameDecl>(D1)) {
1398       if (TypedefNameDecl *Typedef2 = dyn_cast<TypedefNameDecl>(D2)) {
1399         if (!::IsStructurallyEquivalent(Typedef1->getIdentifier(),
1400                                         Typedef2->getIdentifier()) ||
1401             !::IsStructurallyEquivalent(*this,
1402                                         Typedef1->getUnderlyingType(),
1403                                         Typedef2->getUnderlyingType()))
1404           Equivalent = false;
1405       } else {
1406         // Typedef/non-typedef mismatch.
1407         Equivalent = false;
1408       }
1409     } else if (ClassTemplateDecl *ClassTemplate1 
1410                                            = dyn_cast<ClassTemplateDecl>(D1)) {
1411       if (ClassTemplateDecl *ClassTemplate2 = dyn_cast<ClassTemplateDecl>(D2)) {
1412         if (!::IsStructurallyEquivalent(ClassTemplate1->getIdentifier(),
1413                                         ClassTemplate2->getIdentifier()) ||
1414             !::IsStructurallyEquivalent(*this, ClassTemplate1, ClassTemplate2))
1415           Equivalent = false;
1416       } else {
1417         // Class template/non-class-template mismatch.
1418         Equivalent = false;
1419       }
1420     } else if (TemplateTypeParmDecl *TTP1= dyn_cast<TemplateTypeParmDecl>(D1)) {
1421       if (TemplateTypeParmDecl *TTP2 = dyn_cast<TemplateTypeParmDecl>(D2)) {
1422         if (!::IsStructurallyEquivalent(*this, TTP1, TTP2))
1423           Equivalent = false;
1424       } else {
1425         // Kind mismatch.
1426         Equivalent = false;
1427       }
1428     } else if (NonTypeTemplateParmDecl *NTTP1
1429                                      = dyn_cast<NonTypeTemplateParmDecl>(D1)) {
1430       if (NonTypeTemplateParmDecl *NTTP2
1431                                       = dyn_cast<NonTypeTemplateParmDecl>(D2)) {
1432         if (!::IsStructurallyEquivalent(*this, NTTP1, NTTP2))
1433           Equivalent = false;
1434       } else {
1435         // Kind mismatch.
1436         Equivalent = false;
1437       }
1438     } else if (TemplateTemplateParmDecl *TTP1
1439                                   = dyn_cast<TemplateTemplateParmDecl>(D1)) {
1440       if (TemplateTemplateParmDecl *TTP2
1441                                     = dyn_cast<TemplateTemplateParmDecl>(D2)) {
1442         if (!::IsStructurallyEquivalent(*this, TTP1, TTP2))
1443           Equivalent = false;
1444       } else {
1445         // Kind mismatch.
1446         Equivalent = false;
1447       }
1448     }
1449     
1450     if (!Equivalent) {
1451       // Note that these two declarations are not equivalent (and we already
1452       // know about it).
1453       NonEquivalentDecls.insert(std::make_pair(D1->getCanonicalDecl(),
1454                                                D2->getCanonicalDecl()));
1455       return true;
1456     }
1457     // FIXME: Check other declaration kinds!
1458   }
1459   
1460   return false;
1461 }
1462
1463 //----------------------------------------------------------------------------
1464 // Import Types
1465 //----------------------------------------------------------------------------
1466
1467 QualType ASTNodeImporter::VisitType(const Type *T) {
1468   Importer.FromDiag(SourceLocation(), diag::err_unsupported_ast_node)
1469     << T->getTypeClassName();
1470   return QualType();
1471 }
1472
1473 QualType ASTNodeImporter::VisitBuiltinType(const BuiltinType *T) {
1474   switch (T->getKind()) {
1475 #define SHARED_SINGLETON_TYPE(Expansion)
1476 #define BUILTIN_TYPE(Id, SingletonId) \
1477   case BuiltinType::Id: return Importer.getToContext().SingletonId;
1478 #include "clang/AST/BuiltinTypes.def"
1479
1480   // FIXME: for Char16, Char32, and NullPtr, make sure that the "to"
1481   // context supports C++.
1482
1483   // FIXME: for ObjCId, ObjCClass, and ObjCSel, make sure that the "to"
1484   // context supports ObjC.
1485
1486   case BuiltinType::Char_U:
1487     // The context we're importing from has an unsigned 'char'. If we're 
1488     // importing into a context with a signed 'char', translate to 
1489     // 'unsigned char' instead.
1490     if (Importer.getToContext().getLangOpts().CharIsSigned)
1491       return Importer.getToContext().UnsignedCharTy;
1492     
1493     return Importer.getToContext().CharTy;
1494
1495   case BuiltinType::Char_S:
1496     // The context we're importing from has an unsigned 'char'. If we're 
1497     // importing into a context with a signed 'char', translate to 
1498     // 'unsigned char' instead.
1499     if (!Importer.getToContext().getLangOpts().CharIsSigned)
1500       return Importer.getToContext().SignedCharTy;
1501     
1502     return Importer.getToContext().CharTy;
1503
1504   case BuiltinType::WChar_S:
1505   case BuiltinType::WChar_U:
1506     // FIXME: If not in C++, shall we translate to the C equivalent of
1507     // wchar_t?
1508     return Importer.getToContext().WCharTy;
1509   }
1510
1511   llvm_unreachable("Invalid BuiltinType Kind!");
1512 }
1513
1514 QualType ASTNodeImporter::VisitComplexType(const ComplexType *T) {
1515   QualType ToElementType = Importer.Import(T->getElementType());
1516   if (ToElementType.isNull())
1517     return QualType();
1518   
1519   return Importer.getToContext().getComplexType(ToElementType);
1520 }
1521
1522 QualType ASTNodeImporter::VisitPointerType(const PointerType *T) {
1523   QualType ToPointeeType = Importer.Import(T->getPointeeType());
1524   if (ToPointeeType.isNull())
1525     return QualType();
1526   
1527   return Importer.getToContext().getPointerType(ToPointeeType);
1528 }
1529
1530 QualType ASTNodeImporter::VisitBlockPointerType(const BlockPointerType *T) {
1531   // FIXME: Check for blocks support in "to" context.
1532   QualType ToPointeeType = Importer.Import(T->getPointeeType());
1533   if (ToPointeeType.isNull())
1534     return QualType();
1535   
1536   return Importer.getToContext().getBlockPointerType(ToPointeeType);
1537 }
1538
1539 QualType
1540 ASTNodeImporter::VisitLValueReferenceType(const LValueReferenceType *T) {
1541   // FIXME: Check for C++ support in "to" context.
1542   QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1543   if (ToPointeeType.isNull())
1544     return QualType();
1545   
1546   return Importer.getToContext().getLValueReferenceType(ToPointeeType);
1547 }
1548
1549 QualType
1550 ASTNodeImporter::VisitRValueReferenceType(const RValueReferenceType *T) {
1551   // FIXME: Check for C++0x support in "to" context.
1552   QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1553   if (ToPointeeType.isNull())
1554     return QualType();
1555   
1556   return Importer.getToContext().getRValueReferenceType(ToPointeeType);  
1557 }
1558
1559 QualType ASTNodeImporter::VisitMemberPointerType(const MemberPointerType *T) {
1560   // FIXME: Check for C++ support in "to" context.
1561   QualType ToPointeeType = Importer.Import(T->getPointeeType());
1562   if (ToPointeeType.isNull())
1563     return QualType();
1564   
1565   QualType ClassType = Importer.Import(QualType(T->getClass(), 0));
1566   return Importer.getToContext().getMemberPointerType(ToPointeeType, 
1567                                                       ClassType.getTypePtr());
1568 }
1569
1570 QualType ASTNodeImporter::VisitConstantArrayType(const ConstantArrayType *T) {
1571   QualType ToElementType = Importer.Import(T->getElementType());
1572   if (ToElementType.isNull())
1573     return QualType();
1574   
1575   return Importer.getToContext().getConstantArrayType(ToElementType, 
1576                                                       T->getSize(),
1577                                                       T->getSizeModifier(),
1578                                                T->getIndexTypeCVRQualifiers());
1579 }
1580
1581 QualType
1582 ASTNodeImporter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
1583   QualType ToElementType = Importer.Import(T->getElementType());
1584   if (ToElementType.isNull())
1585     return QualType();
1586   
1587   return Importer.getToContext().getIncompleteArrayType(ToElementType, 
1588                                                         T->getSizeModifier(),
1589                                                 T->getIndexTypeCVRQualifiers());
1590 }
1591
1592 QualType ASTNodeImporter::VisitVariableArrayType(const VariableArrayType *T) {
1593   QualType ToElementType = Importer.Import(T->getElementType());
1594   if (ToElementType.isNull())
1595     return QualType();
1596
1597   Expr *Size = Importer.Import(T->getSizeExpr());
1598   if (!Size)
1599     return QualType();
1600   
1601   SourceRange Brackets = Importer.Import(T->getBracketsRange());
1602   return Importer.getToContext().getVariableArrayType(ToElementType, Size,
1603                                                       T->getSizeModifier(),
1604                                                 T->getIndexTypeCVRQualifiers(),
1605                                                       Brackets);
1606 }
1607
1608 QualType ASTNodeImporter::VisitVectorType(const VectorType *T) {
1609   QualType ToElementType = Importer.Import(T->getElementType());
1610   if (ToElementType.isNull())
1611     return QualType();
1612   
1613   return Importer.getToContext().getVectorType(ToElementType, 
1614                                                T->getNumElements(),
1615                                                T->getVectorKind());
1616 }
1617
1618 QualType ASTNodeImporter::VisitExtVectorType(const ExtVectorType *T) {
1619   QualType ToElementType = Importer.Import(T->getElementType());
1620   if (ToElementType.isNull())
1621     return QualType();
1622   
1623   return Importer.getToContext().getExtVectorType(ToElementType, 
1624                                                   T->getNumElements());
1625 }
1626
1627 QualType
1628 ASTNodeImporter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
1629   // FIXME: What happens if we're importing a function without a prototype 
1630   // into C++? Should we make it variadic?
1631   QualType ToResultType = Importer.Import(T->getReturnType());
1632   if (ToResultType.isNull())
1633     return QualType();
1634
1635   return Importer.getToContext().getFunctionNoProtoType(ToResultType,
1636                                                         T->getExtInfo());
1637 }
1638
1639 QualType ASTNodeImporter::VisitFunctionProtoType(const FunctionProtoType *T) {
1640   QualType ToResultType = Importer.Import(T->getReturnType());
1641   if (ToResultType.isNull())
1642     return QualType();
1643   
1644   // Import argument types
1645   SmallVector<QualType, 4> ArgTypes;
1646   for (const auto &A : T->param_types()) {
1647     QualType ArgType = Importer.Import(A);
1648     if (ArgType.isNull())
1649       return QualType();
1650     ArgTypes.push_back(ArgType);
1651   }
1652   
1653   // Import exception types
1654   SmallVector<QualType, 4> ExceptionTypes;
1655   for (const auto &E : T->exceptions()) {
1656     QualType ExceptionType = Importer.Import(E);
1657     if (ExceptionType.isNull())
1658       return QualType();
1659     ExceptionTypes.push_back(ExceptionType);
1660   }
1661
1662   FunctionProtoType::ExtProtoInfo FromEPI = T->getExtProtoInfo();
1663   FunctionProtoType::ExtProtoInfo ToEPI;
1664
1665   ToEPI.ExtInfo = FromEPI.ExtInfo;
1666   ToEPI.Variadic = FromEPI.Variadic;
1667   ToEPI.HasTrailingReturn = FromEPI.HasTrailingReturn;
1668   ToEPI.TypeQuals = FromEPI.TypeQuals;
1669   ToEPI.RefQualifier = FromEPI.RefQualifier;
1670   ToEPI.ExceptionSpec.Type = FromEPI.ExceptionSpec.Type;
1671   ToEPI.ExceptionSpec.Exceptions = ExceptionTypes;
1672   ToEPI.ExceptionSpec.NoexceptExpr =
1673       Importer.Import(FromEPI.ExceptionSpec.NoexceptExpr);
1674   ToEPI.ExceptionSpec.SourceDecl = cast_or_null<FunctionDecl>(
1675       Importer.Import(FromEPI.ExceptionSpec.SourceDecl));
1676   ToEPI.ExceptionSpec.SourceTemplate = cast_or_null<FunctionDecl>(
1677       Importer.Import(FromEPI.ExceptionSpec.SourceTemplate));
1678
1679   return Importer.getToContext().getFunctionType(ToResultType, ArgTypes, ToEPI);
1680 }
1681
1682 QualType ASTNodeImporter::VisitParenType(const ParenType *T) {
1683   QualType ToInnerType = Importer.Import(T->getInnerType());
1684   if (ToInnerType.isNull())
1685     return QualType();
1686     
1687   return Importer.getToContext().getParenType(ToInnerType);
1688 }
1689
1690 QualType ASTNodeImporter::VisitTypedefType(const TypedefType *T) {
1691   TypedefNameDecl *ToDecl
1692              = dyn_cast_or_null<TypedefNameDecl>(Importer.Import(T->getDecl()));
1693   if (!ToDecl)
1694     return QualType();
1695   
1696   return Importer.getToContext().getTypeDeclType(ToDecl);
1697 }
1698
1699 QualType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) {
1700   Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1701   if (!ToExpr)
1702     return QualType();
1703   
1704   return Importer.getToContext().getTypeOfExprType(ToExpr);
1705 }
1706
1707 QualType ASTNodeImporter::VisitTypeOfType(const TypeOfType *T) {
1708   QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType());
1709   if (ToUnderlyingType.isNull())
1710     return QualType();
1711   
1712   return Importer.getToContext().getTypeOfType(ToUnderlyingType);
1713 }
1714
1715 QualType ASTNodeImporter::VisitDecltypeType(const DecltypeType *T) {
1716   // FIXME: Make sure that the "to" context supports C++0x!
1717   Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1718   if (!ToExpr)
1719     return QualType();
1720   
1721   QualType UnderlyingType = Importer.Import(T->getUnderlyingType());
1722   if (UnderlyingType.isNull())
1723     return QualType();
1724
1725   return Importer.getToContext().getDecltypeType(ToExpr, UnderlyingType);
1726 }
1727
1728 QualType ASTNodeImporter::VisitUnaryTransformType(const UnaryTransformType *T) {
1729   QualType ToBaseType = Importer.Import(T->getBaseType());
1730   QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType());
1731   if (ToBaseType.isNull() || ToUnderlyingType.isNull())
1732     return QualType();
1733
1734   return Importer.getToContext().getUnaryTransformType(ToBaseType,
1735                                                        ToUnderlyingType,
1736                                                        T->getUTTKind());
1737 }
1738
1739 QualType ASTNodeImporter::VisitAutoType(const AutoType *T) {
1740   // FIXME: Make sure that the "to" context supports C++11!
1741   QualType FromDeduced = T->getDeducedType();
1742   QualType ToDeduced;
1743   if (!FromDeduced.isNull()) {
1744     ToDeduced = Importer.Import(FromDeduced);
1745     if (ToDeduced.isNull())
1746       return QualType();
1747   }
1748   
1749   return Importer.getToContext().getAutoType(ToDeduced, T->isDecltypeAuto(), 
1750                                              /*IsDependent*/false);
1751 }
1752
1753 QualType ASTNodeImporter::VisitRecordType(const RecordType *T) {
1754   RecordDecl *ToDecl
1755     = dyn_cast_or_null<RecordDecl>(Importer.Import(T->getDecl()));
1756   if (!ToDecl)
1757     return QualType();
1758
1759   return Importer.getToContext().getTagDeclType(ToDecl);
1760 }
1761
1762 QualType ASTNodeImporter::VisitEnumType(const EnumType *T) {
1763   EnumDecl *ToDecl
1764     = dyn_cast_or_null<EnumDecl>(Importer.Import(T->getDecl()));
1765   if (!ToDecl)
1766     return QualType();
1767
1768   return Importer.getToContext().getTagDeclType(ToDecl);
1769 }
1770
1771 QualType ASTNodeImporter::VisitAttributedType(const AttributedType *T) {
1772   QualType FromModifiedType = T->getModifiedType();
1773   QualType FromEquivalentType = T->getEquivalentType();
1774   QualType ToModifiedType;
1775   QualType ToEquivalentType;
1776
1777   if (!FromModifiedType.isNull()) {
1778     ToModifiedType = Importer.Import(FromModifiedType);
1779     if (ToModifiedType.isNull())
1780       return QualType();
1781   }
1782   if (!FromEquivalentType.isNull()) {
1783     ToEquivalentType = Importer.Import(FromEquivalentType);
1784     if (ToEquivalentType.isNull())
1785       return QualType();
1786   }
1787
1788   return Importer.getToContext().getAttributedType(T->getAttrKind(),
1789     ToModifiedType, ToEquivalentType);
1790 }
1791
1792 QualType ASTNodeImporter::VisitTemplateSpecializationType(
1793                                        const TemplateSpecializationType *T) {
1794   TemplateName ToTemplate = Importer.Import(T->getTemplateName());
1795   if (ToTemplate.isNull())
1796     return QualType();
1797   
1798   SmallVector<TemplateArgument, 2> ToTemplateArgs;
1799   if (ImportTemplateArguments(T->getArgs(), T->getNumArgs(), ToTemplateArgs))
1800     return QualType();
1801   
1802   QualType ToCanonType;
1803   if (!QualType(T, 0).isCanonical()) {
1804     QualType FromCanonType 
1805       = Importer.getFromContext().getCanonicalType(QualType(T, 0));
1806     ToCanonType =Importer.Import(FromCanonType);
1807     if (ToCanonType.isNull())
1808       return QualType();
1809   }
1810   return Importer.getToContext().getTemplateSpecializationType(ToTemplate, 
1811                                                          ToTemplateArgs.data(), 
1812                                                          ToTemplateArgs.size(),
1813                                                                ToCanonType);
1814 }
1815
1816 QualType ASTNodeImporter::VisitElaboratedType(const ElaboratedType *T) {
1817   NestedNameSpecifier *ToQualifier = nullptr;
1818   // Note: the qualifier in an ElaboratedType is optional.
1819   if (T->getQualifier()) {
1820     ToQualifier = Importer.Import(T->getQualifier());
1821     if (!ToQualifier)
1822       return QualType();
1823   }
1824
1825   QualType ToNamedType = Importer.Import(T->getNamedType());
1826   if (ToNamedType.isNull())
1827     return QualType();
1828
1829   return Importer.getToContext().getElaboratedType(T->getKeyword(),
1830                                                    ToQualifier, ToNamedType);
1831 }
1832
1833 QualType ASTNodeImporter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
1834   ObjCInterfaceDecl *Class
1835     = dyn_cast_or_null<ObjCInterfaceDecl>(Importer.Import(T->getDecl()));
1836   if (!Class)
1837     return QualType();
1838
1839   return Importer.getToContext().getObjCInterfaceType(Class);
1840 }
1841
1842 QualType ASTNodeImporter::VisitObjCObjectType(const ObjCObjectType *T) {
1843   QualType ToBaseType = Importer.Import(T->getBaseType());
1844   if (ToBaseType.isNull())
1845     return QualType();
1846
1847   SmallVector<QualType, 4> TypeArgs;
1848   for (auto TypeArg : T->getTypeArgsAsWritten()) {
1849     QualType ImportedTypeArg = Importer.Import(TypeArg);
1850     if (ImportedTypeArg.isNull())
1851       return QualType();
1852
1853     TypeArgs.push_back(ImportedTypeArg);
1854   }
1855
1856
1857   SmallVector<ObjCProtocolDecl *, 4> Protocols;
1858   for (auto *P : T->quals()) {
1859     ObjCProtocolDecl *Protocol
1860       = dyn_cast_or_null<ObjCProtocolDecl>(Importer.Import(P));
1861     if (!Protocol)
1862       return QualType();
1863     Protocols.push_back(Protocol);
1864   }
1865
1866   return Importer.getToContext().getObjCObjectType(ToBaseType, TypeArgs,
1867                                                    Protocols);
1868 }
1869
1870 QualType
1871 ASTNodeImporter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
1872   QualType ToPointeeType = Importer.Import(T->getPointeeType());
1873   if (ToPointeeType.isNull())
1874     return QualType();
1875
1876   return Importer.getToContext().getObjCObjectPointerType(ToPointeeType);
1877 }
1878
1879 //----------------------------------------------------------------------------
1880 // Import Declarations
1881 //----------------------------------------------------------------------------
1882 bool ASTNodeImporter::ImportDeclParts(NamedDecl *D, DeclContext *&DC, 
1883                                       DeclContext *&LexicalDC, 
1884                                       DeclarationName &Name, 
1885                                       NamedDecl *&ToD,
1886                                       SourceLocation &Loc) {
1887   // Import the context of this declaration.
1888   DC = Importer.ImportContext(D->getDeclContext());
1889   if (!DC)
1890     return true;
1891   
1892   LexicalDC = DC;
1893   if (D->getDeclContext() != D->getLexicalDeclContext()) {
1894     LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
1895     if (!LexicalDC)
1896       return true;
1897   }
1898   
1899   // Import the name of this declaration.
1900   Name = Importer.Import(D->getDeclName());
1901   if (D->getDeclName() && !Name)
1902     return true;
1903   
1904   // Import the location of this declaration.
1905   Loc = Importer.Import(D->getLocation());
1906   ToD = cast_or_null<NamedDecl>(Importer.GetAlreadyImportedOrNull(D));
1907   return false;
1908 }
1909
1910 void ASTNodeImporter::ImportDefinitionIfNeeded(Decl *FromD, Decl *ToD) {
1911   if (!FromD)
1912     return;
1913   
1914   if (!ToD) {
1915     ToD = Importer.Import(FromD);
1916     if (!ToD)
1917       return;
1918   }
1919   
1920   if (RecordDecl *FromRecord = dyn_cast<RecordDecl>(FromD)) {
1921     if (RecordDecl *ToRecord = cast_or_null<RecordDecl>(ToD)) {
1922       if (FromRecord->getDefinition() && FromRecord->isCompleteDefinition() && !ToRecord->getDefinition()) {
1923         ImportDefinition(FromRecord, ToRecord);
1924       }
1925     }
1926     return;
1927   }
1928
1929   if (EnumDecl *FromEnum = dyn_cast<EnumDecl>(FromD)) {
1930     if (EnumDecl *ToEnum = cast_or_null<EnumDecl>(ToD)) {
1931       if (FromEnum->getDefinition() && !ToEnum->getDefinition()) {
1932         ImportDefinition(FromEnum, ToEnum);
1933       }
1934     }
1935     return;
1936   }
1937 }
1938
1939 void
1940 ASTNodeImporter::ImportDeclarationNameLoc(const DeclarationNameInfo &From,
1941                                           DeclarationNameInfo& To) {
1942   // NOTE: To.Name and To.Loc are already imported.
1943   // We only have to import To.LocInfo.
1944   switch (To.getName().getNameKind()) {
1945   case DeclarationName::Identifier:
1946   case DeclarationName::ObjCZeroArgSelector:
1947   case DeclarationName::ObjCOneArgSelector:
1948   case DeclarationName::ObjCMultiArgSelector:
1949   case DeclarationName::CXXUsingDirective:
1950     return;
1951
1952   case DeclarationName::CXXOperatorName: {
1953     SourceRange Range = From.getCXXOperatorNameRange();
1954     To.setCXXOperatorNameRange(Importer.Import(Range));
1955     return;
1956   }
1957   case DeclarationName::CXXLiteralOperatorName: {
1958     SourceLocation Loc = From.getCXXLiteralOperatorNameLoc();
1959     To.setCXXLiteralOperatorNameLoc(Importer.Import(Loc));
1960     return;
1961   }
1962   case DeclarationName::CXXConstructorName:
1963   case DeclarationName::CXXDestructorName:
1964   case DeclarationName::CXXConversionFunctionName: {
1965     TypeSourceInfo *FromTInfo = From.getNamedTypeInfo();
1966     To.setNamedTypeInfo(Importer.Import(FromTInfo));
1967     return;
1968   }
1969   }
1970   llvm_unreachable("Unknown name kind.");
1971 }
1972
1973 void ASTNodeImporter::ImportDeclContext(DeclContext *FromDC, bool ForceImport) {  
1974   if (Importer.isMinimalImport() && !ForceImport) {
1975     Importer.ImportContext(FromDC);
1976     return;
1977   }
1978   
1979   for (auto *From : FromDC->decls())
1980     Importer.Import(From);
1981 }
1982
1983 bool ASTNodeImporter::ImportDefinition(RecordDecl *From, RecordDecl *To, 
1984                                        ImportDefinitionKind Kind) {
1985   if (To->getDefinition() || To->isBeingDefined()) {
1986     if (Kind == IDK_Everything)
1987       ImportDeclContext(From, /*ForceImport=*/true);
1988     
1989     return false;
1990   }
1991   
1992   To->startDefinition();
1993   
1994   // Add base classes.
1995   if (CXXRecordDecl *ToCXX = dyn_cast<CXXRecordDecl>(To)) {
1996     CXXRecordDecl *FromCXX = cast<CXXRecordDecl>(From);
1997
1998     struct CXXRecordDecl::DefinitionData &ToData = ToCXX->data();
1999     struct CXXRecordDecl::DefinitionData &FromData = FromCXX->data();
2000     ToData.UserDeclaredConstructor = FromData.UserDeclaredConstructor;
2001     ToData.UserDeclaredSpecialMembers = FromData.UserDeclaredSpecialMembers;
2002     ToData.Aggregate = FromData.Aggregate;
2003     ToData.PlainOldData = FromData.PlainOldData;
2004     ToData.Empty = FromData.Empty;
2005     ToData.Polymorphic = FromData.Polymorphic;
2006     ToData.Abstract = FromData.Abstract;
2007     ToData.IsStandardLayout = FromData.IsStandardLayout;
2008     ToData.HasNoNonEmptyBases = FromData.HasNoNonEmptyBases;
2009     ToData.HasPrivateFields = FromData.HasPrivateFields;
2010     ToData.HasProtectedFields = FromData.HasProtectedFields;
2011     ToData.HasPublicFields = FromData.HasPublicFields;
2012     ToData.HasMutableFields = FromData.HasMutableFields;
2013     ToData.HasVariantMembers = FromData.HasVariantMembers;
2014     ToData.HasOnlyCMembers = FromData.HasOnlyCMembers;
2015     ToData.HasInClassInitializer = FromData.HasInClassInitializer;
2016     ToData.HasUninitializedReferenceMember
2017       = FromData.HasUninitializedReferenceMember;
2018     ToData.NeedOverloadResolutionForMoveConstructor
2019       = FromData.NeedOverloadResolutionForMoveConstructor;
2020     ToData.NeedOverloadResolutionForMoveAssignment
2021       = FromData.NeedOverloadResolutionForMoveAssignment;
2022     ToData.NeedOverloadResolutionForDestructor
2023       = FromData.NeedOverloadResolutionForDestructor;
2024     ToData.DefaultedMoveConstructorIsDeleted
2025       = FromData.DefaultedMoveConstructorIsDeleted;
2026     ToData.DefaultedMoveAssignmentIsDeleted
2027       = FromData.DefaultedMoveAssignmentIsDeleted;
2028     ToData.DefaultedDestructorIsDeleted = FromData.DefaultedDestructorIsDeleted;
2029     ToData.HasTrivialSpecialMembers = FromData.HasTrivialSpecialMembers;
2030     ToData.HasIrrelevantDestructor = FromData.HasIrrelevantDestructor;
2031     ToData.HasConstexprNonCopyMoveConstructor
2032       = FromData.HasConstexprNonCopyMoveConstructor;
2033     ToData.DefaultedDefaultConstructorIsConstexpr
2034       = FromData.DefaultedDefaultConstructorIsConstexpr;
2035     ToData.HasConstexprDefaultConstructor
2036       = FromData.HasConstexprDefaultConstructor;
2037     ToData.HasNonLiteralTypeFieldsOrBases
2038       = FromData.HasNonLiteralTypeFieldsOrBases;
2039     // ComputedVisibleConversions not imported.
2040     ToData.UserProvidedDefaultConstructor
2041       = FromData.UserProvidedDefaultConstructor;
2042     ToData.DeclaredSpecialMembers = FromData.DeclaredSpecialMembers;
2043     ToData.ImplicitCopyConstructorHasConstParam
2044       = FromData.ImplicitCopyConstructorHasConstParam;
2045     ToData.ImplicitCopyAssignmentHasConstParam
2046       = FromData.ImplicitCopyAssignmentHasConstParam;
2047     ToData.HasDeclaredCopyConstructorWithConstParam
2048       = FromData.HasDeclaredCopyConstructorWithConstParam;
2049     ToData.HasDeclaredCopyAssignmentWithConstParam
2050       = FromData.HasDeclaredCopyAssignmentWithConstParam;
2051     ToData.IsLambda = FromData.IsLambda;
2052
2053     SmallVector<CXXBaseSpecifier *, 4> Bases;
2054     for (const auto &Base1 : FromCXX->bases()) {
2055       QualType T = Importer.Import(Base1.getType());
2056       if (T.isNull())
2057         return true;
2058
2059       SourceLocation EllipsisLoc;
2060       if (Base1.isPackExpansion())
2061         EllipsisLoc = Importer.Import(Base1.getEllipsisLoc());
2062
2063       // Ensure that we have a definition for the base.
2064       ImportDefinitionIfNeeded(Base1.getType()->getAsCXXRecordDecl());
2065         
2066       Bases.push_back(
2067                     new (Importer.getToContext()) 
2068                       CXXBaseSpecifier(Importer.Import(Base1.getSourceRange()),
2069                                        Base1.isVirtual(),
2070                                        Base1.isBaseOfClass(),
2071                                        Base1.getAccessSpecifierAsWritten(),
2072                                    Importer.Import(Base1.getTypeSourceInfo()),
2073                                        EllipsisLoc));
2074     }
2075     if (!Bases.empty())
2076       ToCXX->setBases(Bases.data(), Bases.size());
2077   }
2078   
2079   if (shouldForceImportDeclContext(Kind))
2080     ImportDeclContext(From, /*ForceImport=*/true);
2081   
2082   To->completeDefinition();
2083   return false;
2084 }
2085
2086 bool ASTNodeImporter::ImportDefinition(VarDecl *From, VarDecl *To,
2087                                        ImportDefinitionKind Kind) {
2088   if (To->getAnyInitializer())
2089     return false;
2090
2091   // FIXME: Can we really import any initializer? Alternatively, we could force
2092   // ourselves to import every declaration of a variable and then only use
2093   // getInit() here.
2094   To->setInit(Importer.Import(const_cast<Expr *>(From->getAnyInitializer())));
2095
2096   // FIXME: Other bits to merge?
2097
2098   return false;
2099 }
2100
2101 bool ASTNodeImporter::ImportDefinition(EnumDecl *From, EnumDecl *To, 
2102                                        ImportDefinitionKind Kind) {
2103   if (To->getDefinition() || To->isBeingDefined()) {
2104     if (Kind == IDK_Everything)
2105       ImportDeclContext(From, /*ForceImport=*/true);
2106     return false;
2107   }
2108   
2109   To->startDefinition();
2110
2111   QualType T = Importer.Import(Importer.getFromContext().getTypeDeclType(From));
2112   if (T.isNull())
2113     return true;
2114   
2115   QualType ToPromotionType = Importer.Import(From->getPromotionType());
2116   if (ToPromotionType.isNull())
2117     return true;
2118
2119   if (shouldForceImportDeclContext(Kind))
2120     ImportDeclContext(From, /*ForceImport=*/true);
2121   
2122   // FIXME: we might need to merge the number of positive or negative bits
2123   // if the enumerator lists don't match.
2124   To->completeDefinition(T, ToPromotionType,
2125                          From->getNumPositiveBits(),
2126                          From->getNumNegativeBits());
2127   return false;
2128 }
2129
2130 TemplateParameterList *ASTNodeImporter::ImportTemplateParameterList(
2131                                                 TemplateParameterList *Params) {
2132   SmallVector<NamedDecl *, 4> ToParams;
2133   ToParams.reserve(Params->size());
2134   for (TemplateParameterList::iterator P = Params->begin(), 
2135                                     PEnd = Params->end();
2136        P != PEnd; ++P) {
2137     Decl *To = Importer.Import(*P);
2138     if (!To)
2139       return nullptr;
2140
2141     ToParams.push_back(cast<NamedDecl>(To));
2142   }
2143   
2144   return TemplateParameterList::Create(Importer.getToContext(),
2145                                        Importer.Import(Params->getTemplateLoc()),
2146                                        Importer.Import(Params->getLAngleLoc()),
2147                                        ToParams.data(), ToParams.size(),
2148                                        Importer.Import(Params->getRAngleLoc()));
2149 }
2150
2151 TemplateArgument 
2152 ASTNodeImporter::ImportTemplateArgument(const TemplateArgument &From) {
2153   switch (From.getKind()) {
2154   case TemplateArgument::Null:
2155     return TemplateArgument();
2156      
2157   case TemplateArgument::Type: {
2158     QualType ToType = Importer.Import(From.getAsType());
2159     if (ToType.isNull())
2160       return TemplateArgument();
2161     return TemplateArgument(ToType);
2162   }
2163       
2164   case TemplateArgument::Integral: {
2165     QualType ToType = Importer.Import(From.getIntegralType());
2166     if (ToType.isNull())
2167       return TemplateArgument();
2168     return TemplateArgument(From, ToType);
2169   }
2170
2171   case TemplateArgument::Declaration: {
2172     ValueDecl *To = cast_or_null<ValueDecl>(Importer.Import(From.getAsDecl()));
2173     QualType ToType = Importer.Import(From.getParamTypeForDecl());
2174     if (!To || ToType.isNull())
2175       return TemplateArgument();
2176     return TemplateArgument(To, ToType);
2177   }
2178
2179   case TemplateArgument::NullPtr: {
2180     QualType ToType = Importer.Import(From.getNullPtrType());
2181     if (ToType.isNull())
2182       return TemplateArgument();
2183     return TemplateArgument(ToType, /*isNullPtr*/true);
2184   }
2185
2186   case TemplateArgument::Template: {
2187     TemplateName ToTemplate = Importer.Import(From.getAsTemplate());
2188     if (ToTemplate.isNull())
2189       return TemplateArgument();
2190     
2191     return TemplateArgument(ToTemplate);
2192   }
2193
2194   case TemplateArgument::TemplateExpansion: {
2195     TemplateName ToTemplate 
2196       = Importer.Import(From.getAsTemplateOrTemplatePattern());
2197     if (ToTemplate.isNull())
2198       return TemplateArgument();
2199     
2200     return TemplateArgument(ToTemplate, From.getNumTemplateExpansions());
2201   }
2202
2203   case TemplateArgument::Expression:
2204     if (Expr *ToExpr = Importer.Import(From.getAsExpr()))
2205       return TemplateArgument(ToExpr);
2206     return TemplateArgument();
2207       
2208   case TemplateArgument::Pack: {
2209     SmallVector<TemplateArgument, 2> ToPack;
2210     ToPack.reserve(From.pack_size());
2211     if (ImportTemplateArguments(From.pack_begin(), From.pack_size(), ToPack))
2212       return TemplateArgument();
2213     
2214     TemplateArgument *ToArgs 
2215       = new (Importer.getToContext()) TemplateArgument[ToPack.size()];
2216     std::copy(ToPack.begin(), ToPack.end(), ToArgs);
2217     return TemplateArgument(ToArgs, ToPack.size());
2218   }
2219   }
2220   
2221   llvm_unreachable("Invalid template argument kind");
2222 }
2223
2224 bool ASTNodeImporter::ImportTemplateArguments(const TemplateArgument *FromArgs,
2225                                               unsigned NumFromArgs,
2226                               SmallVectorImpl<TemplateArgument> &ToArgs) {
2227   for (unsigned I = 0; I != NumFromArgs; ++I) {
2228     TemplateArgument To = ImportTemplateArgument(FromArgs[I]);
2229     if (To.isNull() && !FromArgs[I].isNull())
2230       return true;
2231     
2232     ToArgs.push_back(To);
2233   }
2234   
2235   return false;
2236 }
2237
2238 bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord, 
2239                                         RecordDecl *ToRecord, bool Complain) {
2240   // Eliminate a potential failure point where we attempt to re-import
2241   // something we're trying to import while completing ToRecord.
2242   Decl *ToOrigin = Importer.GetOriginalDecl(ToRecord);
2243   if (ToOrigin) {
2244     RecordDecl *ToOriginRecord = dyn_cast<RecordDecl>(ToOrigin);
2245     if (ToOriginRecord)
2246       ToRecord = ToOriginRecord;
2247   }
2248
2249   StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2250                                    ToRecord->getASTContext(),
2251                                    Importer.getNonEquivalentDecls(),
2252                                    false, Complain);
2253   return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord);
2254 }
2255
2256 bool ASTNodeImporter::IsStructuralMatch(VarDecl *FromVar, VarDecl *ToVar,
2257                                         bool Complain) {
2258   StructuralEquivalenceContext Ctx(
2259       Importer.getFromContext(), Importer.getToContext(),
2260       Importer.getNonEquivalentDecls(), false, Complain);
2261   return Ctx.IsStructurallyEquivalent(FromVar, ToVar);
2262 }
2263
2264 bool ASTNodeImporter::IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToEnum) {
2265   StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2266                                    Importer.getToContext(),
2267                                    Importer.getNonEquivalentDecls());
2268   return Ctx.IsStructurallyEquivalent(FromEnum, ToEnum);
2269 }
2270
2271 bool ASTNodeImporter::IsStructuralMatch(EnumConstantDecl *FromEC,
2272                                         EnumConstantDecl *ToEC)
2273 {
2274   const llvm::APSInt &FromVal = FromEC->getInitVal();
2275   const llvm::APSInt &ToVal = ToEC->getInitVal();
2276
2277   return FromVal.isSigned() == ToVal.isSigned() &&
2278          FromVal.getBitWidth() == ToVal.getBitWidth() &&
2279          FromVal == ToVal;
2280 }
2281
2282 bool ASTNodeImporter::IsStructuralMatch(ClassTemplateDecl *From,
2283                                         ClassTemplateDecl *To) {
2284   StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2285                                    Importer.getToContext(),
2286                                    Importer.getNonEquivalentDecls());
2287   return Ctx.IsStructurallyEquivalent(From, To);  
2288 }
2289
2290 bool ASTNodeImporter::IsStructuralMatch(VarTemplateDecl *From,
2291                                         VarTemplateDecl *To) {
2292   StructuralEquivalenceContext Ctx(Importer.getFromContext(),
2293                                    Importer.getToContext(),
2294                                    Importer.getNonEquivalentDecls());
2295   return Ctx.IsStructurallyEquivalent(From, To);
2296 }
2297
2298 Decl *ASTNodeImporter::VisitDecl(Decl *D) {
2299   Importer.FromDiag(D->getLocation(), diag::err_unsupported_ast_node)
2300     << D->getDeclKindName();
2301   return nullptr;
2302 }
2303
2304 Decl *ASTNodeImporter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
2305   TranslationUnitDecl *ToD = 
2306     Importer.getToContext().getTranslationUnitDecl();
2307     
2308   Importer.Imported(D, ToD);
2309     
2310   return ToD;
2311 }
2312
2313 Decl *ASTNodeImporter::VisitNamespaceDecl(NamespaceDecl *D) {
2314   // Import the major distinguishing characteristics of this namespace.
2315   DeclContext *DC, *LexicalDC;
2316   DeclarationName Name;
2317   SourceLocation Loc;
2318   NamedDecl *ToD;
2319   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2320     return nullptr;
2321   if (ToD)
2322     return ToD;
2323
2324   NamespaceDecl *MergeWithNamespace = nullptr;
2325   if (!Name) {
2326     // This is an anonymous namespace. Adopt an existing anonymous
2327     // namespace if we can.
2328     // FIXME: Not testable.
2329     if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2330       MergeWithNamespace = TU->getAnonymousNamespace();
2331     else
2332       MergeWithNamespace = cast<NamespaceDecl>(DC)->getAnonymousNamespace();
2333   } else {
2334     SmallVector<NamedDecl *, 4> ConflictingDecls;
2335     SmallVector<NamedDecl *, 2> FoundDecls;
2336     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
2337     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2338       if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Namespace))
2339         continue;
2340       
2341       if (NamespaceDecl *FoundNS = dyn_cast<NamespaceDecl>(FoundDecls[I])) {
2342         MergeWithNamespace = FoundNS;
2343         ConflictingDecls.clear();
2344         break;
2345       }
2346       
2347       ConflictingDecls.push_back(FoundDecls[I]);
2348     }
2349     
2350     if (!ConflictingDecls.empty()) {
2351       Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Namespace,
2352                                          ConflictingDecls.data(), 
2353                                          ConflictingDecls.size());
2354     }
2355   }
2356   
2357   // Create the "to" namespace, if needed.
2358   NamespaceDecl *ToNamespace = MergeWithNamespace;
2359   if (!ToNamespace) {
2360     ToNamespace = NamespaceDecl::Create(Importer.getToContext(), DC,
2361                                         D->isInline(),
2362                                         Importer.Import(D->getLocStart()),
2363                                         Loc, Name.getAsIdentifierInfo(),
2364                                         /*PrevDecl=*/nullptr);
2365     ToNamespace->setLexicalDeclContext(LexicalDC);
2366     LexicalDC->addDeclInternal(ToNamespace);
2367     
2368     // If this is an anonymous namespace, register it as the anonymous
2369     // namespace within its context.
2370     if (!Name) {
2371       if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
2372         TU->setAnonymousNamespace(ToNamespace);
2373       else
2374         cast<NamespaceDecl>(DC)->setAnonymousNamespace(ToNamespace);
2375     }
2376   }
2377   Importer.Imported(D, ToNamespace);
2378   
2379   ImportDeclContext(D);
2380   
2381   return ToNamespace;
2382 }
2383
2384 Decl *ASTNodeImporter::VisitTypedefNameDecl(TypedefNameDecl *D, bool IsAlias) {
2385   // Import the major distinguishing characteristics of this typedef.
2386   DeclContext *DC, *LexicalDC;
2387   DeclarationName Name;
2388   SourceLocation Loc;
2389   NamedDecl *ToD;
2390   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2391     return nullptr;
2392   if (ToD)
2393     return ToD;
2394
2395   // If this typedef is not in block scope, determine whether we've
2396   // seen a typedef with the same name (that we can merge with) or any
2397   // other entity by that name (which name lookup could conflict with).
2398   if (!DC->isFunctionOrMethod()) {
2399     SmallVector<NamedDecl *, 4> ConflictingDecls;
2400     unsigned IDNS = Decl::IDNS_Ordinary;
2401     SmallVector<NamedDecl *, 2> FoundDecls;
2402     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
2403     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2404       if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
2405         continue;
2406       if (TypedefNameDecl *FoundTypedef =
2407             dyn_cast<TypedefNameDecl>(FoundDecls[I])) {
2408         if (Importer.IsStructurallyEquivalent(D->getUnderlyingType(),
2409                                             FoundTypedef->getUnderlyingType()))
2410           return Importer.Imported(D, FoundTypedef);
2411       }
2412       
2413       ConflictingDecls.push_back(FoundDecls[I]);
2414     }
2415     
2416     if (!ConflictingDecls.empty()) {
2417       Name = Importer.HandleNameConflict(Name, DC, IDNS,
2418                                          ConflictingDecls.data(), 
2419                                          ConflictingDecls.size());
2420       if (!Name)
2421         return nullptr;
2422     }
2423   }
2424   
2425   // Import the underlying type of this typedef;
2426   QualType T = Importer.Import(D->getUnderlyingType());
2427   if (T.isNull())
2428     return nullptr;
2429
2430   // Create the new typedef node.
2431   TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
2432   SourceLocation StartL = Importer.Import(D->getLocStart());
2433   TypedefNameDecl *ToTypedef;
2434   if (IsAlias)
2435     ToTypedef = TypeAliasDecl::Create(Importer.getToContext(), DC,
2436                                       StartL, Loc,
2437                                       Name.getAsIdentifierInfo(),
2438                                       TInfo);
2439   else
2440     ToTypedef = TypedefDecl::Create(Importer.getToContext(), DC,
2441                                     StartL, Loc,
2442                                     Name.getAsIdentifierInfo(),
2443                                     TInfo);
2444   
2445   ToTypedef->setAccess(D->getAccess());
2446   ToTypedef->setLexicalDeclContext(LexicalDC);
2447   Importer.Imported(D, ToTypedef);
2448   LexicalDC->addDeclInternal(ToTypedef);
2449   
2450   return ToTypedef;
2451 }
2452
2453 Decl *ASTNodeImporter::VisitTypedefDecl(TypedefDecl *D) {
2454   return VisitTypedefNameDecl(D, /*IsAlias=*/false);
2455 }
2456
2457 Decl *ASTNodeImporter::VisitTypeAliasDecl(TypeAliasDecl *D) {
2458   return VisitTypedefNameDecl(D, /*IsAlias=*/true);
2459 }
2460
2461 Decl *ASTNodeImporter::VisitEnumDecl(EnumDecl *D) {
2462   // Import the major distinguishing characteristics of this enum.
2463   DeclContext *DC, *LexicalDC;
2464   DeclarationName Name;
2465   SourceLocation Loc;
2466   NamedDecl *ToD;
2467   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2468     return nullptr;
2469   if (ToD)
2470     return ToD;
2471
2472   // Figure out what enum name we're looking for.
2473   unsigned IDNS = Decl::IDNS_Tag;
2474   DeclarationName SearchName = Name;
2475   if (!SearchName && D->getTypedefNameForAnonDecl()) {
2476     SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName());
2477     IDNS = Decl::IDNS_Ordinary;
2478   } else if (Importer.getToContext().getLangOpts().CPlusPlus)
2479     IDNS |= Decl::IDNS_Ordinary;
2480   
2481   // We may already have an enum of the same name; try to find and match it.
2482   if (!DC->isFunctionOrMethod() && SearchName) {
2483     SmallVector<NamedDecl *, 4> ConflictingDecls;
2484     SmallVector<NamedDecl *, 2> FoundDecls;
2485     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
2486     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2487       if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
2488         continue;
2489       
2490       Decl *Found = FoundDecls[I];
2491       if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
2492         if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
2493           Found = Tag->getDecl();
2494       }
2495       
2496       if (EnumDecl *FoundEnum = dyn_cast<EnumDecl>(Found)) {
2497         if (IsStructuralMatch(D, FoundEnum))
2498           return Importer.Imported(D, FoundEnum);
2499       }
2500       
2501       ConflictingDecls.push_back(FoundDecls[I]);
2502     }
2503     
2504     if (!ConflictingDecls.empty()) {
2505       Name = Importer.HandleNameConflict(Name, DC, IDNS,
2506                                          ConflictingDecls.data(), 
2507                                          ConflictingDecls.size());
2508     }
2509   }
2510   
2511   // Create the enum declaration.
2512   EnumDecl *D2 = EnumDecl::Create(Importer.getToContext(), DC,
2513                                   Importer.Import(D->getLocStart()),
2514                                   Loc, Name.getAsIdentifierInfo(), nullptr,
2515                                   D->isScoped(), D->isScopedUsingClassTag(),
2516                                   D->isFixed());
2517   // Import the qualifier, if any.
2518   D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
2519   D2->setAccess(D->getAccess());
2520   D2->setLexicalDeclContext(LexicalDC);
2521   Importer.Imported(D, D2);
2522   LexicalDC->addDeclInternal(D2);
2523
2524   // Import the integer type.
2525   QualType ToIntegerType = Importer.Import(D->getIntegerType());
2526   if (ToIntegerType.isNull())
2527     return nullptr;
2528   D2->setIntegerType(ToIntegerType);
2529   
2530   // Import the definition
2531   if (D->isCompleteDefinition() && ImportDefinition(D, D2))
2532     return nullptr;
2533
2534   return D2;
2535 }
2536
2537 Decl *ASTNodeImporter::VisitRecordDecl(RecordDecl *D) {
2538   // If this record has a definition in the translation unit we're coming from,
2539   // but this particular declaration is not that definition, import the
2540   // definition and map to that.
2541   TagDecl *Definition = D->getDefinition();
2542   if (Definition && Definition != D) {
2543     Decl *ImportedDef = Importer.Import(Definition);
2544     if (!ImportedDef)
2545       return nullptr;
2546
2547     return Importer.Imported(D, ImportedDef);
2548   }
2549   
2550   // Import the major distinguishing characteristics of this record.
2551   DeclContext *DC, *LexicalDC;
2552   DeclarationName Name;
2553   SourceLocation Loc;
2554   NamedDecl *ToD;
2555   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2556     return nullptr;
2557   if (ToD)
2558     return ToD;
2559
2560   // Figure out what structure name we're looking for.
2561   unsigned IDNS = Decl::IDNS_Tag;
2562   DeclarationName SearchName = Name;
2563   if (!SearchName && D->getTypedefNameForAnonDecl()) {
2564     SearchName = Importer.Import(D->getTypedefNameForAnonDecl()->getDeclName());
2565     IDNS = Decl::IDNS_Ordinary;
2566   } else if (Importer.getToContext().getLangOpts().CPlusPlus)
2567     IDNS |= Decl::IDNS_Ordinary;
2568
2569   // We may already have a record of the same name; try to find and match it.
2570   RecordDecl *AdoptDecl = nullptr;
2571   if (!DC->isFunctionOrMethod()) {
2572     SmallVector<NamedDecl *, 4> ConflictingDecls;
2573     SmallVector<NamedDecl *, 2> FoundDecls;
2574     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
2575     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2576       if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
2577         continue;
2578       
2579       Decl *Found = FoundDecls[I];
2580       if (TypedefNameDecl *Typedef = dyn_cast<TypedefNameDecl>(Found)) {
2581         if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
2582           Found = Tag->getDecl();
2583       }
2584       
2585       if (RecordDecl *FoundRecord = dyn_cast<RecordDecl>(Found)) {
2586         if (D->isAnonymousStructOrUnion() && 
2587             FoundRecord->isAnonymousStructOrUnion()) {
2588           // If both anonymous structs/unions are in a record context, make sure
2589           // they occur in the same location in the context records.
2590           if (Optional<unsigned> Index1
2591               = findAnonymousStructOrUnionIndex(D)) {
2592             if (Optional<unsigned> Index2 =
2593                     findAnonymousStructOrUnionIndex(FoundRecord)) {
2594               if (*Index1 != *Index2)
2595                 continue;
2596             }
2597           }
2598         }
2599
2600         if (RecordDecl *FoundDef = FoundRecord->getDefinition()) {
2601           if ((SearchName && !D->isCompleteDefinition())
2602               || (D->isCompleteDefinition() &&
2603                   D->isAnonymousStructOrUnion()
2604                     == FoundDef->isAnonymousStructOrUnion() &&
2605                   IsStructuralMatch(D, FoundDef))) {
2606             // The record types structurally match, or the "from" translation
2607             // unit only had a forward declaration anyway; call it the same
2608             // function.
2609             // FIXME: For C++, we should also merge methods here.
2610             return Importer.Imported(D, FoundDef);
2611           }
2612         } else if (!D->isCompleteDefinition()) {
2613           // We have a forward declaration of this type, so adopt that forward
2614           // declaration rather than building a new one.
2615             
2616           // If one or both can be completed from external storage then try one
2617           // last time to complete and compare them before doing this.
2618             
2619           if (FoundRecord->hasExternalLexicalStorage() &&
2620               !FoundRecord->isCompleteDefinition())
2621             FoundRecord->getASTContext().getExternalSource()->CompleteType(FoundRecord);
2622           if (D->hasExternalLexicalStorage())
2623             D->getASTContext().getExternalSource()->CompleteType(D);
2624             
2625           if (FoundRecord->isCompleteDefinition() &&
2626               D->isCompleteDefinition() &&
2627               !IsStructuralMatch(D, FoundRecord))
2628             continue;
2629               
2630           AdoptDecl = FoundRecord;
2631           continue;
2632         } else if (!SearchName) {
2633           continue;
2634         }
2635       }
2636       
2637       ConflictingDecls.push_back(FoundDecls[I]);
2638     }
2639     
2640     if (!ConflictingDecls.empty() && SearchName) {
2641       Name = Importer.HandleNameConflict(Name, DC, IDNS,
2642                                          ConflictingDecls.data(), 
2643                                          ConflictingDecls.size());
2644     }
2645   }
2646   
2647   // Create the record declaration.
2648   RecordDecl *D2 = AdoptDecl;
2649   SourceLocation StartLoc = Importer.Import(D->getLocStart());
2650   if (!D2) {
2651     if (isa<CXXRecordDecl>(D)) {
2652       CXXRecordDecl *D2CXX = CXXRecordDecl::Create(Importer.getToContext(), 
2653                                                    D->getTagKind(),
2654                                                    DC, StartLoc, Loc,
2655                                                    Name.getAsIdentifierInfo());
2656       D2 = D2CXX;
2657       D2->setAccess(D->getAccess());
2658     } else {
2659       D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(),
2660                               DC, StartLoc, Loc, Name.getAsIdentifierInfo());
2661     }
2662     
2663     D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
2664     D2->setLexicalDeclContext(LexicalDC);
2665     LexicalDC->addDeclInternal(D2);
2666     if (D->isAnonymousStructOrUnion())
2667       D2->setAnonymousStructOrUnion(true);
2668   }
2669   
2670   Importer.Imported(D, D2);
2671
2672   if (D->isCompleteDefinition() && ImportDefinition(D, D2, IDK_Default))
2673     return nullptr;
2674
2675   return D2;
2676 }
2677
2678 Decl *ASTNodeImporter::VisitEnumConstantDecl(EnumConstantDecl *D) {
2679   // Import the major distinguishing characteristics of this enumerator.
2680   DeclContext *DC, *LexicalDC;
2681   DeclarationName Name;
2682   SourceLocation Loc;
2683   NamedDecl *ToD;
2684   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2685     return nullptr;
2686   if (ToD)
2687     return ToD;
2688
2689   QualType T = Importer.Import(D->getType());
2690   if (T.isNull())
2691     return nullptr;
2692
2693   // Determine whether there are any other declarations with the same name and 
2694   // in the same context.
2695   if (!LexicalDC->isFunctionOrMethod()) {
2696     SmallVector<NamedDecl *, 4> ConflictingDecls;
2697     unsigned IDNS = Decl::IDNS_Ordinary;
2698     SmallVector<NamedDecl *, 2> FoundDecls;
2699     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
2700     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2701       if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
2702         continue;
2703
2704       if (EnumConstantDecl *FoundEnumConstant
2705             = dyn_cast<EnumConstantDecl>(FoundDecls[I])) {
2706         if (IsStructuralMatch(D, FoundEnumConstant))
2707           return Importer.Imported(D, FoundEnumConstant);
2708       }
2709
2710       ConflictingDecls.push_back(FoundDecls[I]);
2711     }
2712     
2713     if (!ConflictingDecls.empty()) {
2714       Name = Importer.HandleNameConflict(Name, DC, IDNS,
2715                                          ConflictingDecls.data(), 
2716                                          ConflictingDecls.size());
2717       if (!Name)
2718         return nullptr;
2719     }
2720   }
2721   
2722   Expr *Init = Importer.Import(D->getInitExpr());
2723   if (D->getInitExpr() && !Init)
2724     return nullptr;
2725
2726   EnumConstantDecl *ToEnumerator
2727     = EnumConstantDecl::Create(Importer.getToContext(), cast<EnumDecl>(DC), Loc, 
2728                                Name.getAsIdentifierInfo(), T, 
2729                                Init, D->getInitVal());
2730   ToEnumerator->setAccess(D->getAccess());
2731   ToEnumerator->setLexicalDeclContext(LexicalDC);
2732   Importer.Imported(D, ToEnumerator);
2733   LexicalDC->addDeclInternal(ToEnumerator);
2734   return ToEnumerator;
2735 }
2736
2737 Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) {
2738   // Import the major distinguishing characteristics of this function.
2739   DeclContext *DC, *LexicalDC;
2740   DeclarationName Name;
2741   SourceLocation Loc;
2742   NamedDecl *ToD;
2743   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2744     return nullptr;
2745   if (ToD)
2746     return ToD;
2747
2748   // Try to find a function in our own ("to") context with the same name, same
2749   // type, and in the same context as the function we're importing.
2750   if (!LexicalDC->isFunctionOrMethod()) {
2751     SmallVector<NamedDecl *, 4> ConflictingDecls;
2752     unsigned IDNS = Decl::IDNS_Ordinary;
2753     SmallVector<NamedDecl *, 2> FoundDecls;
2754     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
2755     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2756       if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
2757         continue;
2758     
2759       if (FunctionDecl *FoundFunction = dyn_cast<FunctionDecl>(FoundDecls[I])) {
2760         if (FoundFunction->hasExternalFormalLinkage() &&
2761             D->hasExternalFormalLinkage()) {
2762           if (Importer.IsStructurallyEquivalent(D->getType(), 
2763                                                 FoundFunction->getType())) {
2764             // FIXME: Actually try to merge the body and other attributes.
2765             return Importer.Imported(D, FoundFunction);
2766           }
2767         
2768           // FIXME: Check for overloading more carefully, e.g., by boosting
2769           // Sema::IsOverload out to the AST library.
2770           
2771           // Function overloading is okay in C++.
2772           if (Importer.getToContext().getLangOpts().CPlusPlus)
2773             continue;
2774           
2775           // Complain about inconsistent function types.
2776           Importer.ToDiag(Loc, diag::err_odr_function_type_inconsistent)
2777             << Name << D->getType() << FoundFunction->getType();
2778           Importer.ToDiag(FoundFunction->getLocation(), 
2779                           diag::note_odr_value_here)
2780             << FoundFunction->getType();
2781         }
2782       }
2783       
2784       ConflictingDecls.push_back(FoundDecls[I]);
2785     }
2786     
2787     if (!ConflictingDecls.empty()) {
2788       Name = Importer.HandleNameConflict(Name, DC, IDNS,
2789                                          ConflictingDecls.data(), 
2790                                          ConflictingDecls.size());
2791       if (!Name)
2792         return nullptr;
2793     }    
2794   }
2795
2796   DeclarationNameInfo NameInfo(Name, Loc);
2797   // Import additional name location/type info.
2798   ImportDeclarationNameLoc(D->getNameInfo(), NameInfo);
2799
2800   QualType FromTy = D->getType();
2801   bool usedDifferentExceptionSpec = false;
2802
2803   if (const FunctionProtoType *
2804         FromFPT = D->getType()->getAs<FunctionProtoType>()) {
2805     FunctionProtoType::ExtProtoInfo FromEPI = FromFPT->getExtProtoInfo();
2806     // FunctionProtoType::ExtProtoInfo's ExceptionSpecDecl can point to the
2807     // FunctionDecl that we are importing the FunctionProtoType for.
2808     // To avoid an infinite recursion when importing, create the FunctionDecl
2809     // with a simplified function type and update it afterwards.
2810     if (FromEPI.ExceptionSpec.SourceDecl ||
2811         FromEPI.ExceptionSpec.SourceTemplate ||
2812         FromEPI.ExceptionSpec.NoexceptExpr) {
2813       FunctionProtoType::ExtProtoInfo DefaultEPI;
2814       FromTy = Importer.getFromContext().getFunctionType(
2815           FromFPT->getReturnType(), FromFPT->getParamTypes(), DefaultEPI);
2816       usedDifferentExceptionSpec = true;
2817     }
2818   }
2819
2820   // Import the type.
2821   QualType T = Importer.Import(FromTy);
2822   if (T.isNull())
2823     return nullptr;
2824
2825   // Import the function parameters.
2826   SmallVector<ParmVarDecl *, 8> Parameters;
2827   for (auto P : D->params()) {
2828     ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(P));
2829     if (!ToP)
2830       return nullptr;
2831
2832     Parameters.push_back(ToP);
2833   }
2834   
2835   // Create the imported function.
2836   TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
2837   FunctionDecl *ToFunction = nullptr;
2838   SourceLocation InnerLocStart = Importer.Import(D->getInnerLocStart());
2839   if (CXXConstructorDecl *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) {
2840     ToFunction = CXXConstructorDecl::Create(Importer.getToContext(),
2841                                             cast<CXXRecordDecl>(DC),
2842                                             InnerLocStart,
2843                                             NameInfo, T, TInfo, 
2844                                             FromConstructor->isExplicit(),
2845                                             D->isInlineSpecified(), 
2846                                             D->isImplicit(),
2847                                             D->isConstexpr());
2848   } else if (isa<CXXDestructorDecl>(D)) {
2849     ToFunction = CXXDestructorDecl::Create(Importer.getToContext(),
2850                                            cast<CXXRecordDecl>(DC),
2851                                            InnerLocStart,
2852                                            NameInfo, T, TInfo,
2853                                            D->isInlineSpecified(),
2854                                            D->isImplicit());
2855   } else if (CXXConversionDecl *FromConversion
2856                                            = dyn_cast<CXXConversionDecl>(D)) {
2857     ToFunction = CXXConversionDecl::Create(Importer.getToContext(), 
2858                                            cast<CXXRecordDecl>(DC),
2859                                            InnerLocStart,
2860                                            NameInfo, T, TInfo,
2861                                            D->isInlineSpecified(),
2862                                            FromConversion->isExplicit(),
2863                                            D->isConstexpr(),
2864                                            Importer.Import(D->getLocEnd()));
2865   } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
2866     ToFunction = CXXMethodDecl::Create(Importer.getToContext(), 
2867                                        cast<CXXRecordDecl>(DC),
2868                                        InnerLocStart,
2869                                        NameInfo, T, TInfo,
2870                                        Method->getStorageClass(),
2871                                        Method->isInlineSpecified(),
2872                                        D->isConstexpr(),
2873                                        Importer.Import(D->getLocEnd()));
2874   } else {
2875     ToFunction = FunctionDecl::Create(Importer.getToContext(), DC,
2876                                       InnerLocStart,
2877                                       NameInfo, T, TInfo, D->getStorageClass(),
2878                                       D->isInlineSpecified(),
2879                                       D->hasWrittenPrototype(),
2880                                       D->isConstexpr());
2881   }
2882
2883   // Import the qualifier, if any.
2884   ToFunction->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
2885   ToFunction->setAccess(D->getAccess());
2886   ToFunction->setLexicalDeclContext(LexicalDC);
2887   ToFunction->setVirtualAsWritten(D->isVirtualAsWritten());
2888   ToFunction->setTrivial(D->isTrivial());
2889   ToFunction->setPure(D->isPure());
2890   Importer.Imported(D, ToFunction);
2891
2892   // Set the parameters.
2893   for (unsigned I = 0, N = Parameters.size(); I != N; ++I) {
2894     Parameters[I]->setOwningFunction(ToFunction);
2895     ToFunction->addDeclInternal(Parameters[I]);
2896   }
2897   ToFunction->setParams(Parameters);
2898
2899   if (usedDifferentExceptionSpec) {
2900     // Update FunctionProtoType::ExtProtoInfo.
2901     QualType T = Importer.Import(D->getType());
2902     if (T.isNull())
2903       return nullptr;
2904     ToFunction->setType(T);
2905   }
2906
2907   // Import the body, if any.
2908   if (Stmt *FromBody = D->getBody()) {
2909     if (Stmt *ToBody = Importer.Import(FromBody)) {
2910       ToFunction->setBody(ToBody);
2911     }
2912   }
2913
2914   // FIXME: Other bits to merge?
2915
2916   // Add this function to the lexical context.
2917   LexicalDC->addDeclInternal(ToFunction);
2918
2919   return ToFunction;
2920 }
2921
2922 Decl *ASTNodeImporter::VisitCXXMethodDecl(CXXMethodDecl *D) {
2923   return VisitFunctionDecl(D);
2924 }
2925
2926 Decl *ASTNodeImporter::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
2927   return VisitCXXMethodDecl(D);
2928 }
2929
2930 Decl *ASTNodeImporter::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
2931   return VisitCXXMethodDecl(D);
2932 }
2933
2934 Decl *ASTNodeImporter::VisitCXXConversionDecl(CXXConversionDecl *D) {
2935   return VisitCXXMethodDecl(D);
2936 }
2937
2938 static unsigned getFieldIndex(Decl *F) {
2939   RecordDecl *Owner = dyn_cast<RecordDecl>(F->getDeclContext());
2940   if (!Owner)
2941     return 0;
2942
2943   unsigned Index = 1;
2944   for (const auto *D : Owner->noload_decls()) {
2945     if (D == F)
2946       return Index;
2947
2948     if (isa<FieldDecl>(*D) || isa<IndirectFieldDecl>(*D))
2949       ++Index;
2950   }
2951
2952   return Index;
2953 }
2954
2955 Decl *ASTNodeImporter::VisitFieldDecl(FieldDecl *D) {
2956   // Import the major distinguishing characteristics of a variable.
2957   DeclContext *DC, *LexicalDC;
2958   DeclarationName Name;
2959   SourceLocation Loc;
2960   NamedDecl *ToD;
2961   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
2962     return nullptr;
2963   if (ToD)
2964     return ToD;
2965
2966   // Determine whether we've already imported this field. 
2967   SmallVector<NamedDecl *, 2> FoundDecls;
2968   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
2969   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
2970     if (FieldDecl *FoundField = dyn_cast<FieldDecl>(FoundDecls[I])) {
2971       // For anonymous fields, match up by index.
2972       if (!Name && getFieldIndex(D) != getFieldIndex(FoundField))
2973         continue;
2974
2975       if (Importer.IsStructurallyEquivalent(D->getType(), 
2976                                             FoundField->getType())) {
2977         Importer.Imported(D, FoundField);
2978         return FoundField;
2979       }
2980       
2981       Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent)
2982         << Name << D->getType() << FoundField->getType();
2983       Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
2984         << FoundField->getType();
2985       return nullptr;
2986     }
2987   }
2988
2989   // Import the type.
2990   QualType T = Importer.Import(D->getType());
2991   if (T.isNull())
2992     return nullptr;
2993
2994   TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
2995   Expr *BitWidth = Importer.Import(D->getBitWidth());
2996   if (!BitWidth && D->getBitWidth())
2997     return nullptr;
2998
2999   FieldDecl *ToField = FieldDecl::Create(Importer.getToContext(), DC,
3000                                          Importer.Import(D->getInnerLocStart()),
3001                                          Loc, Name.getAsIdentifierInfo(),
3002                                          T, TInfo, BitWidth, D->isMutable(),
3003                                          D->getInClassInitStyle());
3004   ToField->setAccess(D->getAccess());
3005   ToField->setLexicalDeclContext(LexicalDC);
3006   if (ToField->hasInClassInitializer())
3007     ToField->setInClassInitializer(D->getInClassInitializer());
3008   ToField->setImplicit(D->isImplicit());
3009   Importer.Imported(D, ToField);
3010   LexicalDC->addDeclInternal(ToField);
3011   return ToField;
3012 }
3013
3014 Decl *ASTNodeImporter::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
3015   // Import the major distinguishing characteristics of a variable.
3016   DeclContext *DC, *LexicalDC;
3017   DeclarationName Name;
3018   SourceLocation Loc;
3019   NamedDecl *ToD;
3020   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3021     return nullptr;
3022   if (ToD)
3023     return ToD;
3024
3025   // Determine whether we've already imported this field. 
3026   SmallVector<NamedDecl *, 2> FoundDecls;
3027   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
3028   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3029     if (IndirectFieldDecl *FoundField 
3030                                 = dyn_cast<IndirectFieldDecl>(FoundDecls[I])) {
3031       // For anonymous indirect fields, match up by index.
3032       if (!Name && getFieldIndex(D) != getFieldIndex(FoundField))
3033         continue;
3034
3035       if (Importer.IsStructurallyEquivalent(D->getType(), 
3036                                             FoundField->getType(),
3037                                             !Name.isEmpty())) {
3038         Importer.Imported(D, FoundField);
3039         return FoundField;
3040       }
3041
3042       // If there are more anonymous fields to check, continue.
3043       if (!Name && I < N-1)
3044         continue;
3045
3046       Importer.ToDiag(Loc, diag::err_odr_field_type_inconsistent)
3047         << Name << D->getType() << FoundField->getType();
3048       Importer.ToDiag(FoundField->getLocation(), diag::note_odr_value_here)
3049         << FoundField->getType();
3050       return nullptr;
3051     }
3052   }
3053
3054   // Import the type.
3055   QualType T = Importer.Import(D->getType());
3056   if (T.isNull())
3057     return nullptr;
3058
3059   NamedDecl **NamedChain =
3060     new (Importer.getToContext())NamedDecl*[D->getChainingSize()];
3061
3062   unsigned i = 0;
3063   for (auto *PI : D->chain()) {
3064     Decl *D = Importer.Import(PI);
3065     if (!D)
3066       return nullptr;
3067     NamedChain[i++] = cast<NamedDecl>(D);
3068   }
3069
3070   IndirectFieldDecl *ToIndirectField = IndirectFieldDecl::Create(
3071       Importer.getToContext(), DC, Loc, Name.getAsIdentifierInfo(), T,
3072       NamedChain, D->getChainingSize());
3073
3074   for (const auto *Attr : D->attrs())
3075     ToIndirectField->addAttr(Attr->clone(Importer.getToContext()));
3076
3077   ToIndirectField->setAccess(D->getAccess());
3078   ToIndirectField->setLexicalDeclContext(LexicalDC);
3079   Importer.Imported(D, ToIndirectField);
3080   LexicalDC->addDeclInternal(ToIndirectField);
3081   return ToIndirectField;
3082 }
3083
3084 Decl *ASTNodeImporter::VisitObjCIvarDecl(ObjCIvarDecl *D) {
3085   // Import the major distinguishing characteristics of an ivar.
3086   DeclContext *DC, *LexicalDC;
3087   DeclarationName Name;
3088   SourceLocation Loc;
3089   NamedDecl *ToD;
3090   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3091     return nullptr;
3092   if (ToD)
3093     return ToD;
3094
3095   // Determine whether we've already imported this ivar 
3096   SmallVector<NamedDecl *, 2> FoundDecls;
3097   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
3098   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3099     if (ObjCIvarDecl *FoundIvar = dyn_cast<ObjCIvarDecl>(FoundDecls[I])) {
3100       if (Importer.IsStructurallyEquivalent(D->getType(), 
3101                                             FoundIvar->getType())) {
3102         Importer.Imported(D, FoundIvar);
3103         return FoundIvar;
3104       }
3105
3106       Importer.ToDiag(Loc, diag::err_odr_ivar_type_inconsistent)
3107         << Name << D->getType() << FoundIvar->getType();
3108       Importer.ToDiag(FoundIvar->getLocation(), diag::note_odr_value_here)
3109         << FoundIvar->getType();
3110       return nullptr;
3111     }
3112   }
3113
3114   // Import the type.
3115   QualType T = Importer.Import(D->getType());
3116   if (T.isNull())
3117     return nullptr;
3118
3119   TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3120   Expr *BitWidth = Importer.Import(D->getBitWidth());
3121   if (!BitWidth && D->getBitWidth())
3122     return nullptr;
3123
3124   ObjCIvarDecl *ToIvar = ObjCIvarDecl::Create(Importer.getToContext(),
3125                                               cast<ObjCContainerDecl>(DC),
3126                                        Importer.Import(D->getInnerLocStart()),
3127                                               Loc, Name.getAsIdentifierInfo(),
3128                                               T, TInfo, D->getAccessControl(),
3129                                               BitWidth, D->getSynthesize());
3130   ToIvar->setLexicalDeclContext(LexicalDC);
3131   Importer.Imported(D, ToIvar);
3132   LexicalDC->addDeclInternal(ToIvar);
3133   return ToIvar;
3134   
3135 }
3136
3137 Decl *ASTNodeImporter::VisitVarDecl(VarDecl *D) {
3138   // Import the major distinguishing characteristics of a variable.
3139   DeclContext *DC, *LexicalDC;
3140   DeclarationName Name;
3141   SourceLocation Loc;
3142   NamedDecl *ToD;
3143   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3144     return nullptr;
3145   if (ToD)
3146     return ToD;
3147
3148   // Try to find a variable in our own ("to") context with the same name and
3149   // in the same context as the variable we're importing.
3150   if (D->isFileVarDecl()) {
3151     VarDecl *MergeWithVar = nullptr;
3152     SmallVector<NamedDecl *, 4> ConflictingDecls;
3153     unsigned IDNS = Decl::IDNS_Ordinary;
3154     SmallVector<NamedDecl *, 2> FoundDecls;
3155     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
3156     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3157       if (!FoundDecls[I]->isInIdentifierNamespace(IDNS))
3158         continue;
3159       
3160       if (VarDecl *FoundVar = dyn_cast<VarDecl>(FoundDecls[I])) {
3161         // We have found a variable that we may need to merge with. Check it.
3162         if (FoundVar->hasExternalFormalLinkage() &&
3163             D->hasExternalFormalLinkage()) {
3164           if (Importer.IsStructurallyEquivalent(D->getType(), 
3165                                                 FoundVar->getType())) {
3166             MergeWithVar = FoundVar;
3167             break;
3168           }
3169
3170           const ArrayType *FoundArray
3171             = Importer.getToContext().getAsArrayType(FoundVar->getType());
3172           const ArrayType *TArray
3173             = Importer.getToContext().getAsArrayType(D->getType());
3174           if (FoundArray && TArray) {
3175             if (isa<IncompleteArrayType>(FoundArray) &&
3176                 isa<ConstantArrayType>(TArray)) {
3177               // Import the type.
3178               QualType T = Importer.Import(D->getType());
3179               if (T.isNull())
3180                 return nullptr;
3181
3182               FoundVar->setType(T);
3183               MergeWithVar = FoundVar;
3184               break;
3185             } else if (isa<IncompleteArrayType>(TArray) &&
3186                        isa<ConstantArrayType>(FoundArray)) {
3187               MergeWithVar = FoundVar;
3188               break;
3189             }
3190           }
3191
3192           Importer.ToDiag(Loc, diag::err_odr_variable_type_inconsistent)
3193             << Name << D->getType() << FoundVar->getType();
3194           Importer.ToDiag(FoundVar->getLocation(), diag::note_odr_value_here)
3195             << FoundVar->getType();
3196         }
3197       }
3198       
3199       ConflictingDecls.push_back(FoundDecls[I]);
3200     }
3201
3202     if (MergeWithVar) {
3203       // An equivalent variable with external linkage has been found. Link 
3204       // the two declarations, then merge them.
3205       Importer.Imported(D, MergeWithVar);
3206       
3207       if (VarDecl *DDef = D->getDefinition()) {
3208         if (VarDecl *ExistingDef = MergeWithVar->getDefinition()) {
3209           Importer.ToDiag(ExistingDef->getLocation(), 
3210                           diag::err_odr_variable_multiple_def)
3211             << Name;
3212           Importer.FromDiag(DDef->getLocation(), diag::note_odr_defined_here);
3213         } else {
3214           Expr *Init = Importer.Import(DDef->getInit());
3215           MergeWithVar->setInit(Init);
3216           if (DDef->isInitKnownICE()) {
3217             EvaluatedStmt *Eval = MergeWithVar->ensureEvaluatedStmt();
3218             Eval->CheckedICE = true;
3219             Eval->IsICE = DDef->isInitICE();
3220           }
3221         }
3222       }
3223       
3224       return MergeWithVar;
3225     }
3226     
3227     if (!ConflictingDecls.empty()) {
3228       Name = Importer.HandleNameConflict(Name, DC, IDNS,
3229                                          ConflictingDecls.data(), 
3230                                          ConflictingDecls.size());
3231       if (!Name)
3232         return nullptr;
3233     }
3234   }
3235     
3236   // Import the type.
3237   QualType T = Importer.Import(D->getType());
3238   if (T.isNull())
3239     return nullptr;
3240
3241   // Create the imported variable.
3242   TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3243   VarDecl *ToVar = VarDecl::Create(Importer.getToContext(), DC,
3244                                    Importer.Import(D->getInnerLocStart()),
3245                                    Loc, Name.getAsIdentifierInfo(),
3246                                    T, TInfo,
3247                                    D->getStorageClass());
3248   ToVar->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
3249   ToVar->setAccess(D->getAccess());
3250   ToVar->setLexicalDeclContext(LexicalDC);
3251   Importer.Imported(D, ToVar);
3252   LexicalDC->addDeclInternal(ToVar);
3253
3254   if (!D->isFileVarDecl() &&
3255       D->isUsed())
3256     ToVar->setIsUsed();
3257
3258   // Merge the initializer.
3259   if (ImportDefinition(D, ToVar))
3260     return nullptr;
3261
3262   return ToVar;
3263 }
3264
3265 Decl *ASTNodeImporter::VisitImplicitParamDecl(ImplicitParamDecl *D) {
3266   // Parameters are created in the translation unit's context, then moved
3267   // into the function declaration's context afterward.
3268   DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
3269   
3270   // Import the name of this declaration.
3271   DeclarationName Name = Importer.Import(D->getDeclName());
3272   if (D->getDeclName() && !Name)
3273     return nullptr;
3274
3275   // Import the location of this declaration.
3276   SourceLocation Loc = Importer.Import(D->getLocation());
3277   
3278   // Import the parameter's type.
3279   QualType T = Importer.Import(D->getType());
3280   if (T.isNull())
3281     return nullptr;
3282
3283   // Create the imported parameter.
3284   ImplicitParamDecl *ToParm
3285     = ImplicitParamDecl::Create(Importer.getToContext(), DC,
3286                                 Loc, Name.getAsIdentifierInfo(),
3287                                 T);
3288   return Importer.Imported(D, ToParm);
3289 }
3290
3291 Decl *ASTNodeImporter::VisitParmVarDecl(ParmVarDecl *D) {
3292   // Parameters are created in the translation unit's context, then moved
3293   // into the function declaration's context afterward.
3294   DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
3295   
3296   // Import the name of this declaration.
3297   DeclarationName Name = Importer.Import(D->getDeclName());
3298   if (D->getDeclName() && !Name)
3299     return nullptr;
3300
3301   // Import the location of this declaration.
3302   SourceLocation Loc = Importer.Import(D->getLocation());
3303   
3304   // Import the parameter's type.
3305   QualType T = Importer.Import(D->getType());
3306   if (T.isNull())
3307     return nullptr;
3308
3309   // Create the imported parameter.
3310   TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
3311   ParmVarDecl *ToParm = ParmVarDecl::Create(Importer.getToContext(), DC,
3312                                      Importer.Import(D->getInnerLocStart()),
3313                                             Loc, Name.getAsIdentifierInfo(),
3314                                             T, TInfo, D->getStorageClass(),
3315                                             /*FIXME: Default argument*/nullptr);
3316   ToParm->setHasInheritedDefaultArg(D->hasInheritedDefaultArg());
3317
3318   if (D->isUsed())
3319     ToParm->setIsUsed();
3320
3321   return Importer.Imported(D, ToParm);
3322 }
3323
3324 Decl *ASTNodeImporter::VisitObjCMethodDecl(ObjCMethodDecl *D) {
3325   // Import the major distinguishing characteristics of a method.
3326   DeclContext *DC, *LexicalDC;
3327   DeclarationName Name;
3328   SourceLocation Loc;
3329   NamedDecl *ToD;
3330   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3331     return nullptr;
3332   if (ToD)
3333     return ToD;
3334
3335   SmallVector<NamedDecl *, 2> FoundDecls;
3336   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
3337   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3338     if (ObjCMethodDecl *FoundMethod = dyn_cast<ObjCMethodDecl>(FoundDecls[I])) {
3339       if (FoundMethod->isInstanceMethod() != D->isInstanceMethod())
3340         continue;
3341
3342       // Check return types.
3343       if (!Importer.IsStructurallyEquivalent(D->getReturnType(),
3344                                              FoundMethod->getReturnType())) {
3345         Importer.ToDiag(Loc, diag::err_odr_objc_method_result_type_inconsistent)
3346             << D->isInstanceMethod() << Name << D->getReturnType()
3347             << FoundMethod->getReturnType();
3348         Importer.ToDiag(FoundMethod->getLocation(), 
3349                         diag::note_odr_objc_method_here)
3350           << D->isInstanceMethod() << Name;
3351         return nullptr;
3352       }
3353
3354       // Check the number of parameters.
3355       if (D->param_size() != FoundMethod->param_size()) {
3356         Importer.ToDiag(Loc, diag::err_odr_objc_method_num_params_inconsistent)
3357           << D->isInstanceMethod() << Name
3358           << D->param_size() << FoundMethod->param_size();
3359         Importer.ToDiag(FoundMethod->getLocation(), 
3360                         diag::note_odr_objc_method_here)
3361           << D->isInstanceMethod() << Name;
3362         return nullptr;
3363       }
3364
3365       // Check parameter types.
3366       for (ObjCMethodDecl::param_iterator P = D->param_begin(), 
3367              PEnd = D->param_end(), FoundP = FoundMethod->param_begin();
3368            P != PEnd; ++P, ++FoundP) {
3369         if (!Importer.IsStructurallyEquivalent((*P)->getType(), 
3370                                                (*FoundP)->getType())) {
3371           Importer.FromDiag((*P)->getLocation(), 
3372                             diag::err_odr_objc_method_param_type_inconsistent)
3373             << D->isInstanceMethod() << Name
3374             << (*P)->getType() << (*FoundP)->getType();
3375           Importer.ToDiag((*FoundP)->getLocation(), diag::note_odr_value_here)
3376             << (*FoundP)->getType();
3377           return nullptr;
3378         }
3379       }
3380
3381       // Check variadic/non-variadic.
3382       // Check the number of parameters.
3383       if (D->isVariadic() != FoundMethod->isVariadic()) {
3384         Importer.ToDiag(Loc, diag::err_odr_objc_method_variadic_inconsistent)
3385           << D->isInstanceMethod() << Name;
3386         Importer.ToDiag(FoundMethod->getLocation(), 
3387                         diag::note_odr_objc_method_here)
3388           << D->isInstanceMethod() << Name;
3389         return nullptr;
3390       }
3391
3392       // FIXME: Any other bits we need to merge?
3393       return Importer.Imported(D, FoundMethod);
3394     }
3395   }
3396
3397   // Import the result type.
3398   QualType ResultTy = Importer.Import(D->getReturnType());
3399   if (ResultTy.isNull())
3400     return nullptr;
3401
3402   TypeSourceInfo *ReturnTInfo = Importer.Import(D->getReturnTypeSourceInfo());
3403
3404   ObjCMethodDecl *ToMethod = ObjCMethodDecl::Create(
3405       Importer.getToContext(), Loc, Importer.Import(D->getLocEnd()),
3406       Name.getObjCSelector(), ResultTy, ReturnTInfo, DC, D->isInstanceMethod(),
3407       D->isVariadic(), D->isPropertyAccessor(), D->isImplicit(), D->isDefined(),
3408       D->getImplementationControl(), D->hasRelatedResultType());
3409
3410   // FIXME: When we decide to merge method definitions, we'll need to
3411   // deal with implicit parameters.
3412
3413   // Import the parameters
3414   SmallVector<ParmVarDecl *, 5> ToParams;
3415   for (auto *FromP : D->params()) {
3416     ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(FromP));
3417     if (!ToP)
3418       return nullptr;
3419
3420     ToParams.push_back(ToP);
3421   }
3422   
3423   // Set the parameters.
3424   for (unsigned I = 0, N = ToParams.size(); I != N; ++I) {
3425     ToParams[I]->setOwningFunction(ToMethod);
3426     ToMethod->addDeclInternal(ToParams[I]);
3427   }
3428   SmallVector<SourceLocation, 12> SelLocs;
3429   D->getSelectorLocs(SelLocs);
3430   ToMethod->setMethodParams(Importer.getToContext(), ToParams, SelLocs); 
3431
3432   ToMethod->setLexicalDeclContext(LexicalDC);
3433   Importer.Imported(D, ToMethod);
3434   LexicalDC->addDeclInternal(ToMethod);
3435   return ToMethod;
3436 }
3437
3438 Decl *ASTNodeImporter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) {
3439   // Import the major distinguishing characteristics of a category.
3440   DeclContext *DC, *LexicalDC;
3441   DeclarationName Name;
3442   SourceLocation Loc;
3443   NamedDecl *ToD;
3444   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3445     return nullptr;
3446   if (ToD)
3447     return ToD;
3448
3449   TypeSourceInfo *BoundInfo = Importer.Import(D->getTypeSourceInfo());
3450   if (!BoundInfo)
3451     return nullptr;
3452
3453   ObjCTypeParamDecl *Result = ObjCTypeParamDecl::Create(
3454                                 Importer.getToContext(), DC,
3455                                 D->getIndex(),
3456                                 Importer.Import(D->getLocation()),
3457                                 Name.getAsIdentifierInfo(),
3458                                 Importer.Import(D->getColonLoc()),
3459                                 BoundInfo);
3460   Importer.Imported(D, Result);
3461   Result->setLexicalDeclContext(LexicalDC);
3462   return Result;
3463 }
3464
3465 Decl *ASTNodeImporter::VisitObjCCategoryDecl(ObjCCategoryDecl *D) {
3466   // Import the major distinguishing characteristics of a category.
3467   DeclContext *DC, *LexicalDC;
3468   DeclarationName Name;
3469   SourceLocation Loc;
3470   NamedDecl *ToD;
3471   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3472     return nullptr;
3473   if (ToD)
3474     return ToD;
3475
3476   ObjCInterfaceDecl *ToInterface
3477     = cast_or_null<ObjCInterfaceDecl>(Importer.Import(D->getClassInterface()));
3478   if (!ToInterface)
3479     return nullptr;
3480
3481   // Determine if we've already encountered this category.
3482   ObjCCategoryDecl *MergeWithCategory
3483     = ToInterface->FindCategoryDeclaration(Name.getAsIdentifierInfo());
3484   ObjCCategoryDecl *ToCategory = MergeWithCategory;
3485   if (!ToCategory) {
3486     ToCategory = ObjCCategoryDecl::Create(Importer.getToContext(), DC,
3487                                           Importer.Import(D->getAtStartLoc()),
3488                                           Loc, 
3489                                        Importer.Import(D->getCategoryNameLoc()), 
3490                                           Name.getAsIdentifierInfo(),
3491                                           ToInterface,
3492                                           ImportObjCTypeParamList(
3493                                             D->getTypeParamList()),
3494                                        Importer.Import(D->getIvarLBraceLoc()),
3495                                        Importer.Import(D->getIvarRBraceLoc()));
3496     ToCategory->setLexicalDeclContext(LexicalDC);
3497     LexicalDC->addDeclInternal(ToCategory);
3498     Importer.Imported(D, ToCategory);
3499     
3500     // Import protocols
3501     SmallVector<ObjCProtocolDecl *, 4> Protocols;
3502     SmallVector<SourceLocation, 4> ProtocolLocs;
3503     ObjCCategoryDecl::protocol_loc_iterator FromProtoLoc
3504       = D->protocol_loc_begin();
3505     for (ObjCCategoryDecl::protocol_iterator FromProto = D->protocol_begin(),
3506                                           FromProtoEnd = D->protocol_end();
3507          FromProto != FromProtoEnd;
3508          ++FromProto, ++FromProtoLoc) {
3509       ObjCProtocolDecl *ToProto
3510         = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3511       if (!ToProto)
3512         return nullptr;
3513       Protocols.push_back(ToProto);
3514       ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3515     }
3516     
3517     // FIXME: If we're merging, make sure that the protocol list is the same.
3518     ToCategory->setProtocolList(Protocols.data(), Protocols.size(),
3519                                 ProtocolLocs.data(), Importer.getToContext());
3520     
3521   } else {
3522     Importer.Imported(D, ToCategory);
3523   }
3524   
3525   // Import all of the members of this category.
3526   ImportDeclContext(D);
3527  
3528   // If we have an implementation, import it as well.
3529   if (D->getImplementation()) {
3530     ObjCCategoryImplDecl *Impl
3531       = cast_or_null<ObjCCategoryImplDecl>(
3532                                        Importer.Import(D->getImplementation()));
3533     if (!Impl)
3534       return nullptr;
3535
3536     ToCategory->setImplementation(Impl);
3537   }
3538   
3539   return ToCategory;
3540 }
3541
3542 bool ASTNodeImporter::ImportDefinition(ObjCProtocolDecl *From, 
3543                                        ObjCProtocolDecl *To,
3544                                        ImportDefinitionKind Kind) {
3545   if (To->getDefinition()) {
3546     if (shouldForceImportDeclContext(Kind))
3547       ImportDeclContext(From);
3548     return false;
3549   }
3550
3551   // Start the protocol definition
3552   To->startDefinition();
3553   
3554   // Import protocols
3555   SmallVector<ObjCProtocolDecl *, 4> Protocols;
3556   SmallVector<SourceLocation, 4> ProtocolLocs;
3557   ObjCProtocolDecl::protocol_loc_iterator 
3558   FromProtoLoc = From->protocol_loc_begin();
3559   for (ObjCProtocolDecl::protocol_iterator FromProto = From->protocol_begin(),
3560                                         FromProtoEnd = From->protocol_end();
3561        FromProto != FromProtoEnd;
3562        ++FromProto, ++FromProtoLoc) {
3563     ObjCProtocolDecl *ToProto
3564       = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3565     if (!ToProto)
3566       return true;
3567     Protocols.push_back(ToProto);
3568     ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3569   }
3570   
3571   // FIXME: If we're merging, make sure that the protocol list is the same.
3572   To->setProtocolList(Protocols.data(), Protocols.size(),
3573                       ProtocolLocs.data(), Importer.getToContext());
3574
3575   if (shouldForceImportDeclContext(Kind)) {
3576     // Import all of the members of this protocol.
3577     ImportDeclContext(From, /*ForceImport=*/true);
3578   }
3579   return false;
3580 }
3581
3582 Decl *ASTNodeImporter::VisitObjCProtocolDecl(ObjCProtocolDecl *D) {
3583   // If this protocol has a definition in the translation unit we're coming 
3584   // from, but this particular declaration is not that definition, import the
3585   // definition and map to that.
3586   ObjCProtocolDecl *Definition = D->getDefinition();
3587   if (Definition && Definition != D) {
3588     Decl *ImportedDef = Importer.Import(Definition);
3589     if (!ImportedDef)
3590       return nullptr;
3591
3592     return Importer.Imported(D, ImportedDef);
3593   }
3594
3595   // Import the major distinguishing characteristics of a protocol.
3596   DeclContext *DC, *LexicalDC;
3597   DeclarationName Name;
3598   SourceLocation Loc;
3599   NamedDecl *ToD;
3600   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3601     return nullptr;
3602   if (ToD)
3603     return ToD;
3604
3605   ObjCProtocolDecl *MergeWithProtocol = nullptr;
3606   SmallVector<NamedDecl *, 2> FoundDecls;
3607   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
3608   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3609     if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_ObjCProtocol))
3610       continue;
3611     
3612     if ((MergeWithProtocol = dyn_cast<ObjCProtocolDecl>(FoundDecls[I])))
3613       break;
3614   }
3615   
3616   ObjCProtocolDecl *ToProto = MergeWithProtocol;
3617   if (!ToProto) {
3618     ToProto = ObjCProtocolDecl::Create(Importer.getToContext(), DC,
3619                                        Name.getAsIdentifierInfo(), Loc,
3620                                        Importer.Import(D->getAtStartLoc()),
3621                                        /*PrevDecl=*/nullptr);
3622     ToProto->setLexicalDeclContext(LexicalDC);
3623     LexicalDC->addDeclInternal(ToProto);
3624   }
3625     
3626   Importer.Imported(D, ToProto);
3627
3628   if (D->isThisDeclarationADefinition() && ImportDefinition(D, ToProto))
3629     return nullptr;
3630
3631   return ToProto;
3632 }
3633
3634 Decl *ASTNodeImporter::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
3635   DeclContext *DC = Importer.ImportContext(D->getDeclContext());
3636   DeclContext *LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
3637
3638   SourceLocation ExternLoc = Importer.Import(D->getExternLoc());
3639   SourceLocation LangLoc = Importer.Import(D->getLocation());
3640
3641   bool HasBraces = D->hasBraces();
3642  
3643   LinkageSpecDecl *ToLinkageSpec =
3644     LinkageSpecDecl::Create(Importer.getToContext(),
3645                             DC,
3646                             ExternLoc,
3647                             LangLoc,
3648                             D->getLanguage(),
3649                             HasBraces);
3650
3651   if (HasBraces) {
3652     SourceLocation RBraceLoc = Importer.Import(D->getRBraceLoc());
3653     ToLinkageSpec->setRBraceLoc(RBraceLoc);
3654   }
3655
3656   ToLinkageSpec->setLexicalDeclContext(LexicalDC);
3657   LexicalDC->addDeclInternal(ToLinkageSpec);
3658
3659   Importer.Imported(D, ToLinkageSpec);
3660
3661   return ToLinkageSpec;
3662 }
3663
3664 bool ASTNodeImporter::ImportDefinition(ObjCInterfaceDecl *From, 
3665                                        ObjCInterfaceDecl *To,
3666                                        ImportDefinitionKind Kind) {
3667   if (To->getDefinition()) {
3668     // Check consistency of superclass.
3669     ObjCInterfaceDecl *FromSuper = From->getSuperClass();
3670     if (FromSuper) {
3671       FromSuper = cast_or_null<ObjCInterfaceDecl>(Importer.Import(FromSuper));
3672       if (!FromSuper)
3673         return true;
3674     }
3675     
3676     ObjCInterfaceDecl *ToSuper = To->getSuperClass();    
3677     if ((bool)FromSuper != (bool)ToSuper ||
3678         (FromSuper && !declaresSameEntity(FromSuper, ToSuper))) {
3679       Importer.ToDiag(To->getLocation(), 
3680                       diag::err_odr_objc_superclass_inconsistent)
3681         << To->getDeclName();
3682       if (ToSuper)
3683         Importer.ToDiag(To->getSuperClassLoc(), diag::note_odr_objc_superclass)
3684           << To->getSuperClass()->getDeclName();
3685       else
3686         Importer.ToDiag(To->getLocation(), 
3687                         diag::note_odr_objc_missing_superclass);
3688       if (From->getSuperClass())
3689         Importer.FromDiag(From->getSuperClassLoc(), 
3690                           diag::note_odr_objc_superclass)
3691         << From->getSuperClass()->getDeclName();
3692       else
3693         Importer.FromDiag(From->getLocation(), 
3694                           diag::note_odr_objc_missing_superclass);        
3695     }
3696     
3697     if (shouldForceImportDeclContext(Kind))
3698       ImportDeclContext(From);
3699     return false;
3700   }
3701   
3702   // Start the definition.
3703   To->startDefinition();
3704   
3705   // If this class has a superclass, import it.
3706   if (From->getSuperClass()) {
3707     TypeSourceInfo *SuperTInfo = Importer.Import(From->getSuperClassTInfo());
3708     if (!SuperTInfo)
3709       return true;
3710
3711     To->setSuperClass(SuperTInfo);
3712   }
3713   
3714   // Import protocols
3715   SmallVector<ObjCProtocolDecl *, 4> Protocols;
3716   SmallVector<SourceLocation, 4> ProtocolLocs;
3717   ObjCInterfaceDecl::protocol_loc_iterator 
3718   FromProtoLoc = From->protocol_loc_begin();
3719   
3720   for (ObjCInterfaceDecl::protocol_iterator FromProto = From->protocol_begin(),
3721                                          FromProtoEnd = From->protocol_end();
3722        FromProto != FromProtoEnd;
3723        ++FromProto, ++FromProtoLoc) {
3724     ObjCProtocolDecl *ToProto
3725       = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
3726     if (!ToProto)
3727       return true;
3728     Protocols.push_back(ToProto);
3729     ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
3730   }
3731   
3732   // FIXME: If we're merging, make sure that the protocol list is the same.
3733   To->setProtocolList(Protocols.data(), Protocols.size(),
3734                       ProtocolLocs.data(), Importer.getToContext());
3735   
3736   // Import categories. When the categories themselves are imported, they'll
3737   // hook themselves into this interface.
3738   for (auto *Cat : From->known_categories())
3739     Importer.Import(Cat);
3740   
3741   // If we have an @implementation, import it as well.
3742   if (From->getImplementation()) {
3743     ObjCImplementationDecl *Impl = cast_or_null<ObjCImplementationDecl>(
3744                                      Importer.Import(From->getImplementation()));
3745     if (!Impl)
3746       return true;
3747     
3748     To->setImplementation(Impl);
3749   }
3750
3751   if (shouldForceImportDeclContext(Kind)) {
3752     // Import all of the members of this class.
3753     ImportDeclContext(From, /*ForceImport=*/true);
3754   }
3755   return false;
3756 }
3757
3758 ObjCTypeParamList *
3759 ASTNodeImporter::ImportObjCTypeParamList(ObjCTypeParamList *list) {
3760   if (!list)
3761     return nullptr;
3762
3763   SmallVector<ObjCTypeParamDecl *, 4> toTypeParams;
3764   for (auto fromTypeParam : *list) {
3765     auto toTypeParam = cast_or_null<ObjCTypeParamDecl>(
3766                          Importer.Import(fromTypeParam));
3767     if (!toTypeParam)
3768       return nullptr;
3769
3770     toTypeParams.push_back(toTypeParam);
3771   }
3772
3773   return ObjCTypeParamList::create(Importer.getToContext(),
3774                                    Importer.Import(list->getLAngleLoc()),
3775                                    toTypeParams,
3776                                    Importer.Import(list->getRAngleLoc()));
3777 }
3778
3779 Decl *ASTNodeImporter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
3780   // If this class has a definition in the translation unit we're coming from,
3781   // but this particular declaration is not that definition, import the
3782   // definition and map to that.
3783   ObjCInterfaceDecl *Definition = D->getDefinition();
3784   if (Definition && Definition != D) {
3785     Decl *ImportedDef = Importer.Import(Definition);
3786     if (!ImportedDef)
3787       return nullptr;
3788
3789     return Importer.Imported(D, ImportedDef);
3790   }
3791
3792   // Import the major distinguishing characteristics of an @interface.
3793   DeclContext *DC, *LexicalDC;
3794   DeclarationName Name;
3795   SourceLocation Loc;
3796   NamedDecl *ToD;
3797   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3798     return nullptr;
3799   if (ToD)
3800     return ToD;
3801
3802   // Look for an existing interface with the same name.
3803   ObjCInterfaceDecl *MergeWithIface = nullptr;
3804   SmallVector<NamedDecl *, 2> FoundDecls;
3805   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
3806   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3807     if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
3808       continue;
3809     
3810     if ((MergeWithIface = dyn_cast<ObjCInterfaceDecl>(FoundDecls[I])))
3811       break;
3812   }
3813   
3814   // Create an interface declaration, if one does not already exist.
3815   ObjCInterfaceDecl *ToIface = MergeWithIface;
3816   if (!ToIface) {
3817     ToIface = ObjCInterfaceDecl::Create(Importer.getToContext(), DC,
3818                                         Importer.Import(D->getAtStartLoc()),
3819                                         Name.getAsIdentifierInfo(),
3820                                         ImportObjCTypeParamList(
3821                                           D->getTypeParamListAsWritten()),
3822                                         /*PrevDecl=*/nullptr, Loc,
3823                                         D->isImplicitInterfaceDecl());
3824     ToIface->setLexicalDeclContext(LexicalDC);
3825     LexicalDC->addDeclInternal(ToIface);
3826   }
3827   Importer.Imported(D, ToIface);
3828   
3829   if (D->isThisDeclarationADefinition() && ImportDefinition(D, ToIface))
3830     return nullptr;
3831
3832   return ToIface;
3833 }
3834
3835 Decl *ASTNodeImporter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
3836   ObjCCategoryDecl *Category = cast_or_null<ObjCCategoryDecl>(
3837                                         Importer.Import(D->getCategoryDecl()));
3838   if (!Category)
3839     return nullptr;
3840
3841   ObjCCategoryImplDecl *ToImpl = Category->getImplementation();
3842   if (!ToImpl) {
3843     DeclContext *DC = Importer.ImportContext(D->getDeclContext());
3844     if (!DC)
3845       return nullptr;
3846
3847     SourceLocation CategoryNameLoc = Importer.Import(D->getCategoryNameLoc());
3848     ToImpl = ObjCCategoryImplDecl::Create(Importer.getToContext(), DC,
3849                                           Importer.Import(D->getIdentifier()),
3850                                           Category->getClassInterface(),
3851                                           Importer.Import(D->getLocation()),
3852                                           Importer.Import(D->getAtStartLoc()),
3853                                           CategoryNameLoc);
3854     
3855     DeclContext *LexicalDC = DC;
3856     if (D->getDeclContext() != D->getLexicalDeclContext()) {
3857       LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
3858       if (!LexicalDC)
3859         return nullptr;
3860
3861       ToImpl->setLexicalDeclContext(LexicalDC);
3862     }
3863     
3864     LexicalDC->addDeclInternal(ToImpl);
3865     Category->setImplementation(ToImpl);
3866   }
3867   
3868   Importer.Imported(D, ToImpl);
3869   ImportDeclContext(D);
3870   return ToImpl;
3871 }
3872
3873 Decl *ASTNodeImporter::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
3874   // Find the corresponding interface.
3875   ObjCInterfaceDecl *Iface = cast_or_null<ObjCInterfaceDecl>(
3876                                        Importer.Import(D->getClassInterface()));
3877   if (!Iface)
3878     return nullptr;
3879
3880   // Import the superclass, if any.
3881   ObjCInterfaceDecl *Super = nullptr;
3882   if (D->getSuperClass()) {
3883     Super = cast_or_null<ObjCInterfaceDecl>(
3884                                           Importer.Import(D->getSuperClass()));
3885     if (!Super)
3886       return nullptr;
3887   }
3888
3889   ObjCImplementationDecl *Impl = Iface->getImplementation();
3890   if (!Impl) {
3891     // We haven't imported an implementation yet. Create a new @implementation
3892     // now.
3893     Impl = ObjCImplementationDecl::Create(Importer.getToContext(),
3894                                   Importer.ImportContext(D->getDeclContext()),
3895                                           Iface, Super,
3896                                           Importer.Import(D->getLocation()),
3897                                           Importer.Import(D->getAtStartLoc()),
3898                                           Importer.Import(D->getSuperClassLoc()),
3899                                           Importer.Import(D->getIvarLBraceLoc()),
3900                                           Importer.Import(D->getIvarRBraceLoc()));
3901     
3902     if (D->getDeclContext() != D->getLexicalDeclContext()) {
3903       DeclContext *LexicalDC
3904         = Importer.ImportContext(D->getLexicalDeclContext());
3905       if (!LexicalDC)
3906         return nullptr;
3907       Impl->setLexicalDeclContext(LexicalDC);
3908     }
3909     
3910     // Associate the implementation with the class it implements.
3911     Iface->setImplementation(Impl);
3912     Importer.Imported(D, Iface->getImplementation());
3913   } else {
3914     Importer.Imported(D, Iface->getImplementation());
3915
3916     // Verify that the existing @implementation has the same superclass.
3917     if ((Super && !Impl->getSuperClass()) ||
3918         (!Super && Impl->getSuperClass()) ||
3919         (Super && Impl->getSuperClass() &&
3920          !declaresSameEntity(Super->getCanonicalDecl(),
3921                              Impl->getSuperClass()))) {
3922       Importer.ToDiag(Impl->getLocation(),
3923                       diag::err_odr_objc_superclass_inconsistent)
3924         << Iface->getDeclName();
3925       // FIXME: It would be nice to have the location of the superclass
3926       // below.
3927       if (Impl->getSuperClass())
3928         Importer.ToDiag(Impl->getLocation(),
3929                         diag::note_odr_objc_superclass)
3930         << Impl->getSuperClass()->getDeclName();
3931       else
3932         Importer.ToDiag(Impl->getLocation(),
3933                         diag::note_odr_objc_missing_superclass);
3934       if (D->getSuperClass())
3935         Importer.FromDiag(D->getLocation(),
3936                           diag::note_odr_objc_superclass)
3937         << D->getSuperClass()->getDeclName();
3938       else
3939         Importer.FromDiag(D->getLocation(),
3940                           diag::note_odr_objc_missing_superclass);
3941       return nullptr;
3942     }
3943   }
3944     
3945   // Import all of the members of this @implementation.
3946   ImportDeclContext(D);
3947
3948   return Impl;
3949 }
3950
3951 Decl *ASTNodeImporter::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
3952   // Import the major distinguishing characteristics of an @property.
3953   DeclContext *DC, *LexicalDC;
3954   DeclarationName Name;
3955   SourceLocation Loc;
3956   NamedDecl *ToD;
3957   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
3958     return nullptr;
3959   if (ToD)
3960     return ToD;
3961
3962   // Check whether we have already imported this property.
3963   SmallVector<NamedDecl *, 2> FoundDecls;
3964   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
3965   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
3966     if (ObjCPropertyDecl *FoundProp
3967                                 = dyn_cast<ObjCPropertyDecl>(FoundDecls[I])) {
3968       // Check property types.
3969       if (!Importer.IsStructurallyEquivalent(D->getType(), 
3970                                              FoundProp->getType())) {
3971         Importer.ToDiag(Loc, diag::err_odr_objc_property_type_inconsistent)
3972           << Name << D->getType() << FoundProp->getType();
3973         Importer.ToDiag(FoundProp->getLocation(), diag::note_odr_value_here)
3974           << FoundProp->getType();
3975         return nullptr;
3976       }
3977
3978       // FIXME: Check property attributes, getters, setters, etc.?
3979
3980       // Consider these properties to be equivalent.
3981       Importer.Imported(D, FoundProp);
3982       return FoundProp;
3983     }
3984   }
3985
3986   // Import the type.
3987   TypeSourceInfo *TSI = Importer.Import(D->getTypeSourceInfo());
3988   if (!TSI)
3989     return nullptr;
3990
3991   // Create the new property.
3992   ObjCPropertyDecl *ToProperty
3993     = ObjCPropertyDecl::Create(Importer.getToContext(), DC, Loc,
3994                                Name.getAsIdentifierInfo(), 
3995                                Importer.Import(D->getAtLoc()),
3996                                Importer.Import(D->getLParenLoc()),
3997                                Importer.Import(D->getType()),
3998                                TSI,
3999                                D->getPropertyImplementation());
4000   Importer.Imported(D, ToProperty);
4001   ToProperty->setLexicalDeclContext(LexicalDC);
4002   LexicalDC->addDeclInternal(ToProperty);
4003
4004   ToProperty->setPropertyAttributes(D->getPropertyAttributes());
4005   ToProperty->setPropertyAttributesAsWritten(
4006                                       D->getPropertyAttributesAsWritten());
4007   ToProperty->setGetterName(Importer.Import(D->getGetterName()));
4008   ToProperty->setSetterName(Importer.Import(D->getSetterName()));
4009   ToProperty->setGetterMethodDecl(
4010      cast_or_null<ObjCMethodDecl>(Importer.Import(D->getGetterMethodDecl())));
4011   ToProperty->setSetterMethodDecl(
4012      cast_or_null<ObjCMethodDecl>(Importer.Import(D->getSetterMethodDecl())));
4013   ToProperty->setPropertyIvarDecl(
4014        cast_or_null<ObjCIvarDecl>(Importer.Import(D->getPropertyIvarDecl())));
4015   return ToProperty;
4016 }
4017
4018 Decl *ASTNodeImporter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
4019   ObjCPropertyDecl *Property = cast_or_null<ObjCPropertyDecl>(
4020                                         Importer.Import(D->getPropertyDecl()));
4021   if (!Property)
4022     return nullptr;
4023
4024   DeclContext *DC = Importer.ImportContext(D->getDeclContext());
4025   if (!DC)
4026     return nullptr;
4027
4028   // Import the lexical declaration context.
4029   DeclContext *LexicalDC = DC;
4030   if (D->getDeclContext() != D->getLexicalDeclContext()) {
4031     LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4032     if (!LexicalDC)
4033       return nullptr;
4034   }
4035
4036   ObjCImplDecl *InImpl = dyn_cast<ObjCImplDecl>(LexicalDC);
4037   if (!InImpl)
4038     return nullptr;
4039
4040   // Import the ivar (for an @synthesize).
4041   ObjCIvarDecl *Ivar = nullptr;
4042   if (D->getPropertyIvarDecl()) {
4043     Ivar = cast_or_null<ObjCIvarDecl>(
4044                                     Importer.Import(D->getPropertyIvarDecl()));
4045     if (!Ivar)
4046       return nullptr;
4047   }
4048
4049   ObjCPropertyImplDecl *ToImpl
4050     = InImpl->FindPropertyImplDecl(Property->getIdentifier());
4051   if (!ToImpl) {    
4052     ToImpl = ObjCPropertyImplDecl::Create(Importer.getToContext(), DC,
4053                                           Importer.Import(D->getLocStart()),
4054                                           Importer.Import(D->getLocation()),
4055                                           Property,
4056                                           D->getPropertyImplementation(),
4057                                           Ivar, 
4058                                   Importer.Import(D->getPropertyIvarDeclLoc()));
4059     ToImpl->setLexicalDeclContext(LexicalDC);
4060     Importer.Imported(D, ToImpl);
4061     LexicalDC->addDeclInternal(ToImpl);
4062   } else {
4063     // Check that we have the same kind of property implementation (@synthesize
4064     // vs. @dynamic).
4065     if (D->getPropertyImplementation() != ToImpl->getPropertyImplementation()) {
4066       Importer.ToDiag(ToImpl->getLocation(), 
4067                       diag::err_odr_objc_property_impl_kind_inconsistent)
4068         << Property->getDeclName() 
4069         << (ToImpl->getPropertyImplementation() 
4070                                               == ObjCPropertyImplDecl::Dynamic);
4071       Importer.FromDiag(D->getLocation(),
4072                         diag::note_odr_objc_property_impl_kind)
4073         << D->getPropertyDecl()->getDeclName()
4074         << (D->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic);
4075       return nullptr;
4076     }
4077     
4078     // For @synthesize, check that we have the same 
4079     if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize &&
4080         Ivar != ToImpl->getPropertyIvarDecl()) {
4081       Importer.ToDiag(ToImpl->getPropertyIvarDeclLoc(), 
4082                       diag::err_odr_objc_synthesize_ivar_inconsistent)
4083         << Property->getDeclName()
4084         << ToImpl->getPropertyIvarDecl()->getDeclName()
4085         << Ivar->getDeclName();
4086       Importer.FromDiag(D->getPropertyIvarDeclLoc(), 
4087                         diag::note_odr_objc_synthesize_ivar_here)
4088         << D->getPropertyIvarDecl()->getDeclName();
4089       return nullptr;
4090     }
4091     
4092     // Merge the existing implementation with the new implementation.
4093     Importer.Imported(D, ToImpl);
4094   }
4095   
4096   return ToImpl;
4097 }
4098
4099 Decl *ASTNodeImporter::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
4100   // For template arguments, we adopt the translation unit as our declaration
4101   // context. This context will be fixed when the actual template declaration
4102   // is created.
4103   
4104   // FIXME: Import default argument.
4105   return TemplateTypeParmDecl::Create(Importer.getToContext(),
4106                               Importer.getToContext().getTranslationUnitDecl(),
4107                                       Importer.Import(D->getLocStart()),
4108                                       Importer.Import(D->getLocation()),
4109                                       D->getDepth(),
4110                                       D->getIndex(), 
4111                                       Importer.Import(D->getIdentifier()),
4112                                       D->wasDeclaredWithTypename(),
4113                                       D->isParameterPack());
4114 }
4115
4116 Decl *
4117 ASTNodeImporter::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
4118   // Import the name of this declaration.
4119   DeclarationName Name = Importer.Import(D->getDeclName());
4120   if (D->getDeclName() && !Name)
4121     return nullptr;
4122
4123   // Import the location of this declaration.
4124   SourceLocation Loc = Importer.Import(D->getLocation());
4125
4126   // Import the type of this declaration.
4127   QualType T = Importer.Import(D->getType());
4128   if (T.isNull())
4129     return nullptr;
4130
4131   // Import type-source information.
4132   TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
4133   if (D->getTypeSourceInfo() && !TInfo)
4134     return nullptr;
4135
4136   // FIXME: Import default argument.
4137   
4138   return NonTypeTemplateParmDecl::Create(Importer.getToContext(),
4139                                Importer.getToContext().getTranslationUnitDecl(),
4140                                          Importer.Import(D->getInnerLocStart()),
4141                                          Loc, D->getDepth(), D->getPosition(),
4142                                          Name.getAsIdentifierInfo(),
4143                                          T, D->isParameterPack(), TInfo);
4144 }
4145
4146 Decl *
4147 ASTNodeImporter::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
4148   // Import the name of this declaration.
4149   DeclarationName Name = Importer.Import(D->getDeclName());
4150   if (D->getDeclName() && !Name)
4151     return nullptr;
4152
4153   // Import the location of this declaration.
4154   SourceLocation Loc = Importer.Import(D->getLocation());
4155   
4156   // Import template parameters.
4157   TemplateParameterList *TemplateParams
4158     = ImportTemplateParameterList(D->getTemplateParameters());
4159   if (!TemplateParams)
4160     return nullptr;
4161
4162   // FIXME: Import default argument.
4163   
4164   return TemplateTemplateParmDecl::Create(Importer.getToContext(), 
4165                               Importer.getToContext().getTranslationUnitDecl(), 
4166                                           Loc, D->getDepth(), D->getPosition(),
4167                                           D->isParameterPack(),
4168                                           Name.getAsIdentifierInfo(), 
4169                                           TemplateParams);
4170 }
4171
4172 Decl *ASTNodeImporter::VisitClassTemplateDecl(ClassTemplateDecl *D) {
4173   // If this record has a definition in the translation unit we're coming from,
4174   // but this particular declaration is not that definition, import the
4175   // definition and map to that.
4176   CXXRecordDecl *Definition 
4177     = cast_or_null<CXXRecordDecl>(D->getTemplatedDecl()->getDefinition());
4178   if (Definition && Definition != D->getTemplatedDecl()) {
4179     Decl *ImportedDef
4180       = Importer.Import(Definition->getDescribedClassTemplate());
4181     if (!ImportedDef)
4182       return nullptr;
4183
4184     return Importer.Imported(D, ImportedDef);
4185   }
4186   
4187   // Import the major distinguishing characteristics of this class template.
4188   DeclContext *DC, *LexicalDC;
4189   DeclarationName Name;
4190   SourceLocation Loc;
4191   NamedDecl *ToD;
4192   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
4193     return nullptr;
4194   if (ToD)
4195     return ToD;
4196
4197   // We may already have a template of the same name; try to find and match it.
4198   if (!DC->isFunctionOrMethod()) {
4199     SmallVector<NamedDecl *, 4> ConflictingDecls;
4200     SmallVector<NamedDecl *, 2> FoundDecls;
4201     DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
4202     for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4203       if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
4204         continue;
4205       
4206       Decl *Found = FoundDecls[I];
4207       if (ClassTemplateDecl *FoundTemplate 
4208                                         = dyn_cast<ClassTemplateDecl>(Found)) {
4209         if (IsStructuralMatch(D, FoundTemplate)) {
4210           // The class templates structurally match; call it the same template.
4211           // FIXME: We may be filling in a forward declaration here. Handle
4212           // this case!
4213           Importer.Imported(D->getTemplatedDecl(), 
4214                             FoundTemplate->getTemplatedDecl());
4215           return Importer.Imported(D, FoundTemplate);
4216         }         
4217       }
4218       
4219       ConflictingDecls.push_back(FoundDecls[I]);
4220     }
4221     
4222     if (!ConflictingDecls.empty()) {
4223       Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Ordinary,
4224                                          ConflictingDecls.data(), 
4225                                          ConflictingDecls.size());
4226     }
4227     
4228     if (!Name)
4229       return nullptr;
4230   }
4231
4232   CXXRecordDecl *DTemplated = D->getTemplatedDecl();
4233   
4234   // Create the declaration that is being templated.
4235   SourceLocation StartLoc = Importer.Import(DTemplated->getLocStart());
4236   SourceLocation IdLoc = Importer.Import(DTemplated->getLocation());
4237   CXXRecordDecl *D2Templated = CXXRecordDecl::Create(Importer.getToContext(),
4238                                                      DTemplated->getTagKind(),
4239                                                      DC, StartLoc, IdLoc,
4240                                                    Name.getAsIdentifierInfo());
4241   D2Templated->setAccess(DTemplated->getAccess());
4242   D2Templated->setQualifierInfo(Importer.Import(DTemplated->getQualifierLoc()));
4243   D2Templated->setLexicalDeclContext(LexicalDC);
4244   
4245   // Create the class template declaration itself.
4246   TemplateParameterList *TemplateParams
4247     = ImportTemplateParameterList(D->getTemplateParameters());
4248   if (!TemplateParams)
4249     return nullptr;
4250
4251   ClassTemplateDecl *D2 = ClassTemplateDecl::Create(Importer.getToContext(), DC, 
4252                                                     Loc, Name, TemplateParams, 
4253                                                     D2Templated, 
4254                                                     /*PrevDecl=*/nullptr);
4255   D2Templated->setDescribedClassTemplate(D2);    
4256   
4257   D2->setAccess(D->getAccess());
4258   D2->setLexicalDeclContext(LexicalDC);
4259   LexicalDC->addDeclInternal(D2);
4260   
4261   // Note the relationship between the class templates.
4262   Importer.Imported(D, D2);
4263   Importer.Imported(DTemplated, D2Templated);
4264
4265   if (DTemplated->isCompleteDefinition() &&
4266       !D2Templated->isCompleteDefinition()) {
4267     // FIXME: Import definition!
4268   }
4269   
4270   return D2;
4271 }
4272
4273 Decl *ASTNodeImporter::VisitClassTemplateSpecializationDecl(
4274                                           ClassTemplateSpecializationDecl *D) {
4275   // If this record has a definition in the translation unit we're coming from,
4276   // but this particular declaration is not that definition, import the
4277   // definition and map to that.
4278   TagDecl *Definition = D->getDefinition();
4279   if (Definition && Definition != D) {
4280     Decl *ImportedDef = Importer.Import(Definition);
4281     if (!ImportedDef)
4282       return nullptr;
4283
4284     return Importer.Imported(D, ImportedDef);
4285   }
4286
4287   ClassTemplateDecl *ClassTemplate
4288     = cast_or_null<ClassTemplateDecl>(Importer.Import(
4289                                                  D->getSpecializedTemplate()));
4290   if (!ClassTemplate)
4291     return nullptr;
4292
4293   // Import the context of this declaration.
4294   DeclContext *DC = ClassTemplate->getDeclContext();
4295   if (!DC)
4296     return nullptr;
4297
4298   DeclContext *LexicalDC = DC;
4299   if (D->getDeclContext() != D->getLexicalDeclContext()) {
4300     LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4301     if (!LexicalDC)
4302       return nullptr;
4303   }
4304   
4305   // Import the location of this declaration.
4306   SourceLocation StartLoc = Importer.Import(D->getLocStart());
4307   SourceLocation IdLoc = Importer.Import(D->getLocation());
4308
4309   // Import template arguments.
4310   SmallVector<TemplateArgument, 2> TemplateArgs;
4311   if (ImportTemplateArguments(D->getTemplateArgs().data(), 
4312                               D->getTemplateArgs().size(),
4313                               TemplateArgs))
4314     return nullptr;
4315
4316   // Try to find an existing specialization with these template arguments.
4317   void *InsertPos = nullptr;
4318   ClassTemplateSpecializationDecl *D2
4319     = ClassTemplate->findSpecialization(TemplateArgs, InsertPos);
4320   if (D2) {
4321     // We already have a class template specialization with these template
4322     // arguments.
4323     
4324     // FIXME: Check for specialization vs. instantiation errors.
4325     
4326     if (RecordDecl *FoundDef = D2->getDefinition()) {
4327       if (!D->isCompleteDefinition() || IsStructuralMatch(D, FoundDef)) {
4328         // The record types structurally match, or the "from" translation
4329         // unit only had a forward declaration anyway; call it the same
4330         // function.
4331         return Importer.Imported(D, FoundDef);
4332       }
4333     }
4334   } else {
4335     // Create a new specialization.
4336     D2 = ClassTemplateSpecializationDecl::Create(Importer.getToContext(), 
4337                                                  D->getTagKind(), DC, 
4338                                                  StartLoc, IdLoc,
4339                                                  ClassTemplate,
4340                                                  TemplateArgs.data(), 
4341                                                  TemplateArgs.size(), 
4342                                                  /*PrevDecl=*/nullptr);
4343     D2->setSpecializationKind(D->getSpecializationKind());
4344
4345     // Add this specialization to the class template.
4346     ClassTemplate->AddSpecialization(D2, InsertPos);
4347     
4348     // Import the qualifier, if any.
4349     D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
4350     
4351     // Add the specialization to this context.
4352     D2->setLexicalDeclContext(LexicalDC);
4353     LexicalDC->addDeclInternal(D2);
4354   }
4355   Importer.Imported(D, D2);
4356   
4357   if (D->isCompleteDefinition() && ImportDefinition(D, D2))
4358     return nullptr;
4359
4360   return D2;
4361 }
4362
4363 Decl *ASTNodeImporter::VisitVarTemplateDecl(VarTemplateDecl *D) {
4364   // If this variable has a definition in the translation unit we're coming
4365   // from,
4366   // but this particular declaration is not that definition, import the
4367   // definition and map to that.
4368   VarDecl *Definition =
4369       cast_or_null<VarDecl>(D->getTemplatedDecl()->getDefinition());
4370   if (Definition && Definition != D->getTemplatedDecl()) {
4371     Decl *ImportedDef = Importer.Import(Definition->getDescribedVarTemplate());
4372     if (!ImportedDef)
4373       return nullptr;
4374
4375     return Importer.Imported(D, ImportedDef);
4376   }
4377
4378   // Import the major distinguishing characteristics of this variable template.
4379   DeclContext *DC, *LexicalDC;
4380   DeclarationName Name;
4381   SourceLocation Loc;
4382   NamedDecl *ToD;
4383   if (ImportDeclParts(D, DC, LexicalDC, Name, ToD, Loc))
4384     return nullptr;
4385   if (ToD)
4386     return ToD;
4387
4388   // We may already have a template of the same name; try to find and match it.
4389   assert(!DC->isFunctionOrMethod() &&
4390          "Variable templates cannot be declared at function scope");
4391   SmallVector<NamedDecl *, 4> ConflictingDecls;
4392   SmallVector<NamedDecl *, 2> FoundDecls;
4393   DC->getRedeclContext()->localUncachedLookup(Name, FoundDecls);
4394   for (unsigned I = 0, N = FoundDecls.size(); I != N; ++I) {
4395     if (!FoundDecls[I]->isInIdentifierNamespace(Decl::IDNS_Ordinary))
4396       continue;
4397
4398     Decl *Found = FoundDecls[I];
4399     if (VarTemplateDecl *FoundTemplate = dyn_cast<VarTemplateDecl>(Found)) {
4400       if (IsStructuralMatch(D, FoundTemplate)) {
4401         // The variable templates structurally match; call it the same template.
4402         Importer.Imported(D->getTemplatedDecl(),
4403                           FoundTemplate->getTemplatedDecl());
4404         return Importer.Imported(D, FoundTemplate);
4405       }
4406     }
4407
4408     ConflictingDecls.push_back(FoundDecls[I]);
4409   }
4410
4411   if (!ConflictingDecls.empty()) {
4412     Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Ordinary,
4413                                        ConflictingDecls.data(),
4414                                        ConflictingDecls.size());
4415   }
4416
4417   if (!Name)
4418     return nullptr;
4419
4420   VarDecl *DTemplated = D->getTemplatedDecl();
4421
4422   // Import the type.
4423   QualType T = Importer.Import(DTemplated->getType());
4424   if (T.isNull())
4425     return nullptr;
4426
4427   // Create the declaration that is being templated.
4428   SourceLocation StartLoc = Importer.Import(DTemplated->getLocStart());
4429   SourceLocation IdLoc = Importer.Import(DTemplated->getLocation());
4430   TypeSourceInfo *TInfo = Importer.Import(DTemplated->getTypeSourceInfo());
4431   VarDecl *D2Templated = VarDecl::Create(Importer.getToContext(), DC, StartLoc,
4432                                          IdLoc, Name.getAsIdentifierInfo(), T,
4433                                          TInfo, DTemplated->getStorageClass());
4434   D2Templated->setAccess(DTemplated->getAccess());
4435   D2Templated->setQualifierInfo(Importer.Import(DTemplated->getQualifierLoc()));
4436   D2Templated->setLexicalDeclContext(LexicalDC);
4437
4438   // Importer.Imported(DTemplated, D2Templated);
4439   // LexicalDC->addDeclInternal(D2Templated);
4440
4441   // Merge the initializer.
4442   if (ImportDefinition(DTemplated, D2Templated))
4443     return nullptr;
4444
4445   // Create the variable template declaration itself.
4446   TemplateParameterList *TemplateParams =
4447       ImportTemplateParameterList(D->getTemplateParameters());
4448   if (!TemplateParams)
4449     return nullptr;
4450
4451   VarTemplateDecl *D2 = VarTemplateDecl::Create(
4452       Importer.getToContext(), DC, Loc, Name, TemplateParams, D2Templated);
4453   D2Templated->setDescribedVarTemplate(D2);
4454
4455   D2->setAccess(D->getAccess());
4456   D2->setLexicalDeclContext(LexicalDC);
4457   LexicalDC->addDeclInternal(D2);
4458
4459   // Note the relationship between the variable templates.
4460   Importer.Imported(D, D2);
4461   Importer.Imported(DTemplated, D2Templated);
4462
4463   if (DTemplated->isThisDeclarationADefinition() &&
4464       !D2Templated->isThisDeclarationADefinition()) {
4465     // FIXME: Import definition!
4466   }
4467
4468   return D2;
4469 }
4470
4471 Decl *ASTNodeImporter::VisitVarTemplateSpecializationDecl(
4472     VarTemplateSpecializationDecl *D) {
4473   // If this record has a definition in the translation unit we're coming from,
4474   // but this particular declaration is not that definition, import the
4475   // definition and map to that.
4476   VarDecl *Definition = D->getDefinition();
4477   if (Definition && Definition != D) {
4478     Decl *ImportedDef = Importer.Import(Definition);
4479     if (!ImportedDef)
4480       return nullptr;
4481
4482     return Importer.Imported(D, ImportedDef);
4483   }
4484
4485   VarTemplateDecl *VarTemplate = cast_or_null<VarTemplateDecl>(
4486       Importer.Import(D->getSpecializedTemplate()));
4487   if (!VarTemplate)
4488     return nullptr;
4489
4490   // Import the context of this declaration.
4491   DeclContext *DC = VarTemplate->getDeclContext();
4492   if (!DC)
4493     return nullptr;
4494
4495   DeclContext *LexicalDC = DC;
4496   if (D->getDeclContext() != D->getLexicalDeclContext()) {
4497     LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
4498     if (!LexicalDC)
4499       return nullptr;
4500   }
4501
4502   // Import the location of this declaration.
4503   SourceLocation StartLoc = Importer.Import(D->getLocStart());
4504   SourceLocation IdLoc = Importer.Import(D->getLocation());
4505
4506   // Import template arguments.
4507   SmallVector<TemplateArgument, 2> TemplateArgs;
4508   if (ImportTemplateArguments(D->getTemplateArgs().data(),
4509                               D->getTemplateArgs().size(), TemplateArgs))
4510     return nullptr;
4511
4512   // Try to find an existing specialization with these template arguments.
4513   void *InsertPos = nullptr;
4514   VarTemplateSpecializationDecl *D2 = VarTemplate->findSpecialization(
4515       TemplateArgs, InsertPos);
4516   if (D2) {
4517     // We already have a variable template specialization with these template
4518     // arguments.
4519
4520     // FIXME: Check for specialization vs. instantiation errors.
4521
4522     if (VarDecl *FoundDef = D2->getDefinition()) {
4523       if (!D->isThisDeclarationADefinition() ||
4524           IsStructuralMatch(D, FoundDef)) {
4525         // The record types structurally match, or the "from" translation
4526         // unit only had a forward declaration anyway; call it the same
4527         // variable.
4528         return Importer.Imported(D, FoundDef);
4529       }
4530     }
4531   } else {
4532
4533     // Import the type.
4534     QualType T = Importer.Import(D->getType());
4535     if (T.isNull())
4536       return nullptr;
4537     TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
4538
4539     // Create a new specialization.
4540     D2 = VarTemplateSpecializationDecl::Create(
4541         Importer.getToContext(), DC, StartLoc, IdLoc, VarTemplate, T, TInfo,
4542         D->getStorageClass(), TemplateArgs.data(), TemplateArgs.size());
4543     D2->setSpecializationKind(D->getSpecializationKind());
4544     D2->setTemplateArgsInfo(D->getTemplateArgsInfo());
4545
4546     // Add this specialization to the class template.
4547     VarTemplate->AddSpecialization(D2, InsertPos);
4548
4549     // Import the qualifier, if any.
4550     D2->setQualifierInfo(Importer.Import(D->getQualifierLoc()));
4551
4552     // Add the specialization to this context.
4553     D2->setLexicalDeclContext(LexicalDC);
4554     LexicalDC->addDeclInternal(D2);
4555   }
4556   Importer.Imported(D, D2);
4557
4558   if (D->isThisDeclarationADefinition() && ImportDefinition(D, D2))
4559     return nullptr;
4560
4561   return D2;
4562 }
4563
4564 //----------------------------------------------------------------------------
4565 // Import Statements
4566 //----------------------------------------------------------------------------
4567
4568 DeclGroupRef ASTNodeImporter::ImportDeclGroup(DeclGroupRef DG) {
4569   if (DG.isNull())
4570     return DeclGroupRef::Create(Importer.getToContext(), nullptr, 0);
4571   size_t NumDecls = DG.end() - DG.begin();
4572   SmallVector<Decl *, 1> ToDecls(NumDecls);
4573   auto &_Importer = this->Importer;
4574   std::transform(DG.begin(), DG.end(), ToDecls.begin(),
4575     [&_Importer](Decl *D) -> Decl * {
4576       return _Importer.Import(D);
4577     });
4578   return DeclGroupRef::Create(Importer.getToContext(),
4579                               ToDecls.begin(),
4580                               NumDecls);
4581 }
4582
4583  Stmt *ASTNodeImporter::VisitStmt(Stmt *S) {
4584    Importer.FromDiag(S->getLocStart(), diag::err_unsupported_ast_node)
4585      << S->getStmtClassName();
4586    return nullptr;
4587  }
4588  
4589 Stmt *ASTNodeImporter::VisitDeclStmt(DeclStmt *S) {
4590   DeclGroupRef ToDG = ImportDeclGroup(S->getDeclGroup());
4591   for (Decl *ToD : ToDG) {
4592     if (!ToD)
4593       return nullptr;
4594   }
4595   SourceLocation ToStartLoc = Importer.Import(S->getStartLoc());
4596   SourceLocation ToEndLoc = Importer.Import(S->getEndLoc());
4597   return new (Importer.getToContext()) DeclStmt(ToDG, ToStartLoc, ToEndLoc);
4598 }
4599
4600 Stmt *ASTNodeImporter::VisitNullStmt(NullStmt *S) {
4601   SourceLocation ToSemiLoc = Importer.Import(S->getSemiLoc());
4602   return new (Importer.getToContext()) NullStmt(ToSemiLoc,
4603                                                 S->hasLeadingEmptyMacro());
4604 }
4605
4606 Stmt *ASTNodeImporter::VisitCompoundStmt(CompoundStmt *S) {
4607   SmallVector<Stmt *, 4> ToStmts(S->size());
4608   auto &_Importer = this->Importer;
4609   std::transform(S->body_begin(), S->body_end(), ToStmts.begin(),
4610     [&_Importer](Stmt *CS) -> Stmt * {
4611       return _Importer.Import(CS);
4612     });
4613   for (Stmt *ToS : ToStmts) {
4614     if (!ToS)
4615       return nullptr;
4616   }
4617   SourceLocation ToLBraceLoc = Importer.Import(S->getLBracLoc());
4618   SourceLocation ToRBraceLoc = Importer.Import(S->getRBracLoc());
4619   return new (Importer.getToContext()) CompoundStmt(Importer.getToContext(),
4620                                                     ToStmts,
4621                                                     ToLBraceLoc, ToRBraceLoc);
4622 }
4623
4624 Stmt *ASTNodeImporter::VisitCaseStmt(CaseStmt *S) {
4625   Expr *ToLHS = Importer.Import(S->getLHS());
4626   if (!ToLHS)
4627     return nullptr;
4628   Expr *ToRHS = Importer.Import(S->getRHS());
4629   if (!ToRHS && S->getRHS())
4630     return nullptr;
4631   SourceLocation ToCaseLoc = Importer.Import(S->getCaseLoc());
4632   SourceLocation ToEllipsisLoc = Importer.Import(S->getEllipsisLoc());
4633   SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4634   return new (Importer.getToContext()) CaseStmt(ToLHS, ToRHS,
4635                                                 ToCaseLoc, ToEllipsisLoc,
4636                                                 ToColonLoc);
4637 }
4638
4639 Stmt *ASTNodeImporter::VisitDefaultStmt(DefaultStmt *S) {
4640   SourceLocation ToDefaultLoc = Importer.Import(S->getDefaultLoc());
4641   SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4642   Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4643   if (!ToSubStmt && S->getSubStmt())
4644     return nullptr;
4645   return new (Importer.getToContext()) DefaultStmt(ToDefaultLoc, ToColonLoc,
4646                                                    ToSubStmt);
4647 }
4648
4649 Stmt *ASTNodeImporter::VisitLabelStmt(LabelStmt *S) {
4650   SourceLocation ToIdentLoc = Importer.Import(S->getIdentLoc());
4651   LabelDecl *ToLabelDecl =
4652     cast_or_null<LabelDecl>(Importer.Import(S->getDecl()));
4653   if (!ToLabelDecl && S->getDecl())
4654     return nullptr;
4655   Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4656   if (!ToSubStmt && S->getSubStmt())
4657     return nullptr;
4658   return new (Importer.getToContext()) LabelStmt(ToIdentLoc, ToLabelDecl,
4659                                                  ToSubStmt);
4660 }
4661
4662 Stmt *ASTNodeImporter::VisitAttributedStmt(AttributedStmt *S) {
4663   SourceLocation ToAttrLoc = Importer.Import(S->getAttrLoc());
4664   ArrayRef<const Attr*> FromAttrs(S->getAttrs());
4665   SmallVector<const Attr *, 1> ToAttrs(FromAttrs.size());
4666   ASTContext &_ToContext = Importer.getToContext();
4667   std::transform(FromAttrs.begin(), FromAttrs.end(), ToAttrs.begin(),
4668     [&_ToContext](const Attr *A) -> const Attr * {
4669       return A->clone(_ToContext);
4670     });
4671   for (const Attr *ToA : ToAttrs) {
4672     if (!ToA)
4673       return nullptr;
4674   }
4675   Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
4676   if (!ToSubStmt && S->getSubStmt())
4677     return nullptr;
4678   return AttributedStmt::Create(Importer.getToContext(), ToAttrLoc,
4679                                 ToAttrs, ToSubStmt);
4680 }
4681
4682 Stmt *ASTNodeImporter::VisitIfStmt(IfStmt *S) {
4683   SourceLocation ToIfLoc = Importer.Import(S->getIfLoc());
4684   VarDecl *ToConditionVariable = nullptr;
4685   if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4686     ToConditionVariable =
4687       dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4688     if (!ToConditionVariable)
4689       return nullptr;
4690   }
4691   Expr *ToCondition = Importer.Import(S->getCond());
4692   if (!ToCondition && S->getCond())
4693     return nullptr;
4694   Stmt *ToThenStmt = Importer.Import(S->getThen());
4695   if (!ToThenStmt && S->getThen())
4696     return nullptr;
4697   SourceLocation ToElseLoc = Importer.Import(S->getElseLoc());
4698   Stmt *ToElseStmt = Importer.Import(S->getElse());
4699   if (!ToElseStmt && S->getElse())
4700     return nullptr;
4701   return new (Importer.getToContext()) IfStmt(Importer.getToContext(),
4702                                               ToIfLoc, ToConditionVariable,
4703                                               ToCondition, ToThenStmt,
4704                                               ToElseLoc, ToElseStmt);
4705 }
4706
4707 Stmt *ASTNodeImporter::VisitSwitchStmt(SwitchStmt *S) {
4708   VarDecl *ToConditionVariable = nullptr;
4709   if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4710     ToConditionVariable =
4711       dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4712     if (!ToConditionVariable)
4713       return nullptr;
4714   }
4715   Expr *ToCondition = Importer.Import(S->getCond());
4716   if (!ToCondition && S->getCond())
4717     return nullptr;
4718   SwitchStmt *ToStmt = new (Importer.getToContext()) SwitchStmt(
4719                          Importer.getToContext(), ToConditionVariable,
4720                          ToCondition);
4721   Stmt *ToBody = Importer.Import(S->getBody());
4722   if (!ToBody && S->getBody())
4723     return nullptr;
4724   ToStmt->setBody(ToBody);
4725   ToStmt->setSwitchLoc(Importer.Import(S->getSwitchLoc()));
4726   // Now we have to re-chain the cases.
4727   SwitchCase *LastChainedSwitchCase = nullptr;
4728   for (SwitchCase *SC = S->getSwitchCaseList(); SC != nullptr;
4729        SC = SC->getNextSwitchCase()) {
4730     SwitchCase *ToSC = dyn_cast_or_null<SwitchCase>(Importer.Import(SC));
4731     if (!ToSC)
4732       return nullptr;
4733     if (LastChainedSwitchCase)
4734       LastChainedSwitchCase->setNextSwitchCase(ToSC);
4735     else
4736       ToStmt->setSwitchCaseList(ToSC);
4737     LastChainedSwitchCase = ToSC;
4738   }
4739   return ToStmt;
4740 }
4741
4742 Stmt *ASTNodeImporter::VisitWhileStmt(WhileStmt *S) {
4743   VarDecl *ToConditionVariable = nullptr;
4744   if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4745     ToConditionVariable =
4746       dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4747     if (!ToConditionVariable)
4748       return nullptr;
4749   }
4750   Expr *ToCondition = Importer.Import(S->getCond());
4751   if (!ToCondition && S->getCond())
4752     return nullptr;
4753   Stmt *ToBody = Importer.Import(S->getBody());
4754   if (!ToBody && S->getBody())
4755     return nullptr;
4756   SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc());
4757   return new (Importer.getToContext()) WhileStmt(Importer.getToContext(),
4758                                                  ToConditionVariable,
4759                                                  ToCondition, ToBody,
4760                                                  ToWhileLoc);
4761 }
4762
4763 Stmt *ASTNodeImporter::VisitDoStmt(DoStmt *S) {
4764   Stmt *ToBody = Importer.Import(S->getBody());
4765   if (!ToBody && S->getBody())
4766     return nullptr;
4767   Expr *ToCondition = Importer.Import(S->getCond());
4768   if (!ToCondition && S->getCond())
4769     return nullptr;
4770   SourceLocation ToDoLoc = Importer.Import(S->getDoLoc());
4771   SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc());
4772   SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4773   return new (Importer.getToContext()) DoStmt(ToBody, ToCondition,
4774                                               ToDoLoc, ToWhileLoc,
4775                                               ToRParenLoc);
4776 }
4777
4778 Stmt *ASTNodeImporter::VisitForStmt(ForStmt *S) {
4779   Stmt *ToInit = Importer.Import(S->getInit());
4780   if (!ToInit && S->getInit())
4781     return nullptr;
4782   Expr *ToCondition = Importer.Import(S->getCond());
4783   if (!ToCondition && S->getCond())
4784     return nullptr;
4785   VarDecl *ToConditionVariable = nullptr;
4786   if (VarDecl *FromConditionVariable = S->getConditionVariable()) {
4787     ToConditionVariable =
4788       dyn_cast_or_null<VarDecl>(Importer.Import(FromConditionVariable));
4789     if (!ToConditionVariable)
4790       return nullptr;
4791   }
4792   Expr *ToInc = Importer.Import(S->getInc());
4793   if (!ToInc && S->getInc())
4794     return nullptr;
4795   Stmt *ToBody = Importer.Import(S->getBody());
4796   if (!ToBody && S->getBody())
4797     return nullptr;
4798   SourceLocation ToForLoc = Importer.Import(S->getForLoc());
4799   SourceLocation ToLParenLoc = Importer.Import(S->getLParenLoc());
4800   SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4801   return new (Importer.getToContext()) ForStmt(Importer.getToContext(),
4802                                                ToInit, ToCondition,
4803                                                ToConditionVariable,
4804                                                ToInc, ToBody,
4805                                                ToForLoc, ToLParenLoc,
4806                                                ToRParenLoc);
4807 }
4808
4809 Stmt *ASTNodeImporter::VisitGotoStmt(GotoStmt *S) {
4810   LabelDecl *ToLabel = nullptr;
4811   if (LabelDecl *FromLabel = S->getLabel()) {
4812     ToLabel = dyn_cast_or_null<LabelDecl>(Importer.Import(FromLabel));
4813     if (!ToLabel)
4814       return nullptr;
4815   }
4816   SourceLocation ToGotoLoc = Importer.Import(S->getGotoLoc());
4817   SourceLocation ToLabelLoc = Importer.Import(S->getLabelLoc());
4818   return new (Importer.getToContext()) GotoStmt(ToLabel,
4819                                                 ToGotoLoc, ToLabelLoc);
4820 }
4821
4822 Stmt *ASTNodeImporter::VisitIndirectGotoStmt(IndirectGotoStmt *S) {
4823   SourceLocation ToGotoLoc = Importer.Import(S->getGotoLoc());
4824   SourceLocation ToStarLoc = Importer.Import(S->getStarLoc());
4825   Expr *ToTarget = Importer.Import(S->getTarget());
4826   if (!ToTarget && S->getTarget())
4827     return nullptr;
4828   return new (Importer.getToContext()) IndirectGotoStmt(ToGotoLoc, ToStarLoc,
4829                                                         ToTarget);
4830 }
4831
4832 Stmt *ASTNodeImporter::VisitContinueStmt(ContinueStmt *S) {
4833   SourceLocation ToContinueLoc = Importer.Import(S->getContinueLoc());
4834   return new (Importer.getToContext()) ContinueStmt(ToContinueLoc);
4835 }
4836
4837 Stmt *ASTNodeImporter::VisitBreakStmt(BreakStmt *S) {
4838   SourceLocation ToBreakLoc = Importer.Import(S->getBreakLoc());
4839   return new (Importer.getToContext()) BreakStmt(ToBreakLoc);
4840 }
4841
4842 Stmt *ASTNodeImporter::VisitReturnStmt(ReturnStmt *S) {
4843   SourceLocation ToRetLoc = Importer.Import(S->getReturnLoc());
4844   Expr *ToRetExpr = Importer.Import(S->getRetValue());
4845   if (!ToRetExpr && S->getRetValue())
4846     return nullptr;
4847   VarDecl *NRVOCandidate = const_cast<VarDecl*>(S->getNRVOCandidate());
4848   VarDecl *ToNRVOCandidate = cast_or_null<VarDecl>(Importer.Import(NRVOCandidate));
4849   if (!ToNRVOCandidate && NRVOCandidate)
4850     return nullptr;
4851   return new (Importer.getToContext()) ReturnStmt(ToRetLoc, ToRetExpr,
4852                                                   ToNRVOCandidate);
4853 }
4854
4855 Stmt *ASTNodeImporter::VisitCXXCatchStmt(CXXCatchStmt *S) {
4856   SourceLocation ToCatchLoc = Importer.Import(S->getCatchLoc());
4857   VarDecl *ToExceptionDecl = nullptr;
4858   if (VarDecl *FromExceptionDecl = S->getExceptionDecl()) {
4859     ToExceptionDecl =
4860       dyn_cast_or_null<VarDecl>(Importer.Import(FromExceptionDecl));
4861     if (!ToExceptionDecl)
4862       return nullptr;
4863   }
4864   Stmt *ToHandlerBlock = Importer.Import(S->getHandlerBlock());
4865   if (!ToHandlerBlock && S->getHandlerBlock())
4866     return nullptr;
4867   return new (Importer.getToContext()) CXXCatchStmt(ToCatchLoc,
4868                                                     ToExceptionDecl,
4869                                                     ToHandlerBlock);
4870 }
4871
4872 Stmt *ASTNodeImporter::VisitCXXTryStmt(CXXTryStmt *S) {
4873   SourceLocation ToTryLoc = Importer.Import(S->getTryLoc());
4874   Stmt *ToTryBlock = Importer.Import(S->getTryBlock());
4875   if (!ToTryBlock && S->getTryBlock())
4876     return nullptr;
4877   SmallVector<Stmt *, 1> ToHandlers(S->getNumHandlers());
4878   for (unsigned HI = 0, HE = S->getNumHandlers(); HI != HE; ++HI) {
4879     CXXCatchStmt *FromHandler = S->getHandler(HI);
4880     if (Stmt *ToHandler = Importer.Import(FromHandler))
4881       ToHandlers[HI] = ToHandler;
4882     else
4883       return nullptr;
4884   }
4885   return CXXTryStmt::Create(Importer.getToContext(), ToTryLoc, ToTryBlock,
4886                             ToHandlers);
4887 }
4888
4889 Stmt *ASTNodeImporter::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
4890   DeclStmt *ToRange =
4891     dyn_cast_or_null<DeclStmt>(Importer.Import(S->getRangeStmt()));
4892   if (!ToRange && S->getRangeStmt())
4893     return nullptr;
4894   DeclStmt *ToBeginEnd =
4895     dyn_cast_or_null<DeclStmt>(Importer.Import(S->getBeginEndStmt()));
4896   if (!ToBeginEnd && S->getBeginEndStmt())
4897     return nullptr;
4898   Expr *ToCond = Importer.Import(S->getCond());
4899   if (!ToCond && S->getCond())
4900     return nullptr;
4901   Expr *ToInc = Importer.Import(S->getInc());
4902   if (!ToInc && S->getInc())
4903     return nullptr;
4904   DeclStmt *ToLoopVar =
4905     dyn_cast_or_null<DeclStmt>(Importer.Import(S->getLoopVarStmt()));
4906   if (!ToLoopVar && S->getLoopVarStmt())
4907     return nullptr;
4908   Stmt *ToBody = Importer.Import(S->getBody());
4909   if (!ToBody && S->getBody())
4910     return nullptr;
4911   SourceLocation ToForLoc = Importer.Import(S->getForLoc());
4912   SourceLocation ToColonLoc = Importer.Import(S->getColonLoc());
4913   SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4914   return new (Importer.getToContext()) CXXForRangeStmt(ToRange, ToBeginEnd,
4915                                                        ToCond, ToInc,
4916                                                        ToLoopVar, ToBody,
4917                                                        ToForLoc, ToColonLoc,
4918                                                        ToRParenLoc);
4919 }
4920
4921 Stmt *ASTNodeImporter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
4922   Stmt *ToElem = Importer.Import(S->getElement());
4923   if (!ToElem && S->getElement())
4924     return nullptr;
4925   Expr *ToCollect = Importer.Import(S->getCollection());
4926   if (!ToCollect && S->getCollection())
4927     return nullptr;
4928   Stmt *ToBody = Importer.Import(S->getBody());
4929   if (!ToBody && S->getBody())
4930     return nullptr;
4931   SourceLocation ToForLoc = Importer.Import(S->getForLoc());
4932   SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4933   return new (Importer.getToContext()) ObjCForCollectionStmt(ToElem,
4934                                                              ToCollect,
4935                                                              ToBody, ToForLoc,
4936                                                              ToRParenLoc);
4937 }
4938
4939 Stmt *ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
4940   SourceLocation ToAtCatchLoc = Importer.Import(S->getAtCatchLoc());
4941   SourceLocation ToRParenLoc = Importer.Import(S->getRParenLoc());
4942   VarDecl *ToExceptionDecl = nullptr;
4943   if (VarDecl *FromExceptionDecl = S->getCatchParamDecl()) {
4944     ToExceptionDecl =
4945       dyn_cast_or_null<VarDecl>(Importer.Import(FromExceptionDecl));
4946     if (!ToExceptionDecl)
4947       return nullptr;
4948   }
4949   Stmt *ToBody = Importer.Import(S->getCatchBody());
4950   if (!ToBody && S->getCatchBody())
4951     return nullptr;
4952   return new (Importer.getToContext()) ObjCAtCatchStmt(ToAtCatchLoc,
4953                                                        ToRParenLoc,
4954                                                        ToExceptionDecl,
4955                                                        ToBody);
4956 }
4957
4958 Stmt *ASTNodeImporter::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S) {
4959   SourceLocation ToAtFinallyLoc = Importer.Import(S->getAtFinallyLoc());
4960   Stmt *ToAtFinallyStmt = Importer.Import(S->getFinallyBody());
4961   if (!ToAtFinallyStmt && S->getFinallyBody())
4962     return nullptr;
4963   return new (Importer.getToContext()) ObjCAtFinallyStmt(ToAtFinallyLoc,
4964                                                          ToAtFinallyStmt);
4965 }
4966
4967 Stmt *ASTNodeImporter::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
4968   SourceLocation ToAtTryLoc = Importer.Import(S->getAtTryLoc());
4969   Stmt *ToAtTryStmt = Importer.Import(S->getTryBody());
4970   if (!ToAtTryStmt && S->getTryBody())
4971     return nullptr;
4972   SmallVector<Stmt *, 1> ToCatchStmts(S->getNumCatchStmts());
4973   for (unsigned CI = 0, CE = S->getNumCatchStmts(); CI != CE; ++CI) {
4974     ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI);
4975     if (Stmt *ToCatchStmt = Importer.Import(FromCatchStmt))
4976       ToCatchStmts[CI] = ToCatchStmt;
4977     else
4978       return nullptr;
4979   }
4980   Stmt *ToAtFinallyStmt = Importer.Import(S->getFinallyStmt());
4981   if (!ToAtFinallyStmt && S->getFinallyStmt())
4982     return nullptr;
4983   return ObjCAtTryStmt::Create(Importer.getToContext(),
4984                                ToAtTryLoc, ToAtTryStmt,
4985                                ToCatchStmts.begin(), ToCatchStmts.size(),
4986                                ToAtFinallyStmt);
4987 }
4988
4989 Stmt *ASTNodeImporter::VisitObjCAtSynchronizedStmt
4990   (ObjCAtSynchronizedStmt *S) {
4991   SourceLocation ToAtSynchronizedLoc =
4992     Importer.Import(S->getAtSynchronizedLoc());
4993   Expr *ToSynchExpr = Importer.Import(S->getSynchExpr());
4994   if (!ToSynchExpr && S->getSynchExpr())
4995     return nullptr;
4996   Stmt *ToSynchBody = Importer.Import(S->getSynchBody());
4997   if (!ToSynchBody && S->getSynchBody())
4998     return nullptr;
4999   return new (Importer.getToContext()) ObjCAtSynchronizedStmt(
5000     ToAtSynchronizedLoc, ToSynchExpr, ToSynchBody);
5001 }
5002
5003 Stmt *ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
5004   SourceLocation ToAtThrowLoc = Importer.Import(S->getThrowLoc());
5005   Expr *ToThrow = Importer.Import(S->getThrowExpr());
5006   if (!ToThrow && S->getThrowExpr())
5007     return nullptr;
5008   return new (Importer.getToContext()) ObjCAtThrowStmt(ToAtThrowLoc, ToThrow);
5009 }
5010
5011 Stmt *ASTNodeImporter::VisitObjCAutoreleasePoolStmt
5012   (ObjCAutoreleasePoolStmt *S) {
5013   SourceLocation ToAtLoc = Importer.Import(S->getAtLoc());
5014   Stmt *ToSubStmt = Importer.Import(S->getSubStmt());
5015   if (!ToSubStmt && S->getSubStmt())
5016     return nullptr;
5017   return new (Importer.getToContext()) ObjCAutoreleasePoolStmt(ToAtLoc,
5018                                                                ToSubStmt);
5019 }
5020
5021 //----------------------------------------------------------------------------
5022 // Import Expressions
5023 //----------------------------------------------------------------------------
5024 Expr *ASTNodeImporter::VisitExpr(Expr *E) {
5025   Importer.FromDiag(E->getLocStart(), diag::err_unsupported_ast_node)
5026     << E->getStmtClassName();
5027   return nullptr;
5028 }
5029
5030 Expr *ASTNodeImporter::VisitDeclRefExpr(DeclRefExpr *E) {
5031   ValueDecl *ToD = cast_or_null<ValueDecl>(Importer.Import(E->getDecl()));
5032   if (!ToD)
5033     return nullptr;
5034
5035   NamedDecl *FoundD = nullptr;
5036   if (E->getDecl() != E->getFoundDecl()) {
5037     FoundD = cast_or_null<NamedDecl>(Importer.Import(E->getFoundDecl()));
5038     if (!FoundD)
5039       return nullptr;
5040   }
5041   
5042   QualType T = Importer.Import(E->getType());
5043   if (T.isNull())
5044     return nullptr;
5045
5046   DeclRefExpr *DRE = DeclRefExpr::Create(Importer.getToContext(), 
5047                                          Importer.Import(E->getQualifierLoc()),
5048                                    Importer.Import(E->getTemplateKeywordLoc()),
5049                                          ToD,
5050                                         E->refersToEnclosingVariableOrCapture(),
5051                                          Importer.Import(E->getLocation()),
5052                                          T, E->getValueKind(),
5053                                          FoundD,
5054                                          /*FIXME:TemplateArgs=*/nullptr);
5055   if (E->hadMultipleCandidates())
5056     DRE->setHadMultipleCandidates(true);
5057   return DRE;
5058 }
5059
5060 Expr *ASTNodeImporter::VisitIntegerLiteral(IntegerLiteral *E) {
5061   QualType T = Importer.Import(E->getType());
5062   if (T.isNull())
5063     return nullptr;
5064
5065   return IntegerLiteral::Create(Importer.getToContext(), 
5066                                 E->getValue(), T,
5067                                 Importer.Import(E->getLocation()));
5068 }
5069
5070 Expr *ASTNodeImporter::VisitCharacterLiteral(CharacterLiteral *E) {
5071   QualType T = Importer.Import(E->getType());
5072   if (T.isNull())
5073     return nullptr;
5074
5075   return new (Importer.getToContext()) CharacterLiteral(E->getValue(),
5076                                                         E->getKind(), T,
5077                                           Importer.Import(E->getLocation()));
5078 }
5079
5080 Expr *ASTNodeImporter::VisitParenExpr(ParenExpr *E) {
5081   Expr *SubExpr = Importer.Import(E->getSubExpr());
5082   if (!SubExpr)
5083     return nullptr;
5084
5085   return new (Importer.getToContext()) 
5086                                   ParenExpr(Importer.Import(E->getLParen()),
5087                                             Importer.Import(E->getRParen()),
5088                                             SubExpr);
5089 }
5090
5091 Expr *ASTNodeImporter::VisitUnaryOperator(UnaryOperator *E) {
5092   QualType T = Importer.Import(E->getType());
5093   if (T.isNull())
5094     return nullptr;
5095
5096   Expr *SubExpr = Importer.Import(E->getSubExpr());
5097   if (!SubExpr)
5098     return nullptr;
5099
5100   return new (Importer.getToContext()) UnaryOperator(SubExpr, E->getOpcode(),
5101                                                      T, E->getValueKind(),
5102                                                      E->getObjectKind(),
5103                                          Importer.Import(E->getOperatorLoc()));                                        
5104 }
5105
5106 Expr *ASTNodeImporter::VisitUnaryExprOrTypeTraitExpr(
5107                                             UnaryExprOrTypeTraitExpr *E) {
5108   QualType ResultType = Importer.Import(E->getType());
5109   
5110   if (E->isArgumentType()) {
5111     TypeSourceInfo *TInfo = Importer.Import(E->getArgumentTypeInfo());
5112     if (!TInfo)
5113       return nullptr;
5114
5115     return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(),
5116                                            TInfo, ResultType,
5117                                            Importer.Import(E->getOperatorLoc()),
5118                                            Importer.Import(E->getRParenLoc()));
5119   }
5120   
5121   Expr *SubExpr = Importer.Import(E->getArgumentExpr());
5122   if (!SubExpr)
5123     return nullptr;
5124
5125   return new (Importer.getToContext()) UnaryExprOrTypeTraitExpr(E->getKind(),
5126                                           SubExpr, ResultType,
5127                                           Importer.Import(E->getOperatorLoc()),
5128                                           Importer.Import(E->getRParenLoc()));
5129 }
5130
5131 Expr *ASTNodeImporter::VisitBinaryOperator(BinaryOperator *E) {
5132   QualType T = Importer.Import(E->getType());
5133   if (T.isNull())
5134     return nullptr;
5135
5136   Expr *LHS = Importer.Import(E->getLHS());
5137   if (!LHS)
5138     return nullptr;
5139
5140   Expr *RHS = Importer.Import(E->getRHS());
5141   if (!RHS)
5142     return nullptr;
5143
5144   return new (Importer.getToContext()) BinaryOperator(LHS, RHS, E->getOpcode(),
5145                                                       T, E->getValueKind(),
5146                                                       E->getObjectKind(),
5147                                            Importer.Import(E->getOperatorLoc()),
5148                                                       E->isFPContractable());
5149 }
5150
5151 Expr *ASTNodeImporter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
5152   QualType T = Importer.Import(E->getType());
5153   if (T.isNull())
5154     return nullptr;
5155
5156   QualType CompLHSType = Importer.Import(E->getComputationLHSType());
5157   if (CompLHSType.isNull())
5158     return nullptr;
5159
5160   QualType CompResultType = Importer.Import(E->getComputationResultType());
5161   if (CompResultType.isNull())
5162     return nullptr;
5163
5164   Expr *LHS = Importer.Import(E->getLHS());
5165   if (!LHS)
5166     return nullptr;
5167
5168   Expr *RHS = Importer.Import(E->getRHS());
5169   if (!RHS)
5170     return nullptr;
5171
5172   return new (Importer.getToContext()) 
5173                         CompoundAssignOperator(LHS, RHS, E->getOpcode(),
5174                                                T, E->getValueKind(),
5175                                                E->getObjectKind(),
5176                                                CompLHSType, CompResultType,
5177                                            Importer.Import(E->getOperatorLoc()),
5178                                                E->isFPContractable());
5179 }
5180
5181 static bool ImportCastPath(CastExpr *E, CXXCastPath &Path) {
5182   if (E->path_empty()) return false;
5183
5184   // TODO: import cast paths
5185   return true;
5186 }
5187
5188 Expr *ASTNodeImporter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
5189   QualType T = Importer.Import(E->getType());
5190   if (T.isNull())
5191     return nullptr;
5192
5193   Expr *SubExpr = Importer.Import(E->getSubExpr());
5194   if (!SubExpr)
5195     return nullptr;
5196
5197   CXXCastPath BasePath;
5198   if (ImportCastPath(E, BasePath))
5199     return nullptr;
5200
5201   return ImplicitCastExpr::Create(Importer.getToContext(), T, E->getCastKind(),
5202                                   SubExpr, &BasePath, E->getValueKind());
5203 }
5204
5205 Expr *ASTNodeImporter::VisitCStyleCastExpr(CStyleCastExpr *E) {
5206   QualType T = Importer.Import(E->getType());
5207   if (T.isNull())
5208     return nullptr;
5209
5210   Expr *SubExpr = Importer.Import(E->getSubExpr());
5211   if (!SubExpr)
5212     return nullptr;
5213
5214   TypeSourceInfo *TInfo = Importer.Import(E->getTypeInfoAsWritten());
5215   if (!TInfo && E->getTypeInfoAsWritten())
5216     return nullptr;
5217
5218   CXXCastPath BasePath;
5219   if (ImportCastPath(E, BasePath))
5220     return nullptr;
5221
5222   return CStyleCastExpr::Create(Importer.getToContext(), T,
5223                                 E->getValueKind(), E->getCastKind(),
5224                                 SubExpr, &BasePath, TInfo,
5225                                 Importer.Import(E->getLParenLoc()),
5226                                 Importer.Import(E->getRParenLoc()));
5227 }
5228
5229 Expr *ASTNodeImporter::VisitCXXConstructExpr(CXXConstructExpr *E) {
5230   QualType T = Importer.Import(E->getType());
5231   if (T.isNull())
5232     return nullptr;
5233
5234   CXXConstructorDecl *ToCCD =
5235     dyn_cast<CXXConstructorDecl>(Importer.Import(E->getConstructor()));
5236   if (!ToCCD && E->getConstructor())
5237     return nullptr;
5238
5239   size_t NumArgs = E->getNumArgs();
5240   SmallVector<Expr *, 1> ToArgs(NumArgs);
5241   ASTImporter &_Importer = Importer;
5242   std::transform(E->arg_begin(), E->arg_end(), ToArgs.begin(),
5243     [&_Importer](Expr *AE) -> Expr * {
5244       return _Importer.Import(AE);
5245     });
5246   for (Expr *ToA : ToArgs) {
5247     if (!ToA)
5248       return nullptr;
5249   }
5250
5251   return CXXConstructExpr::Create(Importer.getToContext(), T,
5252                                   Importer.Import(E->getLocation()),
5253                                   ToCCD, E->isElidable(),
5254                                   ToArgs, E->hadMultipleCandidates(),
5255                                   E->isListInitialization(),
5256                                   E->isStdInitListInitialization(),
5257                                   E->requiresZeroInitialization(),
5258                                   E->getConstructionKind(),
5259                                   Importer.Import(E->getParenOrBraceRange()));
5260 }
5261
5262 Expr *ASTNodeImporter::VisitMemberExpr(MemberExpr *E) {
5263   QualType T = Importer.Import(E->getType());
5264   if (T.isNull())
5265     return nullptr;
5266
5267   Expr *ToBase = Importer.Import(E->getBase());
5268   if (!ToBase && E->getBase())
5269     return nullptr;
5270
5271   ValueDecl *ToMember = dyn_cast<ValueDecl>(Importer.Import(E->getMemberDecl()));
5272   if (!ToMember && E->getMemberDecl())
5273     return nullptr;
5274
5275   DeclAccessPair ToFoundDecl = DeclAccessPair::make(
5276     dyn_cast<NamedDecl>(Importer.Import(E->getFoundDecl().getDecl())),
5277     E->getFoundDecl().getAccess());
5278
5279   DeclarationNameInfo ToMemberNameInfo(
5280     Importer.Import(E->getMemberNameInfo().getName()),
5281     Importer.Import(E->getMemberNameInfo().getLoc()));
5282
5283   if (E->hasExplicitTemplateArgs()) {
5284     return nullptr; // FIXME: handle template arguments
5285   }
5286
5287   return MemberExpr::Create(Importer.getToContext(), ToBase,
5288                             E->isArrow(),
5289                             Importer.Import(E->getOperatorLoc()),
5290                             Importer.Import(E->getQualifierLoc()),
5291                             Importer.Import(E->getTemplateKeywordLoc()),
5292                             ToMember, ToFoundDecl, ToMemberNameInfo,
5293                             nullptr, T, E->getValueKind(),
5294                             E->getObjectKind());
5295 }
5296
5297 Expr *ASTNodeImporter::VisitCallExpr(CallExpr *E) {
5298   QualType T = Importer.Import(E->getType());
5299   if (T.isNull())
5300     return nullptr;
5301
5302   Expr *ToCallee = Importer.Import(E->getCallee());
5303   if (!ToCallee && E->getCallee())
5304     return nullptr;
5305
5306   unsigned NumArgs = E->getNumArgs();
5307
5308   llvm::SmallVector<Expr *, 2> ToArgs(NumArgs);
5309
5310   for (unsigned ai = 0, ae = NumArgs; ai != ae; ++ai) {
5311     Expr *FromArg = E->getArg(ai);
5312     Expr *ToArg = Importer.Import(FromArg);
5313     if (!ToArg)
5314       return nullptr;
5315     ToArgs[ai] = ToArg;
5316   }
5317
5318   Expr **ToArgs_Copied = new (Importer.getToContext()) 
5319     Expr*[NumArgs];
5320
5321   for (unsigned ai = 0, ae = NumArgs; ai != ae; ++ai)
5322     ToArgs_Copied[ai] = ToArgs[ai];
5323
5324   return new (Importer.getToContext())
5325     CallExpr(Importer.getToContext(), ToCallee, 
5326              ArrayRef<Expr*>(ToArgs_Copied, NumArgs), T, E->getValueKind(),
5327              Importer.Import(E->getRParenLoc()));
5328 }
5329
5330 ASTImporter::ASTImporter(ASTContext &ToContext, FileManager &ToFileManager,
5331                          ASTContext &FromContext, FileManager &FromFileManager,
5332                          bool MinimalImport)
5333   : ToContext(ToContext), FromContext(FromContext),
5334     ToFileManager(ToFileManager), FromFileManager(FromFileManager),
5335     Minimal(MinimalImport), LastDiagFromFrom(false)
5336 {
5337   ImportedDecls[FromContext.getTranslationUnitDecl()]
5338     = ToContext.getTranslationUnitDecl();
5339 }
5340
5341 ASTImporter::~ASTImporter() { }
5342
5343 QualType ASTImporter::Import(QualType FromT) {
5344   if (FromT.isNull())
5345     return QualType();
5346
5347   const Type *fromTy = FromT.getTypePtr();
5348   
5349   // Check whether we've already imported this type.  
5350   llvm::DenseMap<const Type *, const Type *>::iterator Pos
5351     = ImportedTypes.find(fromTy);
5352   if (Pos != ImportedTypes.end())
5353     return ToContext.getQualifiedType(Pos->second, FromT.getLocalQualifiers());
5354   
5355   // Import the type
5356   ASTNodeImporter Importer(*this);
5357   QualType ToT = Importer.Visit(fromTy);
5358   if (ToT.isNull())
5359     return ToT;
5360   
5361   // Record the imported type.
5362   ImportedTypes[fromTy] = ToT.getTypePtr();
5363   
5364   return ToContext.getQualifiedType(ToT, FromT.getLocalQualifiers());
5365 }
5366
5367 TypeSourceInfo *ASTImporter::Import(TypeSourceInfo *FromTSI) {
5368   if (!FromTSI)
5369     return FromTSI;
5370
5371   // FIXME: For now we just create a "trivial" type source info based
5372   // on the type and a single location. Implement a real version of this.
5373   QualType T = Import(FromTSI->getType());
5374   if (T.isNull())
5375     return nullptr;
5376
5377   return ToContext.getTrivialTypeSourceInfo(T, 
5378            Import(FromTSI->getTypeLoc().getLocStart()));
5379 }
5380
5381 Decl *ASTImporter::GetAlreadyImportedOrNull(Decl *FromD) {
5382   llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD);
5383   if (Pos != ImportedDecls.end()) {
5384     Decl *ToD = Pos->second;
5385     ASTNodeImporter(*this).ImportDefinitionIfNeeded(FromD, ToD);
5386     return ToD;
5387   } else {
5388     return nullptr;
5389   }
5390 }
5391
5392 Decl *ASTImporter::Import(Decl *FromD) {
5393   if (!FromD)
5394     return nullptr;
5395
5396   ASTNodeImporter Importer(*this);
5397
5398   // Check whether we've already imported this declaration.  
5399   llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD);
5400   if (Pos != ImportedDecls.end()) {
5401     Decl *ToD = Pos->second;
5402     Importer.ImportDefinitionIfNeeded(FromD, ToD);
5403     return ToD;
5404   }
5405   
5406   // Import the type
5407   Decl *ToD = Importer.Visit(FromD);
5408   if (!ToD)
5409     return nullptr;
5410
5411   // Record the imported declaration.
5412   ImportedDecls[FromD] = ToD;
5413   
5414   if (TagDecl *FromTag = dyn_cast<TagDecl>(FromD)) {
5415     // Keep track of anonymous tags that have an associated typedef.
5416     if (FromTag->getTypedefNameForAnonDecl())
5417       AnonTagsWithPendingTypedefs.push_back(FromTag);
5418   } else if (TypedefNameDecl *FromTypedef = dyn_cast<TypedefNameDecl>(FromD)) {
5419     // When we've finished transforming a typedef, see whether it was the
5420     // typedef for an anonymous tag.
5421     for (SmallVectorImpl<TagDecl *>::iterator
5422                FromTag = AnonTagsWithPendingTypedefs.begin(), 
5423             FromTagEnd = AnonTagsWithPendingTypedefs.end();
5424          FromTag != FromTagEnd; ++FromTag) {
5425       if ((*FromTag)->getTypedefNameForAnonDecl() == FromTypedef) {
5426         if (TagDecl *ToTag = cast_or_null<TagDecl>(Import(*FromTag))) {
5427           // We found the typedef for an anonymous tag; link them.
5428           ToTag->setTypedefNameForAnonDecl(cast<TypedefNameDecl>(ToD));
5429           AnonTagsWithPendingTypedefs.erase(FromTag);
5430           break;
5431         }
5432       }
5433     }
5434   }
5435   
5436   return ToD;
5437 }
5438
5439 DeclContext *ASTImporter::ImportContext(DeclContext *FromDC) {
5440   if (!FromDC)
5441     return FromDC;
5442
5443   DeclContext *ToDC = cast_or_null<DeclContext>(Import(cast<Decl>(FromDC)));
5444   if (!ToDC)
5445     return nullptr;
5446
5447   // When we're using a record/enum/Objective-C class/protocol as a context, we 
5448   // need it to have a definition.
5449   if (RecordDecl *ToRecord = dyn_cast<RecordDecl>(ToDC)) {
5450     RecordDecl *FromRecord = cast<RecordDecl>(FromDC);
5451     if (ToRecord->isCompleteDefinition()) {
5452       // Do nothing.
5453     } else if (FromRecord->isCompleteDefinition()) {
5454       ASTNodeImporter(*this).ImportDefinition(FromRecord, ToRecord,
5455                                               ASTNodeImporter::IDK_Basic);
5456     } else {
5457       CompleteDecl(ToRecord);
5458     }
5459   } else if (EnumDecl *ToEnum = dyn_cast<EnumDecl>(ToDC)) {
5460     EnumDecl *FromEnum = cast<EnumDecl>(FromDC);
5461     if (ToEnum->isCompleteDefinition()) {
5462       // Do nothing.
5463     } else if (FromEnum->isCompleteDefinition()) {
5464       ASTNodeImporter(*this).ImportDefinition(FromEnum, ToEnum,
5465                                               ASTNodeImporter::IDK_Basic);
5466     } else {
5467       CompleteDecl(ToEnum);
5468     }    
5469   } else if (ObjCInterfaceDecl *ToClass = dyn_cast<ObjCInterfaceDecl>(ToDC)) {
5470     ObjCInterfaceDecl *FromClass = cast<ObjCInterfaceDecl>(FromDC);
5471     if (ToClass->getDefinition()) {
5472       // Do nothing.
5473     } else if (ObjCInterfaceDecl *FromDef = FromClass->getDefinition()) {
5474       ASTNodeImporter(*this).ImportDefinition(FromDef, ToClass,
5475                                               ASTNodeImporter::IDK_Basic);
5476     } else {
5477       CompleteDecl(ToClass);
5478     }
5479   } else if (ObjCProtocolDecl *ToProto = dyn_cast<ObjCProtocolDecl>(ToDC)) {
5480     ObjCProtocolDecl *FromProto = cast<ObjCProtocolDecl>(FromDC);
5481     if (ToProto->getDefinition()) {
5482       // Do nothing.
5483     } else if (ObjCProtocolDecl *FromDef = FromProto->getDefinition()) {
5484       ASTNodeImporter(*this).ImportDefinition(FromDef, ToProto,
5485                                               ASTNodeImporter::IDK_Basic);
5486     } else {
5487       CompleteDecl(ToProto);
5488     }    
5489   }
5490   
5491   return ToDC;
5492 }
5493
5494 Expr *ASTImporter::Import(Expr *FromE) {
5495   if (!FromE)
5496     return nullptr;
5497
5498   return cast_or_null<Expr>(Import(cast<Stmt>(FromE)));
5499 }
5500
5501 Stmt *ASTImporter::Import(Stmt *FromS) {
5502   if (!FromS)
5503     return nullptr;
5504
5505   // Check whether we've already imported this declaration.  
5506   llvm::DenseMap<Stmt *, Stmt *>::iterator Pos = ImportedStmts.find(FromS);
5507   if (Pos != ImportedStmts.end())
5508     return Pos->second;
5509   
5510   // Import the type
5511   ASTNodeImporter Importer(*this);
5512   Stmt *ToS = Importer.Visit(FromS);
5513   if (!ToS)
5514     return nullptr;
5515
5516   // Record the imported declaration.
5517   ImportedStmts[FromS] = ToS;
5518   return ToS;
5519 }
5520
5521 NestedNameSpecifier *ASTImporter::Import(NestedNameSpecifier *FromNNS) {
5522   if (!FromNNS)
5523     return nullptr;
5524
5525   NestedNameSpecifier *prefix = Import(FromNNS->getPrefix());
5526
5527   switch (FromNNS->getKind()) {
5528   case NestedNameSpecifier::Identifier:
5529     if (IdentifierInfo *II = Import(FromNNS->getAsIdentifier())) {
5530       return NestedNameSpecifier::Create(ToContext, prefix, II);
5531     }
5532     return nullptr;
5533
5534   case NestedNameSpecifier::Namespace:
5535     if (NamespaceDecl *NS = 
5536           cast<NamespaceDecl>(Import(FromNNS->getAsNamespace()))) {
5537       return NestedNameSpecifier::Create(ToContext, prefix, NS);
5538     }
5539     return nullptr;
5540
5541   case NestedNameSpecifier::NamespaceAlias:
5542     if (NamespaceAliasDecl *NSAD = 
5543           cast<NamespaceAliasDecl>(Import(FromNNS->getAsNamespaceAlias()))) {
5544       return NestedNameSpecifier::Create(ToContext, prefix, NSAD);
5545     }
5546     return nullptr;
5547
5548   case NestedNameSpecifier::Global:
5549     return NestedNameSpecifier::GlobalSpecifier(ToContext);
5550
5551   case NestedNameSpecifier::Super:
5552     if (CXXRecordDecl *RD =
5553             cast<CXXRecordDecl>(Import(FromNNS->getAsRecordDecl()))) {
5554       return NestedNameSpecifier::SuperSpecifier(ToContext, RD);
5555     }
5556     return nullptr;
5557
5558   case NestedNameSpecifier::TypeSpec:
5559   case NestedNameSpecifier::TypeSpecWithTemplate: {
5560       QualType T = Import(QualType(FromNNS->getAsType(), 0u));
5561       if (!T.isNull()) {
5562         bool bTemplate = FromNNS->getKind() == 
5563                          NestedNameSpecifier::TypeSpecWithTemplate;
5564         return NestedNameSpecifier::Create(ToContext, prefix, 
5565                                            bTemplate, T.getTypePtr());
5566       }
5567     }
5568       return nullptr;
5569   }
5570
5571   llvm_unreachable("Invalid nested name specifier kind");
5572 }
5573
5574 NestedNameSpecifierLoc ASTImporter::Import(NestedNameSpecifierLoc FromNNS) {
5575   // FIXME: Implement!
5576   return NestedNameSpecifierLoc();
5577 }
5578
5579 TemplateName ASTImporter::Import(TemplateName From) {
5580   switch (From.getKind()) {
5581   case TemplateName::Template:
5582     if (TemplateDecl *ToTemplate
5583                 = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl())))
5584       return TemplateName(ToTemplate);
5585       
5586     return TemplateName();
5587       
5588   case TemplateName::OverloadedTemplate: {
5589     OverloadedTemplateStorage *FromStorage = From.getAsOverloadedTemplate();
5590     UnresolvedSet<2> ToTemplates;
5591     for (OverloadedTemplateStorage::iterator I = FromStorage->begin(),
5592                                              E = FromStorage->end();
5593          I != E; ++I) {
5594       if (NamedDecl *To = cast_or_null<NamedDecl>(Import(*I))) 
5595         ToTemplates.addDecl(To);
5596       else
5597         return TemplateName();
5598     }
5599     return ToContext.getOverloadedTemplateName(ToTemplates.begin(), 
5600                                                ToTemplates.end());
5601   }
5602       
5603   case TemplateName::QualifiedTemplate: {
5604     QualifiedTemplateName *QTN = From.getAsQualifiedTemplateName();
5605     NestedNameSpecifier *Qualifier = Import(QTN->getQualifier());
5606     if (!Qualifier)
5607       return TemplateName();
5608     
5609     if (TemplateDecl *ToTemplate
5610         = cast_or_null<TemplateDecl>(Import(From.getAsTemplateDecl())))
5611       return ToContext.getQualifiedTemplateName(Qualifier, 
5612                                                 QTN->hasTemplateKeyword(), 
5613                                                 ToTemplate);
5614     
5615     return TemplateName();
5616   }
5617   
5618   case TemplateName::DependentTemplate: {
5619     DependentTemplateName *DTN = From.getAsDependentTemplateName();
5620     NestedNameSpecifier *Qualifier = Import(DTN->getQualifier());
5621     if (!Qualifier)
5622       return TemplateName();
5623     
5624     if (DTN->isIdentifier()) {
5625       return ToContext.getDependentTemplateName(Qualifier, 
5626                                                 Import(DTN->getIdentifier()));
5627     }
5628     
5629     return ToContext.getDependentTemplateName(Qualifier, DTN->getOperator());
5630   }
5631
5632   case TemplateName::SubstTemplateTemplateParm: {
5633     SubstTemplateTemplateParmStorage *subst
5634       = From.getAsSubstTemplateTemplateParm();
5635     TemplateTemplateParmDecl *param
5636       = cast_or_null<TemplateTemplateParmDecl>(Import(subst->getParameter()));
5637     if (!param)
5638       return TemplateName();
5639
5640     TemplateName replacement = Import(subst->getReplacement());
5641     if (replacement.isNull()) return TemplateName();
5642     
5643     return ToContext.getSubstTemplateTemplateParm(param, replacement);
5644   }
5645       
5646   case TemplateName::SubstTemplateTemplateParmPack: {
5647     SubstTemplateTemplateParmPackStorage *SubstPack
5648       = From.getAsSubstTemplateTemplateParmPack();
5649     TemplateTemplateParmDecl *Param
5650       = cast_or_null<TemplateTemplateParmDecl>(
5651                                         Import(SubstPack->getParameterPack()));
5652     if (!Param)
5653       return TemplateName();
5654     
5655     ASTNodeImporter Importer(*this);
5656     TemplateArgument ArgPack 
5657       = Importer.ImportTemplateArgument(SubstPack->getArgumentPack());
5658     if (ArgPack.isNull())
5659       return TemplateName();
5660     
5661     return ToContext.getSubstTemplateTemplateParmPack(Param, ArgPack);
5662   }
5663   }
5664   
5665   llvm_unreachable("Invalid template name kind");
5666 }
5667
5668 SourceLocation ASTImporter::Import(SourceLocation FromLoc) {
5669   if (FromLoc.isInvalid())
5670     return SourceLocation();
5671
5672   SourceManager &FromSM = FromContext.getSourceManager();
5673   
5674   // For now, map everything down to its spelling location, so that we
5675   // don't have to import macro expansions.
5676   // FIXME: Import macro expansions!
5677   FromLoc = FromSM.getSpellingLoc(FromLoc);
5678   std::pair<FileID, unsigned> Decomposed = FromSM.getDecomposedLoc(FromLoc);
5679   SourceManager &ToSM = ToContext.getSourceManager();
5680   FileID ToFileID = Import(Decomposed.first);
5681   if (ToFileID.isInvalid())
5682     return SourceLocation();
5683   SourceLocation ret = ToSM.getLocForStartOfFile(ToFileID)
5684                            .getLocWithOffset(Decomposed.second);
5685   return ret;
5686 }
5687
5688 SourceRange ASTImporter::Import(SourceRange FromRange) {
5689   return SourceRange(Import(FromRange.getBegin()), Import(FromRange.getEnd()));
5690 }
5691
5692 FileID ASTImporter::Import(FileID FromID) {
5693   llvm::DenseMap<FileID, FileID>::iterator Pos
5694     = ImportedFileIDs.find(FromID);
5695   if (Pos != ImportedFileIDs.end())
5696     return Pos->second;
5697   
5698   SourceManager &FromSM = FromContext.getSourceManager();
5699   SourceManager &ToSM = ToContext.getSourceManager();
5700   const SrcMgr::SLocEntry &FromSLoc = FromSM.getSLocEntry(FromID);
5701   assert(FromSLoc.isFile() && "Cannot handle macro expansions yet");
5702   
5703   // Include location of this file.
5704   SourceLocation ToIncludeLoc = Import(FromSLoc.getFile().getIncludeLoc());
5705   
5706   // Map the FileID for to the "to" source manager.
5707   FileID ToID;
5708   const SrcMgr::ContentCache *Cache = FromSLoc.getFile().getContentCache();
5709   if (Cache->OrigEntry && Cache->OrigEntry->getDir()) {
5710     // FIXME: We probably want to use getVirtualFile(), so we don't hit the
5711     // disk again
5712     // FIXME: We definitely want to re-use the existing MemoryBuffer, rather
5713     // than mmap the files several times.
5714     const FileEntry *Entry = ToFileManager.getFile(Cache->OrigEntry->getName());
5715     if (!Entry)
5716       return FileID();
5717     ToID = ToSM.createFileID(Entry, ToIncludeLoc, 
5718                              FromSLoc.getFile().getFileCharacteristic());
5719   } else {
5720     // FIXME: We want to re-use the existing MemoryBuffer!
5721     const llvm::MemoryBuffer *
5722         FromBuf = Cache->getBuffer(FromContext.getDiagnostics(), FromSM);
5723     std::unique_ptr<llvm::MemoryBuffer> ToBuf
5724       = llvm::MemoryBuffer::getMemBufferCopy(FromBuf->getBuffer(),
5725                                              FromBuf->getBufferIdentifier());
5726     ToID = ToSM.createFileID(std::move(ToBuf),
5727                              FromSLoc.getFile().getFileCharacteristic());
5728   }
5729   
5730   
5731   ImportedFileIDs[FromID] = ToID;
5732   return ToID;
5733 }
5734
5735 void ASTImporter::ImportDefinition(Decl *From) {
5736   Decl *To = Import(From);
5737   if (!To)
5738     return;
5739   
5740   if (DeclContext *FromDC = cast<DeclContext>(From)) {
5741     ASTNodeImporter Importer(*this);
5742       
5743     if (RecordDecl *ToRecord = dyn_cast<RecordDecl>(To)) {
5744       if (!ToRecord->getDefinition()) {
5745         Importer.ImportDefinition(cast<RecordDecl>(FromDC), ToRecord, 
5746                                   ASTNodeImporter::IDK_Everything);
5747         return;
5748       }      
5749     }
5750
5751     if (EnumDecl *ToEnum = dyn_cast<EnumDecl>(To)) {
5752       if (!ToEnum->getDefinition()) {
5753         Importer.ImportDefinition(cast<EnumDecl>(FromDC), ToEnum, 
5754                                   ASTNodeImporter::IDK_Everything);
5755         return;
5756       }      
5757     }
5758     
5759     if (ObjCInterfaceDecl *ToIFace = dyn_cast<ObjCInterfaceDecl>(To)) {
5760       if (!ToIFace->getDefinition()) {
5761         Importer.ImportDefinition(cast<ObjCInterfaceDecl>(FromDC), ToIFace,
5762                                   ASTNodeImporter::IDK_Everything);
5763         return;
5764       }
5765     }
5766
5767     if (ObjCProtocolDecl *ToProto = dyn_cast<ObjCProtocolDecl>(To)) {
5768       if (!ToProto->getDefinition()) {
5769         Importer.ImportDefinition(cast<ObjCProtocolDecl>(FromDC), ToProto,
5770                                   ASTNodeImporter::IDK_Everything);
5771         return;
5772       }
5773     }
5774     
5775     Importer.ImportDeclContext(FromDC, true);
5776   }
5777 }
5778
5779 DeclarationName ASTImporter::Import(DeclarationName FromName) {
5780   if (!FromName)
5781     return DeclarationName();
5782
5783   switch (FromName.getNameKind()) {
5784   case DeclarationName::Identifier:
5785     return Import(FromName.getAsIdentifierInfo());
5786
5787   case DeclarationName::ObjCZeroArgSelector:
5788   case DeclarationName::ObjCOneArgSelector:
5789   case DeclarationName::ObjCMultiArgSelector:
5790     return Import(FromName.getObjCSelector());
5791
5792   case DeclarationName::CXXConstructorName: {
5793     QualType T = Import(FromName.getCXXNameType());
5794     if (T.isNull())
5795       return DeclarationName();
5796
5797     return ToContext.DeclarationNames.getCXXConstructorName(
5798                                                ToContext.getCanonicalType(T));
5799   }
5800
5801   case DeclarationName::CXXDestructorName: {
5802     QualType T = Import(FromName.getCXXNameType());
5803     if (T.isNull())
5804       return DeclarationName();
5805
5806     return ToContext.DeclarationNames.getCXXDestructorName(
5807                                                ToContext.getCanonicalType(T));
5808   }
5809
5810   case DeclarationName::CXXConversionFunctionName: {
5811     QualType T = Import(FromName.getCXXNameType());
5812     if (T.isNull())
5813       return DeclarationName();
5814
5815     return ToContext.DeclarationNames.getCXXConversionFunctionName(
5816                                                ToContext.getCanonicalType(T));
5817   }
5818
5819   case DeclarationName::CXXOperatorName:
5820     return ToContext.DeclarationNames.getCXXOperatorName(
5821                                           FromName.getCXXOverloadedOperator());
5822
5823   case DeclarationName::CXXLiteralOperatorName:
5824     return ToContext.DeclarationNames.getCXXLiteralOperatorName(
5825                                    Import(FromName.getCXXLiteralIdentifier()));
5826
5827   case DeclarationName::CXXUsingDirective:
5828     // FIXME: STATICS!
5829     return DeclarationName::getUsingDirectiveName();
5830   }
5831
5832   llvm_unreachable("Invalid DeclarationName Kind!");
5833 }
5834
5835 IdentifierInfo *ASTImporter::Import(const IdentifierInfo *FromId) {
5836   if (!FromId)
5837     return nullptr;
5838
5839   return &ToContext.Idents.get(FromId->getName());
5840 }
5841
5842 Selector ASTImporter::Import(Selector FromSel) {
5843   if (FromSel.isNull())
5844     return Selector();
5845
5846   SmallVector<IdentifierInfo *, 4> Idents;
5847   Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(0)));
5848   for (unsigned I = 1, N = FromSel.getNumArgs(); I < N; ++I)
5849     Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(I)));
5850   return ToContext.Selectors.getSelector(FromSel.getNumArgs(), Idents.data());
5851 }
5852
5853 DeclarationName ASTImporter::HandleNameConflict(DeclarationName Name,
5854                                                 DeclContext *DC,
5855                                                 unsigned IDNS,
5856                                                 NamedDecl **Decls,
5857                                                 unsigned NumDecls) {
5858   return Name;
5859 }
5860
5861 DiagnosticBuilder ASTImporter::ToDiag(SourceLocation Loc, unsigned DiagID) {
5862   if (LastDiagFromFrom)
5863     ToContext.getDiagnostics().notePriorDiagnosticFrom(
5864       FromContext.getDiagnostics());
5865   LastDiagFromFrom = false;
5866   return ToContext.getDiagnostics().Report(Loc, DiagID);
5867 }
5868
5869 DiagnosticBuilder ASTImporter::FromDiag(SourceLocation Loc, unsigned DiagID) {
5870   if (!LastDiagFromFrom)
5871     FromContext.getDiagnostics().notePriorDiagnosticFrom(
5872       ToContext.getDiagnostics());
5873   LastDiagFromFrom = true;
5874   return FromContext.getDiagnostics().Report(Loc, DiagID);
5875 }
5876
5877 void ASTImporter::CompleteDecl (Decl *D) {
5878   if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
5879     if (!ID->getDefinition())
5880       ID->startDefinition();
5881   }
5882   else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
5883     if (!PD->getDefinition())
5884       PD->startDefinition();
5885   }
5886   else if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
5887     if (!TD->getDefinition() && !TD->isBeingDefined()) {
5888       TD->startDefinition();
5889       TD->setCompleteDefinition(true);
5890     }
5891   }
5892   else {
5893     assert (0 && "CompleteDecl called on a Decl that can't be completed");
5894   }
5895 }
5896
5897 Decl *ASTImporter::Imported(Decl *From, Decl *To) {
5898   ImportedDecls[From] = To;
5899   return To;
5900 }
5901
5902 bool ASTImporter::IsStructurallyEquivalent(QualType From, QualType To,
5903                                            bool Complain) {
5904   llvm::DenseMap<const Type *, const Type *>::iterator Pos
5905    = ImportedTypes.find(From.getTypePtr());
5906   if (Pos != ImportedTypes.end() && ToContext.hasSameType(Import(From), To))
5907     return true;
5908       
5909   StructuralEquivalenceContext Ctx(FromContext, ToContext, NonEquivalentDecls,
5910                                    false, Complain);
5911   return Ctx.IsStructurallyEquivalent(From, To);
5912 }