blob: a8cb1c5bed5962aced00c0ee112d2155a3b8950f [file] [log] [blame]
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001//===--- ASTImporter.cpp - Importing ASTs from other Contexts ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the ASTImporter class which imports AST nodes from one
11// context into another context.
12//
13//===----------------------------------------------------------------------===//
14#include "clang/AST/ASTImporter.h"
15
16#include "clang/AST/ASTContext.h"
Douglas Gregor88523732010-02-10 00:15:17 +000017#include "clang/AST/ASTDiagnostic.h"
Douglas Gregor96a01b42010-02-11 00:48:18 +000018#include "clang/AST/DeclCXX.h"
Douglas Gregor1b2949d2010-02-05 17:54:41 +000019#include "clang/AST/DeclObjC.h"
Douglas Gregor089459a2010-02-08 21:09:39 +000020#include "clang/AST/DeclVisitor.h"
Douglas Gregor4800d952010-02-11 19:21:55 +000021#include "clang/AST/StmtVisitor.h"
Douglas Gregor1b2949d2010-02-05 17:54:41 +000022#include "clang/AST/TypeVisitor.h"
Douglas Gregor88523732010-02-10 00:15:17 +000023#include "clang/Basic/FileManager.h"
24#include "clang/Basic/SourceManager.h"
25#include "llvm/Support/MemoryBuffer.h"
Douglas Gregor73dc30b2010-02-15 22:01:00 +000026#include <deque>
Douglas Gregor1b2949d2010-02-05 17:54:41 +000027
28using namespace clang;
29
30namespace {
Douglas Gregor089459a2010-02-08 21:09:39 +000031 class ASTNodeImporter : public TypeVisitor<ASTNodeImporter, QualType>,
Douglas Gregor4800d952010-02-11 19:21:55 +000032 public DeclVisitor<ASTNodeImporter, Decl *>,
33 public StmtVisitor<ASTNodeImporter, Stmt *> {
Douglas Gregor1b2949d2010-02-05 17:54:41 +000034 ASTImporter &Importer;
35
36 public:
37 explicit ASTNodeImporter(ASTImporter &Importer) : Importer(Importer) { }
38
39 using TypeVisitor<ASTNodeImporter, QualType>::Visit;
Douglas Gregor9bed8792010-02-09 19:21:46 +000040 using DeclVisitor<ASTNodeImporter, Decl *>::Visit;
Douglas Gregor4800d952010-02-11 19:21:55 +000041 using StmtVisitor<ASTNodeImporter, Stmt *>::Visit;
Douglas Gregor1b2949d2010-02-05 17:54:41 +000042
43 // Importing types
Douglas Gregor89cc9d62010-02-09 22:48:33 +000044 QualType VisitType(Type *T);
Douglas Gregor1b2949d2010-02-05 17:54:41 +000045 QualType VisitBuiltinType(BuiltinType *T);
46 QualType VisitComplexType(ComplexType *T);
47 QualType VisitPointerType(PointerType *T);
48 QualType VisitBlockPointerType(BlockPointerType *T);
49 QualType VisitLValueReferenceType(LValueReferenceType *T);
50 QualType VisitRValueReferenceType(RValueReferenceType *T);
51 QualType VisitMemberPointerType(MemberPointerType *T);
52 QualType VisitConstantArrayType(ConstantArrayType *T);
53 QualType VisitIncompleteArrayType(IncompleteArrayType *T);
54 QualType VisitVariableArrayType(VariableArrayType *T);
55 // FIXME: DependentSizedArrayType
56 // FIXME: DependentSizedExtVectorType
57 QualType VisitVectorType(VectorType *T);
58 QualType VisitExtVectorType(ExtVectorType *T);
59 QualType VisitFunctionNoProtoType(FunctionNoProtoType *T);
60 QualType VisitFunctionProtoType(FunctionProtoType *T);
61 // FIXME: UnresolvedUsingType
62 QualType VisitTypedefType(TypedefType *T);
63 QualType VisitTypeOfExprType(TypeOfExprType *T);
64 // FIXME: DependentTypeOfExprType
65 QualType VisitTypeOfType(TypeOfType *T);
66 QualType VisitDecltypeType(DecltypeType *T);
67 // FIXME: DependentDecltypeType
68 QualType VisitRecordType(RecordType *T);
69 QualType VisitEnumType(EnumType *T);
Douglas Gregor1b2949d2010-02-05 17:54:41 +000070 // FIXME: TemplateTypeParmType
71 // FIXME: SubstTemplateTypeParmType
72 // FIXME: TemplateSpecializationType
Abramo Bagnara465d41b2010-05-11 21:36:43 +000073 QualType VisitElaboratedType(ElaboratedType *T);
Douglas Gregor4714c122010-03-31 17:34:00 +000074 // FIXME: DependentNameType
John McCall33500952010-06-11 00:33:02 +000075 // FIXME: DependentTemplateSpecializationType
Douglas Gregor1b2949d2010-02-05 17:54:41 +000076 QualType VisitObjCInterfaceType(ObjCInterfaceType *T);
John McCallc12c5bb2010-05-15 11:32:37 +000077 QualType VisitObjCObjectType(ObjCObjectType *T);
Douglas Gregor1b2949d2010-02-05 17:54:41 +000078 QualType VisitObjCObjectPointerType(ObjCObjectPointerType *T);
Douglas Gregor089459a2010-02-08 21:09:39 +000079
80 // Importing declarations
Douglas Gregora404ea62010-02-10 19:54:31 +000081 bool ImportDeclParts(NamedDecl *D, DeclContext *&DC,
82 DeclContext *&LexicalDC, DeclarationName &Name,
Douglas Gregor788c62d2010-02-21 18:26:36 +000083 SourceLocation &Loc);
Abramo Bagnara25777432010-08-11 22:01:17 +000084 void ImportDeclarationNameLoc(const DeclarationNameInfo &From,
85 DeclarationNameInfo& To);
Douglas Gregor083a8212010-02-21 18:24:45 +000086 void ImportDeclContext(DeclContext *FromDC);
Douglas Gregor96a01b42010-02-11 00:48:18 +000087 bool IsStructuralMatch(RecordDecl *FromRecord, RecordDecl *ToRecord);
Douglas Gregor73dc30b2010-02-15 22:01:00 +000088 bool IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToRecord);
Douglas Gregor89cc9d62010-02-09 22:48:33 +000089 Decl *VisitDecl(Decl *D);
Douglas Gregor788c62d2010-02-21 18:26:36 +000090 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor9e5d9962010-02-10 21:10:29 +000091 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor36ead2e2010-02-12 22:17:39 +000092 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor96a01b42010-02-11 00:48:18 +000093 Decl *VisitRecordDecl(RecordDecl *D);
Douglas Gregor36ead2e2010-02-12 22:17:39 +000094 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
Douglas Gregora404ea62010-02-10 19:54:31 +000095 Decl *VisitFunctionDecl(FunctionDecl *D);
Douglas Gregorc144f352010-02-21 18:29:16 +000096 Decl *VisitCXXMethodDecl(CXXMethodDecl *D);
97 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
98 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
99 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor96a01b42010-02-11 00:48:18 +0000100 Decl *VisitFieldDecl(FieldDecl *D);
Douglas Gregor2e55e3a2010-02-17 00:34:30 +0000101 Decl *VisitObjCIvarDecl(ObjCIvarDecl *D);
Douglas Gregor089459a2010-02-08 21:09:39 +0000102 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor2cd00932010-02-17 21:22:52 +0000103 Decl *VisitImplicitParamDecl(ImplicitParamDecl *D);
Douglas Gregora404ea62010-02-10 19:54:31 +0000104 Decl *VisitParmVarDecl(ParmVarDecl *D);
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +0000105 Decl *VisitObjCMethodDecl(ObjCMethodDecl *D);
Douglas Gregorb4677b62010-02-18 01:47:50 +0000106 Decl *VisitObjCCategoryDecl(ObjCCategoryDecl *D);
Douglas Gregor2e2a4002010-02-17 16:12:00 +0000107 Decl *VisitObjCProtocolDecl(ObjCProtocolDecl *D);
Douglas Gregora12d2942010-02-16 01:20:57 +0000108 Decl *VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
Douglas Gregore3261622010-02-17 18:02:10 +0000109 Decl *VisitObjCPropertyDecl(ObjCPropertyDecl *D);
Douglas Gregor2b785022010-02-18 02:12:22 +0000110 Decl *VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
Douglas Gregora2bc15b2010-02-18 02:04:09 +0000111 Decl *VisitObjCClassDecl(ObjCClassDecl *D);
112
Douglas Gregor4800d952010-02-11 19:21:55 +0000113 // Importing statements
114 Stmt *VisitStmt(Stmt *S);
115
116 // Importing expressions
117 Expr *VisitExpr(Expr *E);
Douglas Gregor44080632010-02-19 01:17:02 +0000118 Expr *VisitDeclRefExpr(DeclRefExpr *E);
Douglas Gregor4800d952010-02-11 19:21:55 +0000119 Expr *VisitIntegerLiteral(IntegerLiteral *E);
Douglas Gregorb2e400a2010-02-18 02:21:22 +0000120 Expr *VisitCharacterLiteral(CharacterLiteral *E);
Douglas Gregorf638f952010-02-19 01:07:06 +0000121 Expr *VisitParenExpr(ParenExpr *E);
122 Expr *VisitUnaryOperator(UnaryOperator *E);
Douglas Gregorbd249a52010-02-19 01:24:23 +0000123 Expr *VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E);
Douglas Gregorf638f952010-02-19 01:07:06 +0000124 Expr *VisitBinaryOperator(BinaryOperator *E);
125 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
Douglas Gregor36ead2e2010-02-12 22:17:39 +0000126 Expr *VisitImplicitCastExpr(ImplicitCastExpr *E);
Douglas Gregor008847a2010-02-19 01:32:14 +0000127 Expr *VisitCStyleCastExpr(CStyleCastExpr *E);
Douglas Gregor1b2949d2010-02-05 17:54:41 +0000128 };
129}
130
131//----------------------------------------------------------------------------
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000132// Structural Equivalence
133//----------------------------------------------------------------------------
134
135namespace {
136 struct StructuralEquivalenceContext {
137 /// \brief AST contexts for which we are checking structural equivalence.
138 ASTContext &C1, &C2;
139
140 /// \brief Diagnostic object used to emit diagnostics.
141 Diagnostic &Diags;
142
143 /// \brief The set of "tentative" equivalences between two canonical
144 /// declarations, mapping from a declaration in the first context to the
145 /// declaration in the second context that we believe to be equivalent.
146 llvm::DenseMap<Decl *, Decl *> TentativeEquivalences;
147
148 /// \brief Queue of declarations in the first context whose equivalence
149 /// with a declaration in the second context still needs to be verified.
150 std::deque<Decl *> DeclsToCheck;
151
Douglas Gregorea35d112010-02-15 23:54:17 +0000152 /// \brief Declaration (from, to) pairs that are known not to be equivalent
153 /// (which we have already complained about).
154 llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls;
155
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000156 /// \brief Whether we're being strict about the spelling of types when
157 /// unifying two types.
158 bool StrictTypeSpelling;
159
160 StructuralEquivalenceContext(ASTContext &C1, ASTContext &C2,
161 Diagnostic &Diags,
Douglas Gregorea35d112010-02-15 23:54:17 +0000162 llvm::DenseSet<std::pair<Decl *, Decl *> > &NonEquivalentDecls,
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000163 bool StrictTypeSpelling = false)
Douglas Gregorea35d112010-02-15 23:54:17 +0000164 : C1(C1), C2(C2), Diags(Diags), NonEquivalentDecls(NonEquivalentDecls),
165 StrictTypeSpelling(StrictTypeSpelling) { }
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000166
167 /// \brief Determine whether the two declarations are structurally
168 /// equivalent.
169 bool IsStructurallyEquivalent(Decl *D1, Decl *D2);
170
171 /// \brief Determine whether the two types are structurally equivalent.
172 bool IsStructurallyEquivalent(QualType T1, QualType T2);
173
174 private:
175 /// \brief Finish checking all of the structural equivalences.
176 ///
177 /// \returns true if an error occurred, false otherwise.
178 bool Finish();
179
180 public:
181 DiagnosticBuilder Diag1(SourceLocation Loc, unsigned DiagID) {
182 return Diags.Report(FullSourceLoc(Loc, C1.getSourceManager()), DiagID);
183 }
184
185 DiagnosticBuilder Diag2(SourceLocation Loc, unsigned DiagID) {
186 return Diags.Report(FullSourceLoc(Loc, C2.getSourceManager()), DiagID);
187 }
188 };
189}
190
191static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
192 QualType T1, QualType T2);
193static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
194 Decl *D1, Decl *D2);
195
196/// \brief Determine if two APInts have the same value, after zero-extending
197/// one of them (if needed!) to ensure that the bit-widths match.
198static bool IsSameValue(const llvm::APInt &I1, const llvm::APInt &I2) {
199 if (I1.getBitWidth() == I2.getBitWidth())
200 return I1 == I2;
201
202 if (I1.getBitWidth() > I2.getBitWidth())
203 return I1 == llvm::APInt(I2).zext(I1.getBitWidth());
204
205 return llvm::APInt(I1).zext(I2.getBitWidth()) == I2;
206}
207
208/// \brief Determine if two APSInts have the same value, zero- or sign-extending
209/// as needed.
210static bool IsSameValue(const llvm::APSInt &I1, const llvm::APSInt &I2) {
211 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned())
212 return I1 == I2;
213
214 // Check for a bit-width mismatch.
215 if (I1.getBitWidth() > I2.getBitWidth())
216 return IsSameValue(I1, llvm::APSInt(I2).extend(I1.getBitWidth()));
217 else if (I2.getBitWidth() > I1.getBitWidth())
218 return IsSameValue(llvm::APSInt(I1).extend(I2.getBitWidth()), I2);
219
220 // We have a signedness mismatch. Turn the signed value into an unsigned
221 // value.
222 if (I1.isSigned()) {
223 if (I1.isNegative())
224 return false;
225
226 return llvm::APSInt(I1, true) == I2;
227 }
228
229 if (I2.isNegative())
230 return false;
231
232 return I1 == llvm::APSInt(I2, true);
233}
234
235/// \brief Determine structural equivalence of two expressions.
236static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
237 Expr *E1, Expr *E2) {
238 if (!E1 || !E2)
239 return E1 == E2;
240
241 // FIXME: Actually perform a structural comparison!
242 return true;
243}
244
245/// \brief Determine whether two identifiers are equivalent.
246static bool IsStructurallyEquivalent(const IdentifierInfo *Name1,
247 const IdentifierInfo *Name2) {
248 if (!Name1 || !Name2)
249 return Name1 == Name2;
250
251 return Name1->getName() == Name2->getName();
252}
253
254/// \brief Determine whether two nested-name-specifiers are equivalent.
255static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
256 NestedNameSpecifier *NNS1,
257 NestedNameSpecifier *NNS2) {
258 // FIXME: Implement!
259 return true;
260}
261
262/// \brief Determine whether two template arguments are equivalent.
263static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
264 const TemplateArgument &Arg1,
265 const TemplateArgument &Arg2) {
266 // FIXME: Implement!
267 return true;
268}
269
270/// \brief Determine structural equivalence for the common part of array
271/// types.
272static bool IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context,
273 const ArrayType *Array1,
274 const ArrayType *Array2) {
275 if (!IsStructurallyEquivalent(Context,
276 Array1->getElementType(),
277 Array2->getElementType()))
278 return false;
279 if (Array1->getSizeModifier() != Array2->getSizeModifier())
280 return false;
281 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
282 return false;
283
284 return true;
285}
286
287/// \brief Determine structural equivalence of two types.
288static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
289 QualType T1, QualType T2) {
290 if (T1.isNull() || T2.isNull())
291 return T1.isNull() && T2.isNull();
292
293 if (!Context.StrictTypeSpelling) {
294 // We aren't being strict about token-to-token equivalence of types,
295 // so map down to the canonical type.
296 T1 = Context.C1.getCanonicalType(T1);
297 T2 = Context.C2.getCanonicalType(T2);
298 }
299
300 if (T1.getQualifiers() != T2.getQualifiers())
301 return false;
302
Douglas Gregorea35d112010-02-15 23:54:17 +0000303 Type::TypeClass TC = T1->getTypeClass();
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000304
Douglas Gregorea35d112010-02-15 23:54:17 +0000305 if (T1->getTypeClass() != T2->getTypeClass()) {
306 // Compare function types with prototypes vs. without prototypes as if
307 // both did not have prototypes.
308 if (T1->getTypeClass() == Type::FunctionProto &&
309 T2->getTypeClass() == Type::FunctionNoProto)
310 TC = Type::FunctionNoProto;
311 else if (T1->getTypeClass() == Type::FunctionNoProto &&
312 T2->getTypeClass() == Type::FunctionProto)
313 TC = Type::FunctionNoProto;
314 else
315 return false;
316 }
317
318 switch (TC) {
319 case Type::Builtin:
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000320 // FIXME: Deal with Char_S/Char_U.
321 if (cast<BuiltinType>(T1)->getKind() != cast<BuiltinType>(T2)->getKind())
322 return false;
323 break;
324
325 case Type::Complex:
326 if (!IsStructurallyEquivalent(Context,
327 cast<ComplexType>(T1)->getElementType(),
328 cast<ComplexType>(T2)->getElementType()))
329 return false;
330 break;
331
332 case Type::Pointer:
333 if (!IsStructurallyEquivalent(Context,
334 cast<PointerType>(T1)->getPointeeType(),
335 cast<PointerType>(T2)->getPointeeType()))
336 return false;
337 break;
338
339 case Type::BlockPointer:
340 if (!IsStructurallyEquivalent(Context,
341 cast<BlockPointerType>(T1)->getPointeeType(),
342 cast<BlockPointerType>(T2)->getPointeeType()))
343 return false;
344 break;
345
346 case Type::LValueReference:
347 case Type::RValueReference: {
348 const ReferenceType *Ref1 = cast<ReferenceType>(T1);
349 const ReferenceType *Ref2 = cast<ReferenceType>(T2);
350 if (Ref1->isSpelledAsLValue() != Ref2->isSpelledAsLValue())
351 return false;
352 if (Ref1->isInnerRef() != Ref2->isInnerRef())
353 return false;
354 if (!IsStructurallyEquivalent(Context,
355 Ref1->getPointeeTypeAsWritten(),
356 Ref2->getPointeeTypeAsWritten()))
357 return false;
358 break;
359 }
360
361 case Type::MemberPointer: {
362 const MemberPointerType *MemPtr1 = cast<MemberPointerType>(T1);
363 const MemberPointerType *MemPtr2 = cast<MemberPointerType>(T2);
364 if (!IsStructurallyEquivalent(Context,
365 MemPtr1->getPointeeType(),
366 MemPtr2->getPointeeType()))
367 return false;
368 if (!IsStructurallyEquivalent(Context,
369 QualType(MemPtr1->getClass(), 0),
370 QualType(MemPtr2->getClass(), 0)))
371 return false;
372 break;
373 }
374
375 case Type::ConstantArray: {
376 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1);
377 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2);
378 if (!IsSameValue(Array1->getSize(), Array2->getSize()))
379 return false;
380
381 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
382 return false;
383 break;
384 }
385
386 case Type::IncompleteArray:
387 if (!IsArrayStructurallyEquivalent(Context,
388 cast<ArrayType>(T1),
389 cast<ArrayType>(T2)))
390 return false;
391 break;
392
393 case Type::VariableArray: {
394 const VariableArrayType *Array1 = cast<VariableArrayType>(T1);
395 const VariableArrayType *Array2 = cast<VariableArrayType>(T2);
396 if (!IsStructurallyEquivalent(Context,
397 Array1->getSizeExpr(), Array2->getSizeExpr()))
398 return false;
399
400 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
401 return false;
402
403 break;
404 }
405
406 case Type::DependentSizedArray: {
407 const DependentSizedArrayType *Array1 = cast<DependentSizedArrayType>(T1);
408 const DependentSizedArrayType *Array2 = cast<DependentSizedArrayType>(T2);
409 if (!IsStructurallyEquivalent(Context,
410 Array1->getSizeExpr(), Array2->getSizeExpr()))
411 return false;
412
413 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
414 return false;
415
416 break;
417 }
418
419 case Type::DependentSizedExtVector: {
420 const DependentSizedExtVectorType *Vec1
421 = cast<DependentSizedExtVectorType>(T1);
422 const DependentSizedExtVectorType *Vec2
423 = cast<DependentSizedExtVectorType>(T2);
424 if (!IsStructurallyEquivalent(Context,
425 Vec1->getSizeExpr(), Vec2->getSizeExpr()))
426 return false;
427 if (!IsStructurallyEquivalent(Context,
428 Vec1->getElementType(),
429 Vec2->getElementType()))
430 return false;
431 break;
432 }
433
434 case Type::Vector:
435 case Type::ExtVector: {
436 const VectorType *Vec1 = cast<VectorType>(T1);
437 const VectorType *Vec2 = cast<VectorType>(T2);
438 if (!IsStructurallyEquivalent(Context,
439 Vec1->getElementType(),
440 Vec2->getElementType()))
441 return false;
442 if (Vec1->getNumElements() != Vec2->getNumElements())
443 return false;
Chris Lattner788b0fd2010-06-23 06:00:24 +0000444 if (Vec1->getAltiVecSpecific() != Vec2->getAltiVecSpecific())
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000445 return false;
Douglas Gregor0e12b442010-02-19 01:36:36 +0000446 break;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000447 }
448
449 case Type::FunctionProto: {
450 const FunctionProtoType *Proto1 = cast<FunctionProtoType>(T1);
451 const FunctionProtoType *Proto2 = cast<FunctionProtoType>(T2);
452 if (Proto1->getNumArgs() != Proto2->getNumArgs())
453 return false;
454 for (unsigned I = 0, N = Proto1->getNumArgs(); I != N; ++I) {
455 if (!IsStructurallyEquivalent(Context,
456 Proto1->getArgType(I),
457 Proto2->getArgType(I)))
458 return false;
459 }
460 if (Proto1->isVariadic() != Proto2->isVariadic())
461 return false;
462 if (Proto1->hasExceptionSpec() != Proto2->hasExceptionSpec())
463 return false;
464 if (Proto1->hasAnyExceptionSpec() != Proto2->hasAnyExceptionSpec())
465 return false;
466 if (Proto1->getNumExceptions() != Proto2->getNumExceptions())
467 return false;
468 for (unsigned I = 0, N = Proto1->getNumExceptions(); I != N; ++I) {
469 if (!IsStructurallyEquivalent(Context,
470 Proto1->getExceptionType(I),
471 Proto2->getExceptionType(I)))
472 return false;
473 }
474 if (Proto1->getTypeQuals() != Proto2->getTypeQuals())
475 return false;
476
477 // Fall through to check the bits common with FunctionNoProtoType.
478 }
479
480 case Type::FunctionNoProto: {
481 const FunctionType *Function1 = cast<FunctionType>(T1);
482 const FunctionType *Function2 = cast<FunctionType>(T2);
483 if (!IsStructurallyEquivalent(Context,
484 Function1->getResultType(),
485 Function2->getResultType()))
486 return false;
Rafael Espindola264ba482010-03-30 20:24:48 +0000487 if (Function1->getExtInfo() != Function2->getExtInfo())
488 return false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000489 break;
490 }
491
492 case Type::UnresolvedUsing:
493 if (!IsStructurallyEquivalent(Context,
494 cast<UnresolvedUsingType>(T1)->getDecl(),
495 cast<UnresolvedUsingType>(T2)->getDecl()))
496 return false;
497
498 break;
499
500 case Type::Typedef:
501 if (!IsStructurallyEquivalent(Context,
502 cast<TypedefType>(T1)->getDecl(),
503 cast<TypedefType>(T2)->getDecl()))
504 return false;
505 break;
506
507 case Type::TypeOfExpr:
508 if (!IsStructurallyEquivalent(Context,
509 cast<TypeOfExprType>(T1)->getUnderlyingExpr(),
510 cast<TypeOfExprType>(T2)->getUnderlyingExpr()))
511 return false;
512 break;
513
514 case Type::TypeOf:
515 if (!IsStructurallyEquivalent(Context,
516 cast<TypeOfType>(T1)->getUnderlyingType(),
517 cast<TypeOfType>(T2)->getUnderlyingType()))
518 return false;
519 break;
520
521 case Type::Decltype:
522 if (!IsStructurallyEquivalent(Context,
523 cast<DecltypeType>(T1)->getUnderlyingExpr(),
524 cast<DecltypeType>(T2)->getUnderlyingExpr()))
525 return false;
526 break;
527
528 case Type::Record:
529 case Type::Enum:
530 if (!IsStructurallyEquivalent(Context,
531 cast<TagType>(T1)->getDecl(),
532 cast<TagType>(T2)->getDecl()))
533 return false;
534 break;
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000535
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000536 case Type::TemplateTypeParm: {
537 const TemplateTypeParmType *Parm1 = cast<TemplateTypeParmType>(T1);
538 const TemplateTypeParmType *Parm2 = cast<TemplateTypeParmType>(T2);
539 if (Parm1->getDepth() != Parm2->getDepth())
540 return false;
541 if (Parm1->getIndex() != Parm2->getIndex())
542 return false;
543 if (Parm1->isParameterPack() != Parm2->isParameterPack())
544 return false;
545
546 // Names of template type parameters are never significant.
547 break;
548 }
549
550 case Type::SubstTemplateTypeParm: {
551 const SubstTemplateTypeParmType *Subst1
552 = cast<SubstTemplateTypeParmType>(T1);
553 const SubstTemplateTypeParmType *Subst2
554 = cast<SubstTemplateTypeParmType>(T2);
555 if (!IsStructurallyEquivalent(Context,
556 QualType(Subst1->getReplacedParameter(), 0),
557 QualType(Subst2->getReplacedParameter(), 0)))
558 return false;
559 if (!IsStructurallyEquivalent(Context,
560 Subst1->getReplacementType(),
561 Subst2->getReplacementType()))
562 return false;
563 break;
564 }
565
566 case Type::TemplateSpecialization: {
567 const TemplateSpecializationType *Spec1
568 = cast<TemplateSpecializationType>(T1);
569 const TemplateSpecializationType *Spec2
570 = cast<TemplateSpecializationType>(T2);
571 if (!IsStructurallyEquivalent(Context,
572 Spec1->getTemplateName(),
573 Spec2->getTemplateName()))
574 return false;
575 if (Spec1->getNumArgs() != Spec2->getNumArgs())
576 return false;
577 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
578 if (!IsStructurallyEquivalent(Context,
579 Spec1->getArg(I), Spec2->getArg(I)))
580 return false;
581 }
582 break;
583 }
584
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000585 case Type::Elaborated: {
586 const ElaboratedType *Elab1 = cast<ElaboratedType>(T1);
587 const ElaboratedType *Elab2 = cast<ElaboratedType>(T2);
588 // CHECKME: what if a keyword is ETK_None or ETK_typename ?
589 if (Elab1->getKeyword() != Elab2->getKeyword())
590 return false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000591 if (!IsStructurallyEquivalent(Context,
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000592 Elab1->getQualifier(),
593 Elab2->getQualifier()))
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000594 return false;
595 if (!IsStructurallyEquivalent(Context,
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000596 Elab1->getNamedType(),
597 Elab2->getNamedType()))
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000598 return false;
599 break;
600 }
601
John McCall3cb0ebd2010-03-10 03:28:59 +0000602 case Type::InjectedClassName: {
603 const InjectedClassNameType *Inj1 = cast<InjectedClassNameType>(T1);
604 const InjectedClassNameType *Inj2 = cast<InjectedClassNameType>(T2);
605 if (!IsStructurallyEquivalent(Context,
John McCall31f17ec2010-04-27 00:57:59 +0000606 Inj1->getInjectedSpecializationType(),
607 Inj2->getInjectedSpecializationType()))
John McCall3cb0ebd2010-03-10 03:28:59 +0000608 return false;
609 break;
610 }
611
Douglas Gregor4714c122010-03-31 17:34:00 +0000612 case Type::DependentName: {
613 const DependentNameType *Typename1 = cast<DependentNameType>(T1);
614 const DependentNameType *Typename2 = cast<DependentNameType>(T2);
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000615 if (!IsStructurallyEquivalent(Context,
616 Typename1->getQualifier(),
617 Typename2->getQualifier()))
618 return false;
619 if (!IsStructurallyEquivalent(Typename1->getIdentifier(),
620 Typename2->getIdentifier()))
621 return false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000622
623 break;
624 }
625
John McCall33500952010-06-11 00:33:02 +0000626 case Type::DependentTemplateSpecialization: {
627 const DependentTemplateSpecializationType *Spec1 =
628 cast<DependentTemplateSpecializationType>(T1);
629 const DependentTemplateSpecializationType *Spec2 =
630 cast<DependentTemplateSpecializationType>(T2);
631 if (!IsStructurallyEquivalent(Context,
632 Spec1->getQualifier(),
633 Spec2->getQualifier()))
634 return false;
635 if (!IsStructurallyEquivalent(Spec1->getIdentifier(),
636 Spec2->getIdentifier()))
637 return false;
638 if (Spec1->getNumArgs() != Spec2->getNumArgs())
639 return false;
640 for (unsigned I = 0, N = Spec1->getNumArgs(); I != N; ++I) {
641 if (!IsStructurallyEquivalent(Context,
642 Spec1->getArg(I), Spec2->getArg(I)))
643 return false;
644 }
645 break;
646 }
647
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000648 case Type::ObjCInterface: {
649 const ObjCInterfaceType *Iface1 = cast<ObjCInterfaceType>(T1);
650 const ObjCInterfaceType *Iface2 = cast<ObjCInterfaceType>(T2);
651 if (!IsStructurallyEquivalent(Context,
652 Iface1->getDecl(), Iface2->getDecl()))
653 return false;
John McCallc12c5bb2010-05-15 11:32:37 +0000654 break;
655 }
656
657 case Type::ObjCObject: {
658 const ObjCObjectType *Obj1 = cast<ObjCObjectType>(T1);
659 const ObjCObjectType *Obj2 = cast<ObjCObjectType>(T2);
660 if (!IsStructurallyEquivalent(Context,
661 Obj1->getBaseType(),
662 Obj2->getBaseType()))
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000663 return false;
John McCallc12c5bb2010-05-15 11:32:37 +0000664 if (Obj1->getNumProtocols() != Obj2->getNumProtocols())
665 return false;
666 for (unsigned I = 0, N = Obj1->getNumProtocols(); I != N; ++I) {
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000667 if (!IsStructurallyEquivalent(Context,
John McCallc12c5bb2010-05-15 11:32:37 +0000668 Obj1->getProtocol(I),
669 Obj2->getProtocol(I)))
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000670 return false;
671 }
672 break;
673 }
674
675 case Type::ObjCObjectPointer: {
676 const ObjCObjectPointerType *Ptr1 = cast<ObjCObjectPointerType>(T1);
677 const ObjCObjectPointerType *Ptr2 = cast<ObjCObjectPointerType>(T2);
678 if (!IsStructurallyEquivalent(Context,
679 Ptr1->getPointeeType(),
680 Ptr2->getPointeeType()))
681 return false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000682 break;
683 }
684
685 } // end switch
686
687 return true;
688}
689
690/// \brief Determine structural equivalence of two records.
691static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
692 RecordDecl *D1, RecordDecl *D2) {
693 if (D1->isUnion() != D2->isUnion()) {
694 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
695 << Context.C2.getTypeDeclType(D2);
696 Context.Diag1(D1->getLocation(), diag::note_odr_tag_kind_here)
697 << D1->getDeclName() << (unsigned)D1->getTagKind();
698 return false;
699 }
700
Douglas Gregorea35d112010-02-15 23:54:17 +0000701 // Compare the definitions of these two records. If either or both are
702 // incomplete, we assume that they are equivalent.
703 D1 = D1->getDefinition();
704 D2 = D2->getDefinition();
705 if (!D1 || !D2)
706 return true;
707
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000708 if (CXXRecordDecl *D1CXX = dyn_cast<CXXRecordDecl>(D1)) {
709 if (CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(D2)) {
710 if (D1CXX->getNumBases() != D2CXX->getNumBases()) {
711 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
712 << Context.C2.getTypeDeclType(D2);
713 Context.Diag2(D2->getLocation(), diag::note_odr_number_of_bases)
714 << D2CXX->getNumBases();
715 Context.Diag1(D1->getLocation(), diag::note_odr_number_of_bases)
716 << D1CXX->getNumBases();
717 return false;
718 }
719
720 // Check the base classes.
721 for (CXXRecordDecl::base_class_iterator Base1 = D1CXX->bases_begin(),
722 BaseEnd1 = D1CXX->bases_end(),
723 Base2 = D2CXX->bases_begin();
724 Base1 != BaseEnd1;
725 ++Base1, ++Base2) {
726 if (!IsStructurallyEquivalent(Context,
727 Base1->getType(), Base2->getType())) {
728 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
729 << Context.C2.getTypeDeclType(D2);
730 Context.Diag2(Base2->getSourceRange().getBegin(), diag::note_odr_base)
731 << Base2->getType()
732 << Base2->getSourceRange();
733 Context.Diag1(Base1->getSourceRange().getBegin(), diag::note_odr_base)
734 << Base1->getType()
735 << Base1->getSourceRange();
736 return false;
737 }
738
739 // Check virtual vs. non-virtual inheritance mismatch.
740 if (Base1->isVirtual() != Base2->isVirtual()) {
741 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
742 << Context.C2.getTypeDeclType(D2);
743 Context.Diag2(Base2->getSourceRange().getBegin(),
744 diag::note_odr_virtual_base)
745 << Base2->isVirtual() << Base2->getSourceRange();
746 Context.Diag1(Base1->getSourceRange().getBegin(), diag::note_odr_base)
747 << Base1->isVirtual()
748 << Base1->getSourceRange();
749 return false;
750 }
751 }
752 } else if (D1CXX->getNumBases() > 0) {
753 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
754 << Context.C2.getTypeDeclType(D2);
755 const CXXBaseSpecifier *Base1 = D1CXX->bases_begin();
756 Context.Diag1(Base1->getSourceRange().getBegin(), diag::note_odr_base)
757 << Base1->getType()
758 << Base1->getSourceRange();
759 Context.Diag2(D2->getLocation(), diag::note_odr_missing_base);
760 return false;
761 }
762 }
763
764 // Check the fields for consistency.
765 CXXRecordDecl::field_iterator Field2 = D2->field_begin(),
766 Field2End = D2->field_end();
767 for (CXXRecordDecl::field_iterator Field1 = D1->field_begin(),
768 Field1End = D1->field_end();
769 Field1 != Field1End;
770 ++Field1, ++Field2) {
771 if (Field2 == Field2End) {
772 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
773 << Context.C2.getTypeDeclType(D2);
774 Context.Diag1(Field1->getLocation(), diag::note_odr_field)
775 << Field1->getDeclName() << Field1->getType();
776 Context.Diag2(D2->getLocation(), diag::note_odr_missing_field);
777 return false;
778 }
779
780 if (!IsStructurallyEquivalent(Context,
781 Field1->getType(), Field2->getType())) {
782 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
783 << Context.C2.getTypeDeclType(D2);
784 Context.Diag2(Field2->getLocation(), diag::note_odr_field)
785 << Field2->getDeclName() << Field2->getType();
786 Context.Diag1(Field1->getLocation(), diag::note_odr_field)
787 << Field1->getDeclName() << Field1->getType();
788 return false;
789 }
790
791 if (Field1->isBitField() != Field2->isBitField()) {
792 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
793 << Context.C2.getTypeDeclType(D2);
794 if (Field1->isBitField()) {
795 llvm::APSInt Bits;
796 Field1->getBitWidth()->isIntegerConstantExpr(Bits, Context.C1);
797 Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
798 << Field1->getDeclName() << Field1->getType()
799 << Bits.toString(10, false);
800 Context.Diag2(Field2->getLocation(), diag::note_odr_not_bit_field)
801 << Field2->getDeclName();
802 } else {
803 llvm::APSInt Bits;
804 Field2->getBitWidth()->isIntegerConstantExpr(Bits, Context.C2);
805 Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
806 << Field2->getDeclName() << Field2->getType()
807 << Bits.toString(10, false);
808 Context.Diag1(Field1->getLocation(),
809 diag::note_odr_not_bit_field)
810 << Field1->getDeclName();
811 }
812 return false;
813 }
814
815 if (Field1->isBitField()) {
816 // Make sure that the bit-fields are the same length.
817 llvm::APSInt Bits1, Bits2;
818 if (!Field1->getBitWidth()->isIntegerConstantExpr(Bits1, Context.C1))
819 return false;
820 if (!Field2->getBitWidth()->isIntegerConstantExpr(Bits2, Context.C2))
821 return false;
822
823 if (!IsSameValue(Bits1, Bits2)) {
824 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
825 << Context.C2.getTypeDeclType(D2);
826 Context.Diag2(Field2->getLocation(), diag::note_odr_bit_field)
827 << Field2->getDeclName() << Field2->getType()
828 << Bits2.toString(10, false);
829 Context.Diag1(Field1->getLocation(), diag::note_odr_bit_field)
830 << Field1->getDeclName() << Field1->getType()
831 << Bits1.toString(10, false);
832 return false;
833 }
834 }
835 }
836
837 if (Field2 != Field2End) {
838 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
839 << Context.C2.getTypeDeclType(D2);
840 Context.Diag2(Field2->getLocation(), diag::note_odr_field)
841 << Field2->getDeclName() << Field2->getType();
842 Context.Diag1(D1->getLocation(), diag::note_odr_missing_field);
843 return false;
844 }
845
846 return true;
847}
848
849/// \brief Determine structural equivalence of two enums.
850static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
851 EnumDecl *D1, EnumDecl *D2) {
852 EnumDecl::enumerator_iterator EC2 = D2->enumerator_begin(),
853 EC2End = D2->enumerator_end();
854 for (EnumDecl::enumerator_iterator EC1 = D1->enumerator_begin(),
855 EC1End = D1->enumerator_end();
856 EC1 != EC1End; ++EC1, ++EC2) {
857 if (EC2 == EC2End) {
858 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
859 << Context.C2.getTypeDeclType(D2);
860 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
861 << EC1->getDeclName()
862 << EC1->getInitVal().toString(10);
863 Context.Diag2(D2->getLocation(), diag::note_odr_missing_enumerator);
864 return false;
865 }
866
867 llvm::APSInt Val1 = EC1->getInitVal();
868 llvm::APSInt Val2 = EC2->getInitVal();
869 if (!IsSameValue(Val1, Val2) ||
870 !IsStructurallyEquivalent(EC1->getIdentifier(), EC2->getIdentifier())) {
871 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
872 << Context.C2.getTypeDeclType(D2);
873 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
874 << EC2->getDeclName()
875 << EC2->getInitVal().toString(10);
876 Context.Diag1(EC1->getLocation(), diag::note_odr_enumerator)
877 << EC1->getDeclName()
878 << EC1->getInitVal().toString(10);
879 return false;
880 }
881 }
882
883 if (EC2 != EC2End) {
884 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
885 << Context.C2.getTypeDeclType(D2);
886 Context.Diag2(EC2->getLocation(), diag::note_odr_enumerator)
887 << EC2->getDeclName()
888 << EC2->getInitVal().toString(10);
889 Context.Diag1(D1->getLocation(), diag::note_odr_missing_enumerator);
890 return false;
891 }
892
893 return true;
894}
895
896/// \brief Determine structural equivalence of two declarations.
897static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context,
898 Decl *D1, Decl *D2) {
899 // FIXME: Check for known structural equivalences via a callback of some sort.
900
Douglas Gregorea35d112010-02-15 23:54:17 +0000901 // Check whether we already know that these two declarations are not
902 // structurally equivalent.
903 if (Context.NonEquivalentDecls.count(std::make_pair(D1->getCanonicalDecl(),
904 D2->getCanonicalDecl())))
905 return false;
906
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000907 // Determine whether we've already produced a tentative equivalence for D1.
908 Decl *&EquivToD1 = Context.TentativeEquivalences[D1->getCanonicalDecl()];
909 if (EquivToD1)
910 return EquivToD1 == D2->getCanonicalDecl();
911
912 // Produce a tentative equivalence D1 <-> D2, which will be checked later.
913 EquivToD1 = D2->getCanonicalDecl();
914 Context.DeclsToCheck.push_back(D1->getCanonicalDecl());
915 return true;
916}
917
918bool StructuralEquivalenceContext::IsStructurallyEquivalent(Decl *D1,
919 Decl *D2) {
920 if (!::IsStructurallyEquivalent(*this, D1, D2))
921 return false;
922
923 return !Finish();
924}
925
926bool StructuralEquivalenceContext::IsStructurallyEquivalent(QualType T1,
927 QualType T2) {
928 if (!::IsStructurallyEquivalent(*this, T1, T2))
929 return false;
930
931 return !Finish();
932}
933
934bool StructuralEquivalenceContext::Finish() {
935 while (!DeclsToCheck.empty()) {
936 // Check the next declaration.
937 Decl *D1 = DeclsToCheck.front();
938 DeclsToCheck.pop_front();
939
940 Decl *D2 = TentativeEquivalences[D1];
941 assert(D2 && "Unrecorded tentative equivalence?");
942
Douglas Gregorea35d112010-02-15 23:54:17 +0000943 bool Equivalent = true;
944
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000945 // FIXME: Switch on all declaration kinds. For now, we're just going to
946 // check the obvious ones.
947 if (RecordDecl *Record1 = dyn_cast<RecordDecl>(D1)) {
948 if (RecordDecl *Record2 = dyn_cast<RecordDecl>(D2)) {
949 // Check for equivalent structure names.
950 IdentifierInfo *Name1 = Record1->getIdentifier();
951 if (!Name1 && Record1->getTypedefForAnonDecl())
952 Name1 = Record1->getTypedefForAnonDecl()->getIdentifier();
953 IdentifierInfo *Name2 = Record2->getIdentifier();
954 if (!Name2 && Record2->getTypedefForAnonDecl())
955 Name2 = Record2->getTypedefForAnonDecl()->getIdentifier();
Douglas Gregorea35d112010-02-15 23:54:17 +0000956 if (!::IsStructurallyEquivalent(Name1, Name2) ||
957 !::IsStructurallyEquivalent(*this, Record1, Record2))
958 Equivalent = false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000959 } else {
960 // Record/non-record mismatch.
Douglas Gregorea35d112010-02-15 23:54:17 +0000961 Equivalent = false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000962 }
Douglas Gregorea35d112010-02-15 23:54:17 +0000963 } else if (EnumDecl *Enum1 = dyn_cast<EnumDecl>(D1)) {
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000964 if (EnumDecl *Enum2 = dyn_cast<EnumDecl>(D2)) {
965 // Check for equivalent enum names.
966 IdentifierInfo *Name1 = Enum1->getIdentifier();
967 if (!Name1 && Enum1->getTypedefForAnonDecl())
968 Name1 = Enum1->getTypedefForAnonDecl()->getIdentifier();
969 IdentifierInfo *Name2 = Enum2->getIdentifier();
970 if (!Name2 && Enum2->getTypedefForAnonDecl())
971 Name2 = Enum2->getTypedefForAnonDecl()->getIdentifier();
Douglas Gregorea35d112010-02-15 23:54:17 +0000972 if (!::IsStructurallyEquivalent(Name1, Name2) ||
973 !::IsStructurallyEquivalent(*this, Enum1, Enum2))
974 Equivalent = false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000975 } else {
976 // Enum/non-enum mismatch
Douglas Gregorea35d112010-02-15 23:54:17 +0000977 Equivalent = false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000978 }
Douglas Gregorea35d112010-02-15 23:54:17 +0000979 } else if (TypedefDecl *Typedef1 = dyn_cast<TypedefDecl>(D1)) {
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000980 if (TypedefDecl *Typedef2 = dyn_cast<TypedefDecl>(D2)) {
981 if (!::IsStructurallyEquivalent(Typedef1->getIdentifier(),
Douglas Gregorea35d112010-02-15 23:54:17 +0000982 Typedef2->getIdentifier()) ||
983 !::IsStructurallyEquivalent(*this,
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000984 Typedef1->getUnderlyingType(),
985 Typedef2->getUnderlyingType()))
Douglas Gregorea35d112010-02-15 23:54:17 +0000986 Equivalent = false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000987 } else {
988 // Typedef/non-typedef mismatch.
Douglas Gregorea35d112010-02-15 23:54:17 +0000989 Equivalent = false;
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000990 }
Douglas Gregor73dc30b2010-02-15 22:01:00 +0000991 }
Douglas Gregorea35d112010-02-15 23:54:17 +0000992
993 if (!Equivalent) {
994 // Note that these two declarations are not equivalent (and we already
995 // know about it).
996 NonEquivalentDecls.insert(std::make_pair(D1->getCanonicalDecl(),
997 D2->getCanonicalDecl()));
998 return true;
999 }
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001000 // FIXME: Check other declaration kinds!
1001 }
1002
1003 return false;
1004}
1005
1006//----------------------------------------------------------------------------
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001007// Import Types
1008//----------------------------------------------------------------------------
1009
Douglas Gregor89cc9d62010-02-09 22:48:33 +00001010QualType ASTNodeImporter::VisitType(Type *T) {
1011 Importer.FromDiag(SourceLocation(), diag::err_unsupported_ast_node)
1012 << T->getTypeClassName();
1013 return QualType();
1014}
1015
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001016QualType ASTNodeImporter::VisitBuiltinType(BuiltinType *T) {
1017 switch (T->getKind()) {
1018 case BuiltinType::Void: return Importer.getToContext().VoidTy;
1019 case BuiltinType::Bool: return Importer.getToContext().BoolTy;
1020
1021 case BuiltinType::Char_U:
1022 // The context we're importing from has an unsigned 'char'. If we're
1023 // importing into a context with a signed 'char', translate to
1024 // 'unsigned char' instead.
1025 if (Importer.getToContext().getLangOptions().CharIsSigned)
1026 return Importer.getToContext().UnsignedCharTy;
1027
1028 return Importer.getToContext().CharTy;
1029
1030 case BuiltinType::UChar: return Importer.getToContext().UnsignedCharTy;
1031
1032 case BuiltinType::Char16:
1033 // FIXME: Make sure that the "to" context supports C++!
1034 return Importer.getToContext().Char16Ty;
1035
1036 case BuiltinType::Char32:
1037 // FIXME: Make sure that the "to" context supports C++!
1038 return Importer.getToContext().Char32Ty;
1039
1040 case BuiltinType::UShort: return Importer.getToContext().UnsignedShortTy;
1041 case BuiltinType::UInt: return Importer.getToContext().UnsignedIntTy;
1042 case BuiltinType::ULong: return Importer.getToContext().UnsignedLongTy;
1043 case BuiltinType::ULongLong:
1044 return Importer.getToContext().UnsignedLongLongTy;
1045 case BuiltinType::UInt128: return Importer.getToContext().UnsignedInt128Ty;
1046
1047 case BuiltinType::Char_S:
1048 // The context we're importing from has an unsigned 'char'. If we're
1049 // importing into a context with a signed 'char', translate to
1050 // 'unsigned char' instead.
1051 if (!Importer.getToContext().getLangOptions().CharIsSigned)
1052 return Importer.getToContext().SignedCharTy;
1053
1054 return Importer.getToContext().CharTy;
1055
1056 case BuiltinType::SChar: return Importer.getToContext().SignedCharTy;
1057 case BuiltinType::WChar:
1058 // FIXME: If not in C++, shall we translate to the C equivalent of
1059 // wchar_t?
1060 return Importer.getToContext().WCharTy;
1061
1062 case BuiltinType::Short : return Importer.getToContext().ShortTy;
1063 case BuiltinType::Int : return Importer.getToContext().IntTy;
1064 case BuiltinType::Long : return Importer.getToContext().LongTy;
1065 case BuiltinType::LongLong : return Importer.getToContext().LongLongTy;
1066 case BuiltinType::Int128 : return Importer.getToContext().Int128Ty;
1067 case BuiltinType::Float: return Importer.getToContext().FloatTy;
1068 case BuiltinType::Double: return Importer.getToContext().DoubleTy;
1069 case BuiltinType::LongDouble: return Importer.getToContext().LongDoubleTy;
1070
1071 case BuiltinType::NullPtr:
1072 // FIXME: Make sure that the "to" context supports C++0x!
1073 return Importer.getToContext().NullPtrTy;
1074
1075 case BuiltinType::Overload: return Importer.getToContext().OverloadTy;
1076 case BuiltinType::Dependent: return Importer.getToContext().DependentTy;
1077 case BuiltinType::UndeducedAuto:
1078 // FIXME: Make sure that the "to" context supports C++0x!
1079 return Importer.getToContext().UndeducedAutoTy;
1080
1081 case BuiltinType::ObjCId:
1082 // FIXME: Make sure that the "to" context supports Objective-C!
1083 return Importer.getToContext().ObjCBuiltinIdTy;
1084
1085 case BuiltinType::ObjCClass:
1086 return Importer.getToContext().ObjCBuiltinClassTy;
1087
1088 case BuiltinType::ObjCSel:
1089 return Importer.getToContext().ObjCBuiltinSelTy;
1090 }
1091
1092 return QualType();
1093}
1094
1095QualType ASTNodeImporter::VisitComplexType(ComplexType *T) {
1096 QualType ToElementType = Importer.Import(T->getElementType());
1097 if (ToElementType.isNull())
1098 return QualType();
1099
1100 return Importer.getToContext().getComplexType(ToElementType);
1101}
1102
1103QualType ASTNodeImporter::VisitPointerType(PointerType *T) {
1104 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1105 if (ToPointeeType.isNull())
1106 return QualType();
1107
1108 return Importer.getToContext().getPointerType(ToPointeeType);
1109}
1110
1111QualType ASTNodeImporter::VisitBlockPointerType(BlockPointerType *T) {
1112 // FIXME: Check for blocks support in "to" context.
1113 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1114 if (ToPointeeType.isNull())
1115 return QualType();
1116
1117 return Importer.getToContext().getBlockPointerType(ToPointeeType);
1118}
1119
1120QualType ASTNodeImporter::VisitLValueReferenceType(LValueReferenceType *T) {
1121 // FIXME: Check for C++ support in "to" context.
1122 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1123 if (ToPointeeType.isNull())
1124 return QualType();
1125
1126 return Importer.getToContext().getLValueReferenceType(ToPointeeType);
1127}
1128
1129QualType ASTNodeImporter::VisitRValueReferenceType(RValueReferenceType *T) {
1130 // FIXME: Check for C++0x support in "to" context.
1131 QualType ToPointeeType = Importer.Import(T->getPointeeTypeAsWritten());
1132 if (ToPointeeType.isNull())
1133 return QualType();
1134
1135 return Importer.getToContext().getRValueReferenceType(ToPointeeType);
1136}
1137
1138QualType ASTNodeImporter::VisitMemberPointerType(MemberPointerType *T) {
1139 // FIXME: Check for C++ support in "to" context.
1140 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1141 if (ToPointeeType.isNull())
1142 return QualType();
1143
1144 QualType ClassType = Importer.Import(QualType(T->getClass(), 0));
1145 return Importer.getToContext().getMemberPointerType(ToPointeeType,
1146 ClassType.getTypePtr());
1147}
1148
1149QualType ASTNodeImporter::VisitConstantArrayType(ConstantArrayType *T) {
1150 QualType ToElementType = Importer.Import(T->getElementType());
1151 if (ToElementType.isNull())
1152 return QualType();
1153
1154 return Importer.getToContext().getConstantArrayType(ToElementType,
1155 T->getSize(),
1156 T->getSizeModifier(),
1157 T->getIndexTypeCVRQualifiers());
1158}
1159
1160QualType ASTNodeImporter::VisitIncompleteArrayType(IncompleteArrayType *T) {
1161 QualType ToElementType = Importer.Import(T->getElementType());
1162 if (ToElementType.isNull())
1163 return QualType();
1164
1165 return Importer.getToContext().getIncompleteArrayType(ToElementType,
1166 T->getSizeModifier(),
1167 T->getIndexTypeCVRQualifiers());
1168}
1169
1170QualType ASTNodeImporter::VisitVariableArrayType(VariableArrayType *T) {
1171 QualType ToElementType = Importer.Import(T->getElementType());
1172 if (ToElementType.isNull())
1173 return QualType();
1174
1175 Expr *Size = Importer.Import(T->getSizeExpr());
1176 if (!Size)
1177 return QualType();
1178
1179 SourceRange Brackets = Importer.Import(T->getBracketsRange());
1180 return Importer.getToContext().getVariableArrayType(ToElementType, Size,
1181 T->getSizeModifier(),
1182 T->getIndexTypeCVRQualifiers(),
1183 Brackets);
1184}
1185
1186QualType ASTNodeImporter::VisitVectorType(VectorType *T) {
1187 QualType ToElementType = Importer.Import(T->getElementType());
1188 if (ToElementType.isNull())
1189 return QualType();
1190
1191 return Importer.getToContext().getVectorType(ToElementType,
1192 T->getNumElements(),
Chris Lattner788b0fd2010-06-23 06:00:24 +00001193 T->getAltiVecSpecific());
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001194}
1195
1196QualType ASTNodeImporter::VisitExtVectorType(ExtVectorType *T) {
1197 QualType ToElementType = Importer.Import(T->getElementType());
1198 if (ToElementType.isNull())
1199 return QualType();
1200
1201 return Importer.getToContext().getExtVectorType(ToElementType,
1202 T->getNumElements());
1203}
1204
1205QualType ASTNodeImporter::VisitFunctionNoProtoType(FunctionNoProtoType *T) {
1206 // FIXME: What happens if we're importing a function without a prototype
1207 // into C++? Should we make it variadic?
1208 QualType ToResultType = Importer.Import(T->getResultType());
1209 if (ToResultType.isNull())
1210 return QualType();
Rafael Espindola264ba482010-03-30 20:24:48 +00001211
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001212 return Importer.getToContext().getFunctionNoProtoType(ToResultType,
Rafael Espindola264ba482010-03-30 20:24:48 +00001213 T->getExtInfo());
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001214}
1215
1216QualType ASTNodeImporter::VisitFunctionProtoType(FunctionProtoType *T) {
1217 QualType ToResultType = Importer.Import(T->getResultType());
1218 if (ToResultType.isNull())
1219 return QualType();
1220
1221 // Import argument types
1222 llvm::SmallVector<QualType, 4> ArgTypes;
1223 for (FunctionProtoType::arg_type_iterator A = T->arg_type_begin(),
1224 AEnd = T->arg_type_end();
1225 A != AEnd; ++A) {
1226 QualType ArgType = Importer.Import(*A);
1227 if (ArgType.isNull())
1228 return QualType();
1229 ArgTypes.push_back(ArgType);
1230 }
1231
1232 // Import exception types
1233 llvm::SmallVector<QualType, 4> ExceptionTypes;
1234 for (FunctionProtoType::exception_iterator E = T->exception_begin(),
1235 EEnd = T->exception_end();
1236 E != EEnd; ++E) {
1237 QualType ExceptionType = Importer.Import(*E);
1238 if (ExceptionType.isNull())
1239 return QualType();
1240 ExceptionTypes.push_back(ExceptionType);
1241 }
1242
1243 return Importer.getToContext().getFunctionType(ToResultType, ArgTypes.data(),
1244 ArgTypes.size(),
1245 T->isVariadic(),
1246 T->getTypeQuals(),
1247 T->hasExceptionSpec(),
1248 T->hasAnyExceptionSpec(),
1249 ExceptionTypes.size(),
1250 ExceptionTypes.data(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001251 T->getExtInfo());
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001252}
1253
1254QualType ASTNodeImporter::VisitTypedefType(TypedefType *T) {
1255 TypedefDecl *ToDecl
1256 = dyn_cast_or_null<TypedefDecl>(Importer.Import(T->getDecl()));
1257 if (!ToDecl)
1258 return QualType();
1259
1260 return Importer.getToContext().getTypeDeclType(ToDecl);
1261}
1262
1263QualType ASTNodeImporter::VisitTypeOfExprType(TypeOfExprType *T) {
1264 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1265 if (!ToExpr)
1266 return QualType();
1267
1268 return Importer.getToContext().getTypeOfExprType(ToExpr);
1269}
1270
1271QualType ASTNodeImporter::VisitTypeOfType(TypeOfType *T) {
1272 QualType ToUnderlyingType = Importer.Import(T->getUnderlyingType());
1273 if (ToUnderlyingType.isNull())
1274 return QualType();
1275
1276 return Importer.getToContext().getTypeOfType(ToUnderlyingType);
1277}
1278
1279QualType ASTNodeImporter::VisitDecltypeType(DecltypeType *T) {
1280 Expr *ToExpr = Importer.Import(T->getUnderlyingExpr());
1281 if (!ToExpr)
1282 return QualType();
1283
1284 return Importer.getToContext().getDecltypeType(ToExpr);
1285}
1286
1287QualType ASTNodeImporter::VisitRecordType(RecordType *T) {
1288 RecordDecl *ToDecl
1289 = dyn_cast_or_null<RecordDecl>(Importer.Import(T->getDecl()));
1290 if (!ToDecl)
1291 return QualType();
1292
1293 return Importer.getToContext().getTagDeclType(ToDecl);
1294}
1295
1296QualType ASTNodeImporter::VisitEnumType(EnumType *T) {
1297 EnumDecl *ToDecl
1298 = dyn_cast_or_null<EnumDecl>(Importer.Import(T->getDecl()));
1299 if (!ToDecl)
1300 return QualType();
1301
1302 return Importer.getToContext().getTagDeclType(ToDecl);
1303}
1304
1305QualType ASTNodeImporter::VisitElaboratedType(ElaboratedType *T) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001306 NestedNameSpecifier *ToQualifier = 0;
1307 // Note: the qualifier in an ElaboratedType is optional.
1308 if (T->getQualifier()) {
1309 ToQualifier = Importer.Import(T->getQualifier());
1310 if (!ToQualifier)
1311 return QualType();
1312 }
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001313
1314 QualType ToNamedType = Importer.Import(T->getNamedType());
1315 if (ToNamedType.isNull())
1316 return QualType();
1317
Abramo Bagnara465d41b2010-05-11 21:36:43 +00001318 return Importer.getToContext().getElaboratedType(T->getKeyword(),
1319 ToQualifier, ToNamedType);
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001320}
1321
1322QualType ASTNodeImporter::VisitObjCInterfaceType(ObjCInterfaceType *T) {
1323 ObjCInterfaceDecl *Class
1324 = dyn_cast_or_null<ObjCInterfaceDecl>(Importer.Import(T->getDecl()));
1325 if (!Class)
1326 return QualType();
1327
John McCallc12c5bb2010-05-15 11:32:37 +00001328 return Importer.getToContext().getObjCInterfaceType(Class);
1329}
1330
1331QualType ASTNodeImporter::VisitObjCObjectType(ObjCObjectType *T) {
1332 QualType ToBaseType = Importer.Import(T->getBaseType());
1333 if (ToBaseType.isNull())
1334 return QualType();
1335
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001336 llvm::SmallVector<ObjCProtocolDecl *, 4> Protocols;
John McCallc12c5bb2010-05-15 11:32:37 +00001337 for (ObjCObjectType::qual_iterator P = T->qual_begin(),
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001338 PEnd = T->qual_end();
1339 P != PEnd; ++P) {
1340 ObjCProtocolDecl *Protocol
1341 = dyn_cast_or_null<ObjCProtocolDecl>(Importer.Import(*P));
1342 if (!Protocol)
1343 return QualType();
1344 Protocols.push_back(Protocol);
1345 }
1346
John McCallc12c5bb2010-05-15 11:32:37 +00001347 return Importer.getToContext().getObjCObjectType(ToBaseType,
1348 Protocols.data(),
1349 Protocols.size());
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001350}
1351
1352QualType ASTNodeImporter::VisitObjCObjectPointerType(ObjCObjectPointerType *T) {
1353 QualType ToPointeeType = Importer.Import(T->getPointeeType());
1354 if (ToPointeeType.isNull())
1355 return QualType();
1356
John McCallc12c5bb2010-05-15 11:32:37 +00001357 return Importer.getToContext().getObjCObjectPointerType(ToPointeeType);
Douglas Gregor1b2949d2010-02-05 17:54:41 +00001358}
1359
Douglas Gregor089459a2010-02-08 21:09:39 +00001360//----------------------------------------------------------------------------
1361// Import Declarations
1362//----------------------------------------------------------------------------
Douglas Gregora404ea62010-02-10 19:54:31 +00001363bool ASTNodeImporter::ImportDeclParts(NamedDecl *D, DeclContext *&DC,
1364 DeclContext *&LexicalDC,
1365 DeclarationName &Name,
1366 SourceLocation &Loc) {
1367 // Import the context of this declaration.
1368 DC = Importer.ImportContext(D->getDeclContext());
1369 if (!DC)
1370 return true;
1371
1372 LexicalDC = DC;
1373 if (D->getDeclContext() != D->getLexicalDeclContext()) {
1374 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
1375 if (!LexicalDC)
1376 return true;
1377 }
1378
1379 // Import the name of this declaration.
1380 Name = Importer.Import(D->getDeclName());
1381 if (D->getDeclName() && !Name)
1382 return true;
1383
1384 // Import the location of this declaration.
1385 Loc = Importer.Import(D->getLocation());
1386 return false;
1387}
1388
Abramo Bagnara25777432010-08-11 22:01:17 +00001389void
1390ASTNodeImporter::ImportDeclarationNameLoc(const DeclarationNameInfo &From,
1391 DeclarationNameInfo& To) {
1392 // NOTE: To.Name and To.Loc are already imported.
1393 // We only have to import To.LocInfo.
1394 switch (To.getName().getNameKind()) {
1395 case DeclarationName::Identifier:
1396 case DeclarationName::ObjCZeroArgSelector:
1397 case DeclarationName::ObjCOneArgSelector:
1398 case DeclarationName::ObjCMultiArgSelector:
1399 case DeclarationName::CXXUsingDirective:
1400 return;
1401
1402 case DeclarationName::CXXOperatorName: {
1403 SourceRange Range = From.getCXXOperatorNameRange();
1404 To.setCXXOperatorNameRange(Importer.Import(Range));
1405 return;
1406 }
1407 case DeclarationName::CXXLiteralOperatorName: {
1408 SourceLocation Loc = From.getCXXLiteralOperatorNameLoc();
1409 To.setCXXLiteralOperatorNameLoc(Importer.Import(Loc));
1410 return;
1411 }
1412 case DeclarationName::CXXConstructorName:
1413 case DeclarationName::CXXDestructorName:
1414 case DeclarationName::CXXConversionFunctionName: {
1415 TypeSourceInfo *FromTInfo = From.getNamedTypeInfo();
1416 To.setNamedTypeInfo(Importer.Import(FromTInfo));
1417 return;
1418 }
1419 assert(0 && "Unknown name kind.");
1420 }
1421}
1422
Douglas Gregor083a8212010-02-21 18:24:45 +00001423void ASTNodeImporter::ImportDeclContext(DeclContext *FromDC) {
1424 for (DeclContext::decl_iterator From = FromDC->decls_begin(),
1425 FromEnd = FromDC->decls_end();
1426 From != FromEnd;
1427 ++From)
1428 Importer.Import(*From);
1429}
1430
Douglas Gregor96a01b42010-02-11 00:48:18 +00001431bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord,
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001432 RecordDecl *ToRecord) {
Benjamin Kramerbb2d1762010-02-18 13:02:13 +00001433 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001434 Importer.getToContext(),
Douglas Gregorea35d112010-02-15 23:54:17 +00001435 Importer.getDiags(),
1436 Importer.getNonEquivalentDecls());
Benjamin Kramerbb2d1762010-02-18 13:02:13 +00001437 return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord);
Douglas Gregor96a01b42010-02-11 00:48:18 +00001438}
1439
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001440bool ASTNodeImporter::IsStructuralMatch(EnumDecl *FromEnum, EnumDecl *ToEnum) {
Benjamin Kramerbb2d1762010-02-18 13:02:13 +00001441 StructuralEquivalenceContext Ctx(Importer.getFromContext(),
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001442 Importer.getToContext(),
Douglas Gregorea35d112010-02-15 23:54:17 +00001443 Importer.getDiags(),
1444 Importer.getNonEquivalentDecls());
Benjamin Kramerbb2d1762010-02-18 13:02:13 +00001445 return Ctx.IsStructurallyEquivalent(FromEnum, ToEnum);
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001446}
1447
Douglas Gregor89cc9d62010-02-09 22:48:33 +00001448Decl *ASTNodeImporter::VisitDecl(Decl *D) {
Douglas Gregor88523732010-02-10 00:15:17 +00001449 Importer.FromDiag(D->getLocation(), diag::err_unsupported_ast_node)
Douglas Gregor89cc9d62010-02-09 22:48:33 +00001450 << D->getDeclKindName();
1451 return 0;
1452}
1453
Douglas Gregor788c62d2010-02-21 18:26:36 +00001454Decl *ASTNodeImporter::VisitNamespaceDecl(NamespaceDecl *D) {
1455 // Import the major distinguishing characteristics of this namespace.
1456 DeclContext *DC, *LexicalDC;
1457 DeclarationName Name;
1458 SourceLocation Loc;
1459 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
1460 return 0;
1461
1462 NamespaceDecl *MergeWithNamespace = 0;
1463 if (!Name) {
1464 // This is an anonymous namespace. Adopt an existing anonymous
1465 // namespace if we can.
1466 // FIXME: Not testable.
1467 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
1468 MergeWithNamespace = TU->getAnonymousNamespace();
1469 else
1470 MergeWithNamespace = cast<NamespaceDecl>(DC)->getAnonymousNamespace();
1471 } else {
1472 llvm::SmallVector<NamedDecl *, 4> ConflictingDecls;
1473 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
1474 Lookup.first != Lookup.second;
1475 ++Lookup.first) {
John McCall0d6b1642010-04-23 18:46:30 +00001476 if (!(*Lookup.first)->isInIdentifierNamespace(Decl::IDNS_Namespace))
Douglas Gregor788c62d2010-02-21 18:26:36 +00001477 continue;
1478
1479 if (NamespaceDecl *FoundNS = dyn_cast<NamespaceDecl>(*Lookup.first)) {
1480 MergeWithNamespace = FoundNS;
1481 ConflictingDecls.clear();
1482 break;
1483 }
1484
1485 ConflictingDecls.push_back(*Lookup.first);
1486 }
1487
1488 if (!ConflictingDecls.empty()) {
John McCall0d6b1642010-04-23 18:46:30 +00001489 Name = Importer.HandleNameConflict(Name, DC, Decl::IDNS_Namespace,
Douglas Gregor788c62d2010-02-21 18:26:36 +00001490 ConflictingDecls.data(),
1491 ConflictingDecls.size());
1492 }
1493 }
1494
1495 // Create the "to" namespace, if needed.
1496 NamespaceDecl *ToNamespace = MergeWithNamespace;
1497 if (!ToNamespace) {
1498 ToNamespace = NamespaceDecl::Create(Importer.getToContext(), DC, Loc,
1499 Name.getAsIdentifierInfo());
1500 ToNamespace->setLexicalDeclContext(LexicalDC);
1501 LexicalDC->addDecl(ToNamespace);
1502
1503 // If this is an anonymous namespace, register it as the anonymous
1504 // namespace within its context.
1505 if (!Name) {
1506 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(DC))
1507 TU->setAnonymousNamespace(ToNamespace);
1508 else
1509 cast<NamespaceDecl>(DC)->setAnonymousNamespace(ToNamespace);
1510 }
1511 }
1512 Importer.Imported(D, ToNamespace);
1513
1514 ImportDeclContext(D);
1515
1516 return ToNamespace;
1517}
1518
Douglas Gregor9e5d9962010-02-10 21:10:29 +00001519Decl *ASTNodeImporter::VisitTypedefDecl(TypedefDecl *D) {
1520 // Import the major distinguishing characteristics of this typedef.
1521 DeclContext *DC, *LexicalDC;
1522 DeclarationName Name;
1523 SourceLocation Loc;
1524 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
1525 return 0;
1526
Douglas Gregor9e5d9962010-02-10 21:10:29 +00001527 // If this typedef is not in block scope, determine whether we've
1528 // seen a typedef with the same name (that we can merge with) or any
1529 // other entity by that name (which name lookup could conflict with).
1530 if (!DC->isFunctionOrMethod()) {
1531 llvm::SmallVector<NamedDecl *, 4> ConflictingDecls;
1532 unsigned IDNS = Decl::IDNS_Ordinary;
1533 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
1534 Lookup.first != Lookup.second;
1535 ++Lookup.first) {
1536 if (!(*Lookup.first)->isInIdentifierNamespace(IDNS))
1537 continue;
1538 if (TypedefDecl *FoundTypedef = dyn_cast<TypedefDecl>(*Lookup.first)) {
Douglas Gregorea35d112010-02-15 23:54:17 +00001539 if (Importer.IsStructurallyEquivalent(D->getUnderlyingType(),
1540 FoundTypedef->getUnderlyingType()))
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001541 return Importer.Imported(D, FoundTypedef);
Douglas Gregor9e5d9962010-02-10 21:10:29 +00001542 }
1543
1544 ConflictingDecls.push_back(*Lookup.first);
1545 }
1546
1547 if (!ConflictingDecls.empty()) {
1548 Name = Importer.HandleNameConflict(Name, DC, IDNS,
1549 ConflictingDecls.data(),
1550 ConflictingDecls.size());
1551 if (!Name)
1552 return 0;
1553 }
1554 }
1555
Douglas Gregorea35d112010-02-15 23:54:17 +00001556 // Import the underlying type of this typedef;
1557 QualType T = Importer.Import(D->getUnderlyingType());
1558 if (T.isNull())
1559 return 0;
1560
Douglas Gregor9e5d9962010-02-10 21:10:29 +00001561 // Create the new typedef node.
1562 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
1563 TypedefDecl *ToTypedef = TypedefDecl::Create(Importer.getToContext(), DC,
1564 Loc, Name.getAsIdentifierInfo(),
1565 TInfo);
Douglas Gregor325bf172010-02-22 17:42:47 +00001566 ToTypedef->setAccess(D->getAccess());
Douglas Gregor9e5d9962010-02-10 21:10:29 +00001567 ToTypedef->setLexicalDeclContext(LexicalDC);
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001568 Importer.Imported(D, ToTypedef);
Douglas Gregor9e5d9962010-02-10 21:10:29 +00001569 LexicalDC->addDecl(ToTypedef);
Douglas Gregorea35d112010-02-15 23:54:17 +00001570
Douglas Gregor9e5d9962010-02-10 21:10:29 +00001571 return ToTypedef;
1572}
1573
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001574Decl *ASTNodeImporter::VisitEnumDecl(EnumDecl *D) {
1575 // Import the major distinguishing characteristics of this enum.
1576 DeclContext *DC, *LexicalDC;
1577 DeclarationName Name;
1578 SourceLocation Loc;
1579 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
1580 return 0;
1581
1582 // Figure out what enum name we're looking for.
1583 unsigned IDNS = Decl::IDNS_Tag;
1584 DeclarationName SearchName = Name;
1585 if (!SearchName && D->getTypedefForAnonDecl()) {
1586 SearchName = Importer.Import(D->getTypedefForAnonDecl()->getDeclName());
1587 IDNS = Decl::IDNS_Ordinary;
1588 } else if (Importer.getToContext().getLangOptions().CPlusPlus)
1589 IDNS |= Decl::IDNS_Ordinary;
1590
1591 // We may already have an enum of the same name; try to find and match it.
1592 if (!DC->isFunctionOrMethod() && SearchName) {
1593 llvm::SmallVector<NamedDecl *, 4> ConflictingDecls;
1594 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
1595 Lookup.first != Lookup.second;
1596 ++Lookup.first) {
1597 if (!(*Lookup.first)->isInIdentifierNamespace(IDNS))
1598 continue;
1599
1600 Decl *Found = *Lookup.first;
1601 if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(Found)) {
1602 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
1603 Found = Tag->getDecl();
1604 }
1605
1606 if (EnumDecl *FoundEnum = dyn_cast<EnumDecl>(Found)) {
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001607 if (IsStructuralMatch(D, FoundEnum))
1608 return Importer.Imported(D, FoundEnum);
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001609 }
1610
1611 ConflictingDecls.push_back(*Lookup.first);
1612 }
1613
1614 if (!ConflictingDecls.empty()) {
1615 Name = Importer.HandleNameConflict(Name, DC, IDNS,
1616 ConflictingDecls.data(),
1617 ConflictingDecls.size());
1618 }
1619 }
1620
1621 // Create the enum declaration.
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001622 EnumDecl *D2 = EnumDecl::Create(Importer.getToContext(), DC, Loc,
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001623 Name.getAsIdentifierInfo(),
1624 Importer.Import(D->getTagKeywordLoc()),
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001625 0, D->isScoped(), D->isFixed());
John McCallb6217662010-03-15 10:12:16 +00001626 // Import the qualifier, if any.
1627 if (D->getQualifier()) {
1628 NestedNameSpecifier *NNS = Importer.Import(D->getQualifier());
1629 SourceRange NNSRange = Importer.Import(D->getQualifierRange());
1630 D2->setQualifierInfo(NNS, NNSRange);
1631 }
Douglas Gregor325bf172010-02-22 17:42:47 +00001632 D2->setAccess(D->getAccess());
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001633 D2->setLexicalDeclContext(LexicalDC);
1634 Importer.Imported(D, D2);
1635 LexicalDC->addDecl(D2);
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001636
1637 // Import the integer type.
1638 QualType ToIntegerType = Importer.Import(D->getIntegerType());
1639 if (ToIntegerType.isNull())
1640 return 0;
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001641 D2->setIntegerType(ToIntegerType);
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001642
1643 // Import the definition
1644 if (D->isDefinition()) {
1645 QualType T = Importer.Import(Importer.getFromContext().getTypeDeclType(D));
1646 if (T.isNull())
1647 return 0;
1648
1649 QualType ToPromotionType = Importer.Import(D->getPromotionType());
1650 if (ToPromotionType.isNull())
1651 return 0;
1652
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001653 D2->startDefinition();
Douglas Gregor083a8212010-02-21 18:24:45 +00001654 ImportDeclContext(D);
John McCall1b5a6182010-05-06 08:49:23 +00001655
1656 // FIXME: we might need to merge the number of positive or negative bits
1657 // if the enumerator lists don't match.
1658 D2->completeDefinition(T, ToPromotionType,
1659 D->getNumPositiveBits(),
1660 D->getNumNegativeBits());
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001661 }
1662
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001663 return D2;
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001664}
1665
Douglas Gregor96a01b42010-02-11 00:48:18 +00001666Decl *ASTNodeImporter::VisitRecordDecl(RecordDecl *D) {
1667 // If this record has a definition in the translation unit we're coming from,
1668 // but this particular declaration is not that definition, import the
1669 // definition and map to that.
Douglas Gregor952b0172010-02-11 01:04:33 +00001670 TagDecl *Definition = D->getDefinition();
Douglas Gregor96a01b42010-02-11 00:48:18 +00001671 if (Definition && Definition != D) {
1672 Decl *ImportedDef = Importer.Import(Definition);
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001673 if (!ImportedDef)
1674 return 0;
1675
1676 return Importer.Imported(D, ImportedDef);
Douglas Gregor96a01b42010-02-11 00:48:18 +00001677 }
1678
1679 // Import the major distinguishing characteristics of this record.
1680 DeclContext *DC, *LexicalDC;
1681 DeclarationName Name;
1682 SourceLocation Loc;
1683 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
1684 return 0;
1685
1686 // Figure out what structure name we're looking for.
1687 unsigned IDNS = Decl::IDNS_Tag;
1688 DeclarationName SearchName = Name;
1689 if (!SearchName && D->getTypedefForAnonDecl()) {
1690 SearchName = Importer.Import(D->getTypedefForAnonDecl()->getDeclName());
1691 IDNS = Decl::IDNS_Ordinary;
1692 } else if (Importer.getToContext().getLangOptions().CPlusPlus)
1693 IDNS |= Decl::IDNS_Ordinary;
1694
1695 // We may already have a record of the same name; try to find and match it.
Douglas Gregore72b5dc2010-02-12 00:09:27 +00001696 RecordDecl *AdoptDecl = 0;
Douglas Gregor96a01b42010-02-11 00:48:18 +00001697 if (!DC->isFunctionOrMethod() && SearchName) {
1698 llvm::SmallVector<NamedDecl *, 4> ConflictingDecls;
1699 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
1700 Lookup.first != Lookup.second;
1701 ++Lookup.first) {
1702 if (!(*Lookup.first)->isInIdentifierNamespace(IDNS))
1703 continue;
1704
1705 Decl *Found = *Lookup.first;
1706 if (TypedefDecl *Typedef = dyn_cast<TypedefDecl>(Found)) {
1707 if (const TagType *Tag = Typedef->getUnderlyingType()->getAs<TagType>())
1708 Found = Tag->getDecl();
1709 }
1710
1711 if (RecordDecl *FoundRecord = dyn_cast<RecordDecl>(Found)) {
Douglas Gregore72b5dc2010-02-12 00:09:27 +00001712 if (RecordDecl *FoundDef = FoundRecord->getDefinition()) {
1713 if (!D->isDefinition() || IsStructuralMatch(D, FoundDef)) {
1714 // The record types structurally match, or the "from" translation
1715 // unit only had a forward declaration anyway; call it the same
1716 // function.
1717 // FIXME: For C++, we should also merge methods here.
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001718 return Importer.Imported(D, FoundDef);
Douglas Gregore72b5dc2010-02-12 00:09:27 +00001719 }
1720 } else {
1721 // We have a forward declaration of this type, so adopt that forward
1722 // declaration rather than building a new one.
1723 AdoptDecl = FoundRecord;
1724 continue;
1725 }
Douglas Gregor96a01b42010-02-11 00:48:18 +00001726 }
1727
1728 ConflictingDecls.push_back(*Lookup.first);
1729 }
1730
1731 if (!ConflictingDecls.empty()) {
1732 Name = Importer.HandleNameConflict(Name, DC, IDNS,
1733 ConflictingDecls.data(),
1734 ConflictingDecls.size());
1735 }
1736 }
1737
1738 // Create the record declaration.
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001739 RecordDecl *D2 = AdoptDecl;
1740 if (!D2) {
John McCall5250f272010-06-03 19:28:45 +00001741 if (isa<CXXRecordDecl>(D)) {
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001742 CXXRecordDecl *D2CXX = CXXRecordDecl::Create(Importer.getToContext(),
Douglas Gregore72b5dc2010-02-12 00:09:27 +00001743 D->getTagKind(),
1744 DC, Loc,
1745 Name.getAsIdentifierInfo(),
Douglas Gregor96a01b42010-02-11 00:48:18 +00001746 Importer.Import(D->getTagKeywordLoc()));
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001747 D2 = D2CXX;
Douglas Gregor325bf172010-02-22 17:42:47 +00001748 D2->setAccess(D->getAccess());
Douglas Gregore72b5dc2010-02-12 00:09:27 +00001749 } else {
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001750 D2 = RecordDecl::Create(Importer.getToContext(), D->getTagKind(),
Douglas Gregore72b5dc2010-02-12 00:09:27 +00001751 DC, Loc,
1752 Name.getAsIdentifierInfo(),
1753 Importer.Import(D->getTagKeywordLoc()));
Douglas Gregor96a01b42010-02-11 00:48:18 +00001754 }
John McCallb6217662010-03-15 10:12:16 +00001755 // Import the qualifier, if any.
1756 if (D->getQualifier()) {
1757 NestedNameSpecifier *NNS = Importer.Import(D->getQualifier());
1758 SourceRange NNSRange = Importer.Import(D->getQualifierRange());
1759 D2->setQualifierInfo(NNS, NNSRange);
1760 }
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001761 D2->setLexicalDeclContext(LexicalDC);
1762 LexicalDC->addDecl(D2);
Douglas Gregor96a01b42010-02-11 00:48:18 +00001763 }
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001764
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001765 Importer.Imported(D, D2);
Douglas Gregore72b5dc2010-02-12 00:09:27 +00001766
Douglas Gregor96a01b42010-02-11 00:48:18 +00001767 if (D->isDefinition()) {
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001768 D2->startDefinition();
John McCall5250f272010-06-03 19:28:45 +00001769
1770 // Add base classes.
1771 if (CXXRecordDecl *D2CXX = dyn_cast<CXXRecordDecl>(D2)) {
1772 CXXRecordDecl *D1CXX = cast<CXXRecordDecl>(D);
1773
1774 llvm::SmallVector<CXXBaseSpecifier *, 4> Bases;
1775 for (CXXRecordDecl::base_class_iterator
1776 Base1 = D1CXX->bases_begin(),
1777 FromBaseEnd = D1CXX->bases_end();
1778 Base1 != FromBaseEnd;
1779 ++Base1) {
1780 QualType T = Importer.Import(Base1->getType());
1781 if (T.isNull())
1782 return 0;
1783
1784 Bases.push_back(
1785 new (Importer.getToContext())
1786 CXXBaseSpecifier(Importer.Import(Base1->getSourceRange()),
1787 Base1->isVirtual(),
1788 Base1->isBaseOfClass(),
1789 Base1->getAccessSpecifierAsWritten(),
Nick Lewycky56062202010-07-26 16:56:01 +00001790 Importer.Import(Base1->getTypeSourceInfo())));
John McCall5250f272010-06-03 19:28:45 +00001791 }
1792 if (!Bases.empty())
1793 D2CXX->setBases(Bases.data(), Bases.size());
1794 }
1795
Douglas Gregor083a8212010-02-21 18:24:45 +00001796 ImportDeclContext(D);
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001797 D2->completeDefinition();
Douglas Gregor96a01b42010-02-11 00:48:18 +00001798 }
1799
Douglas Gregor73dc30b2010-02-15 22:01:00 +00001800 return D2;
Douglas Gregor96a01b42010-02-11 00:48:18 +00001801}
1802
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001803Decl *ASTNodeImporter::VisitEnumConstantDecl(EnumConstantDecl *D) {
1804 // Import the major distinguishing characteristics of this enumerator.
1805 DeclContext *DC, *LexicalDC;
1806 DeclarationName Name;
1807 SourceLocation Loc;
Douglas Gregorea35d112010-02-15 23:54:17 +00001808 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001809 return 0;
Douglas Gregorea35d112010-02-15 23:54:17 +00001810
1811 QualType T = Importer.Import(D->getType());
1812 if (T.isNull())
1813 return 0;
1814
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001815 // Determine whether there are any other declarations with the same name and
1816 // in the same context.
1817 if (!LexicalDC->isFunctionOrMethod()) {
1818 llvm::SmallVector<NamedDecl *, 4> ConflictingDecls;
1819 unsigned IDNS = Decl::IDNS_Ordinary;
1820 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
1821 Lookup.first != Lookup.second;
1822 ++Lookup.first) {
1823 if (!(*Lookup.first)->isInIdentifierNamespace(IDNS))
1824 continue;
1825
1826 ConflictingDecls.push_back(*Lookup.first);
1827 }
1828
1829 if (!ConflictingDecls.empty()) {
1830 Name = Importer.HandleNameConflict(Name, DC, IDNS,
1831 ConflictingDecls.data(),
1832 ConflictingDecls.size());
1833 if (!Name)
1834 return 0;
1835 }
1836 }
1837
1838 Expr *Init = Importer.Import(D->getInitExpr());
1839 if (D->getInitExpr() && !Init)
1840 return 0;
1841
1842 EnumConstantDecl *ToEnumerator
1843 = EnumConstantDecl::Create(Importer.getToContext(), cast<EnumDecl>(DC), Loc,
1844 Name.getAsIdentifierInfo(), T,
1845 Init, D->getInitVal());
Douglas Gregor325bf172010-02-22 17:42:47 +00001846 ToEnumerator->setAccess(D->getAccess());
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001847 ToEnumerator->setLexicalDeclContext(LexicalDC);
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001848 Importer.Imported(D, ToEnumerator);
Douglas Gregor36ead2e2010-02-12 22:17:39 +00001849 LexicalDC->addDecl(ToEnumerator);
1850 return ToEnumerator;
1851}
Douglas Gregor96a01b42010-02-11 00:48:18 +00001852
Douglas Gregora404ea62010-02-10 19:54:31 +00001853Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) {
1854 // Import the major distinguishing characteristics of this function.
1855 DeclContext *DC, *LexicalDC;
1856 DeclarationName Name;
Douglas Gregora404ea62010-02-10 19:54:31 +00001857 SourceLocation Loc;
Douglas Gregorea35d112010-02-15 23:54:17 +00001858 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
Douglas Gregor089459a2010-02-08 21:09:39 +00001859 return 0;
Abramo Bagnara25777432010-08-11 22:01:17 +00001860
Douglas Gregora404ea62010-02-10 19:54:31 +00001861 // Try to find a function in our own ("to") context with the same name, same
1862 // type, and in the same context as the function we're importing.
1863 if (!LexicalDC->isFunctionOrMethod()) {
1864 llvm::SmallVector<NamedDecl *, 4> ConflictingDecls;
1865 unsigned IDNS = Decl::IDNS_Ordinary;
1866 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
1867 Lookup.first != Lookup.second;
1868 ++Lookup.first) {
1869 if (!(*Lookup.first)->isInIdentifierNamespace(IDNS))
1870 continue;
Douglas Gregor089459a2010-02-08 21:09:39 +00001871
Douglas Gregora404ea62010-02-10 19:54:31 +00001872 if (FunctionDecl *FoundFunction = dyn_cast<FunctionDecl>(*Lookup.first)) {
1873 if (isExternalLinkage(FoundFunction->getLinkage()) &&
1874 isExternalLinkage(D->getLinkage())) {
Douglas Gregorea35d112010-02-15 23:54:17 +00001875 if (Importer.IsStructurallyEquivalent(D->getType(),
1876 FoundFunction->getType())) {
Douglas Gregora404ea62010-02-10 19:54:31 +00001877 // FIXME: Actually try to merge the body and other attributes.
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00001878 return Importer.Imported(D, FoundFunction);
Douglas Gregora404ea62010-02-10 19:54:31 +00001879 }
1880
1881 // FIXME: Check for overloading more carefully, e.g., by boosting
1882 // Sema::IsOverload out to the AST library.
1883
1884 // Function overloading is okay in C++.
1885 if (Importer.getToContext().getLangOptions().CPlusPlus)
1886 continue;
1887
1888 // Complain about inconsistent function types.
1889 Importer.ToDiag(Loc, diag::err_odr_function_type_inconsistent)
Douglas Gregorea35d112010-02-15 23:54:17 +00001890 << Name << D->getType() << FoundFunction->getType();
Douglas Gregora404ea62010-02-10 19:54:31 +00001891 Importer.ToDiag(FoundFunction->getLocation(),
1892 diag::note_odr_value_here)
1893 << FoundFunction->getType();
1894 }
1895 }
1896
1897 ConflictingDecls.push_back(*Lookup.first);
1898 }
1899
1900 if (!ConflictingDecls.empty()) {
1901 Name = Importer.HandleNameConflict(Name, DC, IDNS,
1902 ConflictingDecls.data(),
1903 ConflictingDecls.size());
1904 if (!Name)
1905 return 0;
1906 }
Douglas Gregor9bed8792010-02-09 19:21:46 +00001907 }
Douglas Gregorea35d112010-02-15 23:54:17 +00001908
Abramo Bagnara25777432010-08-11 22:01:17 +00001909 DeclarationNameInfo NameInfo(Name, Loc);
1910 // Import additional name location/type info.
1911 ImportDeclarationNameLoc(D->getNameInfo(), NameInfo);
1912
Douglas Gregorea35d112010-02-15 23:54:17 +00001913 // Import the type.
1914 QualType T = Importer.Import(D->getType());
1915 if (T.isNull())
1916 return 0;
Douglas Gregora404ea62010-02-10 19:54:31 +00001917
1918 // Import the function parameters.
1919 llvm::SmallVector<ParmVarDecl *, 8> Parameters;
1920 for (FunctionDecl::param_iterator P = D->param_begin(), PEnd = D->param_end();
1921 P != PEnd; ++P) {
1922 ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(*P));
1923 if (!ToP)
1924 return 0;
1925
1926 Parameters.push_back(ToP);
1927 }
1928
1929 // Create the imported function.
1930 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Douglas Gregorc144f352010-02-21 18:29:16 +00001931 FunctionDecl *ToFunction = 0;
1932 if (CXXConstructorDecl *FromConstructor = dyn_cast<CXXConstructorDecl>(D)) {
1933 ToFunction = CXXConstructorDecl::Create(Importer.getToContext(),
1934 cast<CXXRecordDecl>(DC),
Abramo Bagnara25777432010-08-11 22:01:17 +00001935 NameInfo, T, TInfo,
Douglas Gregorc144f352010-02-21 18:29:16 +00001936 FromConstructor->isExplicit(),
1937 D->isInlineSpecified(),
1938 D->isImplicit());
1939 } else if (isa<CXXDestructorDecl>(D)) {
1940 ToFunction = CXXDestructorDecl::Create(Importer.getToContext(),
1941 cast<CXXRecordDecl>(DC),
Craig Silversteinb41d8992010-10-21 00:44:50 +00001942 NameInfo, T, TInfo,
Douglas Gregorc144f352010-02-21 18:29:16 +00001943 D->isInlineSpecified(),
1944 D->isImplicit());
1945 } else if (CXXConversionDecl *FromConversion
1946 = dyn_cast<CXXConversionDecl>(D)) {
1947 ToFunction = CXXConversionDecl::Create(Importer.getToContext(),
1948 cast<CXXRecordDecl>(DC),
Abramo Bagnara25777432010-08-11 22:01:17 +00001949 NameInfo, T, TInfo,
Douglas Gregorc144f352010-02-21 18:29:16 +00001950 D->isInlineSpecified(),
1951 FromConversion->isExplicit());
1952 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001953 ToFunction = FunctionDecl::Create(Importer.getToContext(), DC,
1954 NameInfo, T, TInfo, D->getStorageClass(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001955 D->getStorageClassAsWritten(),
Douglas Gregorc144f352010-02-21 18:29:16 +00001956 D->isInlineSpecified(),
1957 D->hasWrittenPrototype());
1958 }
John McCallb6217662010-03-15 10:12:16 +00001959
1960 // Import the qualifier, if any.
1961 if (D->getQualifier()) {
1962 NestedNameSpecifier *NNS = Importer.Import(D->getQualifier());
1963 SourceRange NNSRange = Importer.Import(D->getQualifierRange());
1964 ToFunction->setQualifierInfo(NNS, NNSRange);
1965 }
Douglas Gregor325bf172010-02-22 17:42:47 +00001966 ToFunction->setAccess(D->getAccess());
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00001967 ToFunction->setLexicalDeclContext(LexicalDC);
1968 Importer.Imported(D, ToFunction);
Douglas Gregor9bed8792010-02-09 19:21:46 +00001969
Douglas Gregora404ea62010-02-10 19:54:31 +00001970 // Set the parameters.
1971 for (unsigned I = 0, N = Parameters.size(); I != N; ++I) {
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00001972 Parameters[I]->setOwningFunction(ToFunction);
1973 ToFunction->addDecl(Parameters[I]);
Douglas Gregora404ea62010-02-10 19:54:31 +00001974 }
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00001975 ToFunction->setParams(Parameters.data(), Parameters.size());
Douglas Gregora404ea62010-02-10 19:54:31 +00001976
1977 // FIXME: Other bits to merge?
Douglas Gregor81134ad2010-10-01 23:55:07 +00001978
1979 // Add this function to the lexical context.
1980 LexicalDC->addDecl(ToFunction);
1981
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00001982 return ToFunction;
Douglas Gregora404ea62010-02-10 19:54:31 +00001983}
1984
Douglas Gregorc144f352010-02-21 18:29:16 +00001985Decl *ASTNodeImporter::VisitCXXMethodDecl(CXXMethodDecl *D) {
1986 return VisitFunctionDecl(D);
1987}
1988
1989Decl *ASTNodeImporter::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
1990 return VisitCXXMethodDecl(D);
1991}
1992
1993Decl *ASTNodeImporter::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
1994 return VisitCXXMethodDecl(D);
1995}
1996
1997Decl *ASTNodeImporter::VisitCXXConversionDecl(CXXConversionDecl *D) {
1998 return VisitCXXMethodDecl(D);
1999}
2000
Douglas Gregor96a01b42010-02-11 00:48:18 +00002001Decl *ASTNodeImporter::VisitFieldDecl(FieldDecl *D) {
2002 // Import the major distinguishing characteristics of a variable.
2003 DeclContext *DC, *LexicalDC;
2004 DeclarationName Name;
Douglas Gregor96a01b42010-02-11 00:48:18 +00002005 SourceLocation Loc;
Douglas Gregorea35d112010-02-15 23:54:17 +00002006 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
2007 return 0;
2008
2009 // Import the type.
2010 QualType T = Importer.Import(D->getType());
2011 if (T.isNull())
Douglas Gregor96a01b42010-02-11 00:48:18 +00002012 return 0;
2013
2014 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
2015 Expr *BitWidth = Importer.Import(D->getBitWidth());
2016 if (!BitWidth && D->getBitWidth())
2017 return 0;
2018
2019 FieldDecl *ToField = FieldDecl::Create(Importer.getToContext(), DC,
2020 Loc, Name.getAsIdentifierInfo(),
2021 T, TInfo, BitWidth, D->isMutable());
Douglas Gregor325bf172010-02-22 17:42:47 +00002022 ToField->setAccess(D->getAccess());
Douglas Gregor96a01b42010-02-11 00:48:18 +00002023 ToField->setLexicalDeclContext(LexicalDC);
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00002024 Importer.Imported(D, ToField);
Douglas Gregor96a01b42010-02-11 00:48:18 +00002025 LexicalDC->addDecl(ToField);
2026 return ToField;
2027}
2028
Douglas Gregor2e55e3a2010-02-17 00:34:30 +00002029Decl *ASTNodeImporter::VisitObjCIvarDecl(ObjCIvarDecl *D) {
2030 // Import the major distinguishing characteristics of an ivar.
2031 DeclContext *DC, *LexicalDC;
2032 DeclarationName Name;
2033 SourceLocation Loc;
2034 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
2035 return 0;
2036
2037 // Determine whether we've already imported this ivar
2038 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
2039 Lookup.first != Lookup.second;
2040 ++Lookup.first) {
2041 if (ObjCIvarDecl *FoundIvar = dyn_cast<ObjCIvarDecl>(*Lookup.first)) {
2042 if (Importer.IsStructurallyEquivalent(D->getType(),
2043 FoundIvar->getType())) {
2044 Importer.Imported(D, FoundIvar);
2045 return FoundIvar;
2046 }
2047
2048 Importer.ToDiag(Loc, diag::err_odr_ivar_type_inconsistent)
2049 << Name << D->getType() << FoundIvar->getType();
2050 Importer.ToDiag(FoundIvar->getLocation(), diag::note_odr_value_here)
2051 << FoundIvar->getType();
2052 return 0;
2053 }
2054 }
2055
2056 // Import the type.
2057 QualType T = Importer.Import(D->getType());
2058 if (T.isNull())
2059 return 0;
2060
2061 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
2062 Expr *BitWidth = Importer.Import(D->getBitWidth());
2063 if (!BitWidth && D->getBitWidth())
2064 return 0;
2065
Daniel Dunbara0654922010-04-02 20:10:03 +00002066 ObjCIvarDecl *ToIvar = ObjCIvarDecl::Create(Importer.getToContext(),
2067 cast<ObjCContainerDecl>(DC),
Douglas Gregor2e55e3a2010-02-17 00:34:30 +00002068 Loc, Name.getAsIdentifierInfo(),
2069 T, TInfo, D->getAccessControl(),
Fariborz Jahanianac0021b2010-07-17 18:35:47 +00002070 BitWidth, D->getSynthesize());
Douglas Gregor2e55e3a2010-02-17 00:34:30 +00002071 ToIvar->setLexicalDeclContext(LexicalDC);
2072 Importer.Imported(D, ToIvar);
2073 LexicalDC->addDecl(ToIvar);
2074 return ToIvar;
2075
2076}
2077
Douglas Gregora404ea62010-02-10 19:54:31 +00002078Decl *ASTNodeImporter::VisitVarDecl(VarDecl *D) {
2079 // Import the major distinguishing characteristics of a variable.
2080 DeclContext *DC, *LexicalDC;
2081 DeclarationName Name;
Douglas Gregora404ea62010-02-10 19:54:31 +00002082 SourceLocation Loc;
Douglas Gregorea35d112010-02-15 23:54:17 +00002083 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
Douglas Gregor089459a2010-02-08 21:09:39 +00002084 return 0;
2085
Douglas Gregor089459a2010-02-08 21:09:39 +00002086 // Try to find a variable in our own ("to") context with the same name and
2087 // in the same context as the variable we're importing.
Douglas Gregor9bed8792010-02-09 19:21:46 +00002088 if (D->isFileVarDecl()) {
Douglas Gregor089459a2010-02-08 21:09:39 +00002089 VarDecl *MergeWithVar = 0;
2090 llvm::SmallVector<NamedDecl *, 4> ConflictingDecls;
2091 unsigned IDNS = Decl::IDNS_Ordinary;
Douglas Gregor9bed8792010-02-09 19:21:46 +00002092 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
Douglas Gregor089459a2010-02-08 21:09:39 +00002093 Lookup.first != Lookup.second;
2094 ++Lookup.first) {
2095 if (!(*Lookup.first)->isInIdentifierNamespace(IDNS))
2096 continue;
2097
2098 if (VarDecl *FoundVar = dyn_cast<VarDecl>(*Lookup.first)) {
2099 // We have found a variable that we may need to merge with. Check it.
2100 if (isExternalLinkage(FoundVar->getLinkage()) &&
2101 isExternalLinkage(D->getLinkage())) {
Douglas Gregorea35d112010-02-15 23:54:17 +00002102 if (Importer.IsStructurallyEquivalent(D->getType(),
2103 FoundVar->getType())) {
Douglas Gregor089459a2010-02-08 21:09:39 +00002104 MergeWithVar = FoundVar;
2105 break;
2106 }
2107
Douglas Gregord0145422010-02-12 17:23:39 +00002108 const ArrayType *FoundArray
2109 = Importer.getToContext().getAsArrayType(FoundVar->getType());
2110 const ArrayType *TArray
Douglas Gregorea35d112010-02-15 23:54:17 +00002111 = Importer.getToContext().getAsArrayType(D->getType());
Douglas Gregord0145422010-02-12 17:23:39 +00002112 if (FoundArray && TArray) {
2113 if (isa<IncompleteArrayType>(FoundArray) &&
2114 isa<ConstantArrayType>(TArray)) {
Douglas Gregorea35d112010-02-15 23:54:17 +00002115 // Import the type.
2116 QualType T = Importer.Import(D->getType());
2117 if (T.isNull())
2118 return 0;
2119
Douglas Gregord0145422010-02-12 17:23:39 +00002120 FoundVar->setType(T);
2121 MergeWithVar = FoundVar;
2122 break;
2123 } else if (isa<IncompleteArrayType>(TArray) &&
2124 isa<ConstantArrayType>(FoundArray)) {
2125 MergeWithVar = FoundVar;
2126 break;
Douglas Gregor0f962a82010-02-10 17:16:49 +00002127 }
2128 }
2129
Douglas Gregor089459a2010-02-08 21:09:39 +00002130 Importer.ToDiag(Loc, diag::err_odr_variable_type_inconsistent)
Douglas Gregorea35d112010-02-15 23:54:17 +00002131 << Name << D->getType() << FoundVar->getType();
Douglas Gregor089459a2010-02-08 21:09:39 +00002132 Importer.ToDiag(FoundVar->getLocation(), diag::note_odr_value_here)
2133 << FoundVar->getType();
2134 }
2135 }
2136
2137 ConflictingDecls.push_back(*Lookup.first);
2138 }
2139
2140 if (MergeWithVar) {
2141 // An equivalent variable with external linkage has been found. Link
2142 // the two declarations, then merge them.
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00002143 Importer.Imported(D, MergeWithVar);
Douglas Gregor089459a2010-02-08 21:09:39 +00002144
2145 if (VarDecl *DDef = D->getDefinition()) {
2146 if (VarDecl *ExistingDef = MergeWithVar->getDefinition()) {
2147 Importer.ToDiag(ExistingDef->getLocation(),
2148 diag::err_odr_variable_multiple_def)
2149 << Name;
2150 Importer.FromDiag(DDef->getLocation(), diag::note_odr_defined_here);
2151 } else {
2152 Expr *Init = Importer.Import(DDef->getInit());
Douglas Gregor838db382010-02-11 01:19:42 +00002153 MergeWithVar->setInit(Init);
Douglas Gregor089459a2010-02-08 21:09:39 +00002154 }
2155 }
2156
2157 return MergeWithVar;
2158 }
2159
2160 if (!ConflictingDecls.empty()) {
2161 Name = Importer.HandleNameConflict(Name, DC, IDNS,
2162 ConflictingDecls.data(),
2163 ConflictingDecls.size());
2164 if (!Name)
2165 return 0;
2166 }
2167 }
Douglas Gregor82fc4bf2010-02-10 17:47:19 +00002168
Douglas Gregorea35d112010-02-15 23:54:17 +00002169 // Import the type.
2170 QualType T = Importer.Import(D->getType());
2171 if (T.isNull())
2172 return 0;
2173
Douglas Gregor089459a2010-02-08 21:09:39 +00002174 // Create the imported variable.
Douglas Gregor82fc4bf2010-02-10 17:47:19 +00002175 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
Douglas Gregor089459a2010-02-08 21:09:39 +00002176 VarDecl *ToVar = VarDecl::Create(Importer.getToContext(), DC, Loc,
2177 Name.getAsIdentifierInfo(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00002178 D->getStorageClass(),
2179 D->getStorageClassAsWritten());
John McCallb6217662010-03-15 10:12:16 +00002180 // Import the qualifier, if any.
2181 if (D->getQualifier()) {
2182 NestedNameSpecifier *NNS = Importer.Import(D->getQualifier());
2183 SourceRange NNSRange = Importer.Import(D->getQualifierRange());
2184 ToVar->setQualifierInfo(NNS, NNSRange);
2185 }
Douglas Gregor325bf172010-02-22 17:42:47 +00002186 ToVar->setAccess(D->getAccess());
Douglas Gregor9bed8792010-02-09 19:21:46 +00002187 ToVar->setLexicalDeclContext(LexicalDC);
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00002188 Importer.Imported(D, ToVar);
Douglas Gregor9bed8792010-02-09 19:21:46 +00002189 LexicalDC->addDecl(ToVar);
2190
Douglas Gregor089459a2010-02-08 21:09:39 +00002191 // Merge the initializer.
2192 // FIXME: Can we really import any initializer? Alternatively, we could force
2193 // ourselves to import every declaration of a variable and then only use
2194 // getInit() here.
Douglas Gregor838db382010-02-11 01:19:42 +00002195 ToVar->setInit(Importer.Import(const_cast<Expr *>(D->getAnyInitializer())));
Douglas Gregor089459a2010-02-08 21:09:39 +00002196
2197 // FIXME: Other bits to merge?
2198
2199 return ToVar;
2200}
2201
Douglas Gregor2cd00932010-02-17 21:22:52 +00002202Decl *ASTNodeImporter::VisitImplicitParamDecl(ImplicitParamDecl *D) {
2203 // Parameters are created in the translation unit's context, then moved
2204 // into the function declaration's context afterward.
2205 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
2206
2207 // Import the name of this declaration.
2208 DeclarationName Name = Importer.Import(D->getDeclName());
2209 if (D->getDeclName() && !Name)
2210 return 0;
2211
2212 // Import the location of this declaration.
2213 SourceLocation Loc = Importer.Import(D->getLocation());
2214
2215 // Import the parameter's type.
2216 QualType T = Importer.Import(D->getType());
2217 if (T.isNull())
2218 return 0;
2219
2220 // Create the imported parameter.
2221 ImplicitParamDecl *ToParm
2222 = ImplicitParamDecl::Create(Importer.getToContext(), DC,
2223 Loc, Name.getAsIdentifierInfo(),
2224 T);
2225 return Importer.Imported(D, ToParm);
2226}
2227
Douglas Gregora404ea62010-02-10 19:54:31 +00002228Decl *ASTNodeImporter::VisitParmVarDecl(ParmVarDecl *D) {
2229 // Parameters are created in the translation unit's context, then moved
2230 // into the function declaration's context afterward.
2231 DeclContext *DC = Importer.getToContext().getTranslationUnitDecl();
2232
Douglas Gregor82fc4bf2010-02-10 17:47:19 +00002233 // Import the name of this declaration.
2234 DeclarationName Name = Importer.Import(D->getDeclName());
2235 if (D->getDeclName() && !Name)
2236 return 0;
2237
Douglas Gregora404ea62010-02-10 19:54:31 +00002238 // Import the location of this declaration.
2239 SourceLocation Loc = Importer.Import(D->getLocation());
2240
2241 // Import the parameter's type.
2242 QualType T = Importer.Import(D->getType());
2243 if (T.isNull())
2244 return 0;
2245
2246 // Create the imported parameter.
2247 TypeSourceInfo *TInfo = Importer.Import(D->getTypeSourceInfo());
2248 ParmVarDecl *ToParm = ParmVarDecl::Create(Importer.getToContext(), DC,
2249 Loc, Name.getAsIdentifierInfo(),
2250 T, TInfo, D->getStorageClass(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00002251 D->getStorageClassAsWritten(),
Douglas Gregora404ea62010-02-10 19:54:31 +00002252 /*FIXME: Default argument*/ 0);
John McCallbf73b352010-03-12 18:31:32 +00002253 ToParm->setHasInheritedDefaultArg(D->hasInheritedDefaultArg());
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00002254 return Importer.Imported(D, ToParm);
Douglas Gregora404ea62010-02-10 19:54:31 +00002255}
2256
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00002257Decl *ASTNodeImporter::VisitObjCMethodDecl(ObjCMethodDecl *D) {
2258 // Import the major distinguishing characteristics of a method.
2259 DeclContext *DC, *LexicalDC;
2260 DeclarationName Name;
2261 SourceLocation Loc;
2262 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
2263 return 0;
2264
2265 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
2266 Lookup.first != Lookup.second;
2267 ++Lookup.first) {
2268 if (ObjCMethodDecl *FoundMethod = dyn_cast<ObjCMethodDecl>(*Lookup.first)) {
2269 if (FoundMethod->isInstanceMethod() != D->isInstanceMethod())
2270 continue;
2271
2272 // Check return types.
2273 if (!Importer.IsStructurallyEquivalent(D->getResultType(),
2274 FoundMethod->getResultType())) {
2275 Importer.ToDiag(Loc, diag::err_odr_objc_method_result_type_inconsistent)
2276 << D->isInstanceMethod() << Name
2277 << D->getResultType() << FoundMethod->getResultType();
2278 Importer.ToDiag(FoundMethod->getLocation(),
2279 diag::note_odr_objc_method_here)
2280 << D->isInstanceMethod() << Name;
2281 return 0;
2282 }
2283
2284 // Check the number of parameters.
2285 if (D->param_size() != FoundMethod->param_size()) {
2286 Importer.ToDiag(Loc, diag::err_odr_objc_method_num_params_inconsistent)
2287 << D->isInstanceMethod() << Name
2288 << D->param_size() << FoundMethod->param_size();
2289 Importer.ToDiag(FoundMethod->getLocation(),
2290 diag::note_odr_objc_method_here)
2291 << D->isInstanceMethod() << Name;
2292 return 0;
2293 }
2294
2295 // Check parameter types.
2296 for (ObjCMethodDecl::param_iterator P = D->param_begin(),
2297 PEnd = D->param_end(), FoundP = FoundMethod->param_begin();
2298 P != PEnd; ++P, ++FoundP) {
2299 if (!Importer.IsStructurallyEquivalent((*P)->getType(),
2300 (*FoundP)->getType())) {
2301 Importer.FromDiag((*P)->getLocation(),
2302 diag::err_odr_objc_method_param_type_inconsistent)
2303 << D->isInstanceMethod() << Name
2304 << (*P)->getType() << (*FoundP)->getType();
2305 Importer.ToDiag((*FoundP)->getLocation(), diag::note_odr_value_here)
2306 << (*FoundP)->getType();
2307 return 0;
2308 }
2309 }
2310
2311 // Check variadic/non-variadic.
2312 // Check the number of parameters.
2313 if (D->isVariadic() != FoundMethod->isVariadic()) {
2314 Importer.ToDiag(Loc, diag::err_odr_objc_method_variadic_inconsistent)
2315 << D->isInstanceMethod() << Name;
2316 Importer.ToDiag(FoundMethod->getLocation(),
2317 diag::note_odr_objc_method_here)
2318 << D->isInstanceMethod() << Name;
2319 return 0;
2320 }
2321
2322 // FIXME: Any other bits we need to merge?
2323 return Importer.Imported(D, FoundMethod);
2324 }
2325 }
2326
2327 // Import the result type.
2328 QualType ResultTy = Importer.Import(D->getResultType());
2329 if (ResultTy.isNull())
2330 return 0;
2331
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002332 TypeSourceInfo *ResultTInfo = Importer.Import(D->getResultTypeSourceInfo());
2333
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00002334 ObjCMethodDecl *ToMethod
2335 = ObjCMethodDecl::Create(Importer.getToContext(),
2336 Loc,
2337 Importer.Import(D->getLocEnd()),
2338 Name.getObjCSelector(),
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00002339 ResultTy, ResultTInfo, DC,
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00002340 D->isInstanceMethod(),
2341 D->isVariadic(),
2342 D->isSynthesized(),
Fariborz Jahanian3fe10412010-07-22 18:24:20 +00002343 D->isDefined(),
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00002344 D->getImplementationControl());
2345
2346 // FIXME: When we decide to merge method definitions, we'll need to
2347 // deal with implicit parameters.
2348
2349 // Import the parameters
2350 llvm::SmallVector<ParmVarDecl *, 5> ToParams;
2351 for (ObjCMethodDecl::param_iterator FromP = D->param_begin(),
2352 FromPEnd = D->param_end();
2353 FromP != FromPEnd;
2354 ++FromP) {
2355 ParmVarDecl *ToP = cast_or_null<ParmVarDecl>(Importer.Import(*FromP));
2356 if (!ToP)
2357 return 0;
2358
2359 ToParams.push_back(ToP);
2360 }
2361
2362 // Set the parameters.
2363 for (unsigned I = 0, N = ToParams.size(); I != N; ++I) {
2364 ToParams[I]->setOwningFunction(ToMethod);
2365 ToMethod->addDecl(ToParams[I]);
2366 }
2367 ToMethod->setMethodParams(Importer.getToContext(),
Fariborz Jahanian4ecb25f2010-04-09 15:40:42 +00002368 ToParams.data(), ToParams.size(),
2369 ToParams.size());
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00002370
2371 ToMethod->setLexicalDeclContext(LexicalDC);
2372 Importer.Imported(D, ToMethod);
2373 LexicalDC->addDecl(ToMethod);
2374 return ToMethod;
2375}
2376
Douglas Gregorb4677b62010-02-18 01:47:50 +00002377Decl *ASTNodeImporter::VisitObjCCategoryDecl(ObjCCategoryDecl *D) {
2378 // Import the major distinguishing characteristics of a category.
2379 DeclContext *DC, *LexicalDC;
2380 DeclarationName Name;
2381 SourceLocation Loc;
2382 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
2383 return 0;
2384
2385 ObjCInterfaceDecl *ToInterface
2386 = cast_or_null<ObjCInterfaceDecl>(Importer.Import(D->getClassInterface()));
2387 if (!ToInterface)
2388 return 0;
2389
2390 // Determine if we've already encountered this category.
2391 ObjCCategoryDecl *MergeWithCategory
2392 = ToInterface->FindCategoryDeclaration(Name.getAsIdentifierInfo());
2393 ObjCCategoryDecl *ToCategory = MergeWithCategory;
2394 if (!ToCategory) {
2395 ToCategory = ObjCCategoryDecl::Create(Importer.getToContext(), DC,
2396 Importer.Import(D->getAtLoc()),
2397 Loc,
2398 Importer.Import(D->getCategoryNameLoc()),
2399 Name.getAsIdentifierInfo());
2400 ToCategory->setLexicalDeclContext(LexicalDC);
2401 LexicalDC->addDecl(ToCategory);
2402 Importer.Imported(D, ToCategory);
2403
2404 // Link this category into its class's category list.
2405 ToCategory->setClassInterface(ToInterface);
2406 ToCategory->insertNextClassCategory();
2407
2408 // Import protocols
2409 llvm::SmallVector<ObjCProtocolDecl *, 4> Protocols;
2410 llvm::SmallVector<SourceLocation, 4> ProtocolLocs;
2411 ObjCCategoryDecl::protocol_loc_iterator FromProtoLoc
2412 = D->protocol_loc_begin();
2413 for (ObjCCategoryDecl::protocol_iterator FromProto = D->protocol_begin(),
2414 FromProtoEnd = D->protocol_end();
2415 FromProto != FromProtoEnd;
2416 ++FromProto, ++FromProtoLoc) {
2417 ObjCProtocolDecl *ToProto
2418 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
2419 if (!ToProto)
2420 return 0;
2421 Protocols.push_back(ToProto);
2422 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
2423 }
2424
2425 // FIXME: If we're merging, make sure that the protocol list is the same.
2426 ToCategory->setProtocolList(Protocols.data(), Protocols.size(),
2427 ProtocolLocs.data(), Importer.getToContext());
2428
2429 } else {
2430 Importer.Imported(D, ToCategory);
2431 }
2432
2433 // Import all of the members of this category.
Douglas Gregor083a8212010-02-21 18:24:45 +00002434 ImportDeclContext(D);
Douglas Gregorb4677b62010-02-18 01:47:50 +00002435
2436 // If we have an implementation, import it as well.
2437 if (D->getImplementation()) {
2438 ObjCCategoryImplDecl *Impl
2439 = cast<ObjCCategoryImplDecl>(Importer.Import(D->getImplementation()));
2440 if (!Impl)
2441 return 0;
2442
2443 ToCategory->setImplementation(Impl);
2444 }
2445
2446 return ToCategory;
2447}
2448
Douglas Gregor2e2a4002010-02-17 16:12:00 +00002449Decl *ASTNodeImporter::VisitObjCProtocolDecl(ObjCProtocolDecl *D) {
Douglas Gregorb4677b62010-02-18 01:47:50 +00002450 // Import the major distinguishing characteristics of a protocol.
Douglas Gregor2e2a4002010-02-17 16:12:00 +00002451 DeclContext *DC, *LexicalDC;
2452 DeclarationName Name;
2453 SourceLocation Loc;
2454 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
2455 return 0;
2456
2457 ObjCProtocolDecl *MergeWithProtocol = 0;
2458 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
2459 Lookup.first != Lookup.second;
2460 ++Lookup.first) {
2461 if (!(*Lookup.first)->isInIdentifierNamespace(Decl::IDNS_ObjCProtocol))
2462 continue;
2463
2464 if ((MergeWithProtocol = dyn_cast<ObjCProtocolDecl>(*Lookup.first)))
2465 break;
2466 }
2467
2468 ObjCProtocolDecl *ToProto = MergeWithProtocol;
2469 if (!ToProto || ToProto->isForwardDecl()) {
2470 if (!ToProto) {
2471 ToProto = ObjCProtocolDecl::Create(Importer.getToContext(), DC, Loc,
2472 Name.getAsIdentifierInfo());
2473 ToProto->setForwardDecl(D->isForwardDecl());
2474 ToProto->setLexicalDeclContext(LexicalDC);
2475 LexicalDC->addDecl(ToProto);
2476 }
2477 Importer.Imported(D, ToProto);
2478
2479 // Import protocols
2480 llvm::SmallVector<ObjCProtocolDecl *, 4> Protocols;
2481 llvm::SmallVector<SourceLocation, 4> ProtocolLocs;
2482 ObjCProtocolDecl::protocol_loc_iterator
2483 FromProtoLoc = D->protocol_loc_begin();
2484 for (ObjCProtocolDecl::protocol_iterator FromProto = D->protocol_begin(),
2485 FromProtoEnd = D->protocol_end();
2486 FromProto != FromProtoEnd;
2487 ++FromProto, ++FromProtoLoc) {
2488 ObjCProtocolDecl *ToProto
2489 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
2490 if (!ToProto)
2491 return 0;
2492 Protocols.push_back(ToProto);
2493 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
2494 }
2495
2496 // FIXME: If we're merging, make sure that the protocol list is the same.
2497 ToProto->setProtocolList(Protocols.data(), Protocols.size(),
2498 ProtocolLocs.data(), Importer.getToContext());
2499 } else {
2500 Importer.Imported(D, ToProto);
2501 }
2502
Douglas Gregorb4677b62010-02-18 01:47:50 +00002503 // Import all of the members of this protocol.
Douglas Gregor083a8212010-02-21 18:24:45 +00002504 ImportDeclContext(D);
Douglas Gregor2e2a4002010-02-17 16:12:00 +00002505
2506 return ToProto;
2507}
2508
Douglas Gregora12d2942010-02-16 01:20:57 +00002509Decl *ASTNodeImporter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
2510 // Import the major distinguishing characteristics of an @interface.
2511 DeclContext *DC, *LexicalDC;
2512 DeclarationName Name;
2513 SourceLocation Loc;
2514 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
2515 return 0;
2516
2517 ObjCInterfaceDecl *MergeWithIface = 0;
2518 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
2519 Lookup.first != Lookup.second;
2520 ++Lookup.first) {
2521 if (!(*Lookup.first)->isInIdentifierNamespace(Decl::IDNS_Ordinary))
2522 continue;
2523
2524 if ((MergeWithIface = dyn_cast<ObjCInterfaceDecl>(*Lookup.first)))
2525 break;
2526 }
2527
2528 ObjCInterfaceDecl *ToIface = MergeWithIface;
2529 if (!ToIface || ToIface->isForwardDecl()) {
2530 if (!ToIface) {
2531 ToIface = ObjCInterfaceDecl::Create(Importer.getToContext(),
2532 DC, Loc,
2533 Name.getAsIdentifierInfo(),
Douglas Gregordeacbdc2010-08-11 12:19:30 +00002534 Importer.Import(D->getClassLoc()),
Douglas Gregora12d2942010-02-16 01:20:57 +00002535 D->isForwardDecl(),
2536 D->isImplicitInterfaceDecl());
Douglas Gregor2e2a4002010-02-17 16:12:00 +00002537 ToIface->setForwardDecl(D->isForwardDecl());
Douglas Gregora12d2942010-02-16 01:20:57 +00002538 ToIface->setLexicalDeclContext(LexicalDC);
2539 LexicalDC->addDecl(ToIface);
2540 }
2541 Importer.Imported(D, ToIface);
2542
Douglas Gregora12d2942010-02-16 01:20:57 +00002543 if (D->getSuperClass()) {
2544 ObjCInterfaceDecl *Super
2545 = cast_or_null<ObjCInterfaceDecl>(Importer.Import(D->getSuperClass()));
2546 if (!Super)
2547 return 0;
2548
2549 ToIface->setSuperClass(Super);
2550 ToIface->setSuperClassLoc(Importer.Import(D->getSuperClassLoc()));
2551 }
2552
2553 // Import protocols
2554 llvm::SmallVector<ObjCProtocolDecl *, 4> Protocols;
2555 llvm::SmallVector<SourceLocation, 4> ProtocolLocs;
2556 ObjCInterfaceDecl::protocol_loc_iterator
2557 FromProtoLoc = D->protocol_loc_begin();
Ted Kremenek53b94412010-09-01 01:21:15 +00002558
2559 // FIXME: Should we be usng all_referenced_protocol_begin() here?
Douglas Gregora12d2942010-02-16 01:20:57 +00002560 for (ObjCInterfaceDecl::protocol_iterator FromProto = D->protocol_begin(),
2561 FromProtoEnd = D->protocol_end();
2562 FromProto != FromProtoEnd;
2563 ++FromProto, ++FromProtoLoc) {
2564 ObjCProtocolDecl *ToProto
2565 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
2566 if (!ToProto)
2567 return 0;
2568 Protocols.push_back(ToProto);
2569 ProtocolLocs.push_back(Importer.Import(*FromProtoLoc));
2570 }
2571
2572 // FIXME: If we're merging, make sure that the protocol list is the same.
2573 ToIface->setProtocolList(Protocols.data(), Protocols.size(),
2574 ProtocolLocs.data(), Importer.getToContext());
2575
Douglas Gregora12d2942010-02-16 01:20:57 +00002576 // Import @end range
2577 ToIface->setAtEndRange(Importer.Import(D->getAtEndRange()));
2578 } else {
2579 Importer.Imported(D, ToIface);
Douglas Gregor2e55e3a2010-02-17 00:34:30 +00002580
2581 // Check for consistency of superclasses.
2582 DeclarationName FromSuperName, ToSuperName;
2583 if (D->getSuperClass())
2584 FromSuperName = Importer.Import(D->getSuperClass()->getDeclName());
2585 if (ToIface->getSuperClass())
2586 ToSuperName = ToIface->getSuperClass()->getDeclName();
2587 if (FromSuperName != ToSuperName) {
2588 Importer.ToDiag(ToIface->getLocation(),
2589 diag::err_odr_objc_superclass_inconsistent)
2590 << ToIface->getDeclName();
2591 if (ToIface->getSuperClass())
2592 Importer.ToDiag(ToIface->getSuperClassLoc(),
2593 diag::note_odr_objc_superclass)
2594 << ToIface->getSuperClass()->getDeclName();
2595 else
2596 Importer.ToDiag(ToIface->getLocation(),
2597 diag::note_odr_objc_missing_superclass);
2598 if (D->getSuperClass())
2599 Importer.FromDiag(D->getSuperClassLoc(),
2600 diag::note_odr_objc_superclass)
2601 << D->getSuperClass()->getDeclName();
2602 else
2603 Importer.FromDiag(D->getLocation(),
2604 diag::note_odr_objc_missing_superclass);
2605 return 0;
2606 }
Douglas Gregora12d2942010-02-16 01:20:57 +00002607 }
2608
Douglas Gregorb4677b62010-02-18 01:47:50 +00002609 // Import categories. When the categories themselves are imported, they'll
2610 // hook themselves into this interface.
2611 for (ObjCCategoryDecl *FromCat = D->getCategoryList(); FromCat;
2612 FromCat = FromCat->getNextClassCategory())
2613 Importer.Import(FromCat);
2614
Douglas Gregora12d2942010-02-16 01:20:57 +00002615 // Import all of the members of this class.
Douglas Gregor083a8212010-02-21 18:24:45 +00002616 ImportDeclContext(D);
Douglas Gregora12d2942010-02-16 01:20:57 +00002617
2618 // If we have an @implementation, import it as well.
2619 if (D->getImplementation()) {
2620 ObjCImplementationDecl *Impl
2621 = cast<ObjCImplementationDecl>(Importer.Import(D->getImplementation()));
2622 if (!Impl)
2623 return 0;
2624
2625 ToIface->setImplementation(Impl);
2626 }
2627
Douglas Gregor2e2a4002010-02-17 16:12:00 +00002628 return ToIface;
Douglas Gregora12d2942010-02-16 01:20:57 +00002629}
2630
Douglas Gregore3261622010-02-17 18:02:10 +00002631Decl *ASTNodeImporter::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
2632 // Import the major distinguishing characteristics of an @property.
2633 DeclContext *DC, *LexicalDC;
2634 DeclarationName Name;
2635 SourceLocation Loc;
2636 if (ImportDeclParts(D, DC, LexicalDC, Name, Loc))
2637 return 0;
2638
2639 // Check whether we have already imported this property.
2640 for (DeclContext::lookup_result Lookup = DC->lookup(Name);
2641 Lookup.first != Lookup.second;
2642 ++Lookup.first) {
2643 if (ObjCPropertyDecl *FoundProp
2644 = dyn_cast<ObjCPropertyDecl>(*Lookup.first)) {
2645 // Check property types.
2646 if (!Importer.IsStructurallyEquivalent(D->getType(),
2647 FoundProp->getType())) {
2648 Importer.ToDiag(Loc, diag::err_odr_objc_property_type_inconsistent)
2649 << Name << D->getType() << FoundProp->getType();
2650 Importer.ToDiag(FoundProp->getLocation(), diag::note_odr_value_here)
2651 << FoundProp->getType();
2652 return 0;
2653 }
2654
2655 // FIXME: Check property attributes, getters, setters, etc.?
2656
2657 // Consider these properties to be equivalent.
2658 Importer.Imported(D, FoundProp);
2659 return FoundProp;
2660 }
2661 }
2662
2663 // Import the type.
John McCall83a230c2010-06-04 20:50:08 +00002664 TypeSourceInfo *T = Importer.Import(D->getTypeSourceInfo());
2665 if (!T)
Douglas Gregore3261622010-02-17 18:02:10 +00002666 return 0;
2667
2668 // Create the new property.
2669 ObjCPropertyDecl *ToProperty
2670 = ObjCPropertyDecl::Create(Importer.getToContext(), DC, Loc,
2671 Name.getAsIdentifierInfo(),
2672 Importer.Import(D->getAtLoc()),
2673 T,
2674 D->getPropertyImplementation());
2675 Importer.Imported(D, ToProperty);
2676 ToProperty->setLexicalDeclContext(LexicalDC);
2677 LexicalDC->addDecl(ToProperty);
2678
2679 ToProperty->setPropertyAttributes(D->getPropertyAttributes());
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +00002680 ToProperty->setPropertyAttributesAsWritten(
2681 D->getPropertyAttributesAsWritten());
Douglas Gregore3261622010-02-17 18:02:10 +00002682 ToProperty->setGetterName(Importer.Import(D->getGetterName()));
2683 ToProperty->setSetterName(Importer.Import(D->getSetterName()));
2684 ToProperty->setGetterMethodDecl(
2685 cast_or_null<ObjCMethodDecl>(Importer.Import(D->getGetterMethodDecl())));
2686 ToProperty->setSetterMethodDecl(
2687 cast_or_null<ObjCMethodDecl>(Importer.Import(D->getSetterMethodDecl())));
2688 ToProperty->setPropertyIvarDecl(
2689 cast_or_null<ObjCIvarDecl>(Importer.Import(D->getPropertyIvarDecl())));
2690 return ToProperty;
2691}
2692
Douglas Gregor2b785022010-02-18 02:12:22 +00002693Decl *
2694ASTNodeImporter::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D) {
2695 // Import the context of this declaration.
2696 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
2697 if (!DC)
2698 return 0;
2699
2700 DeclContext *LexicalDC = DC;
2701 if (D->getDeclContext() != D->getLexicalDeclContext()) {
2702 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
2703 if (!LexicalDC)
2704 return 0;
2705 }
2706
2707 // Import the location of this declaration.
2708 SourceLocation Loc = Importer.Import(D->getLocation());
2709
2710 llvm::SmallVector<ObjCProtocolDecl *, 4> Protocols;
2711 llvm::SmallVector<SourceLocation, 4> Locations;
2712 ObjCForwardProtocolDecl::protocol_loc_iterator FromProtoLoc
2713 = D->protocol_loc_begin();
2714 for (ObjCForwardProtocolDecl::protocol_iterator FromProto
2715 = D->protocol_begin(), FromProtoEnd = D->protocol_end();
2716 FromProto != FromProtoEnd;
2717 ++FromProto, ++FromProtoLoc) {
2718 ObjCProtocolDecl *ToProto
2719 = cast_or_null<ObjCProtocolDecl>(Importer.Import(*FromProto));
2720 if (!ToProto)
2721 continue;
2722
2723 Protocols.push_back(ToProto);
2724 Locations.push_back(Importer.Import(*FromProtoLoc));
2725 }
2726
2727 ObjCForwardProtocolDecl *ToForward
2728 = ObjCForwardProtocolDecl::Create(Importer.getToContext(), DC, Loc,
2729 Protocols.data(), Protocols.size(),
2730 Locations.data());
2731 ToForward->setLexicalDeclContext(LexicalDC);
2732 LexicalDC->addDecl(ToForward);
2733 Importer.Imported(D, ToForward);
2734 return ToForward;
2735}
2736
Douglas Gregora2bc15b2010-02-18 02:04:09 +00002737Decl *ASTNodeImporter::VisitObjCClassDecl(ObjCClassDecl *D) {
2738 // Import the context of this declaration.
2739 DeclContext *DC = Importer.ImportContext(D->getDeclContext());
2740 if (!DC)
2741 return 0;
2742
2743 DeclContext *LexicalDC = DC;
2744 if (D->getDeclContext() != D->getLexicalDeclContext()) {
2745 LexicalDC = Importer.ImportContext(D->getLexicalDeclContext());
2746 if (!LexicalDC)
2747 return 0;
2748 }
2749
2750 // Import the location of this declaration.
2751 SourceLocation Loc = Importer.Import(D->getLocation());
2752
2753 llvm::SmallVector<ObjCInterfaceDecl *, 4> Interfaces;
2754 llvm::SmallVector<SourceLocation, 4> Locations;
2755 for (ObjCClassDecl::iterator From = D->begin(), FromEnd = D->end();
2756 From != FromEnd; ++From) {
2757 ObjCInterfaceDecl *ToIface
2758 = cast_or_null<ObjCInterfaceDecl>(Importer.Import(From->getInterface()));
2759 if (!ToIface)
2760 continue;
2761
2762 Interfaces.push_back(ToIface);
2763 Locations.push_back(Importer.Import(From->getLocation()));
2764 }
2765
2766 ObjCClassDecl *ToClass = ObjCClassDecl::Create(Importer.getToContext(), DC,
2767 Loc,
2768 Interfaces.data(),
2769 Locations.data(),
2770 Interfaces.size());
2771 ToClass->setLexicalDeclContext(LexicalDC);
2772 LexicalDC->addDecl(ToClass);
2773 Importer.Imported(D, ToClass);
2774 return ToClass;
2775}
2776
Douglas Gregor4800d952010-02-11 19:21:55 +00002777//----------------------------------------------------------------------------
2778// Import Statements
2779//----------------------------------------------------------------------------
2780
2781Stmt *ASTNodeImporter::VisitStmt(Stmt *S) {
2782 Importer.FromDiag(S->getLocStart(), diag::err_unsupported_ast_node)
2783 << S->getStmtClassName();
2784 return 0;
2785}
2786
2787//----------------------------------------------------------------------------
2788// Import Expressions
2789//----------------------------------------------------------------------------
2790Expr *ASTNodeImporter::VisitExpr(Expr *E) {
2791 Importer.FromDiag(E->getLocStart(), diag::err_unsupported_ast_node)
2792 << E->getStmtClassName();
2793 return 0;
2794}
2795
Douglas Gregor44080632010-02-19 01:17:02 +00002796Expr *ASTNodeImporter::VisitDeclRefExpr(DeclRefExpr *E) {
2797 NestedNameSpecifier *Qualifier = 0;
2798 if (E->getQualifier()) {
2799 Qualifier = Importer.Import(E->getQualifier());
2800 if (!E->getQualifier())
2801 return 0;
2802 }
2803
2804 ValueDecl *ToD = cast_or_null<ValueDecl>(Importer.Import(E->getDecl()));
2805 if (!ToD)
2806 return 0;
2807
2808 QualType T = Importer.Import(E->getType());
2809 if (T.isNull())
2810 return 0;
2811
2812 return DeclRefExpr::Create(Importer.getToContext(), Qualifier,
2813 Importer.Import(E->getQualifierRange()),
2814 ToD,
2815 Importer.Import(E->getLocation()),
2816 T,
2817 /*FIXME:TemplateArgs=*/0);
2818}
2819
Douglas Gregor4800d952010-02-11 19:21:55 +00002820Expr *ASTNodeImporter::VisitIntegerLiteral(IntegerLiteral *E) {
2821 QualType T = Importer.Import(E->getType());
2822 if (T.isNull())
2823 return 0;
2824
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00002825 return IntegerLiteral::Create(Importer.getToContext(),
2826 E->getValue(), T,
2827 Importer.Import(E->getLocation()));
Douglas Gregor4800d952010-02-11 19:21:55 +00002828}
2829
Douglas Gregorb2e400a2010-02-18 02:21:22 +00002830Expr *ASTNodeImporter::VisitCharacterLiteral(CharacterLiteral *E) {
2831 QualType T = Importer.Import(E->getType());
2832 if (T.isNull())
2833 return 0;
2834
2835 return new (Importer.getToContext()) CharacterLiteral(E->getValue(),
2836 E->isWide(), T,
2837 Importer.Import(E->getLocation()));
2838}
2839
Douglas Gregorf638f952010-02-19 01:07:06 +00002840Expr *ASTNodeImporter::VisitParenExpr(ParenExpr *E) {
2841 Expr *SubExpr = Importer.Import(E->getSubExpr());
2842 if (!SubExpr)
2843 return 0;
2844
2845 return new (Importer.getToContext())
2846 ParenExpr(Importer.Import(E->getLParen()),
2847 Importer.Import(E->getRParen()),
2848 SubExpr);
2849}
2850
2851Expr *ASTNodeImporter::VisitUnaryOperator(UnaryOperator *E) {
2852 QualType T = Importer.Import(E->getType());
2853 if (T.isNull())
2854 return 0;
2855
2856 Expr *SubExpr = Importer.Import(E->getSubExpr());
2857 if (!SubExpr)
2858 return 0;
2859
2860 return new (Importer.getToContext()) UnaryOperator(SubExpr, E->getOpcode(),
2861 T,
2862 Importer.Import(E->getOperatorLoc()));
2863}
2864
Douglas Gregorbd249a52010-02-19 01:24:23 +00002865Expr *ASTNodeImporter::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E) {
2866 QualType ResultType = Importer.Import(E->getType());
2867
2868 if (E->isArgumentType()) {
2869 TypeSourceInfo *TInfo = Importer.Import(E->getArgumentTypeInfo());
2870 if (!TInfo)
2871 return 0;
2872
2873 return new (Importer.getToContext()) SizeOfAlignOfExpr(E->isSizeOf(),
2874 TInfo, ResultType,
2875 Importer.Import(E->getOperatorLoc()),
2876 Importer.Import(E->getRParenLoc()));
2877 }
2878
2879 Expr *SubExpr = Importer.Import(E->getArgumentExpr());
2880 if (!SubExpr)
2881 return 0;
2882
2883 return new (Importer.getToContext()) SizeOfAlignOfExpr(E->isSizeOf(),
2884 SubExpr, ResultType,
2885 Importer.Import(E->getOperatorLoc()),
2886 Importer.Import(E->getRParenLoc()));
2887}
2888
Douglas Gregorf638f952010-02-19 01:07:06 +00002889Expr *ASTNodeImporter::VisitBinaryOperator(BinaryOperator *E) {
2890 QualType T = Importer.Import(E->getType());
2891 if (T.isNull())
2892 return 0;
2893
2894 Expr *LHS = Importer.Import(E->getLHS());
2895 if (!LHS)
2896 return 0;
2897
2898 Expr *RHS = Importer.Import(E->getRHS());
2899 if (!RHS)
2900 return 0;
2901
2902 return new (Importer.getToContext()) BinaryOperator(LHS, RHS, E->getOpcode(),
2903 T,
2904 Importer.Import(E->getOperatorLoc()));
2905}
2906
2907Expr *ASTNodeImporter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
2908 QualType T = Importer.Import(E->getType());
2909 if (T.isNull())
2910 return 0;
2911
2912 QualType CompLHSType = Importer.Import(E->getComputationLHSType());
2913 if (CompLHSType.isNull())
2914 return 0;
2915
2916 QualType CompResultType = Importer.Import(E->getComputationResultType());
2917 if (CompResultType.isNull())
2918 return 0;
2919
2920 Expr *LHS = Importer.Import(E->getLHS());
2921 if (!LHS)
2922 return 0;
2923
2924 Expr *RHS = Importer.Import(E->getRHS());
2925 if (!RHS)
2926 return 0;
2927
2928 return new (Importer.getToContext())
2929 CompoundAssignOperator(LHS, RHS, E->getOpcode(),
2930 T, CompLHSType, CompResultType,
2931 Importer.Import(E->getOperatorLoc()));
2932}
2933
John McCallf871d0c2010-08-07 06:22:56 +00002934bool ImportCastPath(CastExpr *E, CXXCastPath &Path) {
2935 if (E->path_empty()) return false;
2936
2937 // TODO: import cast paths
2938 return true;
2939}
2940
Douglas Gregor36ead2e2010-02-12 22:17:39 +00002941Expr *ASTNodeImporter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
2942 QualType T = Importer.Import(E->getType());
2943 if (T.isNull())
2944 return 0;
2945
2946 Expr *SubExpr = Importer.Import(E->getSubExpr());
2947 if (!SubExpr)
2948 return 0;
John McCallf871d0c2010-08-07 06:22:56 +00002949
2950 CXXCastPath BasePath;
2951 if (ImportCastPath(E, BasePath))
2952 return 0;
2953
2954 return ImplicitCastExpr::Create(Importer.getToContext(), T, E->getCastKind(),
John McCall5baba9d2010-08-25 10:28:54 +00002955 SubExpr, &BasePath, E->getValueKind());
Douglas Gregor36ead2e2010-02-12 22:17:39 +00002956}
2957
Douglas Gregor008847a2010-02-19 01:32:14 +00002958Expr *ASTNodeImporter::VisitCStyleCastExpr(CStyleCastExpr *E) {
2959 QualType T = Importer.Import(E->getType());
2960 if (T.isNull())
2961 return 0;
2962
2963 Expr *SubExpr = Importer.Import(E->getSubExpr());
2964 if (!SubExpr)
2965 return 0;
2966
2967 TypeSourceInfo *TInfo = Importer.Import(E->getTypeInfoAsWritten());
2968 if (!TInfo && E->getTypeInfoAsWritten())
2969 return 0;
2970
John McCallf871d0c2010-08-07 06:22:56 +00002971 CXXCastPath BasePath;
2972 if (ImportCastPath(E, BasePath))
2973 return 0;
2974
2975 return CStyleCastExpr::Create(Importer.getToContext(), T, E->getCastKind(),
2976 SubExpr, &BasePath, TInfo,
2977 Importer.Import(E->getLParenLoc()),
2978 Importer.Import(E->getRParenLoc()));
Douglas Gregor008847a2010-02-19 01:32:14 +00002979}
2980
Douglas Gregor4800d952010-02-11 19:21:55 +00002981ASTImporter::ASTImporter(Diagnostic &Diags,
2982 ASTContext &ToContext, FileManager &ToFileManager,
2983 ASTContext &FromContext, FileManager &FromFileManager)
Douglas Gregor1b2949d2010-02-05 17:54:41 +00002984 : ToContext(ToContext), FromContext(FromContext),
Douglas Gregor88523732010-02-10 00:15:17 +00002985 ToFileManager(ToFileManager), FromFileManager(FromFileManager),
Douglas Gregor4800d952010-02-11 19:21:55 +00002986 Diags(Diags) {
Douglas Gregor9bed8792010-02-09 19:21:46 +00002987 ImportedDecls[FromContext.getTranslationUnitDecl()]
2988 = ToContext.getTranslationUnitDecl();
2989}
2990
2991ASTImporter::~ASTImporter() { }
Douglas Gregor1b2949d2010-02-05 17:54:41 +00002992
2993QualType ASTImporter::Import(QualType FromT) {
2994 if (FromT.isNull())
2995 return QualType();
2996
Douglas Gregor169fba52010-02-08 15:18:58 +00002997 // Check whether we've already imported this type.
2998 llvm::DenseMap<Type *, Type *>::iterator Pos
2999 = ImportedTypes.find(FromT.getTypePtr());
3000 if (Pos != ImportedTypes.end())
3001 return ToContext.getQualifiedType(Pos->second, FromT.getQualifiers());
Douglas Gregor1b2949d2010-02-05 17:54:41 +00003002
Douglas Gregor169fba52010-02-08 15:18:58 +00003003 // Import the type
Douglas Gregor1b2949d2010-02-05 17:54:41 +00003004 ASTNodeImporter Importer(*this);
3005 QualType ToT = Importer.Visit(FromT.getTypePtr());
3006 if (ToT.isNull())
3007 return ToT;
3008
Douglas Gregor169fba52010-02-08 15:18:58 +00003009 // Record the imported type.
3010 ImportedTypes[FromT.getTypePtr()] = ToT.getTypePtr();
3011
Douglas Gregor1b2949d2010-02-05 17:54:41 +00003012 return ToContext.getQualifiedType(ToT, FromT.getQualifiers());
3013}
3014
Douglas Gregor9bed8792010-02-09 19:21:46 +00003015TypeSourceInfo *ASTImporter::Import(TypeSourceInfo *FromTSI) {
Douglas Gregor82fc4bf2010-02-10 17:47:19 +00003016 if (!FromTSI)
3017 return FromTSI;
3018
3019 // FIXME: For now we just create a "trivial" type source info based
Nick Lewycky56062202010-07-26 16:56:01 +00003020 // on the type and a single location. Implement a real version of this.
Douglas Gregor82fc4bf2010-02-10 17:47:19 +00003021 QualType T = Import(FromTSI->getType());
3022 if (T.isNull())
3023 return 0;
3024
3025 return ToContext.getTrivialTypeSourceInfo(T,
Abramo Bagnarabd054db2010-05-20 10:00:11 +00003026 FromTSI->getTypeLoc().getSourceRange().getBegin());
Douglas Gregor9bed8792010-02-09 19:21:46 +00003027}
3028
3029Decl *ASTImporter::Import(Decl *FromD) {
3030 if (!FromD)
3031 return 0;
3032
3033 // Check whether we've already imported this declaration.
3034 llvm::DenseMap<Decl *, Decl *>::iterator Pos = ImportedDecls.find(FromD);
3035 if (Pos != ImportedDecls.end())
3036 return Pos->second;
3037
3038 // Import the type
3039 ASTNodeImporter Importer(*this);
3040 Decl *ToD = Importer.Visit(FromD);
3041 if (!ToD)
3042 return 0;
3043
3044 // Record the imported declaration.
3045 ImportedDecls[FromD] = ToD;
Douglas Gregorea35d112010-02-15 23:54:17 +00003046
3047 if (TagDecl *FromTag = dyn_cast<TagDecl>(FromD)) {
3048 // Keep track of anonymous tags that have an associated typedef.
3049 if (FromTag->getTypedefForAnonDecl())
3050 AnonTagsWithPendingTypedefs.push_back(FromTag);
3051 } else if (TypedefDecl *FromTypedef = dyn_cast<TypedefDecl>(FromD)) {
3052 // When we've finished transforming a typedef, see whether it was the
3053 // typedef for an anonymous tag.
3054 for (llvm::SmallVector<TagDecl *, 4>::iterator
3055 FromTag = AnonTagsWithPendingTypedefs.begin(),
3056 FromTagEnd = AnonTagsWithPendingTypedefs.end();
3057 FromTag != FromTagEnd; ++FromTag) {
3058 if ((*FromTag)->getTypedefForAnonDecl() == FromTypedef) {
3059 if (TagDecl *ToTag = cast_or_null<TagDecl>(Import(*FromTag))) {
3060 // We found the typedef for an anonymous tag; link them.
3061 ToTag->setTypedefForAnonDecl(cast<TypedefDecl>(ToD));
3062 AnonTagsWithPendingTypedefs.erase(FromTag);
3063 break;
3064 }
3065 }
3066 }
3067 }
3068
Douglas Gregor9bed8792010-02-09 19:21:46 +00003069 return ToD;
3070}
3071
3072DeclContext *ASTImporter::ImportContext(DeclContext *FromDC) {
3073 if (!FromDC)
3074 return FromDC;
3075
3076 return cast_or_null<DeclContext>(Import(cast<Decl>(FromDC)));
3077}
3078
3079Expr *ASTImporter::Import(Expr *FromE) {
3080 if (!FromE)
3081 return 0;
3082
3083 return cast_or_null<Expr>(Import(cast<Stmt>(FromE)));
3084}
3085
3086Stmt *ASTImporter::Import(Stmt *FromS) {
3087 if (!FromS)
3088 return 0;
3089
Douglas Gregor4800d952010-02-11 19:21:55 +00003090 // Check whether we've already imported this declaration.
3091 llvm::DenseMap<Stmt *, Stmt *>::iterator Pos = ImportedStmts.find(FromS);
3092 if (Pos != ImportedStmts.end())
3093 return Pos->second;
3094
3095 // Import the type
3096 ASTNodeImporter Importer(*this);
3097 Stmt *ToS = Importer.Visit(FromS);
3098 if (!ToS)
3099 return 0;
3100
3101 // Record the imported declaration.
3102 ImportedStmts[FromS] = ToS;
3103 return ToS;
Douglas Gregor9bed8792010-02-09 19:21:46 +00003104}
3105
3106NestedNameSpecifier *ASTImporter::Import(NestedNameSpecifier *FromNNS) {
3107 if (!FromNNS)
3108 return 0;
3109
3110 // FIXME: Implement!
3111 return 0;
3112}
3113
3114SourceLocation ASTImporter::Import(SourceLocation FromLoc) {
3115 if (FromLoc.isInvalid())
3116 return SourceLocation();
3117
Douglas Gregor88523732010-02-10 00:15:17 +00003118 SourceManager &FromSM = FromContext.getSourceManager();
3119
3120 // For now, map everything down to its spelling location, so that we
3121 // don't have to import macro instantiations.
3122 // FIXME: Import macro instantiations!
3123 FromLoc = FromSM.getSpellingLoc(FromLoc);
3124 std::pair<FileID, unsigned> Decomposed = FromSM.getDecomposedLoc(FromLoc);
3125 SourceManager &ToSM = ToContext.getSourceManager();
3126 return ToSM.getLocForStartOfFile(Import(Decomposed.first))
3127 .getFileLocWithOffset(Decomposed.second);
Douglas Gregor9bed8792010-02-09 19:21:46 +00003128}
3129
3130SourceRange ASTImporter::Import(SourceRange FromRange) {
3131 return SourceRange(Import(FromRange.getBegin()), Import(FromRange.getEnd()));
3132}
3133
Douglas Gregor88523732010-02-10 00:15:17 +00003134FileID ASTImporter::Import(FileID FromID) {
Sebastian Redl535a3e22010-09-30 01:03:06 +00003135 llvm::DenseMap<FileID, FileID>::iterator Pos
3136 = ImportedFileIDs.find(FromID);
Douglas Gregor88523732010-02-10 00:15:17 +00003137 if (Pos != ImportedFileIDs.end())
3138 return Pos->second;
3139
3140 SourceManager &FromSM = FromContext.getSourceManager();
3141 SourceManager &ToSM = ToContext.getSourceManager();
3142 const SrcMgr::SLocEntry &FromSLoc = FromSM.getSLocEntry(FromID);
3143 assert(FromSLoc.isFile() && "Cannot handle macro instantiations yet");
3144
3145 // Include location of this file.
3146 SourceLocation ToIncludeLoc = Import(FromSLoc.getFile().getIncludeLoc());
3147
3148 // Map the FileID for to the "to" source manager.
3149 FileID ToID;
3150 const SrcMgr::ContentCache *Cache = FromSLoc.getFile().getContentCache();
3151 if (Cache->Entry) {
3152 // FIXME: We probably want to use getVirtualFile(), so we don't hit the
3153 // disk again
3154 // FIXME: We definitely want to re-use the existing MemoryBuffer, rather
3155 // than mmap the files several times.
3156 const FileEntry *Entry = ToFileManager.getFile(Cache->Entry->getName());
3157 ToID = ToSM.createFileID(Entry, ToIncludeLoc,
3158 FromSLoc.getFile().getFileCharacteristic());
3159 } else {
3160 // FIXME: We want to re-use the existing MemoryBuffer!
Chris Lattnere127a0d2010-04-20 20:35:58 +00003161 const llvm::MemoryBuffer *FromBuf = Cache->getBuffer(getDiags(), FromSM);
Douglas Gregor88523732010-02-10 00:15:17 +00003162 llvm::MemoryBuffer *ToBuf
Chris Lattnera0a270c2010-04-05 22:42:27 +00003163 = llvm::MemoryBuffer::getMemBufferCopy(FromBuf->getBuffer(),
Douglas Gregor88523732010-02-10 00:15:17 +00003164 FromBuf->getBufferIdentifier());
3165 ToID = ToSM.createFileIDForMemBuffer(ToBuf);
3166 }
3167
3168
Sebastian Redl535a3e22010-09-30 01:03:06 +00003169 ImportedFileIDs[FromID] = ToID;
Douglas Gregor88523732010-02-10 00:15:17 +00003170 return ToID;
3171}
3172
Douglas Gregor1b2949d2010-02-05 17:54:41 +00003173DeclarationName ASTImporter::Import(DeclarationName FromName) {
3174 if (!FromName)
3175 return DeclarationName();
3176
3177 switch (FromName.getNameKind()) {
3178 case DeclarationName::Identifier:
3179 return Import(FromName.getAsIdentifierInfo());
3180
3181 case DeclarationName::ObjCZeroArgSelector:
3182 case DeclarationName::ObjCOneArgSelector:
3183 case DeclarationName::ObjCMultiArgSelector:
3184 return Import(FromName.getObjCSelector());
3185
3186 case DeclarationName::CXXConstructorName: {
3187 QualType T = Import(FromName.getCXXNameType());
3188 if (T.isNull())
3189 return DeclarationName();
3190
3191 return ToContext.DeclarationNames.getCXXConstructorName(
3192 ToContext.getCanonicalType(T));
3193 }
3194
3195 case DeclarationName::CXXDestructorName: {
3196 QualType T = Import(FromName.getCXXNameType());
3197 if (T.isNull())
3198 return DeclarationName();
3199
3200 return ToContext.DeclarationNames.getCXXDestructorName(
3201 ToContext.getCanonicalType(T));
3202 }
3203
3204 case DeclarationName::CXXConversionFunctionName: {
3205 QualType T = Import(FromName.getCXXNameType());
3206 if (T.isNull())
3207 return DeclarationName();
3208
3209 return ToContext.DeclarationNames.getCXXConversionFunctionName(
3210 ToContext.getCanonicalType(T));
3211 }
3212
3213 case DeclarationName::CXXOperatorName:
3214 return ToContext.DeclarationNames.getCXXOperatorName(
3215 FromName.getCXXOverloadedOperator());
3216
3217 case DeclarationName::CXXLiteralOperatorName:
3218 return ToContext.DeclarationNames.getCXXLiteralOperatorName(
3219 Import(FromName.getCXXLiteralIdentifier()));
3220
3221 case DeclarationName::CXXUsingDirective:
3222 // FIXME: STATICS!
3223 return DeclarationName::getUsingDirectiveName();
3224 }
3225
3226 // Silence bogus GCC warning
3227 return DeclarationName();
3228}
3229
3230IdentifierInfo *ASTImporter::Import(IdentifierInfo *FromId) {
3231 if (!FromId)
3232 return 0;
3233
3234 return &ToContext.Idents.get(FromId->getName());
3235}
Douglas Gregor089459a2010-02-08 21:09:39 +00003236
Douglas Gregorc3f2d2b2010-02-17 02:12:47 +00003237Selector ASTImporter::Import(Selector FromSel) {
3238 if (FromSel.isNull())
3239 return Selector();
3240
3241 llvm::SmallVector<IdentifierInfo *, 4> Idents;
3242 Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(0)));
3243 for (unsigned I = 1, N = FromSel.getNumArgs(); I < N; ++I)
3244 Idents.push_back(Import(FromSel.getIdentifierInfoForSlot(I)));
3245 return ToContext.Selectors.getSelector(FromSel.getNumArgs(), Idents.data());
3246}
3247
Douglas Gregor089459a2010-02-08 21:09:39 +00003248DeclarationName ASTImporter::HandleNameConflict(DeclarationName Name,
3249 DeclContext *DC,
3250 unsigned IDNS,
3251 NamedDecl **Decls,
3252 unsigned NumDecls) {
3253 return Name;
3254}
3255
3256DiagnosticBuilder ASTImporter::ToDiag(SourceLocation Loc, unsigned DiagID) {
Douglas Gregor4800d952010-02-11 19:21:55 +00003257 return Diags.Report(FullSourceLoc(Loc, ToContext.getSourceManager()),
3258 DiagID);
Douglas Gregor089459a2010-02-08 21:09:39 +00003259}
3260
3261DiagnosticBuilder ASTImporter::FromDiag(SourceLocation Loc, unsigned DiagID) {
Douglas Gregor4800d952010-02-11 19:21:55 +00003262 return Diags.Report(FullSourceLoc(Loc, FromContext.getSourceManager()),
3263 DiagID);
Douglas Gregor089459a2010-02-08 21:09:39 +00003264}
Douglas Gregor5ce5dab2010-02-12 23:44:20 +00003265
3266Decl *ASTImporter::Imported(Decl *From, Decl *To) {
3267 ImportedDecls[From] = To;
3268 return To;
Daniel Dunbaraf667582010-02-13 20:24:39 +00003269}
Douglas Gregorea35d112010-02-15 23:54:17 +00003270
3271bool ASTImporter::IsStructurallyEquivalent(QualType From, QualType To) {
3272 llvm::DenseMap<Type *, Type *>::iterator Pos
3273 = ImportedTypes.find(From.getTypePtr());
3274 if (Pos != ImportedTypes.end() && ToContext.hasSameType(Import(From), To))
3275 return true;
3276
Benjamin Kramerbb2d1762010-02-18 13:02:13 +00003277 StructuralEquivalenceContext Ctx(FromContext, ToContext, Diags,
Douglas Gregorea35d112010-02-15 23:54:17 +00003278 NonEquivalentDecls);
Benjamin Kramerbb2d1762010-02-18 13:02:13 +00003279 return Ctx.IsStructurallyEquivalent(From, To);
Douglas Gregorea35d112010-02-15 23:54:17 +00003280}