common.opt (flimit-function-alignment): New.

gcc/
	* common.opt (flimit-function-alignment): New.
	* doc/invoke.texi (-flimit-function-alignment): Document.
	* emit-rtl.h (struct rtl_data): Add max_insn_address field.
	* final.c (shorten_branches): Set it.
	* varasm.c (assemble_start_function): Limit alignment if
	requested.

gcc/testsuite/
	* gcc.target/i386/align-limit.c: New test.

From-SVN: r242836
This commit is contained in:
Bernd Schmidt 2016-11-24 12:54:56 +00:00 committed by Bernd Schmidt
parent eb2afa1a80
commit 8cac4d8587
8 changed files with 43 additions and 4 deletions

View File

@ -1,3 +1,12 @@
2016-11-24 Bernd Schmidt <bschmidt@redhat.com>
* common.opt (flimit-function-alignment): New.
* doc/invoke.texi (-flimit-function-alignment): Document.
* emit-rtl.h (struct rtl_data): Add max_insn_address field.
* final.c (shorten_branches): Set it.
* varasm.c (assemble_start_function): Limit alignment if
requested.
2016-11-24 Richard Biener <rguenther@suse.de>
PR tree-optimization/71595

View File

@ -924,6 +924,9 @@ Align the start of functions.
falign-functions=
Common RejectNegative Joined UInteger Var(align_functions)
flimit-function-alignment
Common Report Var(flag_limit_function_alignment) Optimization Init(0)
falign-jumps
Common Report Var(align_jumps,0) Optimization UInteger
Align labels which are only reached by jumping.

View File

@ -373,7 +373,7 @@ Objective-C and Objective-C++ Dialects}.
-fno-ira-share-spill-slots @gol
-fisolate-erroneous-paths-dereference -fisolate-erroneous-paths-attribute @gol
-fivopts -fkeep-inline-functions -fkeep-static-functions @gol
-fkeep-static-consts -flive-range-shrinkage @gol
-fkeep-static-consts -flimit-function-alignment -flive-range-shrinkage @gol
-floop-block -floop-interchange -floop-strip-mine @gol
-floop-unroll-and-jam -floop-nest-optimize @gol
-floop-parallelize-all -flra-remat -flto -flto-compression-level @gol
@ -8513,6 +8513,12 @@ If @var{n} is not specified or is zero, use a machine-dependent default.
Enabled at levels @option{-O2}, @option{-O3}.
@item -flimit-function-alignment
If this option is enabled, the compiler tries to avoid unnecessarily
overaligning functions. It attempts to instruct the assembler to align
by the amount specified by @option{-falign-functions}, but not to
skip more bytes than the size of the function.
@item -falign-labels
@itemx -falign-labels=@var{n}
@opindex falign-labels

View File

@ -288,6 +288,9 @@ struct GTY(()) rtl_data {
to eliminable regs (like the frame pointer) are set if an asm
sets them. */
HARD_REG_SET asm_clobbers;
/* The highest address seen during shorten_branches. */
int max_insn_address;
};
#define return_label (crtl->x_return_label)

View File

@ -1463,7 +1463,7 @@ shorten_branches (rtx_insn *first)
if (!increasing)
break;
}
crtl->max_insn_address = insn_current_address;
free (varying_length);
}

View File

@ -1,3 +1,7 @@
2016-11-24 Bernd Schmidt <bschmidt@redhat.com>
* gcc.target/i386/align-limit.c: New test.
2016-11-24 Richard Biener <rguenther@suse.de>
PR tree-optimization/71595

View File

@ -0,0 +1,9 @@
/* { dg-do compile } */
/* { dg-options "-O2 -falign-functions=64 -flimit-function-alignment" } */
/* { dg-final { scan-assembler ".p2align 6,,1" } } */
/* { dg-final { scan-assembler-not ".p2align 6,,63" } } */
void
test_func (void)
{
}

View File

@ -1791,9 +1791,14 @@ assemble_start_function (tree decl, const char *fnname)
&& align_functions_log > align
&& optimize_function_for_speed_p (cfun))
{
int align_log = align_functions_log;
int max_skip = align_functions - 1;
if (flag_limit_function_alignment && crtl->max_insn_address > 0
&& max_skip >= crtl->max_insn_address)
max_skip = crtl->max_insn_address - 1;
#ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
align_functions_log, align_functions - 1);
ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file, align_log, max_skip);
#else
ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
#endif