From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id EBA4E3858406; Sun, 7 Nov 2021 00:05:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EBA4E3858406 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/103095] Option to force no overalignment Date: Sun, 07 Nov 2021 00:05:27 +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.0 X-Bugzilla-Keywords: ABI X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution 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: Sun, 07 Nov 2021 00:05:28 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D103095 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |INVALID --- Comment #2 from Andrew Pinski --- AMD x86-64 psABI says that variables with array type larger than 15 bytes must be aligned to 16 byte boundaries. There is already an option: https://gcc.gnu.org/onlinedocs/gcc-11.2.0/gcc/x86-Options.html#index-malign= -data-1 -malign-data=3Dtype Control how GCC aligns variables. Supported values for type are =E2=80=98co= mpat=E2=80=99 uses increased alignment value compatible uses GCC 4.8 and earlier, =E2=80=98abi= =E2=80=99 uses alignment value as specified by the psABI, and =E2=80=98cacheline=E2=80=99 = uses increased alignment value to match the cache line size. =E2=80=98compat=E2=80=99 is t= he default. You just need to supply -mabi-data=3Dabi in this case if you want to disabl= e over aligning of things. Other than that there is nothing to be done in GCC; it is up to the linker = and assembler to do the layout really. The option was added in GCC 5 by r5-5887.=