diff mbox

[GCC/ARM] Fix PR77904: callee-saved register trashed when clobbering sp

Message ID aaa2319e-bfbe-f875-1ac6-658636ac6d43@foss.arm.com
State Superseded
Headers show

Commit Message

Thomas Preudhomme Nov. 3, 2016, 4:52 p.m. UTC
Hi,

When using a callee-saved register to save the frame pointer the Thumb-1 
prologue fails to save the callee-saved register before that. For ARM and 
Thumb-2 targets the frame pointer is handled as a special case but nothing is 
done for Thumb-1 targets. This patch adds the same logic for Thumb-1 targets.

ChangeLog entries are as follow:

*** gcc/ChangeLog ***

2016-11-02  Thomas Preud'homme  <thomas.preudhomme@arm.com>

         PR target/77904
         * config/arm/arm.c (thumb1_compute_save_reg_mask): mark frame pointer
         in save register mask if it is needed.


*** gcc/testsuite/ChangeLog ***

2016-11-02  Thomas Preud'homme  <thomas.preudhomme@arm.com>

         PR target/77904
         * gcc.target/arm/pr77904.c: New test.


Testing: Testsuite shows no regression when run with arm-none-eabi GCC 
cross-compiler for Cortex-M0 target.

Is this ok for trunk?

Best regards,

Thomas

Comments

Kyrill Tkachov Nov. 16, 2016, 10:30 a.m. UTC | #1
Hi Thomas,

On 03/11/16 16:52, Thomas Preudhomme wrote:
> Hi,

>

> When using a callee-saved register to save the frame pointer the Thumb-1 prologue fails to save the callee-saved register before that. For ARM and Thumb-2 targets the frame pointer is handled as a special case but nothing is done for 

> Thumb-1 targets. This patch adds the same logic for Thumb-1 targets.

>

> ChangeLog entries are as follow:

>

> *** gcc/ChangeLog ***

>

> 2016-11-02  Thomas Preud'homme  <thomas.preudhomme@arm.com>

>

>         PR target/77904

>         * config/arm/arm.c (thumb1_compute_save_reg_mask): mark frame pointer

>         in save register mask if it is needed.

>


s/mark/Mark/

>

> *** gcc/testsuite/ChangeLog ***

>

> 2016-11-02  Thomas Preud'homme  <thomas.preudhomme@arm.com>

>

>         PR target/77904

>         * gcc.target/arm/pr77904.c: New test.

>

>

> Testing: Testsuite shows no regression when run with arm-none-eabi GCC cross-compiler for Cortex-M0 target.

>

> Is this ok for trunk?

>


I'd ask for a bootstrap, but this code is Thumb-1 only so it wouldn't affect anything.
Can you just double-check that the new test passes on non-Thumb-1 configurations as well?

Ok for trunk.
Thanks,
Kyrill

> Best regards,

>

> Thomas
Thomas Preudhomme Nov. 17, 2016, 8:56 a.m. UTC | #2
On 16/11/16 10:30, Kyrill Tkachov wrote:
> Hi Thomas,

>

> On 03/11/16 16:52, Thomas Preudhomme wrote:

>> Hi,

>>

>> When using a callee-saved register to save the frame pointer the Thumb-1

>> prologue fails to save the callee-saved register before that. For ARM and

>> Thumb-2 targets the frame pointer is handled as a special case but nothing is

>> done for Thumb-1 targets. This patch adds the same logic for Thumb-1 targets.

>>

>> ChangeLog entries are as follow:

>>

>> *** gcc/ChangeLog ***

>>

>> 2016-11-02  Thomas Preud'homme  <thomas.preudhomme@arm.com>

>>

>>         PR target/77904

>>         * config/arm/arm.c (thumb1_compute_save_reg_mask): mark frame pointer

>>         in save register mask if it is needed.

>>

>

> s/mark/Mark/

>

>>

>> *** gcc/testsuite/ChangeLog ***

>>

