mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 12:51:54 +00:00
133 lines
5.1 KiB
Zig
133 lines
5.1 KiB
Zig
pub const cache_line_length = switch (@import("builtin").target.cpu.arch) {
|
|
.x86_64, .aarch64, .powerpc64 => 128,
|
|
.arm, .mips, .mips64, .riscv64 => 32,
|
|
.s390x => 256,
|
|
else => 64,
|
|
};
|
|
|
|
pub fn UnboundedQueue(comptime T: type, comptime next_field: meta.FieldEnum(T)) type {
|
|
const next_name = meta.fieldInfo(T, next_field).name;
|
|
return struct {
|
|
const Self = @This();
|
|
|
|
pub const Batch = struct {
|
|
pub const Iterator = struct {
|
|
batch: Self.Batch,
|
|
|
|
pub fn next(self: *Self.Batch.Iterator) ?*T {
|
|
if (self.batch.count == 0) return null;
|
|
const front = self.batch.front orelse unreachable;
|
|
self.batch.front = @field(front, next_name);
|
|
self.batch.count -= 1;
|
|
return front;
|
|
}
|
|
};
|
|
|
|
front: ?*T = null,
|
|
last: ?*T = null,
|
|
count: usize = 0,
|
|
|
|
pub fn iterator(self: Self.Batch) Self.Batch.Iterator {
|
|
return .{ .batch = self };
|
|
}
|
|
};
|
|
|
|
const next = next_name;
|
|
pub const queue_padding_length = cache_line_length / 2;
|
|
|
|
back: std.atomic.Value(?*T) align(queue_padding_length) = .init(null),
|
|
front: std.atomic.Value(?*T) align(queue_padding_length) = .init(null),
|
|
|
|
pub fn push(self: *Self, item: *T) void {
|
|
self.pushBatch(item, item);
|
|
}
|
|
|
|
pub fn pushBatch(self: *Self, first: *T, last: *T) void {
|
|
@field(last, next) = null;
|
|
if (comptime bun.Environment.allow_assert) {
|
|
var item = first;
|
|
while (@field(item, next)) |next_item| {
|
|
item = next_item;
|
|
}
|
|
assertf(item == last, "`last` should be reachable from `first`", .{});
|
|
}
|
|
const prev_next_ptr = if (self.back.swap(last, .acq_rel)) |old_back|
|
|
&@field(old_back, next)
|
|
else
|
|
&self.front.raw;
|
|
@atomicStore(?*T, prev_next_ptr, first, .release);
|
|
}
|
|
|
|
pub fn pop(self: *Self) ?*T {
|
|
var first = self.front.load(.acquire) orelse return null;
|
|
const next_item = while (true) {
|
|
const next_item = @atomicLoad(?*T, &@field(first, next), .acquire);
|
|
const maybe_first = self.front.cmpxchgWeak(
|
|
first,
|
|
next_item,
|
|
.release, // not .acq_rel because we already loaded this value with .acquire
|
|
.acquire,
|
|
) orelse break next_item;
|
|
first = maybe_first orelse return null;
|
|
};
|
|
if (next_item != null) return first;
|
|
// `first` was the only item in the queue, so we need to clear `self.back`.
|
|
|
|
// Even though this load is .monotonic, it will always be either `first` (in which case
|
|
// the cmpxchg succeeds) or an item pushed *after* `first`, because the .acquire load of
|
|
// `self.front` synchronizes-with the .release store in push/pushBatch.
|
|
if (self.back.cmpxchgStrong(first, null, .monotonic, .monotonic)) |back| {
|
|
assertf(back != null, "`back` should not be null while popping an item", .{});
|
|
} else {
|
|
return first;
|
|
}
|
|
|
|
// Another item was added to the queue before we could finish removing this one.
|
|
const new_first = while (true) : (atomic.spinLoopHint()) {
|
|
// Wait for push/pushBatch to set `next`.
|
|
break @atomicLoad(?*T, &@field(first, next), .acquire) orelse continue;
|
|
};
|
|
|
|
self.front.store(new_first, .release);
|
|
return first;
|
|
}
|
|
|
|
pub fn popBatch(self: *Self) Self.Batch {
|
|
var batch: Self.Batch = .{};
|
|
|
|
// Not .acq_rel because another thread that sees this `null` doesn't depend on any
|
|
// visible side-effects from this thread.
|
|
const first = self.front.swap(null, .acquire) orelse return batch;
|
|
batch.count += 1;
|
|
|
|
// Even though this load is .monotonic, it will always be either `first` or an item
|
|
// pushed *after* `first`, because the .acquire load of `self.front` synchronizes-with
|
|
// the .release store in push/pushBatch. So we know it's reachable from `first`.
|
|
const last = self.back.swap(null, .monotonic).?;
|
|
var next_item = first;
|
|
while (next_item != last) : (batch.count += 1) {
|
|
next_item = while (true) : (atomic.spinLoopHint()) {
|
|
// Wait for push/pushBatch to set `next`.
|
|
break @atomicLoad(?*T, &@field(next_item, next), .acquire) orelse continue;
|
|
};
|
|
}
|
|
|
|
batch.front = first;
|
|
batch.last = last;
|
|
return batch;
|
|
}
|
|
|
|
pub fn isEmpty(self: *Self) bool {
|
|
return self.back.load(.acquire) == null;
|
|
}
|
|
};
|
|
}
|
|
|
|
const bun = @import("bun");
|
|
const assertf = bun.assertf;
|
|
|
|
const std = @import("std");
|
|
const atomic = std.atomic;
|
|
const builtin = std.builtin;
|
|
const meta = std.meta;
|