Files
clang-p2996/clang/test/Modules/pr97313.cppm
Chuanqi Xu 847f9cb0e8 Reland [C++20] [Modules] [Itanium ABI] Generate the vtable in the mod… (#102287)
Reland https://github.com/llvm/llvm-project/pull/75912

The differences of this PR between
https://github.com/llvm/llvm-project/pull/75912 are:

- Fixed a regression in `Decl::isInAnotherModuleUnit()` in DeclBase.cpp
pointed by @mizvekov and add the corresponding test.
- Fixed the regression in windows
https://github.com/llvm/llvm-project/issues/97447. The changes are in
`CodeGenModule::getVTableLinkage` from
`clang/lib/CodeGen/CGVTables.cpp`. According to the feedbacks from MSVC
devs, the linkage of vtables won't affected by modules. So I simply
skipped the case for MSVC.

Given this is more or less fundamental to the use of modules. I hope we
can backport this to 19.x.
2024-08-08 13:14:09 +08:00

119 lines
3.1 KiB
C++

// REQUIRES: !system-windows
//
// RUN: rm -rf %t
// RUN: mkdir -p %t
// RUN: split-file %s %t
//
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Base.cppm \
// RUN: -emit-module-interface -o %t/Base.pcm
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Sub.cppm \
// RUN: -emit-module-interface -o %t/Sub.pcm -fprebuilt-module-path=%t
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Sub.pcm \
// RUN: -emit-llvm -o %t/Sub.pcm -o - -fprebuilt-module-path=%t | \
// RUN: FileCheck %t/Sub.cppm
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/main.cpp \
// RUN: -emit-llvm -fprebuilt-module-path=%t -o - | FileCheck %t/main.cpp
//
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Mod.cppm \
// RUN: -emit-module-interface -o %t/Mod.pcm
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Mod.pcm \
// RUN: -emit-llvm -o - | FileCheck %t/Mod.cppm
// RUN: %clang_cc1 -std=c++20 -triple %itanium_abi_triple %t/Use.cpp \
// RUN: -emit-llvm -fprebuilt-module-path=%t -o - | \
// RUN: FileCheck %t/Use.cpp
//--- Base.cppm
export module Base;
export template <class>
class Base
{
public:
constexpr Base();
constexpr virtual ~Base();
};
template <class X>
constexpr Base<X>::Base() = default;
template <class X>
constexpr Base<X>::~Base() = default;
//--- Sub.cppm
export module Sub;
export import Base;
export class Sub : public Base<int>
{
};
// CHECK: @_ZTIW4Base4BaseIiE = {{.*}}linkonce_odr
//--- main.cpp
import Sub;
int main()
{
Base<int> *b = new Sub();
delete b;
}
// CHECK: @_ZTIW4Base4BaseIiE = {{.*}}linkonce_odr
//--- Mod.cppm
export module Mod;
export class NonTemplate {
public:
virtual ~NonTemplate();
};
// CHECK: @_ZTIW3Mod11NonTemplate = {{.*}}constant
export template <class C>
class Template {
public:
virtual ~Template();
};
export template<>
class Template<char> {
public:
virtual ~Template();
};
// CHECK: @_ZTIW3Mod8TemplateIcE = {{.*}}constant
export template class Template<unsigned>;
// CHECK: @_ZTIW3Mod8TemplateIjE = {{.*}}weak_odr
export extern template class Template<double>;
auto v = new Template<signed int>();
// CHECK: @_ZTIW3Mod8TemplateIiE = {{.*}}linkonce_odr
//--- Use.cpp
import Mod;
auto v1 = new NonTemplate();
auto v2 = new Template<char>();
auto v3 = new Template<unsigned>();
auto v4 = new Template<double>();
auto v5 = new Template<signed int>();
auto v6 = new Template<NonTemplate>();
// CHECK: @_ZTVW3Mod11NonTemplate = {{.*}}external
// CHECK: @_ZTVW3Mod8TemplateIcE = {{.*}}external
// CHECK: @_ZTVW3Mod8TemplateIjE = {{.*}}weak_odr
// CHECK: @_ZTSW3Mod8TemplateIjE = {{.*}}weak_odr
// CHECK: @_ZTIW3Mod8TemplateIjE = {{.*}}weak_odr
// CHECK: @_ZTVW3Mod8TemplateIdE = {{.*}}external
// CHECK: @_ZTVW3Mod8TemplateIiE = {{.*}}linkonce_odr
// CHECK: @_ZTSW3Mod8TemplateIiE = {{.*}}linkonce_odr
// CHECK: @_ZTIW3Mod8TemplateIiE = {{.*}}linkonce_odr
// CHECK: @_ZTVW3Mod8TemplateIS_11NonTemplateE = {{.*}}linkonce_odr
// CHECK: @_ZTSW3Mod8TemplateIS_11NonTemplateE = {{.*}}linkonce_odr
// CHECK: @_ZTIW3Mod8TemplateIS_11NonTemplateE = {{.*}}linkonce_odr