+2020-01-13 Jason Merrill <jason@redhat.com>
+
+ PR c++/33799 - destroy return value if local cleanup throws.
+ * gimplify.c (gimplify_return_expr): Handle COMPOUND_EXPR.
+
2020-01-13 Martin Liska <mliska@suse.cz>
* ipa-cp.c (get_max_overall_size): Use newly
2020-01-13 Jason Merrill <jason@redhat.com>
+ PR c++/33799 - destroy return value if local cleanup throws.
+ * cp-tree.h (current_retval_sentinel): New macro.
+ * decl.c (start_preparsed_function): Set up cleanup for retval.
+ * typeck.c (check_return_expr): Set current_retval_sentinel.
+
PR c++/93238 - short right-shift with enum.
* typeck.c (cp_build_binary_op): Use folded op1 for short_shift.
#define current_vtt_parm cp_function_chain->x_vtt_parm
+/* A boolean flag to control whether we need to clean up the return value if a
+ local destructor throws. Only used in functions that return by value a
+ class with a destructor. Which 'tors don't, so we can use the same
+ field as current_vtt_parm. */
+
+#define current_retval_sentinel current_vtt_parm
+
/* Set to 0 at beginning of a function definition, set to 1 if
a return statement that specifies a return value is seen. */
if (!DECL_OMP_DECLARE_REDUCTION_P (decl1))
start_lambda_scope (decl1);
+ /* If cleaning up locals on return throws an exception, we need to destroy
+ the return value that we just constructed. */
+ if (!processing_template_decl
+ && TYPE_HAS_NONTRIVIAL_DESTRUCTOR (TREE_TYPE (TREE_TYPE (decl1))))
+ {
+ tree retval = DECL_RESULT (decl1);
+ tree dtor = build_cleanup (retval);
+ current_retval_sentinel = get_temp_regvar (boolean_type_node,
+ boolean_false_node);
+ dtor = build3 (COND_EXPR, void_type_node, current_retval_sentinel,
+ dtor, void_node);
+ push_cleanup (retval, dtor, /*eh-only*/true);
+ }
+
return true;
}
if (retval && retval != result)
retval = build2 (INIT_EXPR, TREE_TYPE (result), result, retval);
+ if (TYPE_HAS_NONTRIVIAL_DESTRUCTOR (valtype)
+ /* FIXME doesn't work with deduced return type. */
+ && current_retval_sentinel)
+ {
+ tree set = build2 (MODIFY_EXPR, boolean_type_node,
+ current_retval_sentinel, boolean_true_node);
+ retval = build2 (COMPOUND_EXPR, void_type_node, retval, set);
+ }
+
return retval;
}
if (VOID_TYPE_P (TREE_TYPE (TREE_TYPE (current_function_decl))))
result_decl = NULL_TREE;
+ else if (TREE_CODE (ret_expr) == COMPOUND_EXPR)
+ {
+ /* Used in C++ for handling EH cleanup of the return value if a local
+ cleanup throws. Assume the front-end knows what it's doing. */
+ result_decl = DECL_RESULT (current_function_decl);
+ /* But crash if we end up trying to modify ret_expr below. */
+ ret_expr = NULL_TREE;
+ }
else
{
result_decl = TREE_OPERAND (ret_expr, 0);
--- /dev/null
+// PR c++/33799
+// { dg-do run }
+
+extern "C" void abort();
+
+int c, d;
+
+#if __cplusplus >= 201103L
+#define THROWS noexcept(false)
+#else
+#define THROWS
+#endif
+
+struct X
+{
+ X(bool throws) : throws_(throws) { ++c; }
+ X(const X& x) : throws_(x.throws_) { ++c; }
+ ~X() THROWS
+ {
+ ++d;
+ if (throws_) { throw 1; }
+ }
+private:
+ bool throws_;
+};
+
+X f()
+{
+ X x(true);
+ return X(false);
+}
+
+int main()
+{
+ try { f(); }
+ catch (...) {}
+
+ if (c != d)
+ throw;
+}