mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 19:30:10 +00:00
aarch64: Use tpidr_el0 rather than __read_tp in librt
This commit is contained in:
parent
b5be459771
commit
a17e5ffb80
@ -1,5 +1,9 @@
|
|||||||
2014-05-29 Richard Henderson <rth@twiddle.net>
|
2014-05-29 Richard Henderson <rth@twiddle.net>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
|
||||||
|
[!NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
|
||||||
|
call to __read_tp.
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
|
* sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
|
||||||
Always allocate 64 bytes of stack frame. Use ldp/stp to create
|
Always allocate 64 bytes of stack frame. Use ldp/stp to create
|
||||||
it and break it down.
|
it and break it down.
|
||||||
|
@ -113,17 +113,9 @@ extern int __local_multiple_threads attribute_hidden;
|
|||||||
header.multiple_threads) == 0, 1)
|
header.multiple_threads) == 0, 1)
|
||||||
# else
|
# else
|
||||||
# define SINGLE_THREAD_P(R) \
|
# define SINGLE_THREAD_P(R) \
|
||||||
stp x0, x30, [sp, -16]!; \
|
mrs x##R, tpidr_el0; \
|
||||||
cfi_adjust_cfa_offset (16); \
|
sub x##R, x##R, PTHREAD_SIZEOF; \
|
||||||
cfi_rel_offset (x0, 0); \
|
ldr w##R, [x##R, PTHREAD_MULTIPLE_THREADS_OFFSET]
|
||||||
cfi_rel_offset (x30, 8); \
|
|
||||||
bl __read_tp; \
|
|
||||||
sub x0, x0, PTHREAD_SIZEOF; \
|
|
||||||
ldr w##R, [x0, PTHREAD_MULTIPLE_THREADS_OFFSET]; \
|
|
||||||
ldp x0, x30, [sp], 16; \
|
|
||||||
cfi_restore (x0); \
|
|
||||||
cfi_restore (x30); \
|
|
||||||
cfi_adjust_cfa_offset (-16)
|
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user