public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/111857] New: RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax
@ 2023-10-18  6:19 juzhe.zhong at rivai dot ai
  2023-10-18  6:21 ` [Bug c/111857] " juzhe.zhong at rivai dot ai
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: juzhe.zhong at rivai dot ai @ 2023-10-18  6:19 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111857

            Bug ID: 111857
           Summary: RISC-V: Failed to vectorize small GNU vector if
                    zvl4096b with fixed-vlmax
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: juzhe.zhong at rivai dot ai
  Target Milestone: ---

typedef char vnx16i __attribute__ ((vector_size (16)));

#define MASK_16 12, 13, 14, 15, 12, 13, 14, 15, 12, 13, 14, 15, 12, 13, 14, 15

vnx16i __attribute__ ((noinline, noclone))
test_1 (vnx16i x, vnx16i y)
{
  return __builtin_shufflevector (x, y, MASK_16);
}

If we specify it as -march=rv64gcv
--param=riscv-autovec-preference=fixed-vlmax.
it can vectorize.

But failed to vectorize it with -march=rv64gcv_zvl4096b
--param=riscv-autovec-preference=fixed-vlmax

https://godbolt.org/z/zx816ao5o

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

* [Bug c/111857] RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax
  2023-10-18  6:19 [Bug c/111857] New: RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax juzhe.zhong at rivai dot ai
@ 2023-10-18  6:21 ` juzhe.zhong at rivai dot ai
  2023-10-18 20:11 ` [Bug target/111857] " pinskia at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: juzhe.zhong at rivai dot ai @ 2023-10-18  6:21 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111857

--- Comment #1 from JuzheZhong <juzhe.zhong at rivai dot ai> ---
We need to enable VLS modes in fixed-vlmax that size are smaller than minimum
VLA modes.

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

* [Bug target/111857] RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax
  2023-10-18  6:19 [Bug c/111857] New: RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax juzhe.zhong at rivai dot ai
  2023-10-18  6:21 ` [Bug c/111857] " juzhe.zhong at rivai dot ai
