Merge branch 'master'
[pandora-kernel.git] / arch / um / include / sysdep-i386 / stub.h
1 /*
2  * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com)
3  * Licensed under the GPL
4  */
5
6 #ifndef __SYSDEP_STUB_H
7 #define __SYSDEP_STUB_H
8
9 #include <asm/ptrace.h>
10 #include <asm/unistd.h>
11
12 extern void stub_segv_handler(int sig);
13 extern void stub_clone_handler(void);
14
15 #define STUB_SYSCALL_RET EAX
16 #define STUB_MMAP_NR __NR_mmap2
17 #define MMAP_OFFSET(o) ((o) >> PAGE_SHIFT)
18
19 static inline long stub_syscall1(long syscall, long arg1)
20 {
21         long ret;
22
23         __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1));
24
25         return ret;
26 }
27
28 static inline long stub_syscall2(long syscall, long arg1, long arg2)
29 {
30         long ret;
31
32         __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
33                         "c" (arg2));
34
35         return ret;
36 }
37
38 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3)
39 {
40         long ret;
41
42         __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
43                         "c" (arg2), "d" (arg3));
44
45         return ret;
46 }
47
48 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3,
49                                  long arg4)
50 {
51         long ret;
52
53         __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
54                         "c" (arg2), "d" (arg3), "S" (arg4));
55
56         return ret;
57 }
58
59 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3,
60                                  long arg4, long arg5)
61 {
62         long ret;
63
64         __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
65                         "c" (arg2), "d" (arg3), "S" (arg4), "D" (arg5));
66
67         return ret;
68 }
69
70 static inline long stub_syscall6(long syscall, long arg1, long arg2, long arg3,
71                                  long arg4, long arg5, long arg6)
72 {
73         long ret;
74
75         __asm__ volatile ("push %%ebp ; movl %%eax,%%ebp ; movl %1,%%eax ; "
76                         "int $0x80 ; pop %%ebp"
77                         : "=a" (ret)
78                         : "g" (syscall), "b" (arg1), "c" (arg2), "d" (arg3),
79                           "S" (arg4), "D" (arg5), "0" (arg6));
80
81         return ret;
82 }
83
84 static inline void trap_myself(void)
85 {
86         __asm("int3");
87 }
88
89 #endif