libgomp/i386: Move syscall asms to static inline wrapper.
authorUros Bizjak <ubizjak@gmail.com>
Thu, 11 Feb 2021 21:48:47 +0000 (22:48 +0100)
committerUros Bizjak <ubizjak@gmail.com>
Thu, 11 Feb 2021 21:49:41 +0000 (22:49 +0100)
Move syscall asms to static inline wrapper functions to improve #ifdeffery.
Also correct output type to int and timeout type to void *.

2021-02-11  Uroš Bizjak  <ubizjak@gmail.com>

libgomp/
* config/linux/x86/futex.h (__futex_wait): New static inline
wrapper function.  Correct output type to int and
timeout type to void *.
(__futex_wake): New static inline wrapper function.
Correct output type to int.
(futex_wait): Use __futex_wait.
(futex_wake): Use __futex_wake.

libgomp/config/linux/x86/futex.h

index 1e01b681401992b0cdb059095fea77fa7f65665f..7807e88e2e0990c2f1017ae51b6272959dbf1ee9 100644 (file)
 #  define SYS_futex    202
 # endif
 
-static inline void
-futex_wait (int *addr, int val)
+static inline int
+__futex_wait (int *addr, int futex_op, int val)
 {
-  long res;
+  int res;
 
-  register long r10 __asm__("%r10") = 0;
+  register void *timeout __asm ("r10") = NULL;
   __asm volatile ("syscall"
                  : "=a" (res)
-                 : "0" (SYS_futex), "D" (addr), "S" (gomp_futex_wait),
-                   "d" (val), "r" (r10)
+                 : "0" (SYS_futex), "D" (addr), "S" (futex_op),
+                   "d" (val), "r" (timeout)
                  : "r11", "rcx", "memory");
-  if (__builtin_expect (res == -ENOSYS, 0))
-    {
-      gomp_futex_wait &= ~FUTEX_PRIVATE_FLAG;
-      gomp_futex_wake &= ~FUTEX_PRIVATE_FLAG;
-      __asm volatile ("syscall"
-                     : "=a" (res)
-                     : "0" (SYS_futex), "D" (addr), "S" (gomp_futex_wait),
-                       "d" (val), "r" (r10)
-                     : "r11", "rcx", "memory");
-    }
+  return res;
 }
 
-static inline void
-futex_wake (int *addr, int count)
+static inline int
+__futex_wake (int *addr, int futex_op, int count)
 {
-  long res;
+  int res;
 
   __asm volatile ("syscall"
                  : "=a" (res)
-                 : "0" (SYS_futex), "D" (addr), "S" (gomp_futex_wake),
+                 : "0" (SYS_futex), "D" (addr), "S" (futex_op),
                    "d" (count)
                  : "r11", "rcx", "memory");
-  if (__builtin_expect (res == -ENOSYS, 0))
-    {
-      gomp_futex_wait &= ~FUTEX_PRIVATE_FLAG;
-      gomp_futex_wake &= ~FUTEX_PRIVATE_FLAG;
-      __asm volatile ("syscall"
-                     : "=a" (res)
-                     : "0" (SYS_futex), "D" (addr), "S" (gomp_futex_wake),
-                       "d" (count)
-                     : "r11", "rcx", "memory");
-    }
+  return res;
 }
 #else
 # ifndef SYS_futex
 #  define SYS_futex    240
 # endif
 
-static inline void
-futex_wait (int *addr, int val)
+static inline int
+__futex_wait (int *addr, int futex_op, int val)
+{
+  int res;
+
+  void *timeout = NULL;
+  __asm volatile ("int $0x80"
+                 : "=a" (res)
+                 : "0" (SYS_futex), "b" (addr), "c" (futex_op),
+                   "d" (val), "S" (timeout)
+                 : "memory");
+  return res;
+}
+
+static inline int
+__futex_wake (int *addr, int futex_op, int count)
 {
-  long res;
+  int res;
 
   __asm volatile ("int $0x80"
                  : "=a" (res)
-                 : "0" (SYS_futex), "b" (addr), "c" (gomp_futex_wait),
-                   "d" (val), "S" (0)
+                 : "0" (SYS_futex), "b" (addr), "c" (futex_op),
+                   "d" (count)
                  : "memory");
+  return res;
+}
+#endif /* __x86_64__ */
+
+static inline void
+futex_wait (int *addr, int val)
+{
+  int res = __futex_wait (addr, gomp_futex_wait, val);
+
   if (__builtin_expect (res == -ENOSYS, 0))
     {
       gomp_futex_wait &= ~FUTEX_PRIVATE_FLAG;
       gomp_futex_wake &= ~FUTEX_PRIVATE_FLAG;
-      __asm volatile ("int $0x80"
-                     : "=a" (res)
-                     : "0" (SYS_futex), "b" (addr), "c" (gomp_futex_wait),
-                       "d" (val), "S" (0)
-                     : "memory");
+
+      __futex_wait (addr, gomp_futex_wait, val);
     }
 }
 
 static inline void
 futex_wake (int *addr, int count)
 {
-  long res;
+  int res = __futex_wake (addr, gomp_futex_wake, count);
 
-  __asm volatile ("int $0x80"
-                 : "=a" (res)
-                 : "0" (SYS_futex), "b" (addr), "c" (gomp_futex_wake),
-                   "d" (count)
-                 : "memory");
   if (__builtin_expect (res == -ENOSYS, 0))
     {
       gomp_futex_wait &= ~FUTEX_PRIVATE_FLAG;
       gomp_futex_wake &= ~FUTEX_PRIVATE_FLAG;
-      __asm volatile ("int $0x80"
-                     : "=a" (res)
-                     : "0" (SYS_futex), "b" (addr), "c" (gomp_futex_wake),
-                       "d" (count)
-                     : "memory");
+
+      __futex_wake (addr, gomp_futex_wake, count);
     }
 }
-#endif /* __x86_64__ */
 
 static inline void
 cpu_relax (void)