update ppc atomic code to match the endian-agnostic version on other archs
[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
29         __asm__( "1: lwarx 10, 0, %1\n"
30                  "   stwcx. %3, 0, %1\n"
31                  "   bne- 1b\n"
32                  "   mr %0, 10\n"
33                 : "=r"(t) : "r"(p), "r"(t), "r"(s) : "memory" );
34         return t;
35 }
36
37 static inline void *a_cas_p(volatile void *p, void *t, void *s)
38 {
39         return (void *)a_cas(p, (int)t, (int)s);
40 }
41
42 static inline long a_cas_l(volatile void *p, long t, long s)
43 {
44         return a_cas(p, t, s);
45 }
46
47
48 static inline int a_swap(volatile int *x, int v)
49 {
50         int old;
51         do old = *x;
52         while (a_cas(x, old, v) != old);
53         return old;
54 }
55
56 static inline int a_fetch_add(volatile int *x, int v)
57 {
58         int old;
59         do old = *x;
60         while (a_cas(x, old, old+v) != old);
61         return old;
62 }
63
64 static inline void a_inc(volatile int *x)
65 {
66         a_fetch_add(x, 1);
67 }
68
69 static inline void a_dec(volatile int *x)
70 {
71         a_fetch_add(x, -1);
72 }
73
74 static inline void a_store(volatile int *p, int x)
75 {
76         *p=x;
77 }
78
79 static inline void a_spin()
80 {
81 }
82
83 static inline void a_crash()
84 {
85         *(volatile char *)0=0;
86 }
87
88 static inline void a_and(volatile int *p, int v)
89 {
90         int old;
91         do old = *p;
92         while (a_cas(p, old, old&v) != old);
93 }
94
95 static inline void a_or(volatile int *p, int v)
96 {
97         int old;
98         do old = *p;
99         while (a_cas(p, old, old|v) != old);
100 }
101
102 static inline void a_and_64(volatile uint64_t *p, uint64_t v)
103 {
104         union { uint64_t v; uint32_t r[2]; } u = { v };
105         a_and((int *)p, u.r[0]);
106         a_and((int *)p+1, u.r[1]);
107 }
108
109 static inline void a_or_64(volatile uint64_t *p, uint64_t v)
110 {
111         union { uint64_t v; uint32_t r[2]; } u = { v };
112         a_or((int *)p, u.r[0]);
113         a_or((int *)p+1, u.r[1]);
114 }
115
116 #endif