diff options
author | Richard Henderson <rth@redhat.com> | 2014-05-25 14:15:14 -0400 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2014-05-29 12:33:06 -0400 |
commit | 645d44abe3ca6253a9d4762f092e4a1b9d294b11 (patch) | |
tree | 22d7fd092f307aa426be842ee52614c965b288db /sysdeps/unix | |
parent | a8b4f04ad7dff4f39797a7ab7f8babda54266026 (diff) | |
download | glibc-645d44abe3ca6253a9d4762f092e4a1b9d294b11.tar.gz glibc-645d44abe3ca6253a9d4762f092e4a1b9d294b11.tar.xz glibc-645d44abe3ca6253a9d4762f092e4a1b9d294b11.zip |
aarch64: Pass regno parameter to SINGLE_THREAD_P
Use cbz instead of cmp+b.eq.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h b/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h index 41502de602..bdb5c73780 100644 --- a/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h +++ b/sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h @@ -36,8 +36,8 @@ ENTRY (__##syscall_name##_nocancel); \ .subsection 2; \ .size __##syscall_name##_nocancel,.-__##syscall_name##_nocancel; \ ENTRY (name); \ - SINGLE_THREAD_P; \ - beq .Lpseudo_nocancel; \ + SINGLE_THREAD_P(16); \ + cbz w16, .Lpseudo_nocancel; \ DOCARGS_##args; /* save syscall args etc. around CENABLE. */ \ CENABLE; \ mov x16, x0; /* put mask in safe place. */ \ @@ -161,10 +161,9 @@ ENTRY (name); \ extern int __local_multiple_threads attribute_hidden; # define SINGLE_THREAD_P __builtin_expect (__local_multiple_threads == 0, 1) # else -# define SINGLE_THREAD_P \ - adrp x16, __local_multiple_threads; \ - ldr w16, [x16, :lo12:__local_multiple_threads]; \ - cmp w16, 0; +# define SINGLE_THREAD_P(R) \ + adrp x##R, __local_multiple_threads; \ + ldr w##R, [x##R, :lo12:__local_multiple_threads] # endif # else /* There is no __local_multiple_threads for librt, so use the TCB. */ @@ -173,19 +172,18 @@ extern int __local_multiple_threads attribute_hidden; __builtin_expect (THREAD_GETMEM (THREAD_SELF, \ header.multiple_threads) == 0, 1) # else -# define SINGLE_THREAD_P \ +# define SINGLE_THREAD_P(R) \ stp x0, x30, [sp, -16]!; \ cfi_adjust_cfa_offset (16); \ cfi_rel_offset (x0, 0); \ cfi_rel_offset (x30, 8); \ bl __read_tp; \ sub x0, x0, PTHREAD_SIZEOF; \ - ldr w16, [x0, PTHREAD_MULTIPLE_THREADS_OFFSET]; \ + ldr w##R, [x0, PTHREAD_MULTIPLE_THREADS_OFFSET]; \ ldp x0, x30, [sp], 16; \ cfi_restore (x0); \ cfi_restore (x30); \ - cfi_adjust_cfa_offset (-16); \ - cmp w16, 0; + cfi_adjust_cfa_offset (-16) # endif # endif |