>> 2016-11-02  Thomas Preud'homme  <thomas.preudhomme@arm.com>

>>

>>         PR target/77904

>>         * gcc.target/arm/pr77904.c: New test.

>>

>>

>> Testing: Testsuite shows no regression when run with arm-none-eabi GCC

>> cross-compiler for Cortex-M0 target.

>>

>> Is this ok for trunk?

>>

>

> I'd ask for a bootstrap, but this code is Thumb-1 only so it wouldn't affect

> anything.


I can bootstrap for armv4t with --with-mode=thumb which would at least exercise 
the path. I'll try such a bootstrap on qemu.

> Can you just double-check that the new test passes on non-Thumb-1 configurations

> as well?


It works well for ARMv7-A in ARM and Thumb mode.

Best regards,

Thomas
Kyrill Tkachov Nov. 17, 2016, 9:11 a.m. UTC | #3
On 17/11/16 08:56, Thomas Preudhomme wrote:
> On 16/11/16 10:30, Kyrill Tkachov wrote:

>> Hi Thomas,

>>

>> On 03/11/16 16:52, Thomas Preudhomme wrote:

>>> Hi,

>>>

>>> When using a callee-saved register to save the frame pointer the Thumb-1

>>> prologue fails to save the callee-saved register before that. For ARM and

>>> Thumb-2 targets the frame pointer is handled as a special case but nothing is

>>> done for Thumb-1 targets. This patch adds the same logic for Thumb-1 targets.

>>>

>>> ChangeLog entries are as follow:

>>>

>>> *** gcc/ChangeLog ***

>>>

>>> 2016-11-02  Thomas Preud'homme <thomas.preudhomme@arm.com>

>>>

>>>         PR target/77904

>>>         * config/arm/arm.c (thumb1_compute_save_reg_mask): mark frame pointer

>>>         in save register mask if it is needed.

>>>

>>

>> s/mark/Mark/

>>

>>>

>>> *** gcc/testsuite/ChangeLog ***

>>>

>>> 2016-11-02  Thomas Preud'homme <thomas.preudhomme@arm.com>

>>>

>>>         PR target/77904

>>>         * gcc.target/arm/pr77904.c: New test.

>>>

>>>

>>> Testing: Testsuite shows no regression when run with arm-none-eabi GCC

>>> cross-compiler for Cortex-M0 target.

>>>

>>> Is this ok for trunk?

>>>

>>

>> I'd ask for a bootstrap, but this code is Thumb-1 only so it wouldn't affect

>> anything.

>

> I can bootstrap for armv4t with --with-mode=thumb which would at least exercise the path. I'll try such a bootstrap on qemu.

>


If you can get it to work, then yes please.

>> Can you just double-check that the new test passes on non-Thumb-1 configurations

>> as well?

>

> It works well for ARMv7-A in ARM and Thumb mode.

>


Great, thanks again.
Kyrill

> Best regards,

>

> Thomas
Thomas Preudhomme Nov. 22, 2016, 10:45 a.m. UTC | #4
On 17/11/16 09:11, Kyrill Tkachov wrote:
>

> On 17/11/16 08:56, Thomas Preudhomme wrote:

>> On 16/11/16 10:30, Kyrill Tkachov wrote:

>>> Hi Thomas,

>>>

>>> On 03/11/16 16:52, Thomas Preudhomme wrote:

>>>> Hi,

>>>>

>>>> When using a callee-saved register to save the frame pointer the Thumb-1

>>>> prologue fails to save the callee-saved register before that. For ARM and

>>>> Thumb-2 targets the frame pointer is handled as a special case but nothing is

>>>> done for Thumb-1 targets. This patch adds the same logic for Thumb-1 targets.

>>>>

>>>> ChangeLog entries are as follow:

>>>>

>>>> *** gcc/ChangeLog ***

>>>>

>>>> 2016-11-02  Thomas Preud'homme <thomas.preudhomme@arm.com>

>>>>

>>>>         PR target/77904

