From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 673BB3858430; Thu, 25 Jan 2024 12:03:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 673BB3858430 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1706184221; bh=iJaamm0yAakZS5nsJEprGJiFoe62s3mbba5S4hIu4NI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=IzyPd+GGmdS+ZYJfTKtPS7MxTsDvxB8l51+OuNQ8LLKsQeHo4Kou5X07oYYmjhk10 HX0ItpPgPlSO1OBtPy//3iTyfUMdE0c6Y6PVwGAFLHV+t0/idaPG26tbEZ8nzAj/Te 2lj46vXzQSbf55k74o4VwZ9bDdLb/vqTG6EeJxQA= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/113550] data512_t initializers dereference a clobbered register Date: Thu, 25 Jan 2024 12:03:39 +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: 12.2.1 X-Bugzilla-Keywords: patch, wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: pinskia at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- 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=3D113550 --- Comment #4 from GCC Commits --- The trunk branch has been updated by Richard Sandiford : https://gcc.gnu.org/g:8eead1148cd0ac086b39a7abccea404041c85cb5 commit r14-8421-g8eead1148cd0ac086b39a7abccea404041c85cb5 Author: Richard Sandiford Date: Thu Jan 25 12:03:18 2024 +0000 aarch64: Handle overlapping registers in movv8di [PR113550] The LS64 movv8di pattern didn't handle loads that overlapped with the address register (unless the overlap happened to be in the last subload). gcc/ PR target/113550 * config/aarch64/aarch64-simd.md: In the movv8di splitter, check whether each split instruction is a load that clobbers the sour= ce address. Emit that instruction last if so. gcc/testsuite/ PR target/113550 * gcc.target/aarch64/pr113550.c: New test.=