atomic_prv_ppc.h
1 /***************************************************************************
2  Copyright (C) 2002-2014 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef ATOMIC_PRV_PPC_H_
15 #define ATOMIC_PRV_PPC_H_
16 
17 //! memory barriers.
18 inline void readBarrier() {
19  asm volatile( "isync" ::: "memory" );
20 }
21 inline void writeBarrier() {
22  asm volatile( "osync" ::: "memory" );
23 }
24 inline void memoryBarrier() {
25  asm volatile( "sync" ::: "memory" );
26 }
27 //! For spinning.
28 inline void pauseN(unsigned int cnt) {
29  for(unsigned int i = cnt; i != 0; --i)
30  asm volatile( "nop" ::: "memory" );
31 }
32 
33 #define MAX_SIZEOF_CAS SIZEOF_VOID_P
34 template <typename T>
35 //! \return true if old == *target and new value is assigned
36 inline bool atomicCompareAndSet(T oldv, T newv, T *target ) {
37  T ret;
38  asm volatile ( "1: \n"
39  "lwarx %[ret], 0, %[target] \n"
40  "cmpw %[ret], %[oldv] \n"
41  "bne- 2f \n"
42  "stwcx. %[newv], 0, %[target] \n"
43  "bne- 1b \n"
44  "2: "
45  : [ret] "=&r" (ret)
46  : [oldv] "r" (oldv), [newv] "r" (newv), [target] "r" (target)
47  : "cc", "memory");
48  return (ret == oldv);
49 }
50 //! \return target's old value.
51 template <typename T>
52 inline T atomicSwap(T newv, T *target ) {
53  T ret;
54  asm volatile ( "1: \n"
55  "lwarx %[ret], 0, %[target] \n"
56  "stwcx. %[newv], 0, %[target] \n"
57  "bne- 1b"
58  : [ret] "=&r" (ret)
59  : [newv] "r" (newv), [target] "r" (target)
60  : "cc", "memory");
61  return ret;
62 }
63 template <typename T>
64 inline void atomicInc(T *target ) {
65  T ret;
66  asm volatile ( "1: \n"
67  "lwarx %[ret], 0, %[target] \n"
68  "addi %[ret], %[ret], 1 \n"
69  "stwcx. %[ret], 0, %[target] \n"
70  "bne- 1b"
71  : [ret] "=&b" (ret)
72  : [target] "r" (target)
73  : "cc", "memory");
74 }
75 template <typename T>
76 inline void atomicDec(T *target ) {
77  T ret;
78  asm volatile ( "1: \n"
79  "lwarx %[ret], 0, %[target] \n"
80  "addi %[ret], %[ret], -1 \n"
81  "stwcx. %[ret], 0, %[target] \n"
82  "bne- 1b"
83  : [ret] "=&b" (ret)
84  : [target] "r" (target)
85  : "cc", "memory");
86 }
87 template <typename T>
88 inline void atomicAdd(T *target, T x ) {
89  T ret;
90  asm volatile ( "1: \n"
91  " lwarx %[ret], 0, %[target] \n"
92  "add %[ret], %[ret], %[x] \n"
93  "stwcx. %[ret], 0, %[target] \n"
94  "bne- 1b"
95  : [ret] "=&r" (ret)
96  : [target] "r" (target), [x] "r" (x)
97  : "cc", "memory");
98 }
99 //! \return true if new value is zero.
100 template <typename T>
101 inline bool atomicAddAndTest(T *target, T x ) {
102  T ret;
103  asm volatile ( "1: \n"
104  "lwarx %[ret], 0, %[target] \n"
105  "add %[ret], %[ret], %[x] \n"
106  "stwcx. %[ret], 0, %[target] \n"
107  "bne- 1b"
108  : [ret] "=&r" (ret)
109  : [target] "r" (target), [x] "r" (x)
110  : "cc", "memory");
111  return (ret == 0);
112 }
113 //! \return zero flag.
114 template <typename T>
115 inline bool atomicDecAndTest(T *target ) {
116  return atomicAddAndTest(target, (T)-1);
117 }
118 
119 #endif /*ATOMIC_PRV_PPC_H_*/

Generated for KAME4 by  doxygen 1.8.3