]> gcc.gnu.org Git - gcc.git/commitdiff
re PR target/67265 ([x86] 'asm' operand has impossible constraints with -fstack-check)
authorEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 11 Nov 2015 14:22:43 +0000 (14:22 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 11 Nov 2015 14:22:43 +0000 (14:22 +0000)
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: r230168

gcc/ChangeLog
gcc/ira.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr67265.c [new file with mode: 0644]

index eb556d059577c3ba85ef058d8a5efb271bbf7e41..57329ed9ff1d5e708f114283c9b58f80086292e0 100644 (file)
@@ -1,7 +1,14 @@
+2015-11-11  Eric Botcazou  <ebotcazou@adacore.com>
+
+       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-11  Segher Boessenkool  <segher@kernel.crashing.org>
 
-       * gcc/simplify-rtx.c (simplify_truncation): Simplify TRUNCATE
-       of AND of [LA]SHIFTRT.
+       * simplify-rtx.c (simplify_truncation): Simplify TRUNCATE of AND of
+       [LA]SHIFTRT.
 
 2015-11-11  Martin Liska  <mliska@suse.cz>
            Richard Biener  <rguenther@suse.de>
 
 2015-11-11  Julia Koval  <julia.koval@intel.com>
 
-       * config/i386/i386.c: Handle "skylake" and
-       "skylake-avx512".
+       * config/i386/i386.c: Handle "skylake" and "skylake-avx512".
 
 2015-11-11  Martin Liska  <mliska@suse.cz>
 
index e16d062e35a82f60dd600e0792567cee0425982b..97edf8c481699ded38e3ed9c7975de28a1256786 100644 (file)
--- a/gcc/ira.c
+++ b/gcc/ira.c
@@ -2259,9 +2259,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
index 42ab86d223bf8958005ef25f8d8a372e035fe0e3..78332c17682e7f6f29b8e586da5cc27f012d2e12 100644 (file)
@@ -1,3 +1,7 @@
+2015-11-11  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gcc.target/i386/pr67265.c: New test.
+
 2015-11-11  Segher Boessenkool  <segher@kernel.crashing.org>
 
        * gcc.target/powerpc/20050603-3.c: Don't restrict to ilp32.  Do more
diff --git a/gcc/testsuite/gcc.target/i386/pr67265.c b/gcc/testsuite/gcc.target/i386/pr67265.c
new file mode 100644 (file)
index 0000000..7827685
--- /dev/null
@@ -0,0 +1,12 @@
+/* PR target/67265 */
+/* Reduced testcase by Johannes Dewender <gnu@JonnyJD.net> */
+
+/* { 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));
+}
This page took 0.198495 seconds and 5 git commands to generate.