if (!conversion_warning)
arg_complain &= ~tf_warning;
+ if (arg_complain & tf_warning)
+ maybe_warn_pessimizing_move (arg, type, /*return_p*/false);
+
val = convert_like_with_context (conv, arg, fn, i - is_method,
arg_complain);
val = convert_for_arg_passing (type, val, arg_complain);
-
+
if (val == error_mark_node)
return error_mark_node;
else
extern tree finish_binary_fold_expr (tree, tree, int);
extern tree treat_lvalue_as_rvalue_p (tree, bool);
extern bool decl_in_std_namespace_p (tree);
+extern void maybe_warn_pessimizing_move (tree, tree, bool);
/* in typeck2.cc */
extern void require_complete_eh_spec_types (tree, tree);
static tree
build_aggr_init_full_exprs (tree decl, tree init, int flags)
-
{
gcc_assert (stmts_are_full_exprs_p ());
+ if (init)
+ maybe_warn_pessimizing_move (init, TREE_TYPE (decl), /*return_p*/false);
return build_aggr_init (decl, init, flags, tf_warning_or_error);
}
}
}
-/* Warn about wrong usage of std::move in a return statement. RETVAL
- is the expression we are returning; FUNCTYPE is the type the function
- is declared to return. */
+/* Warn about dubious usage of std::move (in a return statement, if RETURN_P
+ is true). EXPR is the std::move expression; TYPE is the type of the object
+ being initialized. */
-static void
-maybe_warn_pessimizing_move (tree retval, tree functype)
+void
+maybe_warn_pessimizing_move (tree expr, tree type, bool return_p)
{
if (!(warn_pessimizing_move || warn_redundant_move))
return;
- location_t loc = cp_expr_loc_or_input_loc (retval);
+ const location_t loc = cp_expr_loc_or_input_loc (expr);
/* C++98 doesn't know move. */
if (cxx_dialect < cxx11)
return;
/* This is only interesting for class types. */
- if (!CLASS_TYPE_P (functype))
+ if (!CLASS_TYPE_P (type))
return;
+ /* A a = std::move (A()); */
+ if (TREE_CODE (expr) == TREE_LIST)
+ {
+ if (list_length (expr) == 1)
+ expr = TREE_VALUE (expr);
+ else
+ return;
+ }
+ /* A a = {std::move (A())};
+ A a{std::move (A())}; */
+ else if (TREE_CODE (expr) == CONSTRUCTOR)
+ {
+ if (CONSTRUCTOR_NELTS (expr) == 1)
+ expr = CONSTRUCTOR_ELT (expr, 0)->value;
+ else
+ return;
+ }
+
/* We're looking for *std::move<T&> ((T &) &arg). */
- if (REFERENCE_REF_P (retval)
- && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
+ if (REFERENCE_REF_P (expr)
+ && TREE_CODE (TREE_OPERAND (expr, 0)) == CALL_EXPR)
{
- tree fn = TREE_OPERAND (retval, 0);
+ tree fn = TREE_OPERAND (expr, 0);
if (is_std_move_p (fn))
{
tree arg = CALL_EXPR_ARG (fn, 0);
return;
arg = TREE_OPERAND (arg, 0);
arg = convert_from_reference (arg);
- /* Warn if we could do copy elision were it not for the move. */
- if (can_do_nrvo_p (arg, functype))
+ if (can_do_rvo_p (arg, type))
{
auto_diagnostic_group d;
if (warning_at (loc, OPT_Wpessimizing_move,
- "moving a local object in a return statement "
- "prevents copy elision"))
+ "moving a temporary object prevents copy "
+ "elision"))
inform (loc, "remove %<std::move%> call");
}
- else if (can_do_rvo_p (arg, functype))
+ /* The rest of the warnings is only relevant for when we are
+ returning from a function. */
+ else if (!return_p)
+ return;
+ /* Warn if we could do copy elision were it not for the move. */
+ else if (can_do_nrvo_p (arg, type))
{
auto_diagnostic_group d;
if (warning_at (loc, OPT_Wpessimizing_move,
- "moving a temporary object in a return statement "
+ "moving a local object in a return statement "
"prevents copy elision"))
inform (loc, "remove %<std::move%> call");
}
{
/* Make sure that overload resolution would actually succeed
if we removed the std::move call. */
- tree t = convert_for_initialization (NULL_TREE, functype,
+ tree t = convert_for_initialization (NULL_TREE, type,
moved,
(LOOKUP_NORMAL
| LOOKUP_ONLYCONVERTING
return NULL_TREE;
if (!named_return_value_okay_p)
- maybe_warn_pessimizing_move (retval, functype);
+ maybe_warn_pessimizing_move (retval, functype, /*return_p*/true);
/* Do any required conversions. */
if (bare_retval == result || DECL_CONSTRUCTOR_P (current_function_decl))
A
fn1 ()
{
- return std::move (A{}); // { dg-warning "moving a temporary object in a return statement prevents copy elision" }
- return std::move (A()); // { dg-warning "moving a temporary object in a return statement prevents copy elision" }
- return std::move (foo ()); // { dg-warning "moving a temporary object in a return statement prevents copy elision" }
+ return std::move (A{}); // { dg-warning "moving a temporary object prevents copy elision" }
+ return std::move (A()); // { dg-warning "moving a temporary object prevents copy elision" }
+ return std::move (foo ()); // { dg-warning "moving a temporary object prevents copy elision" }
}
B fn2 ()
{
- return std::move (A());
- return std::move (A{});
- return std::move (foo ());
+ return std::move (A()); // { dg-warning "moving a temporary object prevents copy elision" }
+ return std::move (A{}); // { dg-warning "moving a temporary object prevents copy elision" }
+ return std::move (foo ()); // { dg-warning "moving a temporary object prevents copy elision" }
}
template <typename T1, typename T2>
T1
fn3 ()
{
- return std::move (T2{}); // { dg-warning "moving a temporary object in a return statement prevents copy elision" }
+ return std::move (T2{}); // { dg-warning "moving a temporary object prevents copy elision" }
}
void
char take_buffer;
struct label_text {
- label_text take() { return std::move(label_text(&take_buffer)); } // { dg-warning "moving a temporary object in a return statement prevents copy elision" }
+ label_text take() { return std::move(label_text(&take_buffer)); } // { dg-warning "moving a temporary object prevents copy elision" }
label_text(char *);
};
--- /dev/null
+// PR c++/106276
+// { dg-do compile { target c++11 } }
+// { dg-options "-Wpessimizing-move" }
+
+// Define std::move.
+namespace std {
+ template<typename _Tp>
+ struct remove_reference
+ { typedef _Tp type; };
+
+ template<typename _Tp>
+ struct remove_reference<_Tp&>
+ { typedef _Tp type; };
+
+ template<typename _Tp>
+ struct remove_reference<_Tp&&>
+ { typedef _Tp type; };
+
+ template<typename _Tp>
+ constexpr typename std::remove_reference<_Tp>::type&&
+ move(_Tp&& __t) noexcept
+ { return static_cast<typename std::remove_reference<_Tp>::type&&>(__t); }
+}
+
+struct A { A(); A(const A&) = delete; A(A&&); };
+struct B { B(A); };
+struct X { };
+
+void foo (A);
+void bar (X);
+
+void
+fn1 ()
+{
+ A a1 = std::move (A()); // { dg-warning "moving a temporary object prevents copy elision" }
+ A a2 = std::move (A{}); // { dg-warning "moving a temporary object prevents copy elision" }
+ A a3(std::move (A())); // { dg-warning "moving a temporary object prevents copy elision" }
+ A a4(std::move (A{})); // { dg-warning "moving a temporary object prevents copy elision" }
+ A a5{std::move (A())}; // { dg-warning "moving a temporary object prevents copy elision" }
+ A a6{std::move (A{})}; // { dg-warning "moving a temporary object prevents copy elision" }
+ A a7 = {std::move (A())}; // { dg-warning "moving a temporary object prevents copy elision" }
+ A a8 = {std::move (A{})}; // { dg-warning "moving a temporary object prevents copy elision" }
+
+ B b1 = std::move (A()); // { dg-warning "moving a temporary object prevents copy elision" }
+ B b2(std::move (A())); // { dg-warning "moving a temporary object prevents copy elision" }
+ B b3{std::move (A())}; // { dg-warning "moving a temporary object prevents copy elision" }
+ B b4 = {std::move (A())}; // { dg-warning "moving a temporary object prevents copy elision" }
+
+ X x1 = std::move (X()); // { dg-warning "moving a temporary object prevents copy elision" }
+ X x2 = std::move (X{}); // { dg-warning "moving a temporary object prevents copy elision" }
+ X x3(std::move (X())); // { dg-warning "moving a temporary object prevents copy elision" }
+ X x4(std::move (X{})); // { dg-warning "moving a temporary object prevents copy elision" }
+ X x5{std::move (X())}; // { dg-warning "moving a temporary object prevents copy elision" }
+ X x6{std::move (X{})}; // { dg-warning "moving a temporary object prevents copy elision" }
+ X x7 = {std::move (X())}; // { dg-warning "moving a temporary object prevents copy elision" }
+ X x8 = {std::move (X{})}; // { dg-warning "moving a temporary object prevents copy elision" }
+
+ foo (std::move (A())); // { dg-warning "moving a temporary object prevents copy elision" }
+ foo (std::move (A{})); // { dg-warning "moving a temporary object prevents copy elision" }
+ bar (std::move (X())); // { dg-warning "moving a temporary object prevents copy elision" }
+ bar (std::move (X{})); // { dg-warning "moving a temporary object prevents copy elision" }
+
+ foo (std::move (a1));
+ bar (std::move (x1));
+}