mirror of https://gitee.com/Nocallback/glibc.git
Browse Source
This patch is glibc support for a PowerPC TLS optimization, inspired by Alexandre Oliva's TLS optimization for other processors, http://www.lsd.ic.unicamp.br/~oliva/writeups/TLS/RFC-TLSDESC-x86.txt In essence, this optimization uses a zero module id in the tls_index GOT entry to indicate that a TLS variable is allocated space in the static TLS area. A special plt call linker stub for __tls_get_addr checks for such a tls_index and if found, returns the offset immediately. The linker communicates the fact that the special __tls_get_addr stub is used by setting a bit in the dynamic tag DT_PPC64_OPT/DT_PPC_OPT. glibc communicates to the linker that this optimization is available by the presence of __tls_get_addr_opt. tst-tlsmod2.so is built with -Wl,--no-tls-get-addr-optimize for tst-tls-dlinfo, which otherwise would fail since it tests that no static tls is allocated. The ld option --no-tls-get-addr-optimize has been available since binutils-2.20 so doesn't need a configure test. * NEWS: Advertise TLS optimization. * elf/elf.h (R_PPC_TLSGD, R_PPC_TLSLD, DT_PPC_OPT, PPC_OPT_TLS): Define. (DT_PPC_NUM): Increment. * elf/dynamic-link.h (HAVE_STATIC_TLS): Define. (CHECK_STATIC_TLS): Use here. * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Optimize TLS descriptors. * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise. * sysdeps/powerpc/dl-tls.c: New file. * sysdeps/powerpc/Versions: Add __tls_get_addr_opt. * sysdeps/powerpc/tst-tlsopt-powerpc.c: New tls test. * sysdeps/unix/sysv/linux/powerpc/Makefile: Add new test. Build tst-tlsmod2.so with --no-tls-get-addr-optimize. * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: Update. * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: Likewise. * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: Likewise.andros/libmvec
14 changed files with 228 additions and 4 deletions
@ -0,0 +1,24 @@ |
|||
/* Thread-local storage handling in the ELF dynamic linker. PowerPC version.
|
|||
Copyright (C) 2009-2015 Free Software Foundation, Inc. |
|||
This file is part of the GNU C Library. |
|||
|
|||
The GNU C Library is free software; you can redistribute it and/or |
|||
modify it under the terms of the GNU Lesser General Public |
|||
License as published by the Free Software Foundation; either |
|||
version 2.1 of the License, or (at your option) any later version. |
|||
|
|||
The GNU C Library is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|||
Lesser General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU Lesser General Public |
|||
License along with the GNU C Library; if not, write to the Free |
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
|||
02111-1307 USA. */ |
|||
|
|||
#include "elf/dl-tls.c" |
|||
|
|||
#ifdef SHARED |
|||
strong_alias(__tls_get_addr, __tls_get_addr_opt) |
|||
#endif |
|||
@ -0,0 +1,52 @@ |
|||
/* glibc test for __tls_get_addr optimization. */ |
|||
#include <stdio.h> |
|||
|
|||
#include "../../elf/tls-macros.h" |
|||
#include "dl-tls.h" |
|||
|
|||
/* common 'int' variable in TLS. */ |
|||
COMMON_INT_DEF(foo); |
|||
|
|||
|
|||
#define TEST_FUNCTION do_test () |
|||
static int |
|||
do_test (void) |
|||
{ |
|||
int result = 0; |
|||
|
|||
/* Get variable using general dynamic model. */ |
|||
int *ap = TLS_GD (foo); |
|||
if (*ap != 0) |
|||
{ |
|||
printf ("foo = %d\n", *ap); |
|||
result = 1; |
|||
} |
|||
|
|||
tls_index *tls_arg; |
|||
#ifdef __powerpc64__ |
|||
register unsigned long thread_pointer __asm__ ("r13"); |
|||
asm ("addi %0,2,foo@got@tlsgd" : "=r" (tls_arg)); |
|||
#else |
|||
register unsigned long thread_pointer __asm__ ("r2"); |
|||
asm ("bcl 20,31,1f\n1:\t" |
|||
"mflr %0\n\t" |
|||
"addis %0,%0,_GLOBAL_OFFSET_TABLE_-1b@ha\n\t" |
|||
"addi %0,%0,_GLOBAL_OFFSET_TABLE_-1b@l\n\t" |
|||
"addi %0,%0,foo@got@tlsgd" : "=b" (tls_arg)); |
|||
#endif |
|||
|
|||
if (tls_arg->ti_module != 0) |
|||
{ |
|||
printf ("tls_index not optimized, binutils too old?\n"); |
|||
result = 1; |
|||
} |
|||
else if (tls_arg->ti_offset + thread_pointer != (unsigned long) ap) |
|||
{ |
|||
printf ("tls_index->ti_offset wrong value\n"); |
|||
result = 1; |
|||
} |
|||
|
|||
return result; |
|||
} |
|||
|
|||
#include "../../test-skeleton.c" |
|||
Loading…
Reference in new issue