Files
xemu/util/stats64.c
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

149 lines
3.5 KiB
C
Raw Normal View History

2017-06-05 14:38:59 +02:00
/*
* Atomic operations on 64-bit quantities.
*
* Copyright (C) 2017 Red Hat, Inc.
*
* Author: Paolo Bonzini <pbonzini@redhat.com>
*
* This work is licensed under the terms of the GNU GPL, version 2 or later.
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "qemu/atomic.h"
#include "qemu/stats64.h"
#include "qemu/processor.h"
#ifndef CONFIG_ATOMIC64
static inline void stat64_rdlock(Stat64 *s)
{
/* Keep out incoming writers to avoid them starving us. */
2020-09-23 11:56:46 +01:00
qatomic_add(&s->lock, 2);
2017-06-05 14:38:59 +02:00
/* If there is a concurrent writer, wait for it. */
2020-09-23 11:56:46 +01:00
while (qatomic_read(&s->lock) & 1) {
2017-06-05 14:38:59 +02:00
cpu_relax();
}
}
static inline void stat64_rdunlock(Stat64 *s)
{
2020-09-23 11:56:46 +01:00
qatomic_sub(&s->lock, 2);
2017-06-05 14:38:59 +02:00
}
static inline bool stat64_wrtrylock(Stat64 *s)
{
2020-09-23 11:56:46 +01:00
return qatomic_cmpxchg(&s->lock, 0, 1) == 0;
2017-06-05 14:38:59 +02:00
}
static inline void stat64_wrunlock(Stat64 *s)
{
2020-09-23 11:56:46 +01:00
qatomic_dec(&s->lock);
2017-06-05 14:38:59 +02:00
}
uint64_t stat64_get(const Stat64 *s)
{
uint32_t high, low;
stat64_rdlock((Stat64 *)s);
/* 64-bit writes always take the lock, so we can read in
* any order.
*/
2020-09-23 11:56:46 +01:00
high = qatomic_read(&s->high);
low = qatomic_read(&s->low);
2017-06-05 14:38:59 +02:00
stat64_rdunlock((Stat64 *)s);
return ((uint64_t)high << 32) | low;
}
2023-04-27 10:47:58 +02:00
void stat64_set(Stat64 *s, uint64_t val)
{
while (!stat64_wrtrylock(s)) {
cpu_relax();
}
qatomic_set(&s->high, val >> 32);
qatomic_set(&s->low, val);
stat64_wrunlock(s);
}
2017-06-05 14:38:59 +02:00
bool stat64_add32_carry(Stat64 *s, uint32_t low, uint32_t high)
{
uint32_t old;
if (!stat64_wrtrylock(s)) {
cpu_relax();
return false;
}
/* 64-bit reads always take the lock, so they don't care about the
* order of our update. By updating s->low first, we can check
* whether we have to carry into s->high.
*/
2020-09-23 11:56:46 +01:00
old = qatomic_fetch_add(&s->low, low);
2017-06-05 14:38:59 +02:00
high += (old + low) < old;
2020-09-23 11:56:46 +01:00
qatomic_add(&s->high, high);
2017-06-05 14:38:59 +02:00
stat64_wrunlock(s);
return true;
}
bool stat64_min_slow(Stat64 *s, uint64_t value)
{
uint32_t high, low;
uint64_t orig;
if (!stat64_wrtrylock(s)) {
cpu_relax();
return false;
}
2020-09-23 11:56:46 +01:00
high = qatomic_read(&s->high);
low = qatomic_read(&s->low);
2017-06-05 14:38:59 +02:00
orig = ((uint64_t)high << 32) | low;
2017-11-15 00:22:23 +01:00
if (value < orig) {
2017-06-05 14:38:59 +02:00
/* We have to set low before high, just like stat64_min reads
* high before low. The value may become higher temporarily, but
* stat64_get does not notice (it takes the lock) and the only ill
* effect on stat64_min is that the slow path may be triggered
* unnecessarily.
*/
2020-09-23 11:56:46 +01:00
qatomic_set(&s->low, (uint32_t)value);
2017-06-05 14:38:59 +02:00
smp_wmb();
2020-09-23 11:56:46 +01:00
qatomic_set(&s->high, value >> 32);
2017-06-05 14:38:59 +02:00
}
stat64_wrunlock(s);
return true;
}
bool stat64_max_slow(Stat64 *s, uint64_t value)
{
uint32_t high, low;
uint64_t orig;
if (!stat64_wrtrylock(s)) {
cpu_relax();
return false;
}
2020-09-23 11:56:46 +01:00
high = qatomic_read(&s->high);
low = qatomic_read(&s->low);
2017-06-05 14:38:59 +02:00
orig = ((uint64_t)high << 32) | low;
2017-11-15 00:22:23 +01:00
if (value > orig) {
2017-06-05 14:38:59 +02:00
/* We have to set low before high, just like stat64_max reads
* high before low. The value may become lower temporarily, but
* stat64_get does not notice (it takes the lock) and the only ill
* effect on stat64_max is that the slow path may be triggered
* unnecessarily.
*/
2020-09-23 11:56:46 +01:00
qatomic_set(&s->low, (uint32_t)value);
2017-06-05 14:38:59 +02:00
smp_wmb();
2020-09-23 11:56:46 +01:00
qatomic_set(&s->high, value >> 32);
2017-06-05 14:38:59 +02:00
}
stat64_wrunlock(s);
return true;
}
#endif