[pushed] c++: block copy elision in delegating ctor
Commit Message
CWG2403 deals with the issue that copy elision is not possible when the
initialized object is a potentially-overlapping subobject and the
initializer is a function that returns by value. Jonathan pointed out that
this also affects delegating constructors, which might be used to construct
a base subobject.
Tested x86_64-pc-linux-gnu, applying to trunk.
gcc/cp/ChangeLog:
* call.cc (unsafe_return_slot_p): Return 2 for *this in a
constructor.
gcc/testsuite/ChangeLog:
* g++.dg/init/elide8.C: New test.
---
gcc/cp/call.cc | 7 +++++++
gcc/testsuite/g++.dg/init/elide8.C | 11 +++++++++++
2 files changed, 18 insertions(+)
create mode 100644 gcc/testsuite/g++.dg/init/elide8.C
base-commit: 30e160475489867a09ed89532cae135b5849cf98
@@ -9022,6 +9022,13 @@ unsafe_return_slot_p (tree t)
if (is_empty_base_ref (t))
return 2;
+ /* A delegating constructor might be used to initialize a base. */
+ if (current_function_decl
+ && DECL_CONSTRUCTOR_P (current_function_decl)
+ && (t == current_class_ref
+ || tree_strip_nop_conversions (t) == current_class_ptr))
+ return 2;
+
STRIP_NOPS (t);
if (TREE_CODE (t) == ADDR_EXPR)
t = TREE_OPERAND (t, 0);
new file mode 100644
@@ -0,0 +1,11 @@
+// CWG 2403 case 3: we can't elide this copy because the delegating constructor
+// might be used to initialize a base.
+// { dg-do compile { target c++11 } }
+
+struct Noncopyable {
+ Noncopyable() = default;
+ Noncopyable(const Noncopyable &) = delete;
+ Noncopyable(int) : Noncopyable(make()) {} // { dg-error "deleted" }
+
+ static Noncopyable make();
+};