>>>>         * config/arm/arm.c (thumb1_compute_save_reg_mask): mark frame pointer

>>>>         in save register mask if it is needed.

>>>>

>>>

>>> s/mark/Mark/

>>>

>>>>

>>>> *** gcc/testsuite/ChangeLog ***

>>>>

>>>> 2016-11-02  Thomas Preud'homme <thomas.preudhomme@arm.com>

>>>>

>>>>         PR target/77904

>>>>         * gcc.target/arm/pr77904.c: New test.

>>>>

>>>>

>>>> Testing: Testsuite shows no regression when run with arm-none-eabi GCC

>>>> cross-compiler for Cortex-M0 target.

>>>>

>>>> Is this ok for trunk?

>>>>

>>>

>>> I'd ask for a bootstrap, but this code is Thumb-1 only so it wouldn't affect

>>> anything.

>>

>> I can bootstrap for armv4t with --with-mode=thumb which would at least

>> exercise the path. I'll try such a bootstrap on qemu.

>>

>

> If you can get it to work, then yes please.


Bootstrap came back clean so I've committed the patch (r242693). Thanks!

Best regards,

Thomas
diff mbox

Patch

diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index dd8d5e5db8ca50daab648e58df290969aa794862..c7bf3320a3db5dfc4f33ae145ff2e5f239d6c0f9 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -19495,6 +19495,10 @@  thumb1_compute_save_reg_mask (void)
     if (df_regs_ever_live_p (reg) && callee_saved_reg_p (reg))
       mask |= 1 << reg;
 
+  /* Handle the frame pointer as a special case.  */
+  if (frame_pointer_needed)
+    mask |= 1 << HARD_FRAME_POINTER_REGNUM;
+
   if (flag_pic
       && !TARGET_SINGLE_PIC_BASE
       && arm_pic_register != INVALID_REGNUM
diff --git a/gcc/testsuite/gcc.target/arm/pr77904.c b/gcc/testsuite/gcc.target/arm/pr77904.c
new file mode 100644
index 0000000000000000000000000000000000000000..76728c07e73350ce44160cabff3dd2fa7a6ef021
--- /dev/null
+++ b/gcc/testsuite/gcc.target/arm/pr77904.c
@@ -0,0 +1,45 @@ 
+/* { dg-do run } */
+/* { dg-options "-O2" } */
+
+__attribute__ ((noinline, noclone)) void
+clobber_sp (void)
+{
+  __asm volatile ("" : : : "sp");
+}
+
+int
+main (void)
+{
+  int ret;
+
+  __asm volatile ("mov\tr4, #0xf4\n\t"
+		  "mov\tr5, #0xf5\n\t"
+		  "mov\tr6, #0xf6\n\t"
+		  "mov\tr7, #0xf7\n\t"
+		  "mov\tr0, #0xf8\n\t"
+		  "mov\tr8, r0\n\t"
+		  "mov\tr0, #0xfa\n\t"
+		  "mov\tr10, r0"
+		  : : : "r0", "r4", "r5", "r6", "r7", "r8", "r10");
+  clobber_sp ();
+
+  __asm volatile ("cmp\tr4, #0xf4\n\t"
+		  "bne\tfail\n\t"
+		  "cmp\tr5, #0xf5\n\t"
+		  "bne\tfail\n\t"
+		  "cmp\tr6, #0xf6\n\t"
+		  "bne\tfail\n\t"
+		  "cmp\tr7, #0xf7\n\t"
+		  "bne\tfail\n\t"
+		  "mov\tr0, r8\n\t"
+		  "cmp\tr0, #0xf8\n\t"
+		  "bne\tfail\n\t"
+		  "mov\tr0, r10\n\t"
+		  "cmp\tr0, #0xfa\n\t"
+		  "bne\tfail\n\t"
+		  "mov\t%0, #1\n"
+		  "fail:\n\t"
+		  "sub\tr0, #1"
+		  : "=r" (ret) : :);
+  return ret;
+}