]> git.ipfire.org Git - thirdparty/glibc.git/blame - nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h
Replace FSF snail mail address with URLs.
[thirdparty/glibc.git] / nptl / sysdeps / unix / sysv / linux / x86_64 / sysdep-cancel.h
CommitLineData
421665c4 1/* Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
7b44a5e0
UD
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>, 2002.
4
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.
9
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.
14
15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
7b44a5e0
UD
18
19#include <sysdep.h>
20#include <tls.h>
21#ifndef __ASSEMBLER__
22# include <nptl/pthreadP.h>
23#endif
24
7a114794 25#if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt
7b44a5e0 26
421665c4
UD
27/* The code to disable cancellation depends on the fact that the called
28 functions are special. They don't modify registers other than %rax
29 and %r11 if they return. Therefore we don't have to preserve other
30 registers around these calls. */
7b44a5e0
UD
31# undef PSEUDO
32# define PSEUDO(name, syscall_name, args) \
33 .text; \
34 ENTRY (name) \
35 SINGLE_THREAD_P; \
36 jne L(pseudo_cancel); \
8348dcc8
UD
37 .type __##syscall_name##_nocancel,@function; \
38 .globl __##syscall_name##_nocancel; \
39 __##syscall_name##_nocancel: \
7b44a5e0
UD
40 DO_CALL (syscall_name, args); \
41 cmpq $-4095, %rax; \
42 jae SYSCALL_ERROR_LABEL; \
43 ret; \
8348dcc8 44 .size __##syscall_name##_nocancel,.-__##syscall_name##_nocancel; \
7b44a5e0 45 L(pseudo_cancel): \
421665c4
UD
46 /* We always have to align the stack before calling a function. */ \
47 subq $8, %rsp; cfi_adjust_cfa_offset (8); \
7b44a5e0 48 CENABLE \
7b44a5e0
UD
49 /* The return value from CENABLE is argument for CDISABLE. */ \
50 movq %rax, (%rsp); \
421665c4 51 DO_CALL (syscall_name, args); \
7b44a5e0
UD
52 movq (%rsp), %rdi; \
53 /* Save %rax since it's the error code from the syscall. */ \
421665c4 54 movq %rax, %rdx; \
7b44a5e0 55 CDISABLE \
421665c4
UD
56 movq %rdx, %rax; \
57 addq $8,%rsp; cfi_adjust_cfa_offset (-8); \
7b44a5e0
UD
58 cmpq $-4095, %rax; \
59 jae SYSCALL_ERROR_LABEL; \
3e36c37d
UD
60 L(pseudo_end):
61
7b44a5e0 62
7b44a5e0
UD
63# ifdef IS_IN_libpthread
64# define CENABLE call __pthread_enable_asynccancel;
65# define CDISABLE call __pthread_disable_asynccancel;
66# define __local_multiple_threads __pthread_multiple_threads
bbde8527 67# elif !defined NOT_IN_libc
7b44a5e0
UD
68# define CENABLE call __libc_enable_asynccancel;
69# define CDISABLE call __libc_disable_asynccancel;
70# define __local_multiple_threads __libc_multiple_threads
bbde8527
UD
71# elif defined IS_IN_librt
72# define CENABLE call __librt_enable_asynccancel;
73# define CDISABLE call __librt_disable_asynccancel;
74# else
75# error Unsupported library
7b44a5e0
UD
76# endif
77
bbde8527
UD
78# if defined IS_IN_libpthread || !defined NOT_IN_libc
79# ifndef __ASSEMBLER__
7b44a5e0
UD
80extern int __local_multiple_threads attribute_hidden;
81# define SINGLE_THREAD_P \
82 __builtin_expect (__local_multiple_threads == 0, 1)
bbde8527
UD
83# else
84# define SINGLE_THREAD_P cmpl $0, __local_multiple_threads(%rip)
85# endif
86
7b44a5e0 87# else
bbde8527
UD
88
89# ifndef __ASSEMBLER__
90# define SINGLE_THREAD_P \
91 __builtin_expect (THREAD_GETMEM (THREAD_SELF, \
92 header.multiple_threads) == 0, 1)
93# else
94# define SINGLE_THREAD_P cmpl $0, %fs:MULTIPLE_THREADS_OFFSET
95# endif
96
7b44a5e0
UD
97# endif
98
99#elif !defined __ASSEMBLER__
100
6e627806 101# define SINGLE_THREAD_P (1)
ce6e047f 102# define NO_CANCELLATION 1
7b44a5e0
UD
103
104#endif
6e627806
UD
105
106#ifndef __ASSEMBLER__
107# define RTLD_SINGLE_THREAD_P \
108 __builtin_expect (THREAD_GETMEM (THREAD_SELF, \
109 header.multiple_threads) == 0, 1)
110#endif