llvm/llvm-project

[C++20] [Modules] Not properly mangling for entities in named modules for MSVC ABI

Open

#174,064 建立於 2025年12月31日

在 GitHub 查看
 (7 留言) (0 反應) (0 負責人)C++ (10,782 fork)batch import
ABIclang:moduleshelp wantedplatform:windows

倉庫指標

Star
 (26,378 star)
PR 合併指標
 (平均合併 1天 2小時) (30 天內合併 1,000 個 PR)

描述

Reproducer: https://godbolt.org/z/5oaM6Yjv5

for

export module a;
export int func() {
    return 43;
}

Clang in Windows ABI generates:

"?func@@YAHXZ"

but MSVC generates:

?func@@YAHXZ::<!a>

This is a compatibility problem. And also this is a correctness problem. Since the design of C++20 Named Modules ask toolchains to treat the entity in different named modules as different entity at link time even they have the same name. So this is a missing feature at ABI level.

Estimated difficulty: medium

貢獻者指南