From: Alexandre Oliva Date: Wed, 5 Dec 2018 06:47:11 +0000 (+0000) Subject: [PR85569] skip constexpr target_expr constructor dummy type conversion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=47be95094bc2d5c79320234a35e5049e0514fff1;p=gcc.git [PR85569] skip constexpr target_expr constructor dummy type conversion The testcase is the work-around testcase for the PR; even that had started failing. The problem was that, when unqualifying the type of a TARGET_EXPR, we'd create a variant of the type, then request the conversion of the TARGET_EXPR_INITIAL to that variant type. Though the types are different pointer-wise, they're the same_type_p, so the resulting modified expr compares cp_tree_equal to the original, which maybe_constant_value flags as an error. There's no reason to construct an alternate TARGET_EXPR or CONSTRUCTOR just because of an equivalent type, except for another spot that expected pointer equality that would no longer be satisfied. Without relaxing the assert in constexpr_call_hasher::equal, g++.robertl/eb73.C would trigger an assertion failure. for gcc/cp/ChangeLog PR c++/85569 * constexpr.c (adjust_temp_type): Test for type equality with same_type_p. (constexpr_call_hasher::equal): Likewise. for gcc/testsuite/ChangeLog PR c++/85569 * g++.dg/cpp1z/pr85569.C: New. From-SVN: r266816 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 253af3ba134..3958992a57a 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,10 @@ +2018-12-05 Alexandre Oliva + + PR c++/85569 + * constexpr.c (adjust_temp_type): Test for type equality with + same_type_p. + (constexpr_call_hasher::equal): Likewise. + 2018-12-04 Paolo Carlini PR c++/84636 diff --git a/gcc/cp/constexpr.c b/gcc/cp/constexpr.c index 92fd2b2d9d5..a668d14e8bf 100644 --- a/gcc/cp/constexpr.c +++ b/gcc/cp/constexpr.c @@ -1060,7 +1060,7 @@ constexpr_call_hasher::equal (constexpr_call *lhs, constexpr_call *rhs) { tree lhs_arg = TREE_VALUE (lhs_bindings); tree rhs_arg = TREE_VALUE (rhs_bindings); - gcc_assert (TREE_TYPE (lhs_arg) == TREE_TYPE (rhs_arg)); + gcc_assert (same_type_p (TREE_TYPE (lhs_arg), TREE_TYPE (rhs_arg))); if (!cp_tree_equal (lhs_arg, rhs_arg)) return false; lhs_bindings = TREE_CHAIN (lhs_bindings); @@ -1276,7 +1276,7 @@ cxx_eval_builtin_function_call (const constexpr_ctx *ctx, tree t, tree fun, static tree adjust_temp_type (tree type, tree temp) { - if (TREE_TYPE (temp) == type) + if (same_type_p (TREE_TYPE (temp), type)) return temp; /* Avoid wrapping an aggregate value in a NOP_EXPR. */ if (TREE_CODE (temp) == CONSTRUCTOR) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4c98c4133ab..8b74eb02bfb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-12-05 Alexandre Oliva + + PR c++/85569 + * g++.dg/cpp1z/pr85569.C: New. + 2018-12-05 Chenghua Xu * gcc.target/mips/msa.c: Adjusted clti_.df $wn,$wn,5 diff --git a/gcc/testsuite/g++.dg/cpp1z/pr85569.C b/gcc/testsuite/g++.dg/cpp1z/pr85569.C new file mode 100644 index 00000000000..aec543041a0 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp1z/pr85569.C @@ -0,0 +1,93 @@ +// { dg-do compile { target c++17 } } + +#include +#include + +#define LIFT_FWD(x) std::forward(x) + +template +inline +constexpr +auto +equal( + T &&t) +{ + return [t = std::forward(t)](const auto& obj) + -> decltype(obj == t) + { + return obj == t; + }; +} + +template +struct is_tuple_invocable; + +template +struct is_tuple_invocable> +{ + using type = typename std::is_invocable::type; +}; + +template +inline +constexpr +auto +compose( + F&& f +) + noexcept +-> F +{ + return std::forward(f); +} + +namespace detail { + template + inline + constexpr + auto + compose( + std::true_type, + F&& f, + Tail&& tail, + T&& ... objs) + noexcept(noexcept(f(tail(std::forward(objs)...)))) + -> decltype(f(tail(std::forward(objs)...))) + { + return f(tail(std::forward(objs)...)); + } +} +template +inline +constexpr +auto +compose( + F&& f, + Fs&&... fs) +{ + return [f = std::forward(f), tail = compose(std::forward(fs)...)] + (auto&& ... objs) + -> decltype(detail::compose(typename std::is_invocable(fs)...)), decltype(objs)...>::type{}, + f, + compose(std::forward(fs)...), + LIFT_FWD(objs)...)) + { + using tail_type = decltype(compose(std::forward(fs)...)); + +#ifndef NOT_VIA_TUPLE + using args_type = std::tuple; + constexpr auto unitail = typename is_tuple_invocable::type{}; +#else + constexpr auto unitail = typename std::is_invocable::type{}; +#endif + + return detail::compose(unitail, f, tail, LIFT_FWD(objs)...); + }; +} + +template +constexpr auto eq = equal(N); + +static_assert(compose(eq<3>, + std::plus<>{})(1,2), + "compose is constexpr");