2018-04-28 15:00:51 -07:00
|
|
|
const builtin = @import("builtin");
|
|
|
|
const AtomicOrder = builtin.AtomicOrder;
|
|
|
|
const AtomicRmwOp = builtin.AtomicRmwOp;
|
|
|
|
|
2018-04-27 16:27:58 -07:00
|
|
|
/// Many reader, many writer, non-allocating, thread-safe, lock-free
|
|
|
|
pub fn Queue(comptime T: type) type {
|
|
|
|
return struct {
|
2018-05-31 07:56:59 -07:00
|
|
|
head: *Node,
|
|
|
|
tail: *Node,
|
2018-04-27 16:27:58 -07:00
|
|
|
root: Node,
|
|
|
|
|
|
|
|
pub const Self = this;
|
|
|
|
|
|
|
|
pub const Node = struct {
|
2018-05-31 07:56:59 -07:00
|
|
|
next: ?*Node,
|
2018-04-27 16:27:58 -07:00
|
|
|
data: T,
|
|
|
|
};
|
|
|
|
|
2018-05-24 18:27:44 -07:00
|
|
|
// TODO: well defined copy elision: https://github.com/ziglang/zig/issues/287
|
2018-05-31 07:56:59 -07:00
|
|
|
pub fn init(self: *Self) void {
|
2018-04-27 16:27:58 -07:00
|
|
|
self.root.next = null;
|
|
|
|
self.head = &self.root;
|
|
|
|
self.tail = &self.root;
|
|
|
|
}
|
|
|
|
|
2018-05-31 07:56:59 -07:00
|
|
|
pub fn put(self: *Self, node: *Node) void {
|
2018-04-27 16:27:58 -07:00
|
|
|
node.next = null;
|
|
|
|
|
2018-05-31 07:56:59 -07:00
|
|
|
const tail = @atomicRmw(*Node, &self.tail, AtomicRmwOp.Xchg, node, AtomicOrder.SeqCst);
|
|
|
|
_ = @atomicRmw(?*Node, &tail.next, AtomicRmwOp.Xchg, node, AtomicOrder.SeqCst);
|
2018-04-27 16:27:58 -07:00
|
|
|
}
|
|
|
|
|
2018-05-31 07:56:59 -07:00
|
|
|
pub fn get(self: *Self) ?*Node {
|
|
|
|
var head = @atomicLoad(*Node, &self.head, AtomicOrder.SeqCst);
|
2018-04-27 16:27:58 -07:00
|
|
|
while (true) {
|
2018-06-09 22:13:51 -07:00
|
|
|
const node = head.next orelse return null;
|
|
|
|
head = @cmpxchgWeak(*Node, &self.head, head, node, AtomicOrder.SeqCst, AtomicOrder.SeqCst) orelse return node;
|
2018-04-27 16:27:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2018-04-28 15:00:51 -07:00
|
|
|
|
|
|
|
const std = @import("std");
|
|
|
|
const Context = struct {
|
2018-05-31 07:56:59 -07:00
|
|
|
allocator: *std.mem.Allocator,
|
|
|
|
queue: *Queue(i32),
|
2018-04-28 15:00:51 -07:00
|
|
|
put_sum: isize,
|
|
|
|
get_sum: isize,
|
|
|
|
get_count: usize,
|
|
|
|
puts_done: u8, // TODO make this a bool
|
|
|
|
};
|
2018-05-02 18:34:34 -07:00
|
|
|
|
|
|
|
// TODO add lazy evaluated build options and then put puts_per_thread behind
|
|
|
|
// some option such as: "AggressiveMultithreadedFuzzTest". In the AppVeyor
|
|
|
|
// CI we would use a less aggressive setting since at 1 core, while we still
|
|
|
|
// want this test to pass, we need a smaller value since there is so much thrashing
|
|
|
|
// we would also use a less aggressive setting when running in valgrind
|
|
|
|
const puts_per_thread = 500;
|
2018-04-28 15:00:51 -07:00
|
|
|
const put_thread_count = 3;
|
|
|
|
|
|
|
|
test "std.atomic.queue" {
|
|
|
|
var direct_allocator = std.heap.DirectAllocator.init();
|
|
|
|
defer direct_allocator.deinit();
|
|
|
|
|
2018-05-02 18:34:34 -07:00
|
|
|
var plenty_of_memory = try direct_allocator.allocator.alloc(u8, 300 * 1024);
|
2018-04-28 15:00:51 -07:00
|
|
|
defer direct_allocator.allocator.free(plenty_of_memory);
|
|
|
|
|
|
|
|
var fixed_buffer_allocator = std.heap.ThreadSafeFixedBufferAllocator.init(plenty_of_memory);
|
|
|
|
var a = &fixed_buffer_allocator.allocator;
|
|
|
|
|
|
|
|
var queue: Queue(i32) = undefined;
|
|
|
|
queue.init();
|
2018-05-09 21:29:49 -07:00
|
|
|
var context = Context{
|
2018-04-28 15:00:51 -07:00
|
|
|
.allocator = a,
|
|
|
|
.queue = &queue,
|
|
|
|
.put_sum = 0,
|
|
|
|
.get_sum = 0,
|
|
|
|
.puts_done = 0,
|
|
|
|
.get_count = 0,
|
|
|
|
};
|
|
|
|
|
2018-05-31 07:56:59 -07:00
|
|
|
var putters: [put_thread_count]*std.os.Thread = undefined;
|
2018-04-28 15:00:51 -07:00
|
|
|
for (putters) |*t| {
|
2018-05-09 21:29:49 -07:00
|
|
|
t.* = try std.os.spawnThread(&context, startPuts);
|
2018-04-28 15:00:51 -07:00
|
|
|
}
|
2018-05-31 07:56:59 -07:00
|
|
|
var getters: [put_thread_count]*std.os.Thread = undefined;
|
2018-04-28 15:00:51 -07:00
|
|
|
for (getters) |*t| {
|
2018-05-09 21:29:49 -07:00
|
|
|
t.* = try std.os.spawnThread(&context, startGets);
|
2018-04-28 15:00:51 -07:00
|
|
|
}
|
|
|
|
|
2018-05-09 21:29:49 -07:00
|
|
|
for (putters) |t|
|
|
|
|
t.wait();
|
2018-04-28 15:00:51 -07:00
|
|
|
_ = @atomicRmw(u8, &context.puts_done, builtin.AtomicRmwOp.Xchg, 1, AtomicOrder.SeqCst);
|
2018-05-09 21:29:49 -07:00
|
|
|
for (getters) |t|
|
|
|
|
t.wait();
|
2018-04-28 15:00:51 -07:00
|
|
|
|
2018-06-12 12:14:32 -07:00
|
|
|
if (context.put_sum != context.get_sum) {
|
|
|
|
std.debug.panic("failure\nput_sum:{} != get_sum:{}", context.put_sum, context.get_sum);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (context.get_count != puts_per_thread * put_thread_count) {
|
|
|
|
std.debug.panic(
|
|
|
|
"failure\nget_count:{} != puts_per_thread:{} * put_thread_count:{}",
|
|
|
|
context.get_count,
|
|
|
|
u32(puts_per_thread),
|
|
|
|
u32(put_thread_count),
|
|
|
|
);
|
|
|
|
}
|
2018-04-28 15:00:51 -07:00
|
|
|
}
|
|
|
|
|
2018-05-31 07:56:59 -07:00
|
|
|
fn startPuts(ctx: *Context) u8 {
|
2018-04-28 15:00:51 -07:00
|
|
|
var put_count: usize = puts_per_thread;
|
|
|
|
var r = std.rand.DefaultPrng.init(0xdeadbeef);
|
|
|
|
while (put_count != 0) : (put_count -= 1) {
|
|
|
|
std.os.time.sleep(0, 1); // let the os scheduler be our fuzz
|
|
|
|
const x = @bitCast(i32, r.random.scalar(u32));
|
2018-06-20 08:40:21 -07:00
|
|
|
const node = ctx.allocator.create(Queue(i32).Node{
|
|
|
|
.next = null,
|
|
|
|
.data = x
|
|
|
|
}) catch unreachable;
|
2018-04-28 15:00:51 -07:00
|
|
|
ctx.queue.put(node);
|
|
|
|
_ = @atomicRmw(isize, &ctx.put_sum, builtin.AtomicRmwOp.Add, x, AtomicOrder.SeqCst);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-31 07:56:59 -07:00
|
|
|
fn startGets(ctx: *Context) u8 {
|
2018-04-28 15:00:51 -07:00
|
|
|
while (true) {
|
2018-06-13 08:57:57 -07:00
|
|
|
const last = @atomicLoad(u8, &ctx.puts_done, builtin.AtomicOrder.SeqCst) == 1;
|
|
|
|
|
2018-04-28 15:00:51 -07:00
|
|
|
while (ctx.queue.get()) |node| {
|
|
|
|
std.os.time.sleep(0, 1); // let the os scheduler be our fuzz
|
|
|
|
_ = @atomicRmw(isize, &ctx.get_sum, builtin.AtomicRmwOp.Add, node.data, builtin.AtomicOrder.SeqCst);
|
|
|
|
_ = @atomicRmw(usize, &ctx.get_count, builtin.AtomicRmwOp.Add, 1, builtin.AtomicOrder.SeqCst);
|
|
|
|
}
|
|
|
|
|
2018-06-13 08:57:57 -07:00
|
|
|
if (last) return 0;
|
2018-04-28 15:00:51 -07:00
|
|
|
}
|
|
|
|
}
|