[PATCH] D144273: [clang][ASTImporter] Add VaList declaration to lookup table.
Balázs Kéri via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 17 08:31:22 PST 2023
balazske created this revision.
Herald added subscribers: steakhal, martong, gamesh411, Szelethus, dkrupp.
Herald added a reviewer: a.sidorin.
Herald added a reviewer: shafik.
Herald added a project: All.
balazske requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
The declaration of __builtin_va_list seems to be handled specially
by ASTContext and/or Sema. The normal AST traversal probably can
not find it, therefore it is not added to ASTImporterLookupTable.
If it is not added, errors can occur because a duplicated
VaList declaration is created at import. To fix the problem the
VaList declaration is added manually to ASTImporterLookupTable
at construction.
In special cases this declaration is inside a "invisible" 'std'
namespace that behaves the same way. This namespace must be added
to the table too.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D144273
Files:
clang/lib/AST/ASTImporterLookupTable.cpp
clang/unittests/AST/ASTImporterTest.cpp
Index: clang/unittests/AST/ASTImporterTest.cpp
===================================================================
--- clang/unittests/AST/ASTImporterTest.cpp
+++ clang/unittests/AST/ASTImporterTest.cpp
@@ -8137,6 +8137,42 @@
EXPECT_FALSE(SharedStatePtr->isNewDecl(ToBar));
}
+TEST_P(ASTImporterOptionSpecificTestBase, VaListC) {
+ Decl *FromTU = getTuDecl(R"(typedef __builtin_va_list va_list;)", Lang_C99);
+
+ auto *FromVaList = FirstDeclMatcher<TypedefDecl>().match(
+ FromTU, typedefDecl(hasName("va_list")));
+ ASSERT_TRUE(FromVaList);
+
+ auto *ToVaList = Import(FromVaList, Lang_C99);
+ ASSERT_TRUE(ToVaList);
+
+ auto *ToBuiltinVaList = FirstDeclMatcher<TypedefDecl>().match(
+ ToAST->getASTContext().getTranslationUnitDecl(),
+ typedefDecl(hasName("__builtin_va_list")));
+
+ ASSERT_TRUE(ToAST->getASTContext().hasSameType(
+ ToVaList->getUnderlyingType(), ToBuiltinVaList->getUnderlyingType()));
+}
+
+TEST_P(ASTImporterOptionSpecificTestBase, VaListCpp) {
+ Decl *FromTU = getTuDecl(R"(typedef __builtin_va_list va_list;)", Lang_CXX03);
+
+ auto *FromVaList = FirstDeclMatcher<TypedefDecl>().match(
+ FromTU, typedefDecl(hasName("va_list")));
+ ASSERT_TRUE(FromVaList);
+
+ auto *ToVaList = Import(FromVaList, Lang_CXX03);
+ ASSERT_TRUE(ToVaList);
+
+ auto *ToBuiltinVaList = FirstDeclMatcher<TypedefDecl>().match(
+ ToAST->getASTContext().getTranslationUnitDecl(),
+ typedefDecl(hasName("__builtin_va_list")));
+
+ ASSERT_TRUE(ToAST->getASTContext().hasSameType(
+ ToVaList->getUnderlyingType(), ToBuiltinVaList->getUnderlyingType()));
+}
+
INSTANTIATE_TEST_SUITE_P(ParameterizedTests, ASTImporterLookupTableTest,
DefaultTestValuesForRunOptions);
Index: clang/lib/AST/ASTImporterLookupTable.cpp
===================================================================
--- clang/lib/AST/ASTImporterLookupTable.cpp
+++ clang/lib/AST/ASTImporterLookupTable.cpp
@@ -85,8 +85,21 @@
} // anonymous namespace
ASTImporterLookupTable::ASTImporterLookupTable(TranslationUnitDecl &TU) {
+ (void)TU.getASTContext().getVaListTagDecl();
Builder B(*this);
B.TraverseDecl(&TU);
+ // The VaList declaration may be created on demand only or not traversed.
+ // To ensure it is present and found during import, add it to the table now.
+ if (auto *D =
+ dyn_cast_or_null<NamedDecl>(TU.getASTContext().getVaListTagDecl())) {
+ // On some platforms (AArch64) the VaList declaration can be inside a 'std'
+ // namespace. This is handled specially and not visible by AST traversal.
+ // ASTImporter must be able to find this namespace to import the VaList
+ // declaration (and the namespace) correctly.
+ if (auto *Ns = dyn_cast<NamespaceDecl>(D->getDeclContext()))
+ add(&TU, Ns);
+ add(D->getDeclContext(), D);
+ }
}
void ASTImporterLookupTable::add(DeclContext *DC, NamedDecl *ND) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144273.498388.patch
Type: text/x-patch
Size: 2912 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230217/c2b9c077/attachment-0001.bin>
More information about the cfe-commits
mailing list