mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-24 15:12:04 +03:00
optimize i386 ___tls_get_addr asm
This commit is contained in:
parent
e75b16cf93
commit
880c479f0e
@ -2,7 +2,14 @@
|
||||
.global ___tls_get_addr
|
||||
.type ___tls_get_addr,@function
|
||||
___tls_get_addr:
|
||||
push %eax
|
||||
mov %gs:4,%edx
|
||||
mov (%eax),%ecx
|
||||
cmp %ecx,(%edx)
|
||||
jc 1f
|
||||
mov 4(%eax),%eax
|
||||
add (%edx,%ecx,4),%eax
|
||||
ret
|
||||
1: push %eax
|
||||
call __tls_get_addr
|
||||
pop %edx
|
||||
ret
|
||||
|
Loading…
Reference in New Issue
Block a user