Skip to content

[CUDA][HIP] check dtor in deferred diag #129117

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
Feb 28, 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
2 changes: 1 addition & 1 deletion clang/include/clang/Sema/Sema.h
Original file line number Diff line number Diff line change
Expand Up @@ -4392,11 +4392,11 @@ class Sema final : public SemaBase {
// Whether the callee should be ignored in CUDA/HIP/OpenMP host/device check.
bool shouldIgnoreInHostDeviceCheck(FunctionDecl *Callee);

private:
/// Function or variable declarations to be checked for whether the deferred
/// diagnostics should be emitted.
llvm::SmallSetVector<Decl *, 4> DeclsToCheckForDeferredDiags;

private:
/// Map of current shadowing declarations to shadowed declarations. Warn if
/// it looks like the user is trying to modify the shadowing declaration.
llvm::DenseMap<const NamedDecl *, const NamedDecl *> ShadowingDecls;
Expand Down
43 changes: 43 additions & 0 deletions clang/lib/Sema/Sema.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1798,6 +1798,47 @@ class DeferredDiagnosticsEmitter
Inherited::visitUsedDecl(Loc, D);
}

// Visitor member and parent dtors called by this dtor.
void VisitCalledDestructors(CXXDestructorDecl *DD) {
const CXXRecordDecl *RD = DD->getParent();

// Visit the dtors of all members
for (const FieldDecl *FD : RD->fields()) {
QualType FT = FD->getType();
if (const auto *RT = FT->getAs<RecordType>())
if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl()))
if (ClassDecl->hasDefinition())
if (CXXDestructorDecl *MemberDtor = ClassDecl->getDestructor())
asImpl().visitUsedDecl(MemberDtor->getLocation(), MemberDtor);
}

// Also visit base class dtors
for (const auto &Base : RD->bases()) {
QualType BaseType = Base.getType();
if (const auto *RT = BaseType->getAs<RecordType>())
if (const auto *BaseDecl = dyn_cast<CXXRecordDecl>(RT->getDecl()))
if (BaseDecl->hasDefinition())
if (CXXDestructorDecl *BaseDtor = BaseDecl->getDestructor())
asImpl().visitUsedDecl(BaseDtor->getLocation(), BaseDtor);
}
}

void VisitDeclStmt(DeclStmt *DS) {
// Visit dtors called by variables that need destruction
for (auto *D : DS->decls())
if (auto *VD = dyn_cast<VarDecl>(D))
if (VD->isThisDeclarationADefinition() &&
VD->needsDestruction(S.Context)) {
QualType VT = VD->getType();
if (const auto *RT = VT->getAs<RecordType>())
if (const auto *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl()))
if (ClassDecl->hasDefinition())
if (CXXDestructorDecl *Dtor = ClassDecl->getDestructor())
asImpl().visitUsedDecl(Dtor->getLocation(), Dtor);
}

