[PATCH] D24228: [Thumb] Save/restore high registers in Thumb1 pro/epilogues

Oliver Stannard via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 5 03:41:55 PDT 2016


olista01 created this revision.
olista01 added reviewers: rengolin, t.p.northover.
olista01 added a subscriber: llvm-commits.
olista01 set the repository for this revision to rL LLVM.
Herald added a subscriber: rengolin.

The high registers are not allocatable in Thumb1 functions, but they
could still be used by inline assembly, so we need to save and restore
the callee-saved high registers (r8-r11) in the prologue and epilogue.

This is complicated by the fact that the Thumb1 push and pop
instructions cannot access these registers. Therefore, we have to move
them down into low registers before pushing, and move them back after
popping into low registers.

In most functions, we will have low registers that are also being
pushed/popped, which we can use as the temporary registers for
saving/restoring the high registers. However, this is not guaranteed, so
we may need to push some extra low registers to ensure that the high
registers can be saved/restored. For correctness, it would be sufficient
to use just one low register, but if we have enough low registers
available then we only need one push/pop instruction, rather than one
per high register.

We can also use the argument/return registers when they are not live,
and the link register when saving (but not restoring), reducing the
number of extra registers we need to push.

There are still a few extreme edge cases where we need two push/pop
instructions, because not enough low registers can be made live in the
prologue or epilogue.

In addition to the regression tests included here, I've also tested this
using a script to generate functions which clobber different
combinations of registers, have different numbers of argument and return
registers (including variadic arguments), allocate different fixed sized
objects on the stack, and do or don't use variable sized allocas and the
__builtin_return_address intrinsic (all of which affect the available
registers in the prologue and epilogue). I ran these functions in a test
harness which verifies that all of the callee-saved registers are
correctly preserved.

Repository:
  rL LLVM

https://reviews.llvm.org/D24228

Files:
  lib/Target/ARM/ARMFrameLowering.cpp
  lib/Target/ARM/ARMSubtarget.h
  lib/Target/ARM/Thumb1FrameLowering.cpp
  test/CodeGen/Thumb/callee_save.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D24228.70314.patch
Type: text/x-patch
Size: 28803 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160905/c6dcb50c/attachment.bin>


More information about the llvm-commits mailing list