[PATCH] D10989: [EH] Fix for clang bug 24005 - no cleanup for array of memcpy-able objects in struct

Alexey Bataev a.bataev at hotmail.com
Wed Jul 8 00:31:34 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL241670: [EH] Fix for clang bug 24005 - no cleanup for array of memcpy-able objects in… (authored by ABataev).

Changed prior to commit:
  http://reviews.llvm.org/D10989?vs=29166&id=29245#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D10989

Files:
  cfe/trunk/lib/CodeGen/CGClass.cpp
  cfe/trunk/test/CodeGenCXX/eh-aggregate-copy-destroy.cpp

Index: cfe/trunk/lib/CodeGen/CGClass.cpp
===================================================================
--- cfe/trunk/lib/CodeGen/CGClass.cpp
+++ cfe/trunk/lib/CodeGen/CGClass.cpp
@@ -606,6 +606,11 @@
       // Copy the aggregate.
       CGF.EmitAggregateCopy(LHS.getAddress(), Src.getAddress(), FieldType,
                             LHS.isVolatileQualified());
+      // Ensure that we destroy the objects if an exception is thrown later in
+      // the constructor.
+      QualType::DestructionKind dtorKind = FieldType.isDestructedType();
+      if (CGF.needsEHCleanup(dtorKind))
+        CGF.pushEHDestroy(dtorKind, LHS.getAddress(), FieldType); 
       return;
     }
   }
Index: cfe/trunk/test/CodeGenCXX/eh-aggregate-copy-destroy.cpp
===================================================================
--- cfe/trunk/test/CodeGenCXX/eh-aggregate-copy-destroy.cpp
+++ cfe/trunk/test/CodeGenCXX/eh-aggregate-copy-destroy.cpp
@@ -0,0 +1,37 @@
+// Check that in case of copying an array of memcpy-able objects, their
+// destructors will be called if an exception is thrown.
+//
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fexceptions -fcxx-exceptions -O0 -fno-elide-constructors -emit-llvm %s -o - | FileCheck %s
+
+struct ImplicitCopy {
+  int x;
+  ImplicitCopy() { x = 10; }
+  ~ImplicitCopy() { x = 20; }
+};
+
+struct ThrowCopy {
+  ThrowCopy() {}
+  ThrowCopy(const ThrowCopy &) { throw 1; }
+};
+
+struct Container {
+  ImplicitCopy b[2];
+  ThrowCopy c;
+};
+
+int main () {
+  try {
+    Container c1;
+    // CHECK_LABEL: main
+    // CHECK-NOT: call void @_ZN9ThrowCopyC1ERKS_
+    // CHECK: invoke void @_ZN9ThrowCopyC1ERKS_
+    // CHECK: invoke void @_ZN12ImplicitCopyD1Ev
+    Container c2(c1);
+  }
+  catch (...) {
+    return 1;
+  }
+
+  return 0;
+}
+


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D10989.29245.patch
Type: text/x-patch
Size: 1790 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20150708/bf266b29/attachment.bin>


More information about the cfe-commits mailing list