Skip to content

[C++20][Modules] Fix crash/compiler error due broken AST links #123648

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

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions clang/lib/Serialization/ASTWriterDecl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1571,9 +1571,10 @@ void ASTDeclWriter::VisitCXXRecordDecl(CXXRecordDecl *D) {
} else {
Record.push_back(0);
}
// For lambdas inside canonical FunctionDecl remember the mapping.
// For lambdas inside template functions, remember the mapping to
// deserialize them together.
if (auto FD = llvm::dyn_cast_or_null<FunctionDecl>(D->getDeclContext());
FD && FD->isCanonicalDecl()) {
FD && FD->isDependentContext() && FD->isThisDeclarationADefinition()) {
Writer.RelatedDeclsMap[Writer.GetDeclRef(FD)].push_back(
Writer.GetDeclRef(D));
}
Expand Down
92 changes: 92 additions & 0 deletions clang/test/Headers/crash-instantiated-in-scope-cxx-modules5.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
// RUN: rm -fR %t
// RUN: split-file %s %t
// RUN: cd %t
// RUN: %clang_cc1 -verify -std=c++20 -xc++ -emit-module module.cppmap -fmodule-name=mock_resolver -o mock_resolver.pcm
// RUN: %clang_cc1 -verify -std=c++20 -xc++ -emit-module module.cppmap -fmodule-name=sql_internal -o sql_internal.pcm
// RUN: %clang_cc1 -verify -std=c++20 -xc++ -fmodule-file=mock_resolver.pcm -fmodule-file=sql_internal.pcm main.cc -o main.o

//--- module.cppmap
module "mock_resolver" {
export *
module "mock_resolver.h" {
export *
header "mock_resolver.h"
}
}

module "sql_internal" {
export *
module "sql_transform_builder.h" {
export *
header "sql_transform_builder.h"
}
}

//--- set_bits2.h
// expected-no-diagnostics
#pragma once

template <typename T>
void fwd(const T& x) {}

namespace vox::bitset {

template <typename TFunc>
void ForEachSetBit2(const TFunc&) {
fwd([](int) {
const int bit_index_base = 0;
(void)[&](int) {
int v = bit_index_base;
};
});
}

} // namespace vox::bitset

//--- sql_transform_builder.h
// expected-no-diagnostics
#pragma once

#include "set_bits2.h"

class QualifyingSet3 {
public:
void GetIndexes() const {
vox::bitset::ForEachSetBit2([]() {});
}
};

template <typename T>
void DoTransform() {
vox::bitset::ForEachSetBit2([]() {});
}

//--- mock_resolver.h
// expected-no-diagnostics
#pragma once
#include "set_bits2.h"

class QualifyingSet2 {
public:
void GetIndexes() const {
vox::bitset::ForEachSetBit2([]() {});
}
};

//--- main.cc
// expected-no-diagnostics
#include "sql_transform_builder.h"

template <typename Callable>
void get(const Callable& fn) {
fwd<Callable>(fn);
}

namespace {

void test() {
get([]() {});
DoTransform<int>();
}

} // namespace
Loading