aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuzhe-Zhong <juzhe.zhong@rivai.ai>2023-08-09 20:18:40 +0800
committerPan Li <pan2.li@intel.com>2023-08-09 21:37:22 +0800
commitc4d618143048ac781f435638ef6e788ba870dc53 (patch)
tree48bc4d1a84ba34191fc76b576d01b34590b295b4
parentb8ec3c952324f866f191883473922e250be81341 (diff)
downloadgcc-c4d618143048ac781f435638ef6e788ba870dc53.zip
gcc-c4d618143048ac781f435638ef6e788ba870dc53.tar.gz
gcc-c4d618143048ac781f435638ef6e788ba870dc53.tar.bz2
RISC-V: Support NPATTERNS = 1 stepped vector[PR110950]
This patch fix ICE: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110950 0x1cf8939 expand_const_vector ../../../riscv-gcc/gcc/config/riscv/riscv-v.cc:1587 PR target/110950 gcc/ChangeLog: * config/riscv/riscv-v.cc (expand_const_vector): Add NPATTERNS = 1 stepped vector support. gcc/testsuite/ChangeLog: * gcc.target/riscv/rvv/autovec/pr110950.c: New test.
-rw-r--r--gcc/config/riscv/riscv-v.cc19
-rw-r--r--gcc/testsuite/gcc.target/riscv/rvv/autovec/pr110950.c12
2 files changed, 31 insertions, 0 deletions
diff --git a/gcc/config/riscv/riscv-v.cc b/gcc/config/riscv/riscv-v.cc
index a7b2d7d..0bea04c 100644
--- a/gcc/config/riscv/riscv-v.cc
+++ b/gcc/config/riscv/riscv-v.cc
@@ -1563,6 +1563,25 @@ expand_const_vector (rtx target, rtx src)
add_ops);
}
}
+ else if (npatterns == 1 && nelts_per_pattern == 3)
+ {
+ /* Generate the following CONST_VECTOR:
+ { base0, base1, base1 + step, base1 + step * 2, ... } */
+ rtx base0 = CONST_VECTOR_ELT (src, 0);
+ rtx base1 = CONST_VECTOR_ELT (src, 1);
+ rtx step = CONST_VECTOR_ELT (src, 2);
+ /* Step 1 - { base1, base1 + step, base1 + step * 2, ... } */
+ rtx tmp = gen_reg_rtx (mode);
+ emit_insn (gen_vec_series (mode, tmp, base1, step));
+ /* Step 2 - { base0, base1, base1 + step, base1 + step * 2, ... } */
+ scalar_mode elem_mode = GET_MODE_INNER (mode);
+ if (!rtx_equal_p (base0, const0_rtx))
+ base0 = force_reg (elem_mode, base0);
+
+ insn_code icode = optab_handler (vec_shl_insert_optab, mode);
+ gcc_assert (icode != CODE_FOR_nothing);
+ emit_insn (GEN_FCN (icode) (target, tmp, base0));
+ }
else
/* TODO: We will enable more variable-length vector in the future. */
gcc_unreachable ();
diff --git a/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr110950.c b/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr110950.c
new file mode 100644
index 0000000..9f276d0
--- /dev/null
+++ b/gcc/testsuite/gcc.target/riscv/rvv/autovec/pr110950.c
@@ -0,0 +1,12 @@
+/* { dg-do compile } */
+/* { dg-options "-march=rv64gcv -mabi=lp64d --param=riscv-autovec-preference=scalable -Ofast" } */
+
+int a;
+void b() {
+ long *c = 0;
+ int *d;
+ for (; a; ++a)
+ c[a] = d[-a];
+}
+
+/* { dg-final { scan-assembler-times {vslide1up\.vx} 1 } } */