Skip to content

[C++20][Modules] Disable preferred_name when writing a C++20 header unit #144377

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 1 commit into from
Jun 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions clang/include/clang/Serialization/ASTWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,10 @@ class ASTWriter : public ASTDeserializationListener,
return WritingModule && WritingModule->isNamedModule();
}

bool isWritingStdCXXHeaderUnit() const {
return WritingModule && WritingModule->isHeaderUnit();
}

bool isGeneratingReducedBMI() const { return GeneratingReducedBMI; }

bool getDoneWritingDeclsAndTypes() const { return DoneWritingDeclsAndTypes; }
Expand Down
5 changes: 3 additions & 2 deletions clang/lib/Serialization/ASTWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5167,8 +5167,9 @@ void ASTRecordWriter::AddAttr(const Attr *A) {
// FIXME: Clang can't handle the serialization/deserialization of
// preferred_name properly now. See
// https://github.com/llvm/llvm-project/issues/56490 for example.
if (!A || (isa<PreferredNameAttr>(A) &&
Writer->isWritingStdCXXNamedModules()))
if (!A ||
(isa<PreferredNameAttr>(A) && (Writer->isWritingStdCXXNamedModules() ||
Writer->isWritingStdCXXHeaderUnit())))
return Record.push_back(0);

Record.push_back(A->getKind() + 1); // FIXME: stable encoding, target attrs
Expand Down
64 changes: 64 additions & 0 deletions clang/test/Modules/preferred_name_header_unit.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
// RUN: rm -fR %t
// RUN: split-file %s %t
// RUN: cd %t
// RUN: %clang_cc1 -verify -w -std=c++20 -fmodule-name=h1.h -emit-header-unit -xc++-user-header h1.h -o h1.pcm
// RUN: %clang_cc1 -verify -w -std=c++20 -fmodule-map-file=module.modulemap -fmodule-file=h1.h=h1.pcm main.cpp -o main.o

//--- module.modulemap
module "h1.h" {
header "h1.h"
export *
}

//--- h0.h
// expected-no-diagnostics
#pragma once
namespace std {

template <class _CharT, class = _CharT, class = _CharT> class basic_string;

namespace pmr {
using string = basic_string<char>;
}

template <class, class, class>
class __attribute__((__preferred_name__(pmr::string))) basic_string;

template <class> class basic_string_view {};

template <class _CharT, class _Traits, class _Allocator> class basic_string {
typedef _CharT value_type;
typedef _Allocator allocator_type;
struct __rep;
public:
template <class _Tp>
basic_string(_Tp) {}
basic_string operator+=(value_type);
};

namespace filesystem {
class path {
typedef char value_type;
value_type preferred_separator;
typedef basic_string<value_type> string_type;
typedef basic_string_view<value_type> __string_view;
template <class _Source> void append(_Source) {
__pn_ += preferred_separator;
}
void __root_directory() { append(string_type(__string_view{})); }
string_type __pn_;
};
} // namespace filesystem
} // namespace std

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

#include "h0.h"

//--- main.cpp
// expected-no-diagnostics
#include "h0.h"

import "h1.h";
Loading