zig/lib/std/spinlock.zig

71 lines
2.0 KiB
Zig
Raw Normal View History

2019-03-02 13:46:04 -08:00
const std = @import("std.zig");
const builtin = @import("builtin");
const assert = std.debug.assert;
2019-11-05 06:16:08 -08:00
const time = std.time;
2019-11-07 15: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-05 06:16:08 -08:00
// TODO: @atomicStore() https://github.com/ziglang/zig/issues/2995
assert(@atomicRmw(u8, &self.spinlock.lock, .Xchg, 0, .Release) == 1);
}
};
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 06:16:08 -08:00
2019-11-07 13:32:20 -08:00
pub fn yield(iterations: usize) void {
var i = iterations;
while (i != 0) : (i -= 1) {
switch (builtin.arch) {
2019-11-07 13:51:20 -08:00
.i386, .x86_64 => asm volatile("pause"),
.arm, .aarch64 => asm volatile("yield"),
2019-11-07 13:32:20 -08:00
else => time.sleep(0),
}
2019-11-05 06:16:08 -08:00
}
}
2019-11-05 11:43:17 -08:00
/// Provides a method to incrementally yield longer each time its called.
pub const Backoff = struct {
iteration: usize,
2019-11-05 11:43:17 -08:00
pub fn init() @This() {
return @This(){ .iteration = 0 };
}
2019-11-07 13:32:20 -08:00
/// Modified hybrid yielding from
2019-11-05 11: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-07 13:32:20 -08:00
if (self.iteration < 20) {
SpinLock.yield(self.iteration);
} else if (self.iteration < 24) {
2019-11-07 14:33:25 -08:00
os.sched_yield();
} 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();
}