This patch addresses a problem encountered by the

ASTImporter when importing the following types:

typedef struct {
} A;

typedef struct {
  A a;
} B;

Suppose we have imported B, but we did not at that
time need to complete it.  Then later we want to
import A.  The struct is anonymous, so the first
thing we want to do is make sure no other anonymous
struct already matches it.  So we set up an
StructuralEquivalenceContext and compare B with A.

This happens at ASTImporter.cpp:2179.

Now, in this scenario, B is not complete.  So we go
and import its fields, including a, which causes A
to be imported.  The ASTImporter doesn’t yet have A
in its list of already-imported things, so we
import A.

After the StructuralEquivalenceContext is finished
determining that A and B are different, the
ASTImporter concludes that A must be imported
because no equivalent exists, so it imports a second
copy of A.  Now we have two different structs
representing A.  This is really bad news.

The patch allows the StructuralEquivalenceContext to
use the original version of B when making its
comparison, obviating the need for an import and
cutting this loop.

llvm-svn: 192324
This commit is contained in:
Sean Callanan 2013-10-09 21:45:11 +00:00
parent b0e33d4165
commit c665c9ecf4
2 changed files with 18 additions and 1 deletions

View File

@ -271,6 +271,14 @@ namespace clang {
/// Subclasses can override this function to observe all of the \c From -> /// Subclasses can override this function to observe all of the \c From ->
/// \c To declaration mappings as they are imported. /// \c To declaration mappings as they are imported.
virtual Decl *Imported(Decl *From, Decl *To); virtual Decl *Imported(Decl *From, Decl *To);
/// \brief Called by StructuralEquivalenceContext. If a RecordDecl is
/// being compared to another RecordDecl as part of import, completing the
/// other RecordDecl may trigger importation of the first RecordDecl. This
/// happens especially for anonymous structs. If the original of the second
/// RecordDecl can be found, we can complete it without the need for
/// importation, eliminating this loop.
virtual Decl *GetOriginalDecl(Decl *To) { return NULL; }
/// \brief Determine whether the given types are structurally /// \brief Determine whether the given types are structurally
/// equivalent. /// equivalent.

View File

@ -2178,8 +2178,17 @@ bool ASTNodeImporter::ImportTemplateArguments(const TemplateArgument *FromArgs,
bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord, bool ASTNodeImporter::IsStructuralMatch(RecordDecl *FromRecord,
RecordDecl *ToRecord, bool Complain) { RecordDecl *ToRecord, bool Complain) {
// Eliminate a potential failure point where we attempt to re-import
// something we're trying to import while completing ToRecord.
Decl *ToOrigin = Importer.GetOriginalDecl(ToRecord);
if (ToOrigin) {
RecordDecl *ToOriginRecord = dyn_cast<RecordDecl>(ToOrigin);
if (ToOriginRecord)
ToRecord = ToOriginRecord;
}
StructuralEquivalenceContext Ctx(Importer.getFromContext(), StructuralEquivalenceContext Ctx(Importer.getFromContext(),
Importer.getToContext(), ToRecord->getASTContext(),
Importer.getNonEquivalentDecls(), Importer.getNonEquivalentDecls(),
false, Complain); false, Complain);
return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord); return Ctx.IsStructurallyEquivalent(FromRecord, ToRecord);