]> sourceware.org Git - glibc.git/commit
PowerPC64 ELFv2 ABI 4/6: Stack frame layout changes
authorUlrich Weigand <Ulrich.Weigand@de.ibm.com>
Fri, 15 Nov 2013 17:59:39 +0000 (11:59 -0600)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Fri, 15 Nov 2013 17:59:39 +0000 (11:59 -0600)
commit1e9e44f367d335c263ab432af03a66e6f383b021
tree6ba1ae1c5aeb15975ab652fd714f57edf417ae38
parentf52b81721f85a00fdd9e69702dc5f64dac9ce460
PowerPC64 ELFv2 ABI 4/6: Stack frame layout changes

This updates glibc for the changes in the ELFv2 relating to the
stack frame layout.  These are described in more detail here:
http://gcc.gnu.org/ml/gcc-patches/2013-11/msg01149.html
http://gcc.gnu.org/ml/gcc-patches/2013-11/msg01146.html

Specifically, the "compiler and linker doublewords" were removed,
which has the effect that the save slot for the TOC register is
now at offset 24 rather than 40 to the stack pointer.

In addition, a function may now no longer necessarily assume that
its caller has set up a 64-byte register save area its use.

To address the first change, the patch goes through all assembler
files and replaces immediate offsets in instructions accessing the
ABI-defined stack slots by symbolic offsets.  Those already were
defined in ucontext_i.sym and used in some of the context routines,
but that doesn't really seem like the right place for those defines.

The patch instead defines those symbolic offsets in sysdeps.h,
in two variants for the old and new ABI, and uses them systematically
in all assembler files, not just the context routines.

The second change only affected a few assembler files that used
the save area to temporarily store some registers.  In those
cases where this happens within a leaf function, this patch
changes the code to store those registers to the "red zone"
below the stack pointer.  Otherwise, the functions already allocate
a stack frame, and the patch changes them to add extra space in
these frames as temporary space for the ELFv2 ABI.
15 files changed:
ChangeLog
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h
sysdeps/powerpc/powerpc64/__longjmp-common.S
sysdeps/powerpc/powerpc64/crti.S
sysdeps/powerpc/powerpc64/crtn.S
sysdeps/powerpc/powerpc64/dl-trampoline.S
sysdeps/powerpc/powerpc64/ppc-mcount.S
sysdeps/powerpc/powerpc64/setjmp-common.S
sysdeps/powerpc/powerpc64/sysdep.h
sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S
sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S
sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S
sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
This page took 0.081021 seconds and 5 git commands to generate.