On 29/04/15 11:58, Marcus Shawcroft wrote: > On 29 April 2015 at 01:24, Andrew Pinski wrote: >> On Tue, Dec 16, 2014 at 2:19 AM, Renlin Li wrote: >>> Hi all, >>> >>> This is a simple patch to add another two ACLE 2.0 predefined macros into >>> aarch64 backend. >>> They are __ARM_ALIGN_MAX_PWR and __ARM_ALIGN_MAX_STACK_PWR. Currently, those >>> two values are hard-wired to 16. >>> >>> The following clauses from ACLE 2.0 documentation indicate the meaning of >>> those two macros: >>> >>> The macro __ARM_ALIGN_MAX_STACK_PWR indicates (as the exponent of a power of >>> 2) the maximum available stack alignment. >>> The macro __ARM_ALIGN_MAX_PWR indicates (as the exponent of a power of 2) >>> the maximum available alignment of static data. >>> >>> aarch64-none-elf target is tested on on the model. No new regression. >>> >>> Is it Okay for trunk? >> Have you tested these alignments? That is have we tested 65536 >> alignment for both stack and static data? >> I suspect the stack alignment that is support is not 64k but much >> smaller. And the supported static data alignment is much larger, >> maybe 20 or more. > Looks to me __ARM_ALIGN_MAX_STACK_PWR can be lifted to 2^16 without > issue. GCC won't gripe about the static data alignment until 2^29. > Aside from the latter being rather conservative I think we should add > a test case to the testsuite for each. RenLin can you prep a testcase? > > /Marcus Hi Marcus, Sorry for the delay. I have come up with an updated patch. Two test cases are added to check against the limit. __ARM_ALIGN_MAX_STACK_PWR is hard coded into 16. __ARM_ALIGN_MAX_PWR is hard coded into 28 which is the maximum allowable alignment user can define for aarch64 backend. Okay to commit on trunk, and backport to 5.0? Regards, Renlin Li gcc/ChangeLog: 2015-06-04 Renlin Li * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Add __ARM_ALIGN_MAX_PWR, __ARM_ALIGN_MAX_STACK_PWR. gcc/testsuite/ChangeLog: 2015-06-04 Renlin Li * gcc.target/aarch64/arm_align_max_pwr.c: New. * gcc.target/aarch64/arm_align_max_stack_pwr.c: New.