4 * License: GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
7 #include "qemu/osdep.h"
8 #include "qemu/atomic.h"
9 #include "qemu/thread.h"
11 #ifdef CONFIG_ATOMIC64
12 #error This file must only be compiled if !CONFIG_ATOMIC64
16 * When !CONFIG_ATOMIC64, we serialize both reads and writes with spinlocks.
17 * We use an array of spinlocks, with padding computed at run-time based on
18 * the host's dcache line size.
19 * We point to the array with a void * to simplify the padding's computation.
20 * Each spinlock is located every lock_size bytes.
22 static void *lock_array;
23 static size_t lock_size;
26 * Systems without CONFIG_ATOMIC64 are unlikely to have many cores, so we use a
27 * small array of locks.
31 static QemuSpin *addr_to_lock(const void *addr)
33 uintptr_t a = (uintptr_t)addr;
36 idx = a >> qemu_dcache_linesize_log;
37 idx ^= (idx >> 8) ^ (idx >> 16);
39 return lock_array + idx * lock_size;
42 #define GEN_READ(name, type) \
43 type name(const type *ptr) \
45 QemuSpin *lock = addr_to_lock(ptr); \
48 qemu_spin_lock(lock); \
50 qemu_spin_unlock(lock); \
54 GEN_READ(atomic_read_i64, int64_t)
55 GEN_READ(atomic_read_u64, uint64_t)
58 #define GEN_SET(name, type) \
59 void name(type *ptr, type val) \
61 QemuSpin *lock = addr_to_lock(ptr); \
63 qemu_spin_lock(lock); \
65 qemu_spin_unlock(lock); \
68 GEN_SET(atomic_set_i64, int64_t)
69 GEN_SET(atomic_set_u64, uint64_t)
72 void atomic64_init(void)
76 lock_size = ROUND_UP(sizeof(QemuSpin), qemu_dcache_linesize);
77 lock_array = qemu_memalign(qemu_dcache_linesize, lock_size * NR_LOCKS);
78 for (i = 0; i < NR_LOCKS; i++) {
79 QemuSpin *lock = lock_array + i * lock_size;