.
[glibc.git] / nptl / sysdeps / unix / sysv / linux / i386 / sysdep-cancel.h
blobd60dcd33d50c58f75bedda555989e295f1fa952c
1 /* Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <sysdep.h>
21 #include <tls.h>
22 #ifndef __ASSEMBLER__
23 # include <nptl/pthreadP.h>
24 #endif
26 #if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt
28 # undef PSEUDO
29 # define PSEUDO(name, syscall_name, args) \
30 .text; \
31 ENTRY (name) \
32 cmpl $0, %gs:MULTIPLE_THREADS_OFFSET; \
33 jne L(pseudo_cancel); \
34 .type __##syscall_name##_nocancel,@function; \
35 .globl __##syscall_name##_nocancel; \
36 __##syscall_name##_nocancel: \
37 DO_CALL (syscall_name, args); \
38 cmpl $-4095, %eax; \
39 jae SYSCALL_ERROR_LABEL; \
40 ret; \
41 .size __##syscall_name##_nocancel,.-__##syscall_name##_nocancel; \
42 L(pseudo_cancel): \
43 CENABLE \
44 SAVE_OLDTYPE_##args \
45 PUSHCARGS_##args \
46 DOCARGS_##args \
47 movl $SYS_ify (syscall_name), %eax; \
48 ENTER_KERNEL; \
49 POPCARGS_##args; \
50 POPSTATE_##args \
51 cmpl $-4095, %eax; \
52 jae SYSCALL_ERROR_LABEL; \
53 L(pseudo_end):
55 # define SAVE_OLDTYPE_0 movl %eax, %ecx;
56 # define SAVE_OLDTYPE_1 SAVE_OLDTYPE_0
57 # define SAVE_OLDTYPE_2 pushl %eax; cfi_adjust_cfa_offset (4);
58 # define SAVE_OLDTYPE_3 SAVE_OLDTYPE_2
59 # define SAVE_OLDTYPE_4 SAVE_OLDTYPE_2
60 # define SAVE_OLDTYPE_5 SAVE_OLDTYPE_2
62 # define PUSHCARGS_0 /* No arguments to push. */
63 # define DOCARGS_0 /* No arguments to frob. */
64 # define POPCARGS_0 /* No arguments to pop. */
65 # define _PUSHCARGS_0 /* No arguments to push. */
66 # define _POPCARGS_0 /* No arguments to pop. */
68 # define PUSHCARGS_1 movl %ebx, %edx; cfi_register (ebx, edx); PUSHCARGS_0
69 # define DOCARGS_1 _DOARGS_1 (4)
70 # define POPCARGS_1 POPCARGS_0; movl %edx, %ebx; cfi_restore (ebx);
71 # define _PUSHCARGS_1 pushl %ebx; cfi_adjust_cfa_offset (4); \
72 cfi_rel_offset (ebx, 0); _PUSHCARGS_0
73 # define _POPCARGS_1 _POPCARGS_0; popl %ebx; \
74 cfi_adjust_cfa_offset (-4); cfi_restore (ebx);
76 # define PUSHCARGS_2 PUSHCARGS_1
77 # define DOCARGS_2 _DOARGS_2 (12)
78 # define POPCARGS_2 POPCARGS_1
79 # define _PUSHCARGS_2 _PUSHCARGS_1
80 # define _POPCARGS_2 _POPCARGS_1
82 # define PUSHCARGS_3 _PUSHCARGS_2
83 # define DOCARGS_3 _DOARGS_3 (20)
84 # define POPCARGS_3 _POPCARGS_3
85 # define _PUSHCARGS_3 _PUSHCARGS_2
86 # define _POPCARGS_3 _POPCARGS_2
88 # define PUSHCARGS_4 _PUSHCARGS_4
89 # define DOCARGS_4 _DOARGS_4 (28)
90 # define POPCARGS_4 _POPCARGS_4
91 # define _PUSHCARGS_4 pushl %esi; cfi_adjust_cfa_offset (4); \
92 cfi_rel_offset (esi, 0); _PUSHCARGS_3
93 # define _POPCARGS_4 _POPCARGS_3; popl %esi; \
94 cfi_adjust_cfa_offset (-4); cfi_restore (esi);
96 # define PUSHCARGS_5 _PUSHCARGS_5
97 # define DOCARGS_5 _DOARGS_5 (36)
98 # define POPCARGS_5 _POPCARGS_5
99 # define _PUSHCARGS_5 pushl %edi; cfi_adjust_cfa_offset (4); \
100 cfi_rel_offset (edi, 0); _PUSHCARGS_4
101 # define _POPCARGS_5 _POPCARGS_4; popl %edi; \
102 cfi_adjust_cfa_offset (-4); cfi_restore (edi);
104 # ifdef IS_IN_libpthread
105 # define CENABLE call __pthread_enable_asynccancel;
106 # define CDISABLE call __pthread_disable_asynccancel
107 # elif !defined NOT_IN_libc
108 # define CENABLE call __libc_enable_asynccancel;
109 # define CDISABLE call __libc_disable_asynccancel
110 # elif defined IS_IN_librt
111 # define CENABLE call __librt_enable_asynccancel;
112 # define CDISABLE call __librt_disable_asynccancel
113 # else
114 # error Unsupported library
115 # endif
116 # define POPSTATE_0 \
117 pushl %eax; cfi_adjust_cfa_offset (4); movl %ecx, %eax; \
118 CDISABLE; popl %eax; cfi_adjust_cfa_offset (-4);
119 # define POPSTATE_1 POPSTATE_0
120 # define POPSTATE_2 xchgl (%esp), %eax; CDISABLE; popl %eax; \
121 cfi_adjust_cfa_offset (-4);
122 # define POPSTATE_3 POPSTATE_2
123 # define POPSTATE_4 POPSTATE_3
124 # define POPSTATE_5 POPSTATE_4
126 # ifndef __ASSEMBLER__
127 # define SINGLE_THREAD_P \
128 __builtin_expect (THREAD_GETMEM (THREAD_SELF, \
129 header.multiple_threads) == 0, 1)
130 # else
131 # define SINGLE_THREAD_P cmpl $0, %gs:MULTIPLE_THREADS_OFFSET
132 # endif
134 #elif !defined __ASSEMBLER__
136 # define SINGLE_THREAD_P (1)
137 # define NO_CANCELLATION 1
139 #endif
141 #ifndef __ASSEMBLER__
142 # define RTLD_SINGLE_THREAD_P \
143 __builtin_expect (THREAD_GETMEM (THREAD_SELF, \
144 header.multiple_threads) == 0, 1)
145 #endif