previously, the dynamic tlsdesc lookup functions and the i386
special-ABI ___tls_get_addr (3 underscores) function called
__tls_get_addr when the slot they wanted was not already setup;
__tls_get_addr would then in turn also see that it's not setup and
call __tls_get_new.
calling __tls_get_new directly is both more efficient and avoids the
issue of calling a non-hidden (public API/ABI) function from asm.
for the special i386 function, a weak reference to __tls_get_new is
used since this function is not defined when static linking (the code
path that needs it is unreachable in static-linked programs).
ldr x0,[x0,#8]
ret
+.hidden __tls_get_new
+
// long __tlsdesc_dynamic(long *a)
// {
// struct {size_t modidx,off;} *p = (void*)a[1];
ldp x1,x2,[sp],#32
ret
- // save all registers __tls_get_addr may clobber
+ // save all registers __tls_get_new may clobber
// ugly because addr offset must be in [-512,509]
1: stp x29,x30,[sp,#-160]!
stp x5,x6,[sp,#16]
stp q26,q27,[sp,#384]
stp q28,q29,[sp,#416]
stp q30,q31,[sp,#448]
- bl __tls_get_addr
+ bl __tls_get_new
mrs x1,tpidr_el0
ldp q4,q5,[sp,#32]
ldp q6,q7,[sp,#64]
mov 4(%eax),%eax
ret
+.hidden __tls_get_new
+
.global __tlsdesc_dynamic
.type __tlsdesc_dynamic,@function
__tlsdesc_dynamic:
pop %edx
ret
1: push %eax
- call __tls_get_addr
+ call __tls_get_new
pop %ecx
jmp 2b
mov 8(%rax),%rax
ret
+.hidden __tls_get_new
+
.global __tlsdesc_dynamic
.type __tlsdesc_dynamic,@function
__tlsdesc_dynamic:
push %r10
push %r11
mov %rax,%rdi
- call __tls_get_addr
+ call __tls_get_new
pop %r11
pop %r10
pop %r9
add (%edx,%ecx,4),%eax
ret
1: push %eax
- call __tls_get_addr
+.weak __tls_get_new
+.hidden __tls_get_new
+ call __tls_get_new
pop %edx
ret