Inherited::VisitDeclStmt(DS);
}
void checkVar(VarDecl *VD) {
assert(VD->isFileVarDecl() &&
"Should only check file-scope variables");
Expand Down Expand Up @@ -1839,6 +1880,8 @@ class DeferredDiagnosticsEmitter
if (auto *S = FD->getBody()) {
this->Visit(S);
}
if (CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(FD))
asImpl().VisitCalledDestructors(Dtor);
UsePath.pop_back();
InUsePath.erase(FD);
}
Expand Down
15 changes: 15 additions & 0 deletions clang/lib/Sema/SemaCUDA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,21 @@ bool SemaCUDA::inferTargetForImplicitSpecialMember(CXXRecordDecl *ClassDecl,
CXXMethodDecl *MemberDecl,
bool ConstRHS,
bool Diagnose) {
// If MemberDecl is virtual destructor of an explicit template class
// instantiation, it must be emitted, therefore it needs to be inferred
// conservatively by ignoring implicit host/device attrs of member and parent
// dtors called by it. Also, it needs to be checed by deferred diag visitor.
bool IsExpVDtor = false;
if (isa<CXXDestructorDecl>(MemberDecl) && MemberDecl->isVirtual()) {
if (auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(ClassDecl)) {
TemplateSpecializationKind TSK = Spec->getTemplateSpecializationKind();
IsExpVDtor = TSK == TSK_ExplicitInstantiationDeclaration ||
TSK == TSK_ExplicitInstantiationDefinition;
}
}
if (IsExpVDtor)
SemaRef.DeclsToCheckForDeferredDiags.insert(MemberDecl);

// If the defaulted special member is defined lexically outside of its
// owning class, or the special member already has explicit device or host
// attributes, do not infer.
Expand Down
15 changes: 15 additions & 0 deletions clang/lib/Sema/SemaDecl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20473,6 +20473,21 @@ Sema::FunctionEmissionStatus Sema::getEmissionStatus(const FunctionDecl *FD,

if (IsEmittedForExternalSymbol())
return FunctionEmissionStatus::Emitted;

// If FD is a virtual destructor of an explicit instantiation
// of a template class, return Emitted.
if (auto *Destructor = dyn_cast<CXXDestructorDecl>(FD)) {
if (Destructor->isVirtual()) {
if (auto *Spec = dyn_cast<ClassTemplateSpecializationDecl>(
Destructor->getParent())) {
TemplateSpecializationKind TSK =
Spec->getTemplateSpecializationKind();
if (TSK == TSK_ExplicitInstantiationDeclaration ||
TSK == TSK_ExplicitInstantiationDefinition)
return FunctionEmissionStatus::Emitted;
}
}
}
}

// Otherwise, the function is known-emitted if it's in our set of
Expand Down
102 changes: 102 additions & 0 deletions clang/test/SemaCUDA/dtor.cu
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
// RUN: %clang_cc1 %s -std=c++20 -fsyntax-only -verify=host
// RUN: %clang_cc1 %s -std=c++20 -fcuda-is-device -fsyntax-only -verify=dev

// host-no-diagnostics

#include "Inputs/cuda.h"

// Virtual dtor ~B() of explicit instantiation B<float> must
// be emitted, which causes host_fun() called.
namespace ExplicitInstantiationExplicitDevDtor {
void host_fun() // dev-note {{'host_fun' declared here}}
{}

template <unsigned>
constexpr void hd_fun() {
host_fun(); // dev-error {{reference to __host__ function 'host_fun' in __host__ __device__ function}}
}

struct A {
constexpr ~A() { // dev-note {{called by '~B'}}
hd_fun<8>(); // dev-note {{called by '~A'}}
}
};

template <typename T>
struct B {
public:
virtual __device__ ~B() = default;
A _a;
};

template class B<float>;
}

// The implicit host/device attrs of virtual dtor B<float>::~B() is inferred to
// have implicit device attr since dtors of its members and parent classes can
// be executed on device. This causes a diagnostic since B<float>::~B() must
// be emitted, and it eventually causes host_fun() called on device side.
namespace ExplicitInstantiationDtorNoAttr {
void host_fun() // dev-note {{'host_fun' declared here}}
{}

template <unsigned>
constexpr void hd_fun() {
host_fun(); // dev-error{{reference to __host__ function 'host_fun' in __host__ __device__ function}}
}

struct A {
constexpr ~A() { // dev-note {{called by '~B'}}
hd_fun<8>(); // dev-note {{called by '~A'}}
}
};

template <typename T>
struct B {
public:
virtual ~B() = default;
A _a;
};

template <typename T>
struct C {
public:
virtual ~C() = default;
};

template class B<float>;
template class C<float>;
__device__ void foo() {
C<float> x;
}
}

// Dtors of implicit template class instantiation are not
// conservatively inferred because the invalid usage can
// be diagnosed.
namespace ImplicitInstantiation {
void host_fun() // dev-note {{'host_fun' declared here}}
{}

template <unsigned>
constexpr void hd_fun() {
host_fun(); // dev-error {{reference to __host__ function 'host_fun' in __host__ __device__ function}}
}

struct A {
constexpr ~A() { // dev-note {{called by '~B'}}
hd_fun<8>(); // dev-note {{called by '~A'}}
}
};

template <typename T>
struct B {
public:
~B() = default; // dev-note {{called by 'foo'}}
A _a;
};

__device__ void foo() {
B<float> x;
}
}