add TLSDESC support for 32-bit arm
authorRich Felker <dalias@aerifal.cx>
Mon, 1 Oct 2018 22:37:02 +0000 (18:37 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 1 Oct 2018 22:37:02 +0000 (18:37 -0400)
commit0beb9dfbecad38af9759b1e83eeb007e28b70abb
tree75c42c8b544a480ba0a7664ebe83d88de654cd60
parent4d0a82170a25464c39522d7190b9fe302045ddb2
add TLSDESC support for 32-bit arm

unlike other asm where the baseline ISA is used, these functions are
hot paths and use ISA-level specializations.

call-clobbered vfp registers are saved before calling __tls_get_new,
since there is no guarantee it won't use them. while setjmp/longjmp
have to use hwcap to decide whether to the fpu is in use, since
application code could be using vfp registers even if libc was
compiled as pure softfloat, __tls_get_new is part of libc and can be
assumed not to have access to vfp registers if tlsdesc.S does not.
thus it suffices just to check the predefined preprocessor macros. the
check for __ARM_PCS_VFP is redundant; !__SOFTFP__ must always be true
if the target ISA level includes fpu instructions/registers.
arch/arm/reloc.h
ldso/dynlink.c
src/ldso/arm/tlsdesc.S [new file with mode: 0644]