Commit f66a9a76 by Christian Bruel Committed by Christian Bruel

re PR target/67745 ([ARM] wrong alignments when __attribute__ ((optimize,target,align) is used)

2015-10-16  Christian Bruel  <christian.bruel@st.com>

	PR target/67745
	* config/arm/arm.h (FUNCTION_BOUNDARY): Move optimize_size condition to:
	* config/arm/arm.c (arm_option_override_internal): Call
	arm_override_options_after_change_1.
	(arm_override_options_after_change): New function.
	(arm_override_options_after_change_1): Likewise.
	(TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE): Define hook.

From-SVN: r228904
parent 2346b806
2015-10-16 Christian Bruel <christian.bruel@st.com>
PR target/67745
* config/arm/arm.h (FUNCTION_BOUNDARY): Move optimize_size condition to:
* config/arm/arm.c (arm_option_override_internal): Call
arm_override_options_after_change_1.
(arm_override_options_after_change): New function.
(arm_override_options_after_change_1): Likewise.
(TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE): Define hook.
2015-10-11 Jan Hubicka <hubicka@ucw.cz>
Revert:
......@@ -246,6 +246,7 @@ static tree arm_build_builtin_va_list (void);
static void arm_expand_builtin_va_start (tree, rtx);
static tree arm_gimplify_va_arg_expr (tree, tree, gimple_seq *, gimple_seq *);
static void arm_option_override (void);
static void arm_override_options_after_change (void);
static void arm_option_print (FILE *, int, struct cl_target_option *);
static void arm_set_current_function (tree);
static bool arm_can_inline_p (tree, tree);
......@@ -407,6 +408,9 @@ static const struct attribute_spec arm_attribute_table[] =
#undef TARGET_OPTION_OVERRIDE
#define TARGET_OPTION_OVERRIDE arm_option_override
#undef TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE
#define TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE arm_override_options_after_change
#undef TARGET_OPTION_PRINT
#define TARGET_OPTION_PRINT arm_option_print
......@@ -2810,11 +2814,29 @@ static GTY(()) bool thumb_flipper;
/* Options after initial target override. */
static GTY(()) tree init_optimize;
static void
arm_override_options_after_change_1 (struct gcc_options *opts)
{
if (opts->x_align_functions <= 0)
opts->x_align_functions = TARGET_THUMB_P (opts->x_target_flags)
&& opts->x_optimize_size ? 2 : 4;
}
/* Implement targetm.override_options_after_change. */
static void
arm_override_options_after_change (void)
{
arm_override_options_after_change_1 (&global_options);
}
/* Reset options between modes that the user has specified. */
static void
arm_option_override_internal (struct gcc_options *opts,
struct gcc_options *opts_set)
{
arm_override_options_after_change_1 (opts);
if (TARGET_THUMB_P (opts->x_target_flags)
&& !(ARM_FSET_HAS_CPU1 (insn_flags, FL_THUMB)))
{
......
......@@ -565,7 +565,7 @@ extern int arm_arch_crc;
#define PREFERRED_STACK_BOUNDARY \
(arm_abi == ARM_ABI_ATPCS ? 64 : STACK_BOUNDARY)
#define FUNCTION_BOUNDARY ((TARGET_THUMB && optimize_size) ? 16 : 32)
#define FUNCTION_BOUNDARY (TARGET_THUMB ? 16 : 32)
/* The lowest bit is used to indicate Thumb-mode functions, so the
vbit must go into the delta field of pointers to member
......
2015-10-16 Christian Bruel <christian.bruel@st.com>
PR target/67745
* gcc.target/arm/no-align.c: New test.
* gcc.target/arm/attr-align1.c: New test.
* gcc.target/arm/attr-align2.c: New test.
* gcc.target/arm/attr-align3.c: New test.
2015-10-11 Jan Hubicka <hubicka@ucw.cz>
* gcc.c-torture/compile/icfmatch.c: Add testcase
......
/* PR target/67745
Verify alignment when both attribute optimize and target are used. */
/* { dg-do compile } */
/* { dg-skip-if "" { ! { arm_thumb1_ok || arm_thumb2_ok } } } */
void
__attribute__ ((target ("arm")))
bar()
{
}
void
__attribute__ ((target ("thumb")))
__attribute__ ((optimize ("Os")))
foo()
{
}
void
__attribute__ ((target ("thumb")))
__attribute__ ((optimize ("O2")))
rab()
{
}
/* { dg-final { scan-assembler-times ".align\[ \t]2" 2 } } */
/* { dg-final { scan-assembler ".align\[ \t]1" } } */
/* PR target/67745
Verify alignment when attribute optimize is used. */
/* { dg-do compile } */
/* { dg-skip-if "" { ! { arm_thumb1_ok || arm_thumb2_ok } } } */
/* { dg-options "-O2 -mthumb" } */
/* Check that thumb code is always 2 bytes aligned for -Os. */
void
__attribute__ ((optimize("Os")))
foo()
{
}
/* { dg-final { scan-assembler ".align\[ \t]1" } } */
/* PR target/67745
Verify alignment when attribute target is used. */
/* { dg-do compile } */
/* { dg-skip-if "" { ! { arm_thumb1_ok || arm_thumb2_ok } } } */
/* { dg-options "-Os -mthumb" } */
/* Check that arm code is always 4 bytes aligned. */
void __attribute__ ((target ("arm")))
c(void)
{
}
/* { dg-final { scan-assembler-not ".align\[ \t]1" } } */
/* PR target/67745
Verify that -mthumb code is not aligned. */
/* { dg-do compile } */
/* { dg-options "-O2 -mthumb -fno-align-functions" } */
/* { dg-skip-if "" { ! { arm_thumb1_ok || arm_thumb2_ok } } } */
void
foo()
{
}
/* { dg-final { scan-assembler-not ".align\[ \t]2" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment