From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C0BE43858039; Mon, 15 Mar 2021 10:29:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C0BE43858039 From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/99593] [11 Regression] arm Neon ICE when compiling firefox (skia) since r11-6708 Date: Mon, 15 Mar 2021 10:29:11 +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: 11.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Mar 2021 10:29:11 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D99593 --- Comment #3 from Jakub Jelinek --- I've tried to reproduce it with typedef __simd128_int32_t int32x4_t; void foo (int32x4_t c) { int32x4_t b =3D __builtin_neon_vdup_nv4si (3); register int32x4_t a __asm ("d16"); asm volatile ("" : "=3Dw" (a)); a =3D a >> b; a |=3D c; asm volatile ("" : : "w" (a)); } but it doesn't, for some reason the ICE needs a REG_EQUAL attribute on the right shift into which we propagate the constant and LRA picks the constant from there, but haven't managed to force that.=