From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 6134C3858424; Wed, 24 Jan 2024 15:58:53 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6134C3858424 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1706111933; bh=uOHj9vltlqGKWOZWNaILRrHBAFRYoBbAt3Qntp34X/k=; h=From:To:Subject:Date:In-Reply-To:References:From; b=repXnmIr9k0Nsa4IMlRYwK05zOQXybJxz3NrJcrMty6r+T250Au0kb3ZXYZkJ4+qb 53P8QXvz2qc82dh8dpvlnwtJYFppdpCV6hbyYIiQSbdUx7M46IS8MNgz+Nw31VCmMh WDd3u61AlW69lKk7rD6kEaKBGkKoZm6fWarlZvck= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/109636] [14 Regression] ICE: in paradoxical_subreg_p, at rtl.h:3205 with -O -march=armv8.4-a+sve Date: Wed, 24 Jan 2024 15:58:51 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: ice-on-valid-code, needs-bisection, testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: tnfchris at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D109636 --- Comment #12 from GCC Commits --- The master branch has been updated by Tamar Christina : https://gcc.gnu.org/g:dfa17fd3b1a50cab51803e8a63c5c7b7db173523 commit r14-8394-gdfa17fd3b1a50cab51803e8a63c5c7b7db173523 Author: Tamar Christina Date: Wed Jan 24 15:58:34 2024 +0000 AArch64: Fix expansion of Advanced SIMD div and mul using SVE [PR109636] As suggested in the ticket this replaces the expansion by converting the Advanced SIMD types to SVE types by simply printing out an SVE register= for these instructions. This fixes the subreg issues since there are no subregs involved anymor= e. gcc/ChangeLog: PR target/109636 * config/aarch64/aarch64-simd.md (div3, mulv2di3): Remove. * config/aarch64/iterators.md (VQDIV): Remove. (SVE_FULL_SDI_SIMD, SVE_FULL_HSDI_SIMD_DI, SVE_I_SIMD_DI): New. (VPRED, sve_lane_con): Add V4SI and V2DI. * config/aarch64/aarch64-sve.md (3, @aarch64_pred_): Support Advanced SIMD types. (mul3): New, split from 3. (@aarch64_pred_, *post_ra_3): New. * config/aarch64/aarch64-sve2.md (@aarch64_mul_lane_, *aarch64_mul_unpredicated_): Change SVE_FULL_HSDI to SVE_FULL_HSDI_SIMD_DI. gcc/testsuite/ChangeLog: PR target/109636 * gcc.target/aarch64/sve/pr109636_1.c: New test. * gcc.target/aarch64/sve/pr109636_2.c: New test. * gcc.target/aarch64/sve2/pr109636_1.c: New test.=