]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/c++11/compatibility-atomic-c++0x.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / src / c++11 / compatibility-atomic-c++0x.cc
CommitLineData
1cd6e20d 1// <atomic> compatibility -*- C++ -*-
857d9b7b 2
f1717362 3// Copyright (C) 2008-2016 Free Software Foundation, Inc.
857d9b7b 4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
857d9b7b 9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
6bc9506f 16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
857d9b7b 19
6bc9506f 20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
857d9b7b 24
12d6de4f 25#include "gstdint.h"
2c122b5c 26#include <atomic>
7f74c5ea 27#include <mutex>
857d9b7b 28
1cd6e20d 29// XXX GLIBCXX_ABI Deprecated
30// gcc-4.7.0
31
eaf4b52d 32#ifdef _GLIBCXX_SHARED
08709c1d 33
857d9b7b 34#define LOGSIZE 4
35
36namespace
37{
cb9c4835 38#if defined(_GLIBCXX_HAS_GTHREADS) && defined(_GLIBCXX_USE_C99_STDINT_TR1)
9e57b7da 39 std::mutex&
40 get_atomic_mutex()
41 {
42 static std::mutex atomic_mutex;
43 return atomic_mutex;
44 }
e6dbf630 45#endif
46
2c122b5c 47 std::__atomic_flag_base flag_table[ 1 << LOGSIZE ] =
857d9b7b 48 {
49 ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT,
50 ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT,
51 ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT,
52 ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT, ATOMIC_FLAG_INIT,
53 };
54} // anonymous namespace
55
2948dd21 56namespace std _GLIBCXX_VISIBILITY(default)
57{
58_GLIBCXX_BEGIN_NAMESPACE_VERSION
5022cf3f 59
e6dbf630 60 namespace __atomic0
857d9b7b 61 {
1cd6e20d 62
63 struct atomic_flag : public __atomic_flag_base
64 {
65 bool
66 test_and_set(memory_order) noexcept;
67
68 void
69 clear(memory_order) noexcept;
70 };
71
e6dbf630 72 bool
dad79eaf 73 atomic_flag::test_and_set(memory_order) noexcept
e6dbf630 74 {
cb9c4835 75#if defined(_GLIBCXX_HAS_GTHREADS) && defined(_GLIBCXX_USE_C99_STDINT_TR1)
9e57b7da 76 lock_guard<mutex> __lock(get_atomic_mutex());
857d9b7b 77#endif
e6dbf630 78 bool result = _M_i;
79 _M_i = true;
80 return result;
81 }
857d9b7b 82
e6dbf630 83 void
dad79eaf 84 atomic_flag::clear(memory_order) noexcept
e6dbf630 85 {
cb9c4835 86#if defined(_GLIBCXX_HAS_GTHREADS) && defined(_GLIBCXX_USE_C99_STDINT_TR1)
9e57b7da 87 lock_guard<mutex> __lock(get_atomic_mutex());
857d9b7b 88#endif
e6dbf630 89 _M_i = false;
90 }
1cd6e20d 91 } // namespace __atomic0
c0000147 92
93 _GLIBCXX_BEGIN_EXTERN_C
94
95 bool
96 atomic_flag_test_and_set_explicit(__atomic_flag_base* __a,
97 memory_order __m) _GLIBCXX_NOTHROW
98 {
99 atomic_flag* d = static_cast<atomic_flag*>(__a);
100 return d->test_and_set(__m);
e6dbf630 101 }
857d9b7b 102
c0000147 103 void
104 atomic_flag_clear_explicit(__atomic_flag_base* __a,
105 memory_order __m) _GLIBCXX_NOTHROW
857d9b7b 106 {
c0000147 107 atomic_flag* d = static_cast<atomic_flag*>(__a);
108 return d->clear(__m);
109 }
857d9b7b 110
c0000147 111 void
112 __atomic_flag_wait_explicit(__atomic_flag_base* __a,
113 memory_order __x) _GLIBCXX_NOTHROW
114 {
115 while (atomic_flag_test_and_set_explicit(__a, __x))
116 { };
117 }
857d9b7b 118
c0000147 119 _GLIBCXX_CONST __atomic_flag_base*
120 __atomic_flag_for_address(const volatile void* __z) _GLIBCXX_NOTHROW
121 {
122 uintptr_t __u = reinterpret_cast<uintptr_t>(__z);
123 __u += (__u >> 2) + (__u << 4);
124 __u += (__u >> 7) + (__u << 5);
125 __u += (__u >> 17) + (__u << 13);
126 if (sizeof(uintptr_t) > 4)
127 __u += (__u >> 31);
128 __u &= ~((~uintptr_t(0)) << LOGSIZE);
129 return flag_table + __u;
130 }
857d9b7b 131
c0000147 132 _GLIBCXX_END_EXTERN_C
133
2948dd21 134_GLIBCXX_END_NAMESPACE_VERSION
1cd6e20d 135} // namespace std
2c122b5c 136
08709c1d 137#endif
2c122b5c 138
139// XXX GLIBCXX_ABI Deprecated
140// gcc-4.5.0
141// <atomic> signature changes
142
143// The rename syntax for default exported names is
144// asm (".symver name1,exportedname@GLIBCXX_3.4")
145// asm (".symver name2,exportedname@@GLIBCXX_3.4.5")
146// In the future, GLIBCXX_ABI > 6 should remove all uses of
147// _GLIBCXX_*_SYMVER macros in this file.
148
eaf4b52d 149#if defined(_GLIBCXX_SYMVER_GNU) && defined(_GLIBCXX_SHARED) \
55f10c87 150 && defined(_GLIBCXX_HAVE_AS_SYMVER_DIRECTIVE) \
151 && defined(_GLIBCXX_HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT)
a72916cb 152
2c122b5c 153#define _GLIBCXX_ASM_SYMVER(cur, old, version) \
154 asm (".symver " #cur "," #old "@@" #version);
155
2c122b5c 156_GLIBCXX_ASM_SYMVER(_ZNSt9__atomic011atomic_flag5clearESt12memory_order, _ZNVSt9__atomic011atomic_flag5clearESt12memory_order, GLIBCXX_3.4.11)
157
158_GLIBCXX_ASM_SYMVER(_ZNSt9__atomic011atomic_flag12test_and_setESt12memory_order, _ZNVSt9__atomic011atomic_flag12test_and_setESt12memory_order, GLIBCXX_3.4.11)
a72916cb 159
2c122b5c 160#endif