add working a_spin() atomic for non-x86 targets
[musl] / arch / powerpc / atomic.h
1 #ifndef _INTERNAL_ATOMIC_H
2 #define _INTERNAL_ATOMIC_H
3
4 #include <stdint.h>
5 #include <endian.h>
6
7 static inline int a_ctz_l(unsigned long x)
8 {
9         static const char debruijn32[32] = {
10                 0, 1, 23, 2, 29, 24, 19, 3, 30, 27, 25, 11, 20, 8, 4, 13,
11                 31, 22, 28, 18, 26, 10, 7, 12, 21, 17, 9, 6, 16, 5, 15, 14
12         };
13         return debruijn32[(x&-x)*0x076be629 >> 27];
14 }
15
16 static inline int a_ctz_64(uint64_t x)
17 {
18         uint32_t y = x;
19         if (!y) {
20                 y = x>>32;
21                 return 32 + a_ctz_l(y);
22         }
23         return a_ctz_l(y);
24 }
25
26 static inline int a_cas(volatile int *p, int t, int s)
27 {
28         __asm__("\n"
29                 "       sync\n"
30                 "1:     lwarx %0, 0, %4\n"
31                 "       cmpw %0, %2\n"
32                 "       bne 1f\n"
33                 "       stwcx. %3, 0, %4\n"
34                 "       bne- 1b\n"
35                 "       isync\n"
36                 "1:     \n"
37                 : "=&r"(t), "+m"(*p) : "r"(t), "r"(s), "r"(p) : "cc", "memory" );
38         return t;
39 }
40
41 static inline void *a_cas_p(volatile void *p, void *t, void *s)
42 {
43         return (void *)a_cas(p, (int)t, (int)s);
44 }
45
46 static inline int a_swap(volatile int *x, int v)
47 {
48         int old;
49         do old = *x;
50         while (a_cas(x, old, v) != old);
51         return old;
52 }
53
54 static inline int a_fetch_add(volatile int *x, int v)
55 {
56         int old;
57         do old = *x;
58         while (a_cas(x, old, old+v) != old);
59         return old;
60 }
61
62 static inline void a_inc(volatile int *x)
63 {
64         a_fetch_add(x, 1);
65 }
66
67 static inline void a_dec(volatile int *x)
68 {
69         a_fetch_add(x, -1);
70 }
71
72 static inline void a_store(volatile int *p, int x)
73 {
74         __asm__ __volatile__ ("\n"
75                 "       sync\n"
76                 "       stw %1, %0\n"
77                 "       isync\n"
78                 : "=m"(*p) : "r"(x) : "memory" );
79 }
80
81 static inline void a_spin()
82 {
83         a_cas(&(int){0}, 0, 0);
84 }
85
86 static inline void a_crash()
87 {
88         *(volatile char *)0=0;
89 }
90
91 static inline void a_and(volatile int *p, int v)
92 {
93         int old;
94         do old = *p;
95         while (a_cas(p, old, old&v) != old);
96 }
97
98 static inline void a_or(volatile int *p, int v)
99 {
100         int old;
101         do old = *p;
102         while (a_cas(p, old, old|v) != old);
103 }
104
105 static inline void a_or_l(volatile void *p, long v)
106 {
107         a_or(p, v);
108 }
109
110 static inline void a_and_64(volatile uint64_t *p, uint64_t v)
111 {
112         union { uint64_t v; uint32_t r[2]; } u = { v };
113         a_and((int *)p, u.r[0]);
114         a_and((int *)p+1, u.r[1]);
115 }
116
117 static inline void a_or_64(volatile uint64_t *p, uint64_t v)
118 {
119         union { uint64_t v; uint32_t r[2]; } u = { v };
120         a_or((int *)p, u.r[0]);
121         a_or((int *)p+1, u.r[1]);
122 }
123
124 #endif