From: Jakub Jelinek Date: Fri, 5 Feb 2016 09:23:03 +0000 (+0100) Subject: re PR bootstrap/69677 (bootstrap failed with --with-arch=corei7 --with-cpu=corei7) X-Git-Tag: basepoints/gcc-7~1094 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5421e2cab2e132f51d227a4c643eee4e764d7969;p=thirdparty%2Fgcc.git re PR bootstrap/69677 (bootstrap failed with --with-arch=corei7 --with-cpu=corei7) PR bootstrap/69677 * config/i386/i386.c (convert_scalars_to_vector): Readd stack alignment fixes. (ix86_option_override_internal): Disable TARGET_STV even for -m{incoming,preferred}-stack-boundary=3. From-SVN: r233167 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e852bc748093..e4ed40f0ed6a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2016-02-05 Jakub Jelinek + + PR bootstrap/69677 + * config/i386/i386.c (convert_scalars_to_vector): Readd stack + alignment fixes. + (ix86_option_override_internal): Disable TARGET_STV even for + -m{incoming,preferred}-stack-boundary=3. + 2016-02-03 Trevor Saunders * config.gcc: Mark deprecated rtems targets as obsolete. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 47808c4969f8..1215ae45a4b5 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -3588,6 +3588,16 @@ convert_scalars_to_vector () bitmap_obstack_release (NULL); df_process_deferred_rescans (); + /* Conversion means we may have 128bit register spills/fills + which require aligned stack. */ + if (converted_insns) + { + if (crtl->stack_alignment_needed < 128) + crtl->stack_alignment_needed = 128; + if (crtl->stack_alignment_estimated < 128) + crtl->stack_alignment_estimated = 128; + } + return 0; } @@ -5443,12 +5453,12 @@ ix86_option_override_internal (bool main_args_p, opts->x_target_flags |= MASK_VZEROUPPER; if (!(opts_set->x_target_flags & MASK_STV)) opts->x_target_flags |= MASK_STV; - /* Disable STV if -mpreferred-stack-boundary=2 or - -mincoming-stack-boundary=2 - the needed + /* Disable STV if -mpreferred-stack-boundary={2,3} or + -mincoming-stack-boundary={2,3} - the needed stack realignment will be extra cost the pass doesn't take into account and the pass can't realign the stack. */ - if (ix86_preferred_stack_boundary < 64 - || ix86_incoming_stack_boundary < 64) + if (ix86_preferred_stack_boundary < 128 + || ix86_incoming_stack_boundary < 128) opts->x_target_flags &= ~MASK_STV; if (!ix86_tune_features[X86_TUNE_AVX256_UNALIGNED_LOAD_OPTIMAL] && !(opts_set->x_target_flags & MASK_AVX256_SPLIT_UNALIGNED_LOAD))