1
2
3
4
5
6
7
8
9
10
11
12#include "qemu/osdep.h"
13#include "qemu/atomic.h"
14#include "qemu/stats64.h"
15#include "qemu/processor.h"
16
17#ifndef CONFIG_ATOMIC64
18static inline void stat64_rdlock(Stat64 *s)
19{
20
21 atomic_add(&s->lock, 2);
22
23
24 while (atomic_read(&s->lock) & 1) {
25 cpu_relax();
26 }
27}
28
29static inline void stat64_rdunlock(Stat64 *s)
30{
31 atomic_sub(&s->lock, 2);
32}
33
34static inline bool stat64_wrtrylock(Stat64 *s)
35{
36 return atomic_cmpxchg(&s->lock, 0, 1) == 0;
37}
38
39static inline void stat64_wrunlock(Stat64 *s)
40{
41 atomic_dec(&s->lock);
42}
43
44uint64_t stat64_get(const Stat64 *s)
45{
46 uint32_t high, low;
47
48 stat64_rdlock((Stat64 *)s);
49
50
51
52
53 high = atomic_read(&s->high);
54 low = atomic_read(&s->low);
55 stat64_rdunlock((Stat64 *)s);
56
57 return ((uint64_t)high << 32) | low;
58}
59
60bool stat64_add32_carry(Stat64 *s, uint32_t low, uint32_t high)
61{
62 uint32_t old;
63
64 if (!stat64_wrtrylock(s)) {
65 cpu_relax();
66 return false;
67 }
68
69
70
71
72
73 old = atomic_fetch_add(&s->low, low);
74 high += (old + low) < old;
75 atomic_add(&s->high, high);
76 stat64_wrunlock(s);
77 return true;
78}
79
80bool stat64_min_slow(Stat64 *s, uint64_t value)
81{
82 uint32_t high, low;
83 uint64_t orig;
84
85 if (!stat64_wrtrylock(s)) {
86 cpu_relax();
87 return false;
88 }
89
90 high = atomic_read(&s->high);
91 low = atomic_read(&s->low);
92
93 orig = ((uint64_t)high << 32) | low;
94 if (value < orig) {
95
96
97
98
99
100
101 atomic_set(&s->low, (uint32_t)value);
102 smp_wmb();
103 atomic_set(&s->high, value >> 32);
104 }
105 stat64_wrunlock(s);
106 return true;
107}
108
109bool stat64_max_slow(Stat64 *s, uint64_t value)
110{
111 uint32_t high, low;
112 uint64_t orig;
113
114 if (!stat64_wrtrylock(s)) {
115 cpu_relax();
116 return false;
117 }
118
119 high = atomic_read(&s->high);
120 low = atomic_read(&s->low);
121
122 orig = ((uint64_t)high << 32) | low;
123 if (value > orig) {
124
125
126
127
128
129
130 atomic_set(&s->low, (uint32_t)value);
131 smp_wmb();
132 atomic_set(&s->high, value >> 32);
133 }
134 stat64_wrunlock(s);
135 return true;
136}
137#endif
138