public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/113393] New: RISC-V:  Full coverage test bugs for upstream 20240112
@ 2024-01-15  6:12 pan2.li at intel dot com
  2024-01-15  7:56 ` [Bug target/113393] " cvs-commit at gcc dot gnu.org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: pan2.li at intel dot com @ 2024-01-15  6:12 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 113393
           Summary: RISC-V:  Full coverage test bugs for upstream 20240112
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pan2.li at intel dot com
  Target Milestone: ---

For the RV64 parts

Running target
riscv-sim/-march=rv64gcv/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-preference=fixed-vlmax
FAIL: gcc.c-torture/execute/pr68532.c   -O0  execution test
FAIL: gcc.c-torture/execute/pr68532.c   -O1  execution test
FAIL: gcc.c-torture/execute/pr68532.c   -O2  execution test
FAIL: gcc.c-torture/execute/pr68532.c   -O3 -fomit-frame-pointer -funroll-loops
-fpeel-loops -ftracer -finline-functions  execution test
FAIL: gcc.c-torture/execute/pr68532.c   -O3 -g  execution test
FAIL: gcc.c-torture/execute/pr68532.c   -Os  execution test
FAIL: gcc.c-torture/execute/pr68532.c   -O2 -flto -fno-use-linker-plugin
-flto-partition=none  execution test

Running target
riscv-sim/-march=rv64gcv/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-lmul=m2/--param=riscv-autovec-preference=fixed-vlmax
FAIL: gcc.dg/vect/pr60196-1.c execution test
FAIL: gcc.dg/vect/pr60196-1.c -flto -ffat-lto-objects execution test

Running target
riscv-sim/-march=rv64gcv/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-preference=fixed-vlmax
FAIL: gcc.dg/vect/pr60196-1.c execution test
FAIL: gcc.dg/vect/pr60196-1.c -flto -ffat-lto-objects execution test

Running target
riscv-sim/-march=rv64gcv_zvl256b/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-preference=fixed-vlmax
FAIL: gcc.dg/vect/pr60196-1.c execution test
FAIL: gcc.dg/vect/pr60196-1.c -flto -ffat-lto-objects execution test

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

* [Bug target/113393] RISC-V:  Full coverage test bugs for upstream 20240112
  2024-01-15  6:12 [Bug c/113393] New: RISC-V: Full coverage test bugs for upstream 20240112 pan2.li at intel dot com
@ 2024-01-15  7:56 ` cvs-commit at gcc dot gnu.org
  2024-01-15  8:23 ` pan2.li at intel dot com
  2024-01-20 17:09 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-01-15  7:56 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from GCC 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:0627d1f5340c693699ad36fa2b741ff11d6f026a

commit r14-7238-g0627d1f5340c693699ad36fa2b741ff11d6f026a
Author: Juzhe-Zhong <juzhe.zhong@rivai.ai>
Date:   Mon Jan 15 14:57:38 2024 +0800

    RISC-V: Fix attributes bug configuration of ternary instructions

    This patch fixes the following FAILs:

    Running target
riscv-sim/-march=rv64gcv/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-preference=fixed-vlmax
    FAIL: gcc.c-torture/execute/pr68532.c   -O0  execution test
    FAIL: gcc.c-torture/execute/pr68532.c   -O1  execution test
    FAIL: gcc.c-torture/execute/pr68532.c   -O2  execution test
    FAIL: gcc.c-torture/execute/pr68532.c   -O3 -fomit-frame-pointer
-funroll-loops -fpeel-loops -ftracer -finline-functions  execution test
    FAIL: gcc.c-torture/execute/pr68532.c   -O3 -g  execution test
    FAIL: gcc.c-torture/execute/pr68532.c   -Os  execution test
    FAIL: gcc.c-torture/execute/pr68532.c   -O2 -flto -fno-use-linker-plugin
-flto-partition=none  execution test

    Running target
riscv-sim/-march=rv64gcv/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-lmul=m2/--param=riscv-autovec-preference=fixed-vlmax
    FAIL: gcc.dg/vect/pr60196-1.c execution test
    FAIL: gcc.dg/vect/pr60196-1.c -flto -ffat-lto-objects execution test

    Running target
riscv-sim/-march=rv64gcv/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-preference=fixed-vlmax
    FAIL: gcc.dg/vect/pr60196-1.c execution test
    FAIL: gcc.dg/vect/pr60196-1.c -flto -ffat-lto-objects execution test

    Running target
riscv-sim/-march=rv64gcv_zvl256b/-mabi=lp64d/-mcmodel=medlow/--param=riscv-autovec-preference=fixed-vlmax
    FAIL: gcc.dg/vect/pr60196-1.c execution test
    FAIL: gcc.dg/vect/pr60196-1.c -flto -ffat-lto-objects execution test

    The root cause is attributes of ternary intructions are incorrect which
cause AVL prop PASS and VSETVL PASS behave
    incorrectly.

    Tested no regression and committed.

            PR target/113393

    gcc/ChangeLog:

            * config/riscv/vector.md: Fix ternary attributes.

    gcc/testsuite/ChangeLog:

            * gcc.target/riscv/rvv/autovec/pr113393-1.c: New test.
            * gcc.target/riscv/rvv/autovec/pr113393-2.c: New test.
            * gcc.target/riscv/rvv/autovec/pr113393-3.c: New test.

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

* [Bug target/113393] RISC-V:  Full coverage test bugs for upstream 20240112
  2024-01-15  6:12 [Bug c/113393] New: RISC-V: Full coverage test bugs for upstream 20240112 pan2.li at intel dot com
  2024-01-15  7:56 ` [Bug target/113393] " cvs-commit at gcc dot gnu.org
@ 2024-01-15  8:23 ` pan2.li at intel dot com
  2024-01-20 17:09 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pan2.li at intel dot com @ 2024-01-15  8:23 UTC (permalink / raw)
  To: gcc-bugs

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

Li Pan <pan2.li at intel dot com> changed:

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

--- Comment #2 from Li Pan <pan2.li at intel dot com> ---
Closed as fixed in upstream and validated.

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

* [Bug target/113393] RISC-V:  Full coverage test bugs for upstream 20240112
  2024-01-15  6:12 [Bug c/113393] New: RISC-V: Full coverage test bugs for upstream 20240112 pan2.li at intel dot com
  2024-01-15  7:56 ` [Bug target/113393] " cvs-commit at gcc dot gnu.org
  2024-01-15  8:23 ` pan2.li at intel dot com
@ 2024-01-20 17:09 ` pinskia at gcc dot gnu.org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-01-20 17:09 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |14.0

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

end of thread, other threads:[~2024-01-20 17:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-15  6:12 [Bug c/113393] New: RISC-V: Full coverage test bugs for upstream 20240112 pan2.li at intel dot com
2024-01-15  7:56 ` [Bug target/113393] " cvs-commit at gcc dot gnu.org
2024-01-15  8:23 ` pan2.li at intel dot com
2024-01-20 17:09 ` pinskia at gcc dot gnu.org

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