blob: 31eab867e6d359d0da8ebfe5637368d19cbff516 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_SIGNAL_H
2#define _ASM_X86_SIGNAL_H
Thomas Gleixner33185c52007-10-23 22:37:24 +02003
4#ifndef __ASSEMBLY__
Thomas Gleixner33185c52007-10-23 22:37:24 +02005#include <linux/linkage.h>
6
7/* Most things should be clean enough to redefine this at will, if care
8 is taken to make libc match. */
9
10#define _NSIG 64
11
12#ifdef __i386__
13# define _NSIG_BPW 32
Thomas Gleixner96a388d2007-10-11 11:20:03 +020014#else
Thomas Gleixner33185c52007-10-23 22:37:24 +020015# define _NSIG_BPW 64
16#endif
17
18#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
19
20typedef unsigned long old_sigset_t; /* at least 32 bits */
21
22typedef struct {
23 unsigned long sig[_NSIG_WORDS];
24} sigset_t;
25
Suresh Siddha050902c2012-07-24 16:05:27 -070026#ifndef CONFIG_COMPAT
27typedef sigset_t compat_sigset_t;
28#endif
29
Thomas Gleixner33185c52007-10-23 22:37:24 +020030#endif /* __ASSEMBLY__ */
David Howellsaf170c52012-12-14 22:37:13 +000031#include <uapi/asm/signal.h>
Thomas Gleixner33185c52007-10-23 22:37:24 +020032#ifndef __ASSEMBLY__
Jaswinder Singh7b5b50f2008-12-15 22:24:48 +053033extern void do_notify_resume(struct pt_regs *, void *, __u32);
Al Viro574c4862012-11-25 22:24:19 -050034
35#define __ARCH_HAS_SA_RESTORER
36
Thomas Gleixner33185c52007-10-23 22:37:24 +020037#include <asm/sigcontext.h>
38
Herton Ronaldo Krzesinski723edb52008-07-14 17:40:23 -030039#ifdef __i386__
Thomas Gleixner33185c52007-10-23 22:37:24 +020040
41#define __HAVE_ARCH_SIG_BITOPS
42
Joe Perches9551b122008-03-23 01:03:28 -070043#define sigaddset(set,sig) \
Herton Ronaldo Krzesinski723edb52008-07-14 17:40:23 -030044 (__builtin_constant_p(sig) \
Joe Perches9551b122008-03-23 01:03:28 -070045 ? __const_sigaddset((set), (sig)) \
46 : __gen_sigaddset((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +020047
Joe Perches9551b122008-03-23 01:03:28 -070048static inline void __gen_sigaddset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020049{
Joe Perches9551b122008-03-23 01:03:28 -070050 asm("btsl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +020051}
52
Joe Perches9551b122008-03-23 01:03:28 -070053static inline void __const_sigaddset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020054{
55 unsigned long sig = _sig - 1;
56 set->sig[sig / _NSIG_BPW] |= 1 << (sig % _NSIG_BPW);
57}
58
Joe Perches9551b122008-03-23 01:03:28 -070059#define sigdelset(set, sig) \
60 (__builtin_constant_p(sig) \
61 ? __const_sigdelset((set), (sig)) \
62 : __gen_sigdelset((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +020063
64
Joe Perches9551b122008-03-23 01:03:28 -070065static inline void __gen_sigdelset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020066{
Joe Perches9551b122008-03-23 01:03:28 -070067 asm("btrl %1,%0" : "+m"(*set) : "Ir"(_sig - 1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +020068}
69
Joe Perches9551b122008-03-23 01:03:28 -070070static inline void __const_sigdelset(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020071{
72 unsigned long sig = _sig - 1;
73 set->sig[sig / _NSIG_BPW] &= ~(1 << (sig % _NSIG_BPW));
74}
75
Joe Perches9551b122008-03-23 01:03:28 -070076static inline int __const_sigismember(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020077{
78 unsigned long sig = _sig - 1;
79 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW));
80}
81
Joe Perches9551b122008-03-23 01:03:28 -070082static inline int __gen_sigismember(sigset_t *set, int _sig)
Thomas Gleixner33185c52007-10-23 22:37:24 +020083{
84 int ret;
Joe Perches9551b122008-03-23 01:03:28 -070085 asm("btl %2,%1\n\tsbbl %0,%0"
86 : "=r"(ret) : "m"(*set), "Ir"(_sig-1) : "cc");
Thomas Gleixner33185c52007-10-23 22:37:24 +020087 return ret;
88}
89
Joe Perches9551b122008-03-23 01:03:28 -070090#define sigismember(set, sig) \
91 (__builtin_constant_p(sig) \
92 ? __const_sigismember((set), (sig)) \
93 : __gen_sigismember((set), (sig)))
Thomas Gleixner33185c52007-10-23 22:37:24 +020094
Thomas Gleixner33185c52007-10-23 22:37:24 +020095struct pt_regs;
96
Thomas Gleixner33185c52007-10-23 22:37:24 +020097#else /* __i386__ */
98
99#undef __HAVE_ARCH_SIG_BITOPS
100
Roland McGrathe1f28772008-01-30 13:30:50 +0100101#endif /* !__i386__ */
102
Thomas Gleixner33185c52007-10-23 22:37:24 +0200103#endif /* __ASSEMBLY__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700104#endif /* _ASM_X86_SIGNAL_H */