syscall_arch.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. #if SYSCALL_NO_TLS
  6. #define SYSCALL_INSNS "int $128"
  7. #else
  8. #define SYSCALL_INSNS "call *%%gs:16"
  9. #endif
  10. #define SYSCALL_INSNS_12 "xchg %%ebx,%%edx ; " SYSCALL_INSNS " ; xchg %%ebx,%%edx"
  11. #define SYSCALL_INSNS_34 "xchg %%ebx,%%edi ; " SYSCALL_INSNS " ; xchg %%ebx,%%edi"
  12. static inline long __syscall0(long n)
  13. {
  14. unsigned long __ret;
  15. __asm__ __volatile__ (SYSCALL_INSNS : "=a"(__ret) : "a"(n) : "memory");
  16. return __ret;
  17. }
  18. static inline long __syscall1(long n, long a1)
  19. {
  20. unsigned long __ret;
  21. __asm__ __volatile__ (SYSCALL_INSNS_12 : "=a"(__ret) : "a"(n), "d"(a1) : "memory");
  22. return __ret;
  23. }
  24. static inline long __syscall2(long n, long a1, long a2)
  25. {
  26. unsigned long __ret;
  27. __asm__ __volatile__ (SYSCALL_INSNS_12 : "=a"(__ret) : "a"(n), "d"(a1), "c"(a2) : "memory");
  28. return __ret;
  29. }
  30. static inline long __syscall3(long n, long a1, long a2, long a3)
  31. {
  32. unsigned long __ret;
  33. __asm__ __volatile__ (SYSCALL_INSNS_34 : "=a"(__ret) : "a"(n), "D"(a1), "c"(a2), "d"(a3) : "memory");
  34. return __ret;
  35. }
  36. static inline long __syscall4(long n, long a1, long a2, long a3, long a4)
  37. {
  38. unsigned long __ret;
  39. __asm__ __volatile__ (SYSCALL_INSNS_34 : "=a"(__ret) : "a"(n), "D"(a1), "c"(a2), "d"(a3), "S"(a4) : "memory");
  40. return __ret;
  41. }
  42. static inline long __syscall5(long n, long a1, long a2, long a3, long a4, long a5)
  43. {
  44. unsigned long __ret, __tmp;
  45. __asm__ __volatile__ ("mov %%ebx,%1 ; mov %3,%%ebx ; " SYSCALL_INSNS " ; mov %1,%%ebx"
  46. : "=a"(__ret), "=m"(__tmp) : "a"(n), "g"(a1), "c"(a2), "d"(a3), "S"(a4), "D"(a5) : "memory");
  47. return __ret;
  48. }
  49. static inline long __syscall6(long n, long a1, long a2, long a3, long a4, long a5, long a6)
  50. {
  51. unsigned long __ret, __tmp1, __tmp2;
  52. __asm__ __volatile__ ("mov %%ebx,%1 ; mov %%ebp,%2 ; mov %4,%%ebx ; mov %9,%%ebp ; " SYSCALL_INSNS " ; mov %2,%%ebp ; mov %1,%%ebx"
  53. : "=a"(__ret), "=m"(__tmp1), "=m"(__tmp2) : "a"(n), "g"(a1), "c"(a2), "d"(a3), "S"(a4), "D"(a5), "g"(a6) : "memory");
  54. return __ret;
  55. }
  56. #define VDSO_USEFUL
  57. #define VDSO_CGT_SYM "__vdso_clock_gettime"
  58. #define VDSO_CGT_VER "LINUX_2.6"
  59. #define SYSCALL_USE_SOCKETCALL