overhaul i386 syscall mechanism not to depend on external asm source
[musl] / arch / i386 / syscall_arch.h
1 #define __SYSCALL_LL_E(x) \
2 ((union { long long ll; long l[2]; }){ .ll = x }).l[0], \
3 ((union { long long ll; long l[2]; }){ .ll = x }).l[1]
4 #define __SYSCALL_LL_O(x) __SYSCALL_LL_E((x))
5
6 #if SYSCALL_NO_TLS
7 #define SYSCALL_INSNS "int $128"
8 #else
9 #define SYSCALL_INSNS "call *%%gs:16"
10 #endif
11
12 #define SYSCALL_INSNS_12 "xchg %%ebx,%%edx ; " SYSCALL_INSNS " ; xchg %%ebx,%%edx"
13 #define SYSCALL_INSNS_34 "xchg %%ebx,%%edi ; " SYSCALL_INSNS " ; xchg %%ebx,%%edi"
14
15 static inline long __syscall0(long n)
16 {
17         unsigned long __ret;
18         __asm__ __volatile__ (SYSCALL_INSNS : "=a"(__ret) : "a"(n) : "memory");
19         return __ret;
20 }
21
22 static inline long __syscall1(long n, long a1)
23 {
24         unsigned long __ret;
25         __asm__ __volatile__ (SYSCALL_INSNS_12 : "=a"(__ret) : "a"(n), "d"(a1) : "memory");
26         return __ret;
27 }
28
29 static inline long __syscall2(long n, long a1, long a2)
30 {
31         unsigned long __ret;
32         __asm__ __volatile__ (SYSCALL_INSNS_12 : "=a"(__ret) : "a"(n), "d"(a1), "c"(a2) : "memory");
33         return __ret;
34 }
35
36 static inline long __syscall3(long n, long a1, long a2, long a3)
37 {
38         unsigned long __ret;
39         __asm__ __volatile__ (SYSCALL_INSNS_34 : "=a"(__ret) : "a"(n), "D"(a1), "c"(a2), "d"(a3) : "memory");
40         return __ret;
41 }
42
43 static inline long __syscall4(long n, long a1, long a2, long a3, long a4)
44 {
45         unsigned long __ret;
46         __asm__ __volatile__ (SYSCALL_INSNS_34 : "=a"(__ret) : "a"(n), "D"(a1), "c"(a2), "d"(a3), "S"(a4) : "memory");
47         return __ret;
48 }
49
50 static inline long __syscall5(long n, long a1, long a2, long a3, long a4, long a5)
51 {
52         unsigned long __ret, __tmp;
53         __asm__ __volatile__ ("mov %%ebx,%1 ; mov %3,%%ebx ; " SYSCALL_INSNS " ; mov %1,%%ebx"
54                 : "=a"(__ret), "=m"(__tmp) : "a"(n), "g"(a1), "c"(a2), "d"(a3), "S"(a4), "D"(a5) : "memory");
55         return __ret;
56 }
57
58 static inline long __syscall6(long n, long a1, long a2, long a3, long a4, long a5, long a6)
59 {
60         unsigned long __ret, __tmp1, __tmp2;
61         __asm__ __volatile__ ("mov %%ebx,%1 ; mov %%ebp,%2 ; mov %4,%%ebx ; mov %9,%%ebp ; " SYSCALL_INSNS " ; mov %2,%%ebp ; mov %1,%%ebx"
62                 : "=a"(__ret), "=m"(__tmp1), "=m"(__tmp2) : "a"(n), "g"(a1), "c"(a2), "d"(a3), "S"(a4), "D"(a5), "g"(a6) : "memory");
63         return __ret;
64 }
65
66 #define VDSO_USEFUL
67 #define VDSO_CGT_SYM "__vdso_clock_gettime"
68 #define VDSO_CGT_VER "LINUX_2.6"
69
70 #define SYSCALL_USE_SOCKETCALL