-
Notifications
You must be signed in to change notification settings - Fork 14.5k
[clang][ASTImporter] Fix of possible crash "Did not find base!". #67680
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
A problem with AST import could lead to multiple instances of the same template class specialization, with different template arguments. The difference was caused by pointers to different declarations of the same function. Problem is fixed by using the canonical declaration at import.
@llvm/pr-subscribers-clang ChangesA problem with AST import could lead to multiple instances of the same template class specialization, with different template arguments. The difference was caused by pointers to different declarations of the same function. Full diff: https://github.com/llvm/llvm-project/pull/67680.diff 2 Files Affected:
diff --git a/clang/lib/AST/ASTImporter.cpp b/clang/lib/AST/ASTImporter.cpp
index c7c2aecc8b179a4..bea6ab40a3437e3 100644
--- a/clang/lib/AST/ASTImporter.cpp
+++ b/clang/lib/AST/ASTImporter.cpp
@@ -811,7 +811,8 @@ ASTNodeImporter::import(const TemplateArgument &From) {
ExpectedType ToTypeOrErr = import(From.getParamTypeForDecl());
if (!ToTypeOrErr)
return ToTypeOrErr.takeError();
- return TemplateArgument(*ToOrErr, *ToTypeOrErr, From.getIsDefaulted());
+ return TemplateArgument(dyn_cast<ValueDecl>((*ToOrErr)->getCanonicalDecl()),
+ *ToTypeOrErr, From.getIsDefaulted());
}
case TemplateArgument::NullPtr: {
diff --git a/clang/unittests/AST/ASTImporterTest.cpp b/clang/unittests/AST/ASTImporterTest.cpp
index 65a5b630e462d0f..abdb80373a5f90e 100644
--- a/clang/unittests/AST/ASTImporterTest.cpp
+++ b/clang/unittests/AST/ASTImporterTest.cpp
@@ -9147,6 +9147,64 @@ TEST_P(ASTImporterOptionSpecificTestBase,
EXPECT_TRUE(ToXType->typeMatchesDecl());
}
+TEST_P(ASTImporterOptionSpecificTestBase,
+ ImportTemplateArgumentWithPointerToDifferentInstantiation) {
+ const char *CodeTo =
+ R"(
+ template<class A>
+ A f1() {
+ return A();
+ }
+ template<class A, A (B)()>
+ class X {};
+
+ X<int, f1<int>> x;
+ )";
+ const char *CodeFrom =
+ R"(
+ template<class A>
+ A f1();
+ template<class A, A (B)()>
+ class X {};
+
+ X<int, f1<int>> x;
+ )";
+ Decl *ToTU = getToTuDecl(CodeTo, Lang_CXX11);
+ Decl *FromTU = getTuDecl(CodeFrom, Lang_CXX11);
+
+ auto *ToF1 = FirstDeclMatcher<FunctionDecl>().match(
+ ToTU, functionDecl(hasName("f1"), isInstantiated()));
+ auto *FromF1 = FirstDeclMatcher<FunctionDecl>().match(
+ FromTU, functionDecl(hasName("f1"), isInstantiated()));
+ EXPECT_TRUE(ToF1->isThisDeclarationADefinition());
+ EXPECT_FALSE(FromF1->isThisDeclarationADefinition());
+
+ auto *ToX = FirstDeclMatcher<ClassTemplateSpecializationDecl>().match(
+ ToTU, classTemplateSpecializationDecl(hasName("X")));
+ auto *FromX = FirstDeclMatcher<ClassTemplateSpecializationDecl>().match(
+ FromTU, classTemplateSpecializationDecl(hasName("X")));
+
+ Decl *ToTArgF = ToX->getTemplateArgs().get(1).getAsDecl();
+ Decl *FromTArgF = FromX->getTemplateArgs().get(1).getAsDecl();
+ EXPECT_EQ(ToTArgF, ToF1);
+ EXPECT_EQ(FromTArgF, FromF1);
+
+ auto *ToXImported = Import(FromX, Lang_CXX11);
+ // The template argument 1 of 'X' in the "From" code points to a function
+ // that has no definition. The import must ensure that this template argument
+ // is imported in a way that it will point to the existing 'f1' function, not
+ // to the 'f1' that is imported. In this way when specialization of 'X' is
+ // imported it will have the same template arguments as the existing one.
+ EXPECT_EQ(ToXImported, ToX);
+ // FIXME: This matcher causes a crash "Tried to match orphan node".
+ // The code is removed until the problem is fixed.
+ // auto *ToF1Imported =
+ // LastDeclMatcher<FunctionDecl>().match(ToTU,
+ // functionDecl(hasName("f1"),isInstantiated()));
+ // EXPECT_NE(ToF1Imported, ToF1);
+ // EXPECT_EQ(ToF1Imported->getPreviousDecl(), ToF1);
+}
+
INSTANTIATE_TEST_SUITE_P(ParameterizedTests, ASTImporterLookupTableTest,
DefaultTestValuesForRunOptions);
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks reasonable, thanks!
Check the code_formatter failure before merging. It seems to be a false alarm (some git operation failed), but it's better to verify that the patch is correct.
The format checker job looks faulty, it fails in other patches too. I remember that clang-format was used on the code, because I usually don't add line breaks to long code lines. |
A problem with AST import could lead to multiple instances of the same template class specialization, with different template arguments. The difference was caused by pointers to different declarations of the same function.
Problem is fixed by using the canonical declaration at import.