2022-03-17 12:29:07 +01:00
|
|
|
use crate::sync::atomic::{
|
2022-04-14 11:11:41 +02:00
|
|
|
AtomicU32,
|
2022-03-17 12:29:07 +01:00
|
|
|
Ordering::{Acquire, Relaxed, Release},
|
|
|
|
|
};
|
|
|
|
|
use crate::sys::futex::{futex_wait, futex_wake, futex_wake_all};
|
|
|
|
|
use crate::time::Duration;
|
|
|
|
|
|
|
|
|
|
pub type MovableMutex = Mutex;
|
|
|
|
|
pub type MovableCondvar = Condvar;
|
|
|
|
|
|
|
|
|
|
pub struct Mutex {
|
|
|
|
|
/// 0: unlocked
|
|
|
|
|
/// 1: locked, no other threads waiting
|
|
|
|
|
/// 2: locked, and other threads waiting (contended)
|
2022-04-14 09:51:25 +02:00
|
|
|
futex: AtomicU32,
|
2022-03-17 12:29:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Mutex {
|
2022-04-05 13:58:10 +02:00
|
|
|
#[inline]
|
2022-03-17 12:29:07 +01:00
|
|
|
pub const fn new() -> Self {
|
2022-04-14 09:51:25 +02:00
|
|
|
Self { futex: AtomicU32::new(0) }
|
2022-03-17 12:29:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn init(&mut self) {}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn try_lock(&self) -> bool {
|
|
|
|
|
self.futex.compare_exchange(0, 1, Acquire, Relaxed).is_ok()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn lock(&self) {
|
|
|
|
|
if self.futex.compare_exchange(0, 1, Acquire, Relaxed).is_err() {
|
|
|
|
|
self.lock_contended();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-01 11:11:28 +02:00
|
|
|
#[cold]
|
2022-03-17 12:29:07 +01:00
|
|
|
fn lock_contended(&self) {
|
2022-03-21 14:53:00 +01:00
|
|
|
// Spin first to speed things up if the lock is released quickly.
|
|
|
|
|
let mut state = self.spin();
|
|
|
|
|
|
|
|
|
|
// If it's unlocked now, attempt to take the lock
|
|
|
|
|
// without marking it as contended.
|
|
|
|
|
if state == 0 {
|
|
|
|
|
match self.futex.compare_exchange(0, 1, Acquire, Relaxed) {
|
|
|
|
|
Ok(_) => return, // Locked!
|
|
|
|
|
Err(s) => state = s,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-17 12:29:07 +01:00
|
|
|
loop {
|
2022-03-21 14:53:00 +01:00
|
|
|
// Put the lock in contended state.
|
|
|
|
|
// We avoid an unnecessary write if it as already set to 2,
|
|
|
|
|
// to be friendlier for the caches.
|
|
|
|
|
if state != 2 && self.futex.swap(2, Acquire) == 0 {
|
|
|
|
|
// We changed it from 0 to 2, so we just succesfully locked it.
|
2022-03-17 12:29:07 +01:00
|
|
|
return;
|
|
|
|
|
}
|
2022-03-21 14:53:00 +01:00
|
|
|
|
|
|
|
|
// Wait for the futex to change state, assuming it is still 2.
|
2022-03-17 12:29:07 +01:00
|
|
|
futex_wait(&self.futex, 2, None);
|
2022-03-21 14:53:00 +01:00
|
|
|
|
|
|
|
|
// Spin again after waking up.
|
|
|
|
|
state = self.spin();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-14 09:51:25 +02:00
|
|
|
fn spin(&self) -> u32 {
|
2022-03-21 14:53:00 +01:00
|
|
|
let mut spin = 100;
|
|
|
|
|
loop {
|
|
|
|
|
// We only use `load` (and not `swap` or `compare_exchange`)
|
|
|
|
|
// while spinning, to be easier on the caches.
|
|
|
|
|
let state = self.futex.load(Relaxed);
|
|
|
|
|
|
2022-04-01 11:11:46 +02:00
|
|
|
// We stop spinning when the mutex is unlocked (0),
|
|
|
|
|
// but also when it's contended (2).
|
|
|
|
|
if state != 1 || spin == 0 {
|
2022-03-21 14:53:00 +01:00
|
|
|
return state;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
crate::hint::spin_loop();
|
|
|
|
|
spin -= 1;
|
2022-03-17 12:29:07 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn unlock(&self) {
|
|
|
|
|
if self.futex.swap(0, Release) == 2 {
|
|
|
|
|
// We only wake up one thread. When that thread locks the mutex, it
|
|
|
|
|
// will mark the mutex as contended (2) (see lock_contended above),
|
|
|
|
|
// which makes sure that any other waiting threads will also be
|
|
|
|
|
// woken up eventually.
|
2022-04-01 11:11:28 +02:00
|
|
|
self.wake();
|
2022-03-17 12:29:07 +01:00
|
|
|
}
|
|
|
|
|
}
|
2022-04-01 11:11:28 +02:00
|
|
|
|
|
|
|
|
#[cold]
|
|
|
|
|
fn wake(&self) {
|
|
|
|
|
futex_wake(&self.futex);
|
|
|
|
|
}
|
2022-03-17 12:29:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct Condvar {
|
|
|
|
|
// The value of this atomic is simply incremented on every notification.
|
|
|
|
|
// This is used by `.wait()` to not miss any notifications after
|
|
|
|
|
// unlocking the mutex and before waiting for notifications.
|
2022-04-14 09:51:25 +02:00
|
|
|
futex: AtomicU32,
|
2022-03-17 12:29:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Condvar {
|
|
|
|
|
#[inline]
|
|
|
|
|
pub const fn new() -> Self {
|
2022-04-14 09:51:25 +02:00
|
|
|
Self { futex: AtomicU32::new(0) }
|
2022-03-17 12:29:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// All the memory orderings here are `Relaxed`,
|
|
|
|
|
// because synchronization is done by unlocking and locking the mutex.
|
|
|
|
|
|
|
|
|
|
pub unsafe fn notify_one(&self) {
|
|
|
|
|
self.futex.fetch_add(1, Relaxed);
|
|
|
|
|
futex_wake(&self.futex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub unsafe fn notify_all(&self) {
|
|
|
|
|
self.futex.fetch_add(1, Relaxed);
|
|
|
|
|
futex_wake_all(&self.futex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub unsafe fn wait(&self, mutex: &Mutex) {
|
|
|
|
|
self.wait_optional_timeout(mutex, None);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub unsafe fn wait_timeout(&self, mutex: &Mutex, timeout: Duration) -> bool {
|
|
|
|
|
self.wait_optional_timeout(mutex, Some(timeout))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe fn wait_optional_timeout(&self, mutex: &Mutex, timeout: Option<Duration>) -> bool {
|
2022-04-05 17:08:12 +02:00
|
|
|
// Examine the notification counter _before_ we unlock the mutex.
|
2022-03-17 12:29:07 +01:00
|
|
|
let futex_value = self.futex.load(Relaxed);
|
|
|
|
|
|
|
|
|
|
// Unlock the mutex before going to sleep.
|
|
|
|
|
mutex.unlock();
|
|
|
|
|
|
|
|
|
|
// Wait, but only if there hasn't been any
|
|
|
|
|
// notification since we unlocked the mutex.
|
|
|
|
|
let r = futex_wait(&self.futex, futex_value, timeout);
|
|
|
|
|
|
|
|
|
|
// Lock the mutex again.
|
|
|
|
|
mutex.lock();
|
|
|
|
|
|
|
|
|
|
r
|
|
|
|
|
}
|
|
|
|
|
}
|