c++: Fix up ptr.~PTR () handling [PR96721]
authorJakub Jelinek <jakub@redhat.com>
Tue, 25 Aug 2020 05:19:41 +0000 (07:19 +0200)
committerJakub Jelinek <jakub@redhat.com>
Tue, 25 Aug 2020 05:19:41 +0000 (07:19 +0200)
The following testcase is miscompiled, because build_trivial_dtor_call
handles the case when instance is a pointer by adding a clobber to what
the pointer points to (which is desirable e.g. for delete) rather than the
pointer itself.  That is I think always desirable behavior for references,
but for pointers for the pseudo dtor case it is not.

2020-08-25  Jakub Jelinek  <jakub@redhat.com>

PR c++/96721
* cp-tree.h (build_trivial_dtor_call): Add bool argument defaulted
to false.
* call.c (build_trivial_dtor_call): Add NO_PTR_DEREF argument.  If
instance is a pointer and NO_PTR_DEREF is true, clobber the pointer
rather than what it points to.
* semantics.c (finish_call_expr): Call build_trivial_dtor_call with
true as NO_PTR_DEREF.

* g++.dg/opt/flifetime-dse8.C: New test.

gcc/cp/call.c
gcc/cp/cp-tree.h
gcc/cp/semantics.c
gcc/testsuite/g++.dg/opt/flifetime-dse8.C [new file with mode: 0644]

index c62d9e227d364df74a04a9a4b835a01bf22bc941..4726e57a30df2779f1e80b5ce4b3556e16a2dc2f 100644 (file)
@@ -8430,10 +8430,12 @@ conv_binds_ref_to_prvalue (conversion *c)
 }
 
 /* Call the trivial destructor for INSTANCE, which can be either an lvalue of
-   class type or a pointer to class type.  */
+   class type or a pointer to class type.  If NO_PTR_DEREF is true and
+   INSTANCE has pointer type, clobber the pointer rather than what it points
+   to.  */
 
 tree
-build_trivial_dtor_call (tree instance)
+build_trivial_dtor_call (tree instance, bool no_ptr_deref)
 {
   gcc_assert (!is_dummy_object (instance));
 
@@ -8443,7 +8445,8 @@ build_trivial_dtor_call (tree instance)
       return fold_convert (void_type_node, instance);
     }
 
-  if (INDIRECT_TYPE_P (TREE_TYPE (instance)))
+  if (INDIRECT_TYPE_P (TREE_TYPE (instance))
+      && (!no_ptr_deref || TYPE_REF_P (TREE_TYPE (instance))))
     {
       if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (instance))))
        goto no_clobber;
index 3f3717a6bb51696a4d5d1078f7557d1d9f9626d1..2b7c9b9913abff9cf1efbbfc920d6ae69abfd35c 100644 (file)
@@ -6248,7 +6248,7 @@ extern bool null_member_pointer_value_p           (tree);
 extern bool sufficient_parms_p                 (const_tree);
 extern tree type_decays_to                     (tree);
 extern tree extract_call_expr                  (tree);
-extern tree build_trivial_dtor_call            (tree);
+extern tree build_trivial_dtor_call            (tree, bool = false);
 extern tree build_user_type_conversion         (tree, tree, int,
                                                 tsubst_flags_t);
 extern tree build_new_function_call            (tree, vec<tree, va_gc> **,
index b71ca0729a8ff8c85f862b5af581eb540d315d80..3877a0e536a49bca581168dd53b67a8e38a34b59 100644 (file)
@@ -2713,7 +2713,7 @@ finish_call_expr (tree fn, vec<tree, va_gc> **args, bool disallow_virtual,
         denoted by the object expression of the class member access.  */
       tree ob = TREE_OPERAND (fn, 0);
       if (obvalue_p (ob))
-       result = build_trivial_dtor_call (ob);
+       result = build_trivial_dtor_call (ob, true);
       else
        /* No location to clobber.  */
        result = convert_to_void (ob, ICV_STATEMENT, complain);
diff --git a/gcc/testsuite/g++.dg/opt/flifetime-dse8.C b/gcc/testsuite/g++.dg/opt/flifetime-dse8.C
new file mode 100644 (file)
index 0000000..eeb814e
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/96721
+// { dg-do run }
+// { dg-options "-O2 -flifetime-dse" }
+
+typedef int *T;
+
+int
+main ()
+{
+  T a = T ();
+  a.~T ();
+}