From: Balazs Keri <1.int32@gmail.com> Date: Tue, 9 Jul 2019 11:08:18 +0000 (+0000) Subject: [ASTImporter] Added visibility context check for EnumDecl. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7024c79b7968be0d7e17e74afab5e41ad8f71a3e;p=clang [ASTImporter] Added visibility context check for EnumDecl. Summary: ASTImporter makes now difference between enums with same name in different translation units if these are not visible outside. ("Scoped enums" are not handled yet.) Reviewers: martong, a.sidorin, shafik, a_sidorin Reviewed By: a_sidorin Subscribers: rnkovacs, dkrupp, Szelethus, gamesh411, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D62484 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@365464 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTImporter.cpp b/lib/AST/ASTImporter.cpp index 55d414e4e5..863a1cb0af 100644 --- a/lib/AST/ASTImporter.cpp +++ b/lib/AST/ASTImporter.cpp @@ -2476,6 +2476,8 @@ ExpectedDecl ASTNodeImporter::VisitEnumDecl(EnumDecl *D) { } if (auto *FoundEnum = dyn_cast(FoundDecl)) { + if (!hasSameVisibilityContext(FoundEnum, D)) + continue; if (IsStructuralMatch(D, FoundEnum)) return Importer.MapImported(D, FoundEnum); } diff --git a/unittests/AST/ASTImporterVisibilityTest.cpp b/unittests/AST/ASTImporterVisibilityTest.cpp index 95b7c4c920..66c967e846 100644 --- a/unittests/AST/ASTImporterVisibilityTest.cpp +++ b/unittests/AST/ASTImporterVisibilityTest.cpp @@ -35,6 +35,10 @@ struct GetClassPattern { using DeclTy = CXXRecordDecl; BindableMatcher operator()() { return cxxRecordDecl(hasName("X")); } }; +struct GetEnumPattern { + using DeclTy = EnumDecl; + BindableMatcher operator()() { return enumDecl(hasName("E")); } +}; // Values for the value-parameterized test fixtures. // FunctionDecl: @@ -48,6 +52,9 @@ const auto *AnonV = "namespace { extern int v; }"; // CXXRecordDecl: const auto *ExternC = "class X;"; const auto *AnonC = "namespace { class X; }"; +// EnumDecl: +const auto *ExternE = "enum E {};"; +const auto *AnonE = "namespace { enum E {}; }"; // First value in tuple: Compile options. // Second value in tuple: Source code to be used in the test. @@ -183,10 +190,53 @@ protected: else EXPECT_FALSE(ToD1->getPreviousDecl()); } + + void TypedTest_ImportAfterWithMerge() { + TranslationUnitDecl *ToTu = getToTuDecl(getCode0(), Lang_CXX); + TranslationUnitDecl *FromTu = getTuDecl(getCode1(), Lang_CXX, "input1.cc"); + + auto *ToF0 = FirstDeclMatcher().match(ToTu, getPattern()); + auto *FromF1 = FirstDeclMatcher().match(FromTu, getPattern()); + + auto *ToF1 = Import(FromF1, Lang_CXX); + + ASSERT_TRUE(ToF0); + ASSERT_TRUE(ToF1); + + if (shouldBeLinked()) + EXPECT_EQ(ToF0, ToF1); + else + EXPECT_NE(ToF0, ToF1); + + // We expect no (ODR) warning during the import. + EXPECT_EQ(0u, ToTu->getASTContext().getDiagnostics().getNumWarnings()); + } + + void TypedTest_ImportAfterImportWithMerge() { + TranslationUnitDecl *FromTu0 = getTuDecl(getCode0(), Lang_CXX, "input0.cc"); + TranslationUnitDecl *FromTu1 = getTuDecl(getCode1(), Lang_CXX, "input1.cc"); + auto *FromF0 = FirstDeclMatcher().match(FromTu0, getPattern()); + auto *FromF1 = FirstDeclMatcher().match(FromTu1, getPattern()); + auto *ToF0 = Import(FromF0, Lang_CXX); + auto *ToF1 = Import(FromF1, Lang_CXX); + ASSERT_TRUE(ToF0); + ASSERT_TRUE(ToF1); + if (shouldBeLinked()) + EXPECT_EQ(ToF0, ToF1); + else + EXPECT_NE(ToF0, ToF1); + + // We expect no (ODR) warning during the import. + EXPECT_EQ(0u, ToF0->getTranslationUnitDecl() + ->getASTContext() + .getDiagnostics() + .getNumWarnings()); + } }; using ImportFunctionsVisibility = ImportVisibility; using ImportVariablesVisibility = ImportVisibility; using ImportClassesVisibility = ImportVisibility; +using ImportEnumsVisibility = ImportVisibility; // FunctionDecl. TEST_P(ImportFunctionsVisibility, ImportAfter) { @@ -209,6 +259,13 @@ TEST_P(ImportClassesVisibility, ImportAfter) { TEST_P(ImportClassesVisibility, ImportAfterImport) { TypedTest_ImportAfterImport(); } +// EnumDecl. +TEST_P(ImportEnumsVisibility, ImportAfter) { + TypedTest_ImportAfterWithMerge(); +} +TEST_P(ImportEnumsVisibility, ImportAfterImport) { + TypedTest_ImportAfterImportWithMerge(); +} const bool ExpectLink = true; const bool ExpectNotLink = false; @@ -247,6 +304,14 @@ INSTANTIATE_TEST_CASE_P( std::make_tuple(ExternC, AnonC, ExpectNotLink), std::make_tuple(AnonC, ExternC, ExpectNotLink), std::make_tuple(AnonC, AnonC, ExpectNotLink))), ); +INSTANTIATE_TEST_CASE_P( + ParameterizedTests, ImportEnumsVisibility, + ::testing::Combine( + DefaultTestValuesForRunOptions, + ::testing::Values(std::make_tuple(ExternE, ExternE, ExpectLink), + std::make_tuple(ExternE, AnonE, ExpectNotLink), + std::make_tuple(AnonE, ExternE, ExpectNotLink), + std::make_tuple(AnonE, AnonE, ExpectNotLink))), ); } // end namespace ast_matchers } // end namespace clang