forked from OSchip/llvm-project
MS ABI: Don't always instantiate all members of dllexported class templates (PR20163)
Normally we mark all members of exported classes referenced to get them emitted. However, MSVC doesn't do this for class templates that are implicitly specialized or just have an explicit instantiation declaration. For such specializations, the members are emitted when referenced. The exception is the case when the dllexport attribute is propagated from a base class to a base class template that doesn't have an explicit attribute: in this case all methods of the base class template do get instantiated. llvm-svn: 216145
This commit is contained in:
parent
689623009b
commit
334e4ffc0d
|
@ -4432,6 +4432,9 @@ static void checkDLLAttribute(Sema &S, CXXRecordDecl *Class) {
|
|||
// FIXME: MSVC's docs say all bases must be exportable, but this doesn't
|
||||
// seem to be true in practice?
|
||||
|
||||
TemplateSpecializationKind TSK =
|
||||
Class->getTemplateSpecializationKind();
|
||||
|
||||
for (Decl *Member : Class->decls()) {
|
||||
VarDecl *VD = dyn_cast<VarDecl>(Member);
|
||||
CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member);
|
||||
|
@ -4471,7 +4474,14 @@ static void checkDLLAttribute(Sema &S, CXXRecordDecl *Class) {
|
|||
if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Member)) {
|
||||
if (ClassExported) {
|
||||
if (MD->isUserProvided()) {
|
||||
// Instantiate non-default methods.
|
||||
// Instantiate non-default methods..
|
||||
|
||||
// .. except for certain kinds of template specializations.
|
||||
if (TSK == TSK_ExplicitInstantiationDeclaration)
|
||||
continue;
|
||||
if (TSK == TSK_ImplicitInstantiation && !ClassAttr->isInherited())
|
||||
continue;
|
||||
|
||||
S.MarkFunctionReferenced(Class->getLocation(), MD);
|
||||
} else if (!MD->isTrivial() || MD->isExplicitlyDefaulted() ||
|
||||
MD->isCopyAssignmentOperator() ||
|
||||
|
|
|
@ -509,11 +509,9 @@ USEVAR(T::b)
|
|||
int T::c;
|
||||
|
||||
template <typename T> struct __declspec(dllexport) U { void foo() {} };
|
||||
// The U<int> specialization below must cause the following to be emitted:
|
||||
// M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?foo@?$U@H@@QAEXXZ"
|
||||
// M32-DAG: define weak_odr dllexport x86_thiscallcc dereferenceable({{[0-9]+}}) %struct.U* @"\01??4?$U@H@@QAEAAU0@ABU0@@Z"
|
||||
struct __declspec(dllexport) V : public U<int> { };
|
||||
|
||||
// U<int>'s assignment operator is emitted.
|
||||
// M32-DAG: define weak_odr dllexport x86_thiscallcc dereferenceable({{[0-9]+}}) %struct.U* @"\01??4?$U@H@@QAEAAU0@ABU0@@Z"
|
||||
|
||||
struct __declspec(dllexport) W { virtual void foo() {} };
|
||||
// Default ctor:
|
||||
|
@ -618,6 +616,7 @@ USEMEMFUNC(DerivedFromTemplate, func)
|
|||
|
||||
// ExportedTemplate is explicitly exported.
|
||||
struct __declspec(dllexport) DerivedFromExportedTemplate : public ExportedClassTemplate<int> {};
|
||||
USEMEMFUNC(DerivedFromExportedTemplate, func)
|
||||
// M32-DAG: define weak_odr dllexport x86_thiscallcc void @"\01?func@?$ExportedClassTemplate@H@@QAEXXZ"
|
||||
// G32-DAG: define weak_odr dllexport x86_thiscallcc void @_ZN21ExportedClassTemplateIiE4funcEv
|
||||
|
||||
|
|
|
@ -327,6 +327,49 @@ template <typename T> struct __declspec(dllexport) PartiallySpecializedClassTemp
|
|||
template <typename T> struct ExpliciallySpecializedClassTemplate {};
|
||||
template <> struct __declspec(dllexport) ExpliciallySpecializedClassTemplate<int> { void f() {} };
|
||||
|
||||
// Don't instantiate class members of implicitly instantiated templates, even if they are exported.
|
||||
struct IncompleteType;
|
||||
template <typename T> struct __declspec(dllexport) ImplicitlyInstantiatedExportedTemplate {
|
||||
int f() { return sizeof(T); } // no-error
|
||||
};
|
||||
ImplicitlyInstantiatedExportedTemplate<IncompleteType> implicitlyInstantiatedExportedTemplate;
|
||||
|
||||
// Don't instantiate class members of templates with explicit instantiation declarations, even if they are exported.
|
||||
struct IncompleteType2;
|
||||
template <typename T> struct __declspec(dllexport) ExportedTemplateWithExplicitInstantiationDecl {
|
||||
int f() { return sizeof(T); } // no-error
|
||||
};
|
||||
extern template struct ExportedTemplateWithExplicitInstantiationDecl<IncompleteType2>;
|
||||
|
||||
// Instantiate class members for explicitly instantiated exported templates.
|
||||
struct IncompleteType3; // expected-note{{forward declaration of 'IncompleteType3'}}
|
||||
template <typename T> struct __declspec(dllexport) ExplicitlyInstantiatedExportedTemplate {
|
||||
int f() { return sizeof(T); } // expected-error{{invalid application of 'sizeof' to an incomplete type 'IncompleteType3'}}
|
||||
};
|
||||
template struct ExplicitlyInstantiatedExportedTemplate<IncompleteType3>; // expected-note{{in instantiation of member function 'ExplicitlyInstantiatedExportedTemplate<IncompleteType3>::f' requested here}}
|
||||
|
||||
// In MS mode, instantiate members of class templates that are base classes of exported classes.
|
||||
#ifdef MS
|
||||
// expected-note@+3{{forward declaration of 'IncompleteType4'}}
|
||||
// expected-note@+3{{in instantiation of member function 'BaseClassTemplateOfExportedClass<IncompleteType4>::f' requested here}}
|
||||
#endif
|
||||
struct IncompleteType4;
|
||||
template <typename T> struct BaseClassTemplateOfExportedClass {
|
||||
#ifdef MS
|
||||
// expected-error@+2{{invalid application of 'sizeof' to an incomplete type 'IncompleteType4'}}
|
||||
#endif
|
||||
int f() { return sizeof(T); };
|
||||
};
|
||||
struct __declspec(dllexport) ExportedBaseClass : public BaseClassTemplateOfExportedClass<IncompleteType4> {};
|
||||
|
||||
// Don't instantiate members of explicitly exported class templates that are base classes of exported classes.
|
||||
struct IncompleteType5;
|
||||
template <typename T> struct __declspec(dllexport) ExportedBaseClassTemplateOfExportedClass {
|
||||
int f() { return sizeof(T); }; // no-error
|
||||
};
|
||||
struct __declspec(dllexport) ExportedBaseClass2 : public ExportedBaseClassTemplateOfExportedClass<IncompleteType5> {};
|
||||
|
||||
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Classes with template base classes
|
||||
|
|
Loading…
Reference in New Issue