zig/lib/std/spinlock.zig

70 lines
1.9 KiB
Zig
Raw Normal View History

2019-03-03 05:46:04 +08:00
const std = @import("std.zig");
const builtin = @import("builtin");
const assert = std.debug.assert;
2019-11-05 22:16:08 +08:00
const time = std.time;
2019-11-08 07:14:08 +08:00
const os = std.os;
pub const SpinLock = struct {
lock: u8, // TODO use a bool or enum
pub const Held = struct {
spinlock: *SpinLock,
pub fn release(self: Held) void {
2019-11-13 06:45:37 +08:00
@atomicStore(u8, &self.spinlock.lock, 0, .Release);
}
};
pub fn init() SpinLock {
return SpinLock{ .lock = 0 };
}
pub fn acquire(self: *SpinLock) Held {
var backoff = Backoff.init();
while (@atomicRmw(u8, &self.lock, .Xchg, 1, .Acquire) != 0)
backoff.yield();
return Held{ .spinlock = self };
}
2019-11-05 22:16:08 +08:00
2019-11-08 05:32:20 +08:00
pub fn yield(iterations: usize) void {
var i = iterations;
while (i != 0) : (i -= 1) {
switch (builtin.arch) {
2019-11-08 14:52:23 +08:00
.i386, .x86_64 => asm volatile ("pause"),
.arm, .aarch64 => asm volatile ("yield"),
2019-11-08 05:32:20 +08:00
else => time.sleep(0),
}
2019-11-05 22:16:08 +08:00
}
}
2019-11-06 03:43:17 +08:00
/// Provides a method to incrementally yield longer each time its called.
pub const Backoff = struct {
iteration: usize,
2019-11-06 03:43:17 +08:00
pub fn init() @This() {
return @This(){ .iteration = 0 };
}
2019-11-08 05:32:20 +08:00
/// Modified hybrid yielding from
2019-11-06 03:43:17 +08:00
/// http://www.1024cores.net/home/lock-free-algorithms/tricks/spinning
pub fn yield(self: *@This()) void {
defer self.iteration +%= 1;
2019-11-08 05:32:20 +08:00
if (self.iteration < 20) {
SpinLock.yield(self.iteration);
} else if (self.iteration < 24) {
2019-11-08 14:52:23 +08:00
os.sched_yield() catch time.sleep(1);
} else if (self.iteration < 26) {
time.sleep(1 * time.millisecond);
} else {
time.sleep(10 * time.millisecond);
}
}
};
};
test "spinlock" {
var lock = SpinLock.init();
const held = lock.acquire();
defer held.release();
}