]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libstdc++-v3/contrib/libstdc++-v3-4.6/config/cpu/sh/atomicity.h
update
[l4.git] / l4 / pkg / libstdc++-v3 / contrib / libstdc++-v3-4.6 / config / cpu / sh / atomicity.h
1 // Low-level functions for atomic operations: sh version  -*- C++ -*-
2
3 // Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2009
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 #ifdef __SH4A__
27
28 #include <ext/atomicity.h>
29
30 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
31 {
32 _GLIBCXX_BEGIN_NAMESPACE_VERSION
33
34   typedef int _Atomic_word;
35
36   _Atomic_word
37   __attribute__ ((__unused__))
38   __exchange_and_add (volatile _Atomic_word* __mem, int __val) throw ()
39   {
40     _Atomic_word __result;
41
42     __asm__ __volatile__
43       ("0:\n"
44        "\tmovli.l\t@%2,r0\n"
45        "\tmov\tr0,%1\n"
46        "\tadd\t%3,r0\n"
47        "\tmovco.l\tr0,@%2\n"
48        "\tbf\t0b"
49        : "+m" (*__mem), "=&r" (__result)
50        : "r" (__mem), "rI08" (__val)
51        : "r0");
52
53     return __result;
54   }
55
56
57   void
58   __attribute__ ((__unused__))
59   __atomic_add (volatile _Atomic_word* __mem, int __val) throw ()
60   {
61     asm("0:\n"
62         "\tmovli.l\t@%1,r0\n"
63         "\tadd\t%2,r0\n"
64         "\tmovco.l\tr0,@%1\n"
65         "\tbf\t0b"
66         : "+m" (*__mem)
67         : "r" (__mem), "rI08" (__val)
68         : "r0");
69   }
70
71 _GLIBCXX_END_NAMESPACE_VERSION
72 } // namespace
73
74 #else /* !__SH4A__ */
75
76 /* This is generic/atomicity.h */
77
78 #include <ext/atomicity.h>
79 #include <ext/concurrence.h>
80
81 namespace 
82 {
83   __gnu_cxx::__mutex atomic_mutex;
84 } // anonymous namespace
85
86 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
87 {
88 _GLIBCXX_BEGIN_NAMESPACE_VERSION
89
90   _Atomic_word
91   __attribute__ ((__unused__))
92   __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw ()
93   {
94     __gnu_cxx::__scoped_lock sentry(atomic_mutex);
95     _Atomic_word __result;
96     __result = *__mem;
97     *__mem += __val;
98     return __result;
99   }
100
101   void
102   __attribute__ ((__unused__))
103   __atomic_add(volatile _Atomic_word* __mem, int __val) throw ()
104   { __exchange_and_add(__mem, __val); }
105
106 _GLIBCXX_END_NAMESPACE_VERSION
107 } // namespace
108
109 #endif /* !__SH4A__ */