futex.h (sys_futex0): Remove function.
authorUros Bizjak <uros@gcc.gnu.org>
Thu, 28 May 2015 13:59:17 +0000 (15:59 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Thu, 28 May 2015 13:59:17 +0000 (15:59 +0200)
* config/linux/x86/futex.h (sys_futex0) [!__x86_64__]: Remove function.
(futex_wait) [!__x86_64__]: Use __asm operand instead of sys_futex0.
(futex_wake) [!__x86_64__]: Ditto.

From-SVN: r223821

libgomp/ChangeLog
libgomp/config/linux/x86/futex.h

index a1ea09933facc05eb8be283cfde932d9e68862f8..d12d7bae22d9a13cb70579cde93fd37918384187 100644 (file)
@@ -1,3 +1,9 @@
+2015-05-28  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/linux/x86/futex.h (sys_futex0) [!__x86_64__]: Remove function.
+       (futex_wait) [!__x86_64__]: Use __asm operand instead of sys_futex0.
+       (futex_wake) [!__x86_64__]: Ditto.
+
 2015-05-28  Julian Brown  <julian@codesourcery.com>
 
        * oacc-init.c (resolve_device): Add FAIL_IS_ERROR argument. Update
        (acc_init_1, acc_shutdown_1): Update call to resolve_device. Call
        acc_dev_num_out_of_range as appropriate.
        (acc_get_num_devices, acc_set_device_type, acc_get_device_type)
-       (acc_get_device_num, acc_set_device_num): Update calls to resolve_device.
+       (acc_get_device_num, acc_set_device_num): Update calls to
+       resolve_device.
        * testsuite/libgomp.oacc-c-c++-common/lib-4.c: Update expected test
        output.
 
 2015-05-28  Julian Brown  <julian@codesourcery.com>
 
        PR libgomp/65742
-
        * oacc-init.c (plugin/plugin-host.h): Include.
        (acc_on_device): Check whether we're in an offloaded region for
        host_nonshm
@@ -40,8 +46,7 @@
 
 2015-05-27  Uros Bizjak  <ubizjak@gmail.com>
 
-       * config/linux/x86/futex.h (sys_futex0) [__PIC__]: Remove
-       sys_futex0 function.
+       * config/linux/x86/futex.h (sys_futex0) [__PIC__]: Remove function.
 
 2015-05-27  Chung-Lin Tang  <cltang@codesourcery.com>
 
index 2592217a89033115215375c95b2e4022e6dfbae6..0fe50e851cc18439c30337867f1761c144e19a99 100644 (file)
@@ -81,43 +81,49 @@ futex_wake (int *addr, int count)
 #  define SYS_futex    240
 # endif
 
-static inline long
-sys_futex0 (int *addr, int op, int val)
+static inline void
+futex_wait (int *addr, int val)
 {
   long res;
 
   __asm volatile ("int $0x80"
                  : "=a" (res)
-                 : "0"(SYS_futex), "b" (addr), "c"(op),
-                   "d"(val), "S"(0)
+                 : "0" (SYS_futex), "b" (addr), "c" (gomp_futex_wait),
+                   "d" (val), "S" (0)
                  : "memory");
-  return res;
-}
-
-static inline void
-futex_wait (int *addr, int val)
-{
-  long res = sys_futex0 (addr, gomp_futex_wait, val);
   if (__builtin_expect (res == -ENOSYS, 0))
     {
       gomp_futex_wait &= ~FUTEX_PRIVATE_FLAG;
       gomp_futex_wake &= ~FUTEX_PRIVATE_FLAG;
-      sys_futex0 (addr, gomp_futex_wait, val);
+      __asm volatile ("int $0x80"
+                     : "=a" (res)
+                     : "0" (SYS_futex), "b" (addr), "c" (gomp_futex_wait),
+                       "d" (val), "S" (0)
+                     : "memory");
     }
 }
 
 static inline void
 futex_wake (int *addr, int count)
 {
-  long res = sys_futex0 (addr, gomp_futex_wake, count);
+  long res;
+
+  __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;
-      sys_futex0 (addr, gomp_futex_wake, count);
+      __asm volatile ("int $0x80"
+                     : "=a" (res)
+                     : "0" (SYS_futex), "b" (addr), "c" (gomp_futex_wake),
+                       "d" (count)
+                     : "memory");
     }
 }
-
 #endif /* __x86_64__ */
 
 static inline void