return digest_init_r (type, init, 0, flags, complain);
}
-/* Return true if SUBOB initializes the same object as FULL_EXPR.
- For instance:
-
- A a = A{}; // initializer
- A a = (A{}); // initializer
- A a = (1, A{}); // initializer
- A a = true ? A{} : A{}; // initializer
- auto x = A{}.x; // temporary materialization
- auto x = foo(A{}); // temporary materialization
-
- FULL_EXPR is the whole expression, SUBOB is its TARGET_EXPR subobject. */
-
-static bool
-potential_prvalue_result_of (tree subob, tree full_expr)
-{
- if (subob == full_expr)
- return true;
- else if (TREE_CODE (full_expr) == TARGET_EXPR)
- {
- tree init = TARGET_EXPR_INITIAL (full_expr);
- if (TREE_CODE (init) == COND_EXPR)
- return (potential_prvalue_result_of (subob, TREE_OPERAND (init, 1))
- || potential_prvalue_result_of (subob, TREE_OPERAND (init, 2)));
- else if (TREE_CODE (init) == COMPOUND_EXPR)
- return potential_prvalue_result_of (subob, TREE_OPERAND (init, 1));
- /* ??? I don't know if this can be hit. */
- else if (TREE_CODE (init) == PAREN_EXPR)
- {
- gcc_checking_assert (false);
- return potential_prvalue_result_of (subob, TREE_OPERAND (init, 0));
- }
- }
- return false;
-}
-
/* Callback to replace PLACEHOLDER_EXPRs in a TARGET_EXPR (which isn't used
in the context of guaranteed copy elision). */
replace_placeholders_for_class_temp_r (tree *tp, int *, void *data)
{
tree t = *tp;
- tree full_expr = *static_cast<tree *>(data);
+ auto pset = static_cast<hash_set<tree> *>(data);
/* We're looking for a TARGET_EXPR nested in the whole expression. */
if (TREE_CODE (t) == TARGET_EXPR
- && !potential_prvalue_result_of (t, full_expr))
+ /* That serves as temporary materialization, not an initializer. */
+ && !TARGET_EXPR_ELIDING_P (t)
+ && !pset->add (t))
{
tree init = TARGET_EXPR_INITIAL (t);
while (TREE_CODE (init) == COMPOUND_EXPR)
gcc_checking_assert (!find_placeholders (init));
}
}
+ /* TARGET_EXPRs initializing function arguments are not marked as eliding,
+ even though gimplify_arg drops them on the floor. Don't go replacing
+ placeholders in them. */
+ else if (TREE_CODE (t) == CALL_EXPR || TREE_CODE (t) == AGGR_INIT_EXPR)
+ for (int i = 0; i < call_expr_nargs (t); ++i)
+ {
+ tree arg = get_nth_callarg (t, i);
+ if (TREE_CODE (arg) == TARGET_EXPR && !TARGET_EXPR_ELIDING_P (arg))
+ pset->add (arg);
+ }
return NULL_TREE;
}
temporary materialization does not occur when initializing an object
from a prvalue of the same type, therefore we must not replace the
placeholder with a temporary object so that it can be elided. */
- cp_walk_tree (&init, replace_placeholders_for_class_temp_r, &init,
- nullptr);
+ hash_set<tree> pset;
+ cp_walk_tree (&init, replace_placeholders_for_class_temp_r, &pset, nullptr);
return init;
}
--- /dev/null
+// PR c++/109966
+// { dg-do compile { target c++14 } }
+
+struct k {
+ k(const char *);
+};
+struct M {
+ k name;
+ int j = 42;
+ int i = j;
+};
+
+M m = M{""};
+
+struct S {
+ M arr1[1]{M{""}};
+ M a1[1] = { (M{""}) };
+ M a2[1] = { (true, M{""}) };
+ M a3[1] = { true ? M{""} : M{""} };
+ M arr2[2]{M{""}, M{""}};
+ M arr3[3]{M{""}, M{""}, M{""}};
+
+ M arr1e[1] = {M{""}};
+ M arr2e[2] = {M{""}, M{""}};
+ M arr3e[3] = {M{""}, M{""}, M{""}};
+
+ M arr1l[1] = { m };
+ M arr2l[2] = { m, m };
+ M arr3l[3] = { m, m, m };
+
+ M m1 = M{""};
+ M m2 = m;
+ M m3{M{""}};
+ M m4 = {M{""}};
+} o;
+
+struct N {
+ N(M);
+};
+
+struct Z {
+ N arr1[1]{ M{""} };
+ N arr2[2]{ M{""}, M{""} };
+ N arr1e[1] = { M{""} };
+ N arr2e[2] = { M{""}, M{""} };
+} z;
+
+struct Y {
+ k name;
+ int j = 42;
+ int i = j;
+ operator M();
+};
+
+struct W {
+ M arr1[1]{ Y{""} };
+ M arr2[2]{ Y{""}, Y{""} };
+ M arr3[3]{ Y{""}, Y{""}, Y{""} };
+} w;