powerpc64: Set up thread register for _dl_relocate_static_pie
authorAlan Modra <amodra@gmail.com>
Sun, 23 Jan 2022 21:28:18 +0000 (07:58 +1030)
committerAlan Modra <amodra@gmail.com>
Sat, 9 Apr 2022 23:03:40 +0000 (08:33 +0930)
commit31a9bc8c55adc2a8d6f8f795a577ba5d5eca7506
treebc13ea619de5d93042bd2c1335af37a51e9c5baa
parentd6efcc118e406a1cfeb309f835d7118df53419bb
powerpc64: Set up thread register for _dl_relocate_static_pie

libgcc ifunc resolvers that access hwcap via a field in the tcb can't
be called until the thread pointer is set up.  Other ifunc resolvers
might need access to at_platform.  This patch sets up a fake thread
pointer early to a copy of tcbhead_t.  hwcapinfo.c already had local
variables for hwcap and at_platform, replace them with an entire
tcbhead_t.  It's not that large and this way we easily ensure hwcap
and at_platform are at the same relative offsets as they are in the
real thread block.

The patch also conditionally disables part of tst-tlsifunc-static,
"bar address read from IFUNC resolver is incorrect".  We can't get a
proper address for a thread variable before glibc initialises tls.

Reviewed-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
sysdeps/powerpc/hwcapinfo.c
sysdeps/powerpc/hwcapinfo.h
sysdeps/powerpc/nptl/tls.h
sysdeps/powerpc/powerpc64/dl-machine.h
sysdeps/powerpc/tst-tlsifunc-static.c
sysdeps/powerpc/tst-tlsifunc.c