public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [aarch64] Use op_mode instead of vmode for op0, op1 in aarch64_vectorize_vec_perm_const
@ 2022-07-14 10:55 Prathamesh Kulkarni
  2022-07-14 11:33 ` Richard Sandiford
  0 siblings, 1 reply; 2+ messages in thread
From: Prathamesh Kulkarni @ 2022-07-14 10:55 UTC (permalink / raw)
  To: gcc Patches, Richard Sandiford

[-- Attachment #1: Type: text/plain, Size: 2216 bytes --]

Hi,
For following test case:

svint32_t foo()
{
  int32x4_t v = (int32x4_t) { 1, 2, 3, 4 };
  svint32_t v2 = svld1rq_s32 (svptrue_b8(), &v[0]);
  return v2;
}

After applying workaround in forwprop to not simplify VEC_PERM_EXPR in
simplify_permutation to avoid type error in middle end (or using
-fno-tree-forwprop)
as mentioned in:
https://gcc.gnu.org/pipermail/gcc-patches/2022-July/598390.html

We get following optimized gimple:
  v2_2 = VEC_PERM_EXPR <{ 1, 2, 3, 4 }, { 1, 2, 3, 4 }, { 0, 1, 2, 3, ... }>;
  return v2_2;

However we hit the following ICE during expansion of vec_perm_expr
because in aarch64_vectorize_vec_perm_const,
op0 is VECTOR_CST, and we call force_reg (VNx4SI, op0), which is incorrect mode
for op0. The patch fixes it by using op_mode instead of vmode in calls
to force_reg
for op0 and op1.

during RTL pass: expand
foo2.c: In function ‘foo’:
foo2.c:8:10: internal compiler error: in emit_move_insn, at expr.cc:4052
    8 |   return v2;
      |          ^~
0x74789b emit_move_insn(rtx_def*, rtx_def*)
        ../../gcc/gcc/expr.cc:4052
0xb8f664 force_reg(machine_mode, rtx_def*)
        ../../gcc/gcc/explow.cc:688
0x134182f aarch64_vectorize_vec_perm_const
        ../../gcc/gcc/config/aarch64/aarch64.cc:24132
0xe63070 expand_vec_perm_const(machine_mode, rtx_def*, rtx_def*,
int_vector_builder<poly_int<2u, long> > const&, machine_mode,
rtx_def*)
        ../../gcc/gcc/optabs.cc:6254
0xbb1569 expand_expr_real_2(separate_ops*, rtx_def*, machine_mode,
expand_modifier)
        ../../gcc/gcc/expr.cc:10273
0xbb6498 expand_expr_real_1(tree_node*, rtx_def*, machine_mode,
expand_modifier, rtx_def**, bool)
        ../../gcc/gcc/expr.cc:10625
0xa897dc expand_expr
        ../../gcc/gcc/expr.h:310
0xa897dc expand_return
        ../../gcc/gcc/cfgexpand.cc:3809
0xa897dc expand_gimple_stmt_1
        ../../gcc/gcc/cfgexpand.cc:3918
0xa897dc expand_gimple_stmt
        ../../gcc/gcc/cfgexpand.cc:4044
0xa8f238 expand_gimple_basic_block
        ../../gcc/gcc/cfgexpand.cc:6096
0xa91187 execute
        ../../gcc/gcc/cfgexpand.cc:6822

Is the patch OK to commit after bootstrap+test on aarch64-linux-gnu ?

Thanks,
Prathamesh

[-- Attachment #2: op.txt --]
[-- Type: text/plain, Size: 707 bytes --]

diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc
index 25f4cbb466d..303814b8cca 100644
--- a/gcc/config/aarch64/aarch64.cc
+++ b/gcc/config/aarch64/aarch64.cc
@@ -24129,11 +24129,11 @@ aarch64_vectorize_vec_perm_const (machine_mode vmode, machine_mode op_mode,
   d.op_mode = op_mode;
   d.op_vec_flags = aarch64_classify_vector_mode (d.op_mode);
   d.target = target;
-  d.op0 = op0 ? force_reg (vmode, op0) : NULL_RTX;
+  d.op0 = op0 ? force_reg (op_mode, op0) : NULL_RTX;
   if (op0 == op1)
     d.op1 = d.op0;
   else
-    d.op1 = op1 ? force_reg (vmode, op1) : NULL_RTX;
+    d.op1 = op1 ? force_reg (op_mode, op1) : NULL_RTX;
   d.testing_p = !target;
 
   if (!d.testing_p)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [aarch64] Use op_mode instead of vmode for op0, op1 in aarch64_vectorize_vec_perm_const
  2022-07-14 10:55 [aarch64] Use op_mode instead of vmode for op0, op1 in aarch64_vectorize_vec_perm_const Prathamesh Kulkarni
@ 2022-07-14 11:33 ` Richard Sandiford
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Sandiford @ 2022-07-14 11:33 UTC (permalink / raw)
  To: Prathamesh Kulkarni; +Cc: gcc Patches

Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> writes:
> Hi,
> For following test case:
>
> svint32_t foo()
> {
>   int32x4_t v = (int32x4_t) { 1, 2, 3, 4 };
>   svint32_t v2 = svld1rq_s32 (svptrue_b8(), &v[0]);
>   return v2;
> }
>
> After applying workaround in forwprop to not simplify VEC_PERM_EXPR in
> simplify_permutation to avoid type error in middle end (or using
> -fno-tree-forwprop)
> as mentioned in:
> https://gcc.gnu.org/pipermail/gcc-patches/2022-July/598390.html
>
> We get following optimized gimple:
>   v2_2 = VEC_PERM_EXPR <{ 1, 2, 3, 4 }, { 1, 2, 3, 4 }, { 0, 1, 2, 3, ... }>;
>   return v2_2;

