]> git.ipfire.org Git - thirdparty/gcc.git/commit
Darwin: Update rules for handling alignment of globals.
authorIain Sandoe <iain@sandoe.co.uk>
Mon, 20 Dec 2021 15:19:50 +0000 (15:19 +0000)
committerIain Sandoe <iain@sandoe.co.uk>
Tue, 16 May 2023 19:01:28 +0000 (20:01 +0100)
commit05b00c066cd0282b628182963dee6582ea0fc92d
tree1a5ce4ddd63c66225e2097be329f94241197bdce
parentc55f706916f7c2e30fb5bfd5e757db5d11a8ada0
Darwin: Update rules for handling alignment of globals.

The current rule was too strict and has not been required since Darwin11.

This relaxes the constraint to allow up to 2^28 alignment for non-common
entities.  Common is still restricted to a maximum aligment of 2^15.

When the host is an older version of Darwin ( earlier that 11 ) then the
existing constraint is still applied.  Note that this is a host constraint
not a target one (so that a compilation on 10.7 targeting 10.6 is allowed
to use a greater alignment than the tools on 10.6 support).  This matches
the behaviour of clang.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
gcc/ChangeLog:

* config.gcc: Emit L2_MAX_OFILE_ALIGNMENT with suitable
values for the host.
* config/darwin.c (darwin_emit_common): Error for alignment
values > 32768.
* config/darwin.h (MAX_OFILE_ALIGNMENT): Rework to use the
configured L2_MAX_OFILE_ALIGNMENT.

gcc/testsuite/ChangeLog:

* gcc.dg/darwin-aligned-globals.c: New test.
* gcc.dg/darwin-comm-1.c: New test.
* gcc.dg/attr-aligned.c: Amend for new alignment values on
Darwin.
* gcc.target/i386/pr89261.c: Likewise.

(cherry picked from commit 19bf83a9a068f2d5293b63c9300f99172b2d278d)
gcc/config.gcc
gcc/config/darwin.c
gcc/config/darwin.h
gcc/testsuite/gcc.dg/attr-aligned.c
gcc/testsuite/gcc.dg/darwin-aligned-globals.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/darwin-comm-1.c [new file with mode: 0644]
gcc/testsuite/gcc.target/i386/pr89261.c