syscall_arch.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. #if !defined(__PIC__) || !defined(BROKEN_EBX_ASM)
  34. __asm__ __volatile__ (SYSCALL_INSNS : "=a"(__ret) : "a"(n), "b"(a1), "c"(a2), "d"(a3) : "memory");
  35. #else
  36. __asm__ __volatile__ (SYSCALL_INSNS_34 : "=a"(__ret) : "a"(n), "D"(a1), "c"(a2), "d"(a3) : "memory");
  37. #endif
  38. return __ret;
  39. }
  40. static inline long __syscall4(long n, long a1, long a2, long a3, long a4)
  41. {
  42. unsigned long __ret;
  43. #if !defined(__PIC__) || !defined(BROKEN_EBX_ASM)
  44. __asm__ __volatile__ (SYSCALL_INSNS : "=a"(__ret) : "a"(n), "b"(a1), "c"(a2), "d"(a3), "S"(a4) : "memory");
  45. #else
  46. __asm__ __volatile__ (SYSCALL_INSNS_34 : "=a"(__ret) : "a"(n), "D"(a1), "c"(a2), "d"(a3), "S"(a4) : "memory");
  47. #endif
  48. return __ret;
  49. }
  50. static inline long __syscall5(long n, long a1, long a2, long a3, long a4, long a5)
  51. {
  52. unsigned long __ret;
  53. #if !defined(__PIC__) || !defined(BROKEN_EBX_ASM)
  54. __asm__ __volatile__ (SYSCALL_INSNS
  55. : "=a"(__ret) : "a"(n), "b"(a1), "c"(a2), "d"(a3), "S"(a4), "D"(a5) : "memory");
  56. #else
  57. __asm__ __volatile__ ("pushl %2 ; push %%ebx ; mov 4(%%esp),%%ebx ; " SYSCALL_INSNS " ; pop %%ebx ; add $4,%%esp"
  58. : "=a"(__ret) : "a"(n), "g"(a1), "c"(a2), "d"(a3), "S"(a4), "D"(a5) : "memory");
  59. #endif
  60. return __ret;
  61. }
  62. static inline long __syscall6(long n, long a1, long a2, long a3, long a4, long a5, long a6)
  63. {
  64. unsigned long __ret;
  65. #if !defined(__PIC__) || !defined(BROKEN_EBX_ASM)
  66. __asm__ __volatile__ ("pushl %7 ; push %%ebp ; mov 4(%%esp),%%ebp ; " SYSCALL_INSNS " ; pop %%ebp ; add $4,%%esp"
  67. : "=a"(__ret) : "a"(n), "b"(a1), "c"(a2), "d"(a3), "S"(a4), "D"(a5), "g"(a6) : "memory");
  68. #else
  69. unsigned long a1a6[2] = { a1, a6 };
  70. __asm__ __volatile__ ("pushl %1 ; push %%ebx ; push %%ebp ; mov 8(%%esp),%%ebx ; mov 4(%%ebx),%%ebp ; mov (%%ebx),%%ebx ; " SYSCALL_INSNS " ; pop %%ebp ; pop %%ebx ; add $4,%%esp"
  71. : "=a"(__ret) : "g"(&a1a6), "a"(n), "c"(a2), "d"(a3), "S"(a4), "D"(a5) : "memory");
  72. #endif
  73. return __ret;
  74. }
  75. #define VDSO_USEFUL
  76. #define VDSO_CGT32_SYM "__vdso_clock_gettime"
  77. #define VDSO_CGT32_VER "LINUX_2.6"
  78. #define VDSO_CGT_SYM "__vdso_clock_gettime64"
  79. #define VDSO_CGT_VER "LINUX_2.6"