Hmm, we really should be able to fold that to a constant.  However…

> However we hit the following ICE during expansion of vec_perm_expr
> because in aarch64_vectorize_vec_perm_const,
> op0 is VECTOR_CST, and we call force_reg (VNx4SI, op0), which is incorrect mode
> for op0. The patch fixes it by using op_mode instead of vmode in calls
> to force_reg
> for op0 and op1.
>
> during RTL pass: expand
> foo2.c: In function ‘foo’:
> foo2.c:8:10: internal compiler error: in emit_move_insn, at expr.cc:4052
>     8 |   return v2;
>       |          ^~
> 0x74789b emit_move_insn(rtx_def*, rtx_def*)
>         ../../gcc/gcc/expr.cc:4052
> 0xb8f664 force_reg(machine_mode, rtx_def*)
>         ../../gcc/gcc/explow.cc:688
> 0x134182f aarch64_vectorize_vec_perm_const
>         ../../gcc/gcc/config/aarch64/aarch64.cc:24132
> 0xe63070 expand_vec_perm_const(machine_mode, rtx_def*, rtx_def*,
> int_vector_builder<poly_int<2u, long> > const&, machine_mode,
> rtx_def*)
>         ../../gcc/gcc/optabs.cc:6254
> 0xbb1569 expand_expr_real_2(separate_ops*, rtx_def*, machine_mode,
> expand_modifier)
>         ../../gcc/gcc/expr.cc:10273
> 0xbb6498 expand_expr_real_1(tree_node*, rtx_def*, machine_mode,
> expand_modifier, rtx_def**, bool)
>         ../../gcc/gcc/expr.cc:10625
> 0xa897dc expand_expr
>         ../../gcc/gcc/expr.h:310
> 0xa897dc expand_return
>         ../../gcc/gcc/cfgexpand.cc:3809
> 0xa897dc expand_gimple_stmt_1
>         ../../gcc/gcc/cfgexpand.cc:3918
> 0xa897dc expand_gimple_stmt
>         ../../gcc/gcc/cfgexpand.cc:4044
> 0xa8f238 expand_gimple_basic_block
>         ../../gcc/gcc/cfgexpand.cc:6096
> 0xa91187 execute
>         ../../gcc/gcc/cfgexpand.cc:6822
>
> Is the patch OK to commit after bootstrap+test on aarch64-linux-gnu ?
>
> Thanks,
> Prathamesh
>
> diff --git a/gcc/config/aarch64/aarch64.cc b/gcc/config/aarch64/aarch64.cc
> index 25f4cbb466d..303814b8cca 100644
> --- a/gcc/config/aarch64/aarch64.cc
> +++ b/gcc/config/aarch64/aarch64.cc
> @@ -24129,11 +24129,11 @@ aarch64_vectorize_vec_perm_const (machine_mode vmode, machine_mode op_mode,
>    d.op_mode = op_mode;
>    d.op_vec_flags = aarch64_classify_vector_mode (d.op_mode);
>    d.target = target;
> -  d.op0 = op0 ? force_reg (vmode, op0) : NULL_RTX;
> +  d.op0 = op0 ? force_reg (op_mode, op0) : NULL_RTX;
>    if (op0 == op1)
>      d.op1 = d.op0;
>    else
> -    d.op1 = op1 ? force_reg (vmode, op1) : NULL_RTX;
> +    d.op1 = op1 ? force_reg (op_mode, op1) : NULL_RTX;
>    d.testing_p = !target;
>  
>    if (!d.testing_p)

…yes, this is OK, thanks.

Richard

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-07-14 11:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-14 10:55 [aarch64] Use op_mode instead of vmode for op0, op1 in aarch64_vectorize_vec_perm_const Prathamesh Kulkarni
2022-07-14 11:33 ` Richard Sandiford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).