ARM: OMAP2+: Prepare to move GPMC to drivers by platform data header
[linux/fpc-iii.git] / arch / x86 / um / shared / sysdep / stub_32.h
blob51fd256c75f00f8f268f171f50336fa2db8437bc
1 /*
2 * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com)
3 * Licensed under the GPL
4 */
6 #ifndef __SYSDEP_STUB_H
7 #define __SYSDEP_STUB_H
9 #include <asm/ptrace.h>
11 #define STUB_SYSCALL_RET EAX
12 #define STUB_MMAP_NR __NR_mmap2
13 #define MMAP_OFFSET(o) ((o) >> UM_KERN_PAGE_SHIFT)
15 static inline long stub_syscall0(long syscall)
17 long ret;
19 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall));
21 return ret;
24 static inline long stub_syscall1(long syscall, long arg1)
26 long ret;
28 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1));
30 return ret;
33 static inline long stub_syscall2(long syscall, long arg1, long arg2)
35 long ret;
37 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
38 "c" (arg2));
40 return ret;
43 static inline long stub_syscall3(long syscall, long arg1, long arg2, long arg3)
45 long ret;
47 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
48 "c" (arg2), "d" (arg3));
50 return ret;
53 static inline long stub_syscall4(long syscall, long arg1, long arg2, long arg3,
54 long arg4)
56 long ret;
58 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
59 "c" (arg2), "d" (arg3), "S" (arg4));
61 return ret;
64 static inline long stub_syscall5(long syscall, long arg1, long arg2, long arg3,
65 long arg4, long arg5)
67 long ret;
69 __asm__ volatile ("int $0x80" : "=a" (ret) : "0" (syscall), "b" (arg1),
70 "c" (arg2), "d" (arg3), "S" (arg4), "D" (arg5));
72 return ret;
75 static inline void trap_myself(void)
77 __asm("int3");
80 static inline void remap_stack(int fd, unsigned long offset)
82 __asm__ volatile ("movl %%eax,%%ebp ; movl %0,%%eax ; int $0x80 ;"
83 "movl %7, %%ebx ; movl %%eax, (%%ebx)"
84 : : "g" (STUB_MMAP_NR), "b" (STUB_DATA),
85 "c" (UM_KERN_PAGE_SIZE),
86 "d" (PROT_READ | PROT_WRITE),
87 "S" (MAP_FIXED | MAP_SHARED), "D" (fd),
88 "a" (offset),
89 "i" (&((struct stub_data *) STUB_DATA)->err)
90 : "memory");
93 #endif