[PATCH] D63161: Devirtualize destructor of final class.
Hiroshi Yamauchi via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 21 13:10:56 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL364100: Devirtualize destructor of final class. (authored by yamauchi, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63161/new/
https://reviews.llvm.org/D63161
Files:
cfe/trunk/lib/CodeGen/CGExprCXX.cpp
cfe/trunk/test/CodeGenCXX/devirtualize-dtor-final.cpp
Index: cfe/trunk/lib/CodeGen/CGExprCXX.cpp
===================================================================
--- cfe/trunk/lib/CodeGen/CGExprCXX.cpp
+++ cfe/trunk/lib/CodeGen/CGExprCXX.cpp
@@ -1865,9 +1865,33 @@
Dtor = RD->getDestructor();
if (Dtor->isVirtual()) {
- CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType,
- Dtor);
- return;
+ bool UseVirtualCall = true;
+ const Expr *Base = DE->getArgument();
+ if (auto *DevirtualizedDtor =
+ dyn_cast_or_null<const CXXDestructorDecl>(
+ Dtor->getDevirtualizedMethod(
+ Base, CGF.CGM.getLangOpts().AppleKext))) {
+ UseVirtualCall = false;
+ const CXXRecordDecl *DevirtualizedClass =
+ DevirtualizedDtor->getParent();
+ if (declaresSameEntity(getCXXRecord(Base), DevirtualizedClass)) {
+ // Devirtualized to the class of the base type (the type of the
+ // whole expression).
+ Dtor = DevirtualizedDtor;
+ } else {
+ // Devirtualized to some other type. Would need to cast the this
+ // pointer to that type but we don't have support for that yet, so
+ // do a virtual call. FIXME: handle the case where it is
+ // devirtualized to the derived type (the type of the inner
+ // expression) as in EmitCXXMemberOrOperatorMemberCallExpr.
+ UseVirtualCall = true;
+ }
+ }
+ if (UseVirtualCall) {
+ CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType,
+ Dtor);
+ return;
+ }
}
}
}
Index: cfe/trunk/test/CodeGenCXX/devirtualize-dtor-final.cpp
===================================================================
--- cfe/trunk/test/CodeGenCXX/devirtualize-dtor-final.cpp
+++ cfe/trunk/test/CodeGenCXX/devirtualize-dtor-final.cpp
@@ -0,0 +1,23 @@
+// RUN: %clang_cc1 -triple i386-unknown-unknown -std=c++11 %s -emit-llvm -o - | FileCheck %s
+
+namespace Test1 {
+ struct A { virtual ~A() {} };
+ struct B final : A {};
+ struct C : A { virtual ~C() final {} };
+ struct D { virtual ~D() final = 0; };
+ // CHECK-LABEL: define void @_ZN5Test13fooEPNS_1BE
+ void foo(B *b) {
+ // CHECK: call void @_ZN5Test11BD1Ev
+ delete b;
+ }
+ // CHECK-LABEL: define void @_ZN5Test14foo2EPNS_1CE
+ void foo2(C *c) {
+ // CHECK: call void @_ZN5Test11CD1Ev
+ delete c;
+ }
+ // CHECK-LABEL: define void @_ZN5Test14evilEPNS_1DE
+ void evil(D *p) {
+ // CHECK-NOT: call void @_ZN5Test11DD1Ev
+ delete p;
+ }
+}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63161.206056.patch
Type: text/x-patch
Size: 2724 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190621/e0b30e0d/attachment.bin>
More information about the llvm-commits
mailing list