Home | History | Annotate | Download | only in ext
      1 // Support for atomic operations -*- C++ -*-
      2 
      3 // Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010, 2011, 2012
      4 // Free Software Foundation, Inc.
      5 //
      6 // This file is part of the GNU ISO C++ Library.  This library is free
      7 // software; you can redistribute it and/or modify it under the
      8 // terms of the GNU General Public License as published by the
      9 // Free Software Foundation; either version 3, or (at your option)
     10 // any later version.
     11 
     12 // This library is distributed in the hope that it will be useful,
     13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 // GNU General Public License for more details.
     16 
     17 // Under Section 7 of GPL version 3, you are granted additional
     18 // permissions described in the GCC Runtime Library Exception, version
     19 // 3.1, as published by the Free Software Foundation.
     20 
     21 // You should have received a copy of the GNU General Public License and
     22 // a copy of the GCC Runtime Library Exception along with this program;
     23 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
     24 // <http://www.gnu.org/licenses/>.
     25 
     26 /** @file ext/atomicity.h
     27  *  This file is a GNU extension to the Standard C++ Library.
     28  */
     29 
     30 #ifndef _GLIBCXX_ATOMICITY_H
     31 #define _GLIBCXX_ATOMICITY_H	1
     32 
     33 #include <bits/c++config.h>
     34 #include <bits/gthr.h>
     35 #include <bits/atomic_word.h>
     36 
     37 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
     38 {
     39 _GLIBCXX_BEGIN_NAMESPACE_VERSION
     40 
     41   // Functions for portable atomic access.
     42   // To abstract locking primitives across all thread policies, use:
     43   // __exchange_and_add_dispatch
     44   // __atomic_add_dispatch
     45 #if defined(_GLIBCXX_ATOMIC_BUILTINS) && (!defined(__clang__) || defined(__i386__))
     46   // NOTE: clang arm/mips can't compile the following two library calls yet.
     47   static inline _Atomic_word
     48   __exchange_and_add(volatile _Atomic_word* __mem, int __val)
     49   { return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); }
     50 
     51   static inline void
     52   __atomic_add(volatile _Atomic_word* __mem, int __val)
     53   { __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); }
     54 #else
     55   _Atomic_word
     56   __attribute__ ((__unused__))
     57   __exchange_and_add(volatile _Atomic_word*, int) throw ();
     58 
     59   void
     60   __attribute__ ((__unused__))
     61   __atomic_add(volatile _Atomic_word*, int) throw ();
     62 #endif
     63 
     64   static inline _Atomic_word
     65   __exchange_and_add_single(_Atomic_word* __mem, int __val)
     66   {
     67     _Atomic_word __result = *__mem;
     68     *__mem += __val;
     69     return __result;
     70   }
     71 
     72   static inline void
     73   __atomic_add_single(_Atomic_word* __mem, int __val)
     74   { *__mem += __val; }
     75 
     76   static inline _Atomic_word
     77   __attribute__ ((__unused__))
     78   __exchange_and_add_dispatch(_Atomic_word* __mem, int __val)
     79   {
     80 #ifdef __GTHREADS
     81     if (__gthread_active_p())
     82       return __exchange_and_add(__mem, __val);
     83     else
     84       return __exchange_and_add_single(__mem, __val);
     85 #else
     86     return __exchange_and_add_single(__mem, __val);
     87 #endif
     88   }
     89 
     90   static inline void
     91   __attribute__ ((__unused__))
     92   __atomic_add_dispatch(_Atomic_word* __mem, int __val)
     93   {
     94 #ifdef __GTHREADS
     95     if (__gthread_active_p())
     96       __atomic_add(__mem, __val);
     97     else
     98       __atomic_add_single(__mem, __val);
     99 #else
    100     __atomic_add_single(__mem, __val);
    101 #endif
    102   }
    103 
    104 _GLIBCXX_END_NAMESPACE_VERSION
    105 } // namespace
    106 
    107 // Even if the CPU doesn't need a memory barrier, we need to ensure
    108 // that the compiler doesn't reorder memory accesses across the
    109 // barriers.
    110 #ifndef _GLIBCXX_READ_MEM_BARRIER
    111 #define _GLIBCXX_READ_MEM_BARRIER __asm __volatile ("":::"memory")
    112 #endif
    113 #ifndef _GLIBCXX_WRITE_MEM_BARRIER
    114 #define _GLIBCXX_WRITE_MEM_BARRIER __asm __volatile ("":::"memory")
    115 #endif
    116 
    117 #endif
    118