From: Eric Botcazou Date: Wed, 11 Nov 2015 16:04:34 +0000 (+0000) Subject: re PR target/67265 ([x86] 'asm' operand has impossible constraints with -fstack-check) X-Git-Tag: releases/gcc-4.9.4~514 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=faef69a9fe4b150e208ca2ad1c11b516dbc8eb98;p=thirdparty%2Fgcc.git re PR target/67265 ([x86] 'asm' operand has impossible constraints with -fstack-check) PR target/67265 * ira.c (ira_setup_eliminable_regset): Do not necessarily create the frame pointer for stack checking if non-call exceptions aren't used. * config/i386/i386.c (ix86_finalize_stack_realign_flags): Likewise. From-SVN: r230179 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 94e0cfce764e..245b6a2a48cd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2015-11-11 Eric Botcazou + + PR target/67265 + * ira.c (ira_setup_eliminable_regset): Do not necessarily create the + frame pointer for stack checking if non-call exceptions aren't used. + * config/i386/i386.c (ix86_finalize_stack_realign_flags): Likewise. + 2015-11-10 James Greenhalgh Partial backport from trunk r228751. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 1a06d46cebbe..218d7b2a45d3 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -10666,7 +10666,11 @@ ix86_finalize_stack_realign_flags (void) && !crtl->accesses_prior_frames && !cfun->calls_alloca && !crtl->calls_eh_return - && !(flag_stack_check && STACK_CHECK_MOVING_SP) + /* See ira_setup_eliminable_regset for the rationale. */ + && !(STACK_CHECK_MOVING_SP + && flag_stack_check + && flag_exceptions + && cfun->can_throw_non_call_exceptions) && !ix86_frame_pointer_required () && get_frame_size () == 0 && ix86_nsaved_sseregs () == 0 diff --git a/gcc/ira.c b/gcc/ira.c index fb0650e59ecd..544dbf76f872 100644 --- a/gcc/ira.c +++ b/gcc/ira.c @@ -2398,9 +2398,12 @@ ira_setup_eliminable_regset (void) frame_pointer_needed = (! flag_omit_frame_pointer || (cfun->calls_alloca && EXIT_IGNORE_STACK) - /* We need the frame pointer to catch stack overflow exceptions - if the stack pointer is moving. */ - || (flag_stack_check && STACK_CHECK_MOVING_SP) + /* We need the frame pointer to catch stack overflow exceptions if + the stack pointer is moving (as for the alloca case just above). */ + || (STACK_CHECK_MOVING_SP + && flag_stack_check + && flag_exceptions + && cfun->can_throw_non_call_exceptions) || crtl->accesses_prior_frames || (SUPPORTS_STACK_ALIGNMENT && crtl->stack_realign_needed) /* We need a frame pointer for all Cilk Plus functions that use diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8039aeaeb2d9..b0e5b0a88cfb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-11-11 Eric Botcazou + + * gcc.target/i386/pr67265.c: New test. + 2015-11-09 Eric Botcazou * gcc.target/sparc/sparc-ret.c: Rename to... diff --git a/gcc/testsuite/gcc.target/i386/pr67265.c b/gcc/testsuite/gcc.target/i386/pr67265.c new file mode 100644 index 000000000000..7827685fe5f1 --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/pr67265.c @@ -0,0 +1,12 @@ +/* PR target/67265 */ +/* Reduced testcase by Johannes Dewender */ + +/* { dg-do compile } */ +/* { dg-options "-O -fstack-check -fPIC" } */ + +int a, b, c, d, e; + +void foo (void) +{ + __asm__("" : "+r"(c), "+r"(e), "+r"(d), "+r"(a) : ""(b), "mg"(foo), "mm"(c)); +}