1 /* Copyright (C) 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 # include <nptl/pthreadP.h>
25 #if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt
28 # define PSEUDO_PROF \
31 jsr AT, (AT), _mcount; \
37 /* ??? Assumes that nothing comes between PSEUDO and PSEUDO_END
41 # define PSEUDO(name, syscall_name, args) \
44 .type name, @function; \
51 SINGLE_THREAD_P(t0); \
52 bne t0, $pseudo_cancel; \
53 lda v0, SYS_ify(syscall_name); \
54 call_pal PAL_callsys; \
55 bne a3, SYSCALL_ERROR_LABEL; \
56 __LABEL($pseudo_ret) \
58 __LABEL($pseudo_cancel) \
60 cfi_def_cfa_offset(64); \
62 cfi_offset(ra, -64); \
66 /* Save the CENABLE return value in RA. That register \
67 is preserved across syscall and the real return \
68 address is saved on the stack. */ \
70 lda v0, SYS_ify(syscall_name); \
71 call_pal PAL_callsys; \
74 bne a3, $multi_error; \
81 cfi_def_cfa_offset(0); \
84 __LABEL($multi_error) \
90 cfi_def_cfa_offset(0); \
91 __LABEL($syscall_error) \
92 SYSCALL_ERROR_HANDLER; \
96 # define PSEUDO_END(sym) \
101 # define SAVE_ARGS_0 /* Nothing. */
102 # define SAVE_ARGS_1 SAVE_ARGS_0; stq a0, 8(sp)
103 # define SAVE_ARGS_2 SAVE_ARGS_1; stq a1, 16(sp)
104 # define SAVE_ARGS_3 SAVE_ARGS_2; stq a2, 24(sp)
105 # define SAVE_ARGS_4 SAVE_ARGS_3; stq a3, 32(sp)
106 # define SAVE_ARGS_5 SAVE_ARGS_4; stq a4, 40(sp)
107 # define SAVE_ARGS_6 SAVE_ARGS_5; stq a5, 48(sp)
109 # define LOAD_ARGS_0 /* Nothing. */
110 # define LOAD_ARGS_1 LOAD_ARGS_0; ldq a0, 8(sp)
111 # define LOAD_ARGS_2 LOAD_ARGS_1; ldq a1, 16(sp)
112 # define LOAD_ARGS_3 LOAD_ARGS_2; ldq a2, 24(sp)
113 # define LOAD_ARGS_4 LOAD_ARGS_3; ldq a3, 32(sp)
114 # define LOAD_ARGS_5 LOAD_ARGS_4; ldq a4, 40(sp)
115 # define LOAD_ARGS_6 LOAD_ARGS_5; ldq a5, 48(sp)
117 # ifdef IS_IN_libpthread
118 # define __local_enable_asynccancel __pthread_enable_asynccancel
119 # define __local_disable_asynccancel __pthread_disable_asynccancel
120 # define __local_multiple_threads __pthread_multiple_threads
121 # elif !defined NOT_IN_libc
122 # define __local_enable_asynccancel __libc_enable_asynccancel
123 # define __local_disable_asynccancel __libc_disable_asynccancel
124 # define __local_multiple_threads __libc_multiple_threads
125 # elif defined IS_IN_librt
126 # define __local_enable_asynccancel __librt_enable_asynccancel
127 # define __local_disable_asynccancel __librt_disable_asynccancel
129 # error Unsupported library
133 # define CENABLE bsr ra, __local_enable_asynccancel !samegp
134 # define CDISABLE bsr ra, __local_disable_asynccancel !samegp
136 # define CENABLE jsr ra, __local_enable_asynccancel; ldgp ra, 0(gp)
137 # define CDISABLE jsr ra, __local_disable_asynccancel; ldgp ra, 0(gp)
140 # if defined IS_IN_libpthread || !defined NOT_IN_libc
141 # ifndef __ASSEMBLER__
142 extern int __local_multiple_threads attribute_hidden
;
143 # define SINGLE_THREAD_P \
144 __builtin_expect (__local_multiple_threads == 0, 1)
146 # define SINGLE_THREAD_P(reg) ldl reg, __local_multiple_threads(gp) !gprel
148 # define SINGLE_THREAD_P(reg) \
149 ldah reg, __local_multiple_threads(gp) !gprelhigh; \
150 ldl reg, __local_multiple_threads(reg) !gprellow
153 # ifndef __ASSEMBLER__
154 # define SINGLE_THREAD_P \
155 __builtin_expect (THREAD_GETMEM (THREAD_SELF, \
156 header.multiple_threads) == 0, 1)
158 # define SINGLE_THREAD_P(reg) \
159 call_pal PAL_rduniq; \
160 ldl reg, MULTIPLE_THREADS_OFFSET($0)
166 # define SINGLE_THREAD_P (1)
167 # define NO_CANCELLATION 1