]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/config/cpu/hppa/atomicity.h
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / config / cpu / hppa / atomicity.h
CommitLineData
2c5d0ae8 1// Low-level functions for atomic operations: PA-RISC version -*- C++ -*-
fa3d9f57 2
99dee823 3// Copyright (C) 2002-2021 Free Software Foundation, Inc.
2c5d0ae8
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
2c5d0ae8 9// any later version.
fa3d9f57 10
2c5d0ae8
BK
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.
fa3d9f57 15
748086b7
JJ
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.
19
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/>.
fa3d9f57 24
00d04db6 25#include <bits/c++config.h>
2e362c74 26#include <ext/atomicity.h>
fa3d9f57 27
12ffa228
BK
28namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
29{
30_GLIBCXX_BEGIN_NAMESPACE_VERSION
3cbc7af0 31
00d04db6
BK
32 template<int _Inst>
33 struct _Atomicity_lock
2c5d0ae8
BK
34 {
35 static volatile int _S_atomicity_lock;
36 };
f92ab29f 37
00d04db6 38 template<int _Inst>
2c5d0ae8 39 volatile int
00d04db6 40 _Atomicity_lock<_Inst>::_S_atomicity_lock __attribute__ ((aligned (16))) = 1;
fa3d9f57 41
00d04db6 42 // Because of the lack of weak support when using the hpux som
f83295ba 43 // linker, we explicitly instantiate the atomicity lock.
00d04db6 44 template volatile int _Atomicity_lock<0>::_S_atomicity_lock;
fa3d9f57 45
2c5d0ae8
BK
46 int
47 __attribute__ ((__unused__))
09f2a1e4 48 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw ()
2c5d0ae8
BK
49 {
50 _Atomic_word result;
51 int tmp;
00d04db6 52 volatile int& lock = _Atomicity_lock<0>::_S_atomicity_lock;
f92ab29f 53
2c5d0ae8
BK
54 __asm__ __volatile__ ("ldcw 0(%1),%0\n\t"
55 "cmpib,<>,n 0,%0,.+20\n\t"
56 "ldw 0(%1),%0\n\t"
57 "cmpib,= 0,%0,.-4\n\t"
58 "nop\n\t"
59 "b,n .-20"
60 : "=&r" (tmp)
dd8b67a1
JDA
61 : "r" (&lock)
62 : "memory");
f92ab29f 63
2c5d0ae8
BK
64 result = *__mem;
65 *__mem = result + __val;
8f0d85d6 66 __asm__ __volatile__ ("stw %1,0(%0)"
2c5d0ae8
BK
67 : : "r" (&lock), "r" (tmp) : "memory");
68 return result;
69 }
f92ab29f 70
2c5d0ae8
BK
71 void
72 __attribute__ ((__unused__))
09f2a1e4 73 __atomic_add(volatile _Atomic_word* __mem, int __val) throw ()
2c5d0ae8
BK
74 {
75 int tmp;
00d04db6 76 volatile int& lock = _Atomicity_lock<0>::_S_atomicity_lock;
f92ab29f 77
2c5d0ae8
BK
78 __asm__ __volatile__ ("ldcw 0(%1),%0\n\t"
79 "cmpib,<>,n 0,%0,.+20\n\t"
80 "ldw 0(%1),%0\n\t"
81 "cmpib,= 0,%0,.-4\n\t"
82 "nop\n\t"
83 "b,n .-20"
84 : "=&r" (tmp)
dd8b67a1
JDA
85 : "r" (&lock)
86 : "memory");
f92ab29f 87
2c5d0ae8 88 *__mem += __val;
8f0d85d6 89 __asm__ __volatile__ ("stw %1,0(%0)"
2c5d0ae8
BK
90 : : "r" (&lock), "r" (tmp) : "memory");
91 }
3cbc7af0 92
12ffa228
BK
93_GLIBCXX_END_NAMESPACE_VERSION
94} // namespace