config/linux/s390/futex.h

Go to the documentation of this file.
00001 /* Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc.
00002    Contributed by Jakub Jelinek <jakub@redhat.com>.
00003 
00004    This file is part of the GNU OpenMP Library (libgomp).
00005 
00006    Libgomp is free software; you can redistribute it and/or modify it
00007    under the terms of the GNU General Public License as published by
00008    the Free Software Foundation; either version 3, or (at your option)
00009    any later version.
00010 
00011    Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
00012    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
00013    FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
00014    more details.
00015 
00016    Under Section 7 of GPL version 3, you are granted additional
00017    permissions described in the GCC Runtime Library Exception, version
00018    3.1, as published by the Free Software Foundation.
00019 
00020    You should have received a copy of the GNU General Public License and
00021    a copy of the GCC Runtime Library Exception along with this program;
00022    see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
00023    <http://www.gnu.org/licenses/>.  */
00024 
00025 /* Provide target-specific access to the futex system call.  */
00026 
00027 #include <sys/syscall.h>
00028 
00029 static inline long
00030 sys_futex0 (int *addr, int op, int val)
00031 {
00032   register long int gpr2  __asm__ ("2");
00033   register long int gpr3  __asm__ ("3");
00034   register long int gpr4  __asm__ ("4");
00035   register long int gpr5  __asm__ ("5");
00036 
00037   gpr2 = (long) addr;
00038   gpr3 = op;
00039   gpr4 = val;
00040   gpr5 = 0;
00041 
00042   __asm volatile ("svc %b1"
00043           : "=d" (gpr2)
00044           : "i" (SYS_futex),
00045             "0" (gpr2), "d" (gpr3), "d" (gpr4), "d" (gpr5)
00046           : "memory");
00047   return gpr2;
00048 }
00049 
00050 static inline void
00051 futex_wait (int *addr, int val)
00052 {
00053   long err = sys_futex0 (addr, gomp_futex_wait, val);
00054   if (__builtin_expect (err == -ENOSYS, 0))
00055     {
00056       gomp_futex_wait &= ~FUTEX_PRIVATE_FLAG;
00057       gomp_futex_wake &= ~FUTEX_PRIVATE_FLAG;
00058       sys_futex0 (addr, gomp_futex_wait, val);
00059     }
00060 }
00061 
00062 static inline void
00063 futex_wake (int *addr, int count)
00064 {
00065   long err = sys_futex0 (addr, gomp_futex_wake, count);
00066   if (__builtin_expect (err == -ENOSYS, 0))
00067     {
00068       gomp_futex_wait &= ~FUTEX_PRIVATE_FLAG;
00069       gomp_futex_wake &= ~FUTEX_PRIVATE_FLAG;
00070       sys_futex0 (addr, gomp_futex_wake, count);
00071     }
00072 }
00073 
00074 static inline void
00075 cpu_relax (void)
00076 {
00077   __asm volatile ("" : : : "memory");
00078 }
00079 
00080 static inline void
00081 atomic_write_barrier (void)
00082 {
00083   __sync_synchronize ();
00084 }

Generated on Fri Apr 5 05:38:09 2013 for Libgomp by  doxygen 1.4.7