]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR target/106122: Don't update %esp via the stack with -Oz on x86.
authorRoger Sayle <roger@nextmovesoftware.com>
Sun, 3 Jul 2022 13:01:17 +0000 (14:01 +0100)
committerRoger Sayle <roger@nextmovesoftware.com>
Sun, 3 Jul 2022 13:01:17 +0000 (14:01 +0100)
When optimizing for size with -Oz, setting a register can be minimized by
pushing an immediate value to the stack and popping it to the destination.
Alas the one general register that shouldn't be updated via the stack is
the stack pointer itself, where "pop %esp" can't be represented in GCC's
RTL ("use of a register mentioned in pre_inc, pre_dec, post_inc or
post_dec is not permitted within the same instruction").  This patch
fixes PR target/106122 by explicitly checking for SP_REG in the
problematic peephole2.

2022-07-O3  Roger Sayle  <roger@nextmovesoftware.com>

gcc/ChangeLog
PR target/106122
* config/i386/i386.md (peephole2): Avoid generating pop %esp
when optimizing for size.

gcc/testsuite/ChangeLog
PR target/106122
* gcc.target/i386/pr106122.c: New test case.

gcc/config/i386/i386.md
gcc/testsuite/gcc.target/i386/pr106122.c [new file with mode: 0644]

index c74edd1aaef38672b7e207f7b273e61db9c166c3..7c9560fc4f0d2946d322c7e0ab7853b53b79afa1 100644 (file)
   "optimize_insn_for_size_p () && optimize_size > 1
    && operands[1] != const0_rtx
    && IN_RANGE (INTVAL (operands[1]), -128, 127)
-   && !ix86_red_zone_used"
+   && !ix86_red_zone_used
+   && REGNO (operands[0]) != SP_REG"
   [(set (match_dup 2) (match_dup 1))
    (set (match_dup 0) (match_dup 3))]
 {
diff --git a/gcc/testsuite/gcc.target/i386/pr106122.c b/gcc/testsuite/gcc.target/i386/pr106122.c
new file mode 100644 (file)
index 0000000..7d24ed3
--- /dev/null
@@ -0,0 +1,15 @@
+/* PR middle-end/106122 */
+/* { dg-do compile } */
+/* { dg-options "-Oz" } */
+
+register volatile int a __asm__("%esp");
+void foo (void *);
+void bar (void *);
+
+void
+baz (void)
+{
+  foo (__builtin_return_address (0));
+  a = 0;
+  bar (__builtin_return_address (0));
+}