]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/config/cpu/hppa/atomicity.h
prj-nmsc.adb (Check_Naming_Ada_Only): Properly initialize the separate_suffix to...
[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
748086b7 3// Copyright (C) 2002, 2004, 2005, 2009 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
3cbc7af0
BK
28_GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
29
00d04db6
BK
30 template<int _Inst>
31 struct _Atomicity_lock
2c5d0ae8
BK
32 {
33 static volatile int _S_atomicity_lock;
34 };
35
00d04db6 36 template<int _Inst>
2c5d0ae8 37 volatile int
00d04db6 38 _Atomicity_lock<_Inst>::_S_atomicity_lock __attribute__ ((aligned (16))) = 1;
fa3d9f57 39
00d04db6 40 // Because of the lack of weak support when using the hpux som
f83295ba 41 // linker, we explicitly instantiate the atomicity lock.
00d04db6 42 template volatile int _Atomicity_lock<0>::_S_atomicity_lock;
fa3d9f57 43
2c5d0ae8
BK
44 int
45 __attribute__ ((__unused__))
46 __exchange_and_add(volatile _Atomic_word* __mem, int __val)
47 {
48 _Atomic_word result;
49 int tmp;
00d04db6 50 volatile int& lock = _Atomicity_lock<0>::_S_atomicity_lock;
2c5d0ae8
BK
51
52 __asm__ __volatile__ ("ldcw 0(%1),%0\n\t"
53 "cmpib,<>,n 0,%0,.+20\n\t"
54 "ldw 0(%1),%0\n\t"
55 "cmpib,= 0,%0,.-4\n\t"
56 "nop\n\t"
57 "b,n .-20"
58 : "=&r" (tmp)
dd8b67a1
JDA
59 : "r" (&lock)
60 : "memory");
2c5d0ae8
BK
61
62 result = *__mem;
63 *__mem = result + __val;
8f0d85d6 64 __asm__ __volatile__ ("stw %1,0(%0)"
2c5d0ae8
BK
65 : : "r" (&lock), "r" (tmp) : "memory");
66 return result;
67 }
68
69 void
70 __attribute__ ((__unused__))
3a1a4ed2 71 __atomic_add(volatile _Atomic_word* __mem, int __val)
2c5d0ae8
BK
72 {
73 int tmp;
00d04db6 74 volatile int& lock = _Atomicity_lock<0>::_S_atomicity_lock;
2c5d0ae8
BK
75
76 __asm__ __volatile__ ("ldcw 0(%1),%0\n\t"
77 "cmpib,<>,n 0,%0,.+20\n\t"
78 "ldw 0(%1),%0\n\t"
79 "cmpib,= 0,%0,.-4\n\t"
80 "nop\n\t"
81 "b,n .-20"
82 : "=&r" (tmp)
dd8b67a1
JDA
83 : "r" (&lock)
84 : "memory");
2c5d0ae8
BK
85
86 *__mem += __val;
8f0d85d6 87 __asm__ __volatile__ ("stw %1,0(%0)"
2c5d0ae8
BK
88 : : "r" (&lock), "r" (tmp) : "memory");
89 }
3cbc7af0
BK
90
91_GLIBCXX_END_NAMESPACE