@ 2023-10-18 20:11 ` pinskia at gcc dot gnu.org
  2023-10-21  1:25 ` cvs-commit at gcc dot gnu.org
  2023-10-21  3:29 ` juzhe.zhong at rivai dot ai
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2023-10-18 20:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111857

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement

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

* [Bug target/111857] RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax
  2023-10-18  6:19 [Bug c/111857] New: RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax juzhe.zhong at rivai dot ai
  2023-10-18  6:21 ` [Bug c/111857] " juzhe.zhong at rivai dot ai
  2023-10-18 20:11 ` [Bug target/111857] " pinskia at gcc dot gnu.org
@ 2023-10-21  1:25 ` cvs-commit at gcc dot gnu.org
  2023-10-21  3:29 ` juzhe.zhong at rivai dot ai
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2023-10-21  1:25 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111857

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Pan Li <panli@gcc.gnu.org>:

https://gcc.gnu.org/g:66c26e5cfdf65ae024fcb658629dc5a9a10f3f85

commit r14-4812-g66c26e5cfdf65ae024fcb658629dc5a9a10f3f85
Author: Pan Li <pan2.li@intel.com>
Date:   Fri Oct 20 16:20:45 2023 +0800

    RISC-V: Support partial VLS mode when preference fixed-vlmax [PR111857]

    Given we have code like below:

    typedef char vnx16i __attribute__ ((vector_size (16)));

    vnx16i __attribute__ ((noinline, noclone))
    test (vnx16i x, vnx16i y)
    {
      return __builtin_shufflevector (x, y, 11, 12, 13, 14, 11, 12, 13, 14,
                                            11, 12, 13, 14, 11, 12, 13, 14);
    }

    It can perform the auto vectorization when

    -march=rv64gcv_zvl1024b --param=riscv-autovec-preference=fixed-vlmax

    but cannot when

    -march=rv64gcv_zvl2048b --param=riscv-autovec-preference=fixed-vlmax

    The reason comes from the miniaml machine mode of QI is RVVMF8QI, which
    is 1024 / 8 = 128 bits, aka the size of VNx16QI. When we set zvl2048b,
    the bit size of RVVMFQI is 2048 / 8 = 256, which is not matching the
    bit size of VNx16QI (128 bits).

    Thus, this patch would like to enable the VLS mode for such case, aka
    VNx16QI vls mode for zvl2048b.

    Before this patch:
    test:
      srli    a4,a1,40
      andi    a4,a4,0xff
      srli    a3,a1,32
      srli    a5,a1,48
      slli    a0,a4,8
      andi    a3,a3,0xff
      andi    a5,a5,0xff
      slli    a2,a5,16
      or      a0,a3,a0
      srli    a1,a1,56
      or      a0,a0,a2
      slli    a2,a1,24
      slli    a3,a3,32
      or      a0,a0,a2
      slli    a4,a4,40
      or      a0,a0,a3
      slli    a5,a5,48
      or      a0,a0,a4
      or      a0,a0,a5
      slli    a1,a1,56
      or      a0,a0,a1
      mv      a1,a0
      ret

    After this patch:
    test:
      vsetivli        zero,16,e8,mf8,ta,ma
      vle8.v  v2,0(a1)
      vsetivli        zero,4,e32,mf2,ta,ma
      vrgather.vi     v1,v2,3
      vsetivli        zero,16,e8,mf8,ta,ma
      vse8.v  v1,0(a0)
      ret

            PR target/111857

    gcc/ChangeLog:

            * config/riscv/riscv-opts.h (TARGET_VECTOR_VLS): Remove.
            * config/riscv/riscv-protos.h (vls_mode_valid_p): New func decl.
            * config/riscv/riscv-v.cc (autovectorize_vector_modes): Replace
            macro reference to func.
            (vls_mode_valid_p): New func impl for vls mode valid or not.
            * config/riscv/riscv-vector-switch.def (VLS_ENTRY): Replace
            macro reference to func.
            * config/riscv/vector-iterators.md: Ditto.

    gcc/testsuite/ChangeLog:

            * gcc.target/riscv/rvv/autovec/vls-vlmax/perm-4.c: Adjust checker.
            * gcc.target/riscv/rvv/autovec/vls/def.h: Add help define.
            * gcc.target/riscv/rvv/autovec/vls-vlmax/pr111857-0.c: New test.
            * gcc.target/riscv/rvv/autovec/vls-vlmax/pr111857-1.c: New test.
            * gcc.target/riscv/rvv/autovec/vls-vlmax/pr111857-2.c: New test.
            * gcc.target/riscv/rvv/autovec/vls-vlmax/pr111857-3.c: New test.
            * gcc.target/riscv/rvv/autovec/vls-vlmax/pr111857-4.c: New test.
            * gcc.target/riscv/rvv/autovec/vls-vlmax/pr111857-5.c: New test.
            * gcc.target/riscv/rvv/autovec/vls-vlmax/pr111857-6.c: New test.

    Signed-off-by: Pan Li <pan2.li@intel.com>

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

* [Bug target/111857] RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax
  2023-10-18  6:19 [Bug c/111857] New: RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax juzhe.zhong at rivai dot ai
                   ` (2 preceding siblings ...)
  2023-10-21  1:25 ` cvs-commit at gcc dot gnu.org
@ 2023-10-21  3:29 ` juzhe.zhong at rivai dot ai
  3 siblings, 0 replies; 5+ messages in thread
From: juzhe.zhong at rivai dot ai @ 2023-10-21  3:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111857

JuzheZhong <juzhe.zhong at rivai dot ai> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #3 from JuzheZhong <juzhe.zhong at rivai dot ai> ---
Fixed

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

end of thread, other threads:[~2023-10-21  3:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-18  6:19 [Bug c/111857] New: RISC-V: Failed to vectorize small GNU vector if zvl4096b with fixed-vlmax juzhe.zhong at rivai dot ai
2023-10-18  6:21 ` [Bug c/111857] " juzhe.zhong at rivai dot ai
2023-10-18 20:11 ` [Bug target/111857] " pinskia at gcc dot gnu.org
2023-10-21  1:25 ` cvs-commit at gcc dot gnu.org
2023-10-21  3:29 ` juzhe.zhong at rivai dot ai

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).