fixing wsi crashes
Build / build (push) Successful in 2m19s
Test / build_and_test (push) Successful in 1m54s

This commit is contained in:
2026-07-01 13:56:47 +02:00
parent 762d414d54
commit 5b182580a7
11 changed files with 118 additions and 47 deletions
+53 -14
View File
@@ -42,36 +42,75 @@ pub inline fn queryPeakFootprint(self: *Self) usize {
return self.peak_concurrent_bytes_allocated.load(.monotonic);
}
fn reserve(self: *Self, len: usize) bool {
while (true) {
const current = self.current_bytes_allocated.load(.monotonic);
if (len > self.bound -| current)
return false;
const new_current = current + len;
if (self.current_bytes_allocated.cmpxchgWeak(current, new_current, .monotonic, .monotonic) == null) {
_ = self.total_bytes_allocated.fetchAdd(len, .monotonic);
while (true) {
const peak = self.peak_concurrent_bytes_allocated.load(.monotonic);
if (new_current <= peak)
break;
if (self.peak_concurrent_bytes_allocated.cmpxchgWeak(peak, new_current, .monotonic, .monotonic) == null)
break;
}
return true;
}
}
}
fn release(self: *Self, len: usize) void {
while (true) {
const current = self.current_bytes_allocated.load(.monotonic);
const new_current = current -| len;
if (self.current_bytes_allocated.cmpxchgWeak(current, new_current, .monotonic, .monotonic) == null)
return;
}
}
fn alloc(context: *anyopaque, len: usize, alignment: Alignment, ret_addr: usize) ?[*]u8 {
const self: *Self = @ptrCast(@alignCast(context));
if (self.current_bytes_allocated.fetchAdd(len, .monotonic) >= self.bound)
if (!self.reserve(len))
return null;
_ = self.total_bytes_allocated.fetchAdd(len, .monotonic);
if (self.current_bytes_allocated.load(.monotonic) > self.peak_concurrent_bytes_allocated.load(.monotonic))
self.peak_concurrent_bytes_allocated.store(self.current_bytes_allocated.load(.monotonic), .monotonic);
return self.child_allocator.rawAlloc(len, alignment, ret_addr);
return self.child_allocator.rawAlloc(len, alignment, ret_addr) orelse {
self.release(len);
return null;
};
}
fn resize(context: *anyopaque, ptr: []u8, alignment: Alignment, new_len: usize, ret_addr: usize) bool {
const self: *Self = @ptrCast(@alignCast(context));
_ = self.current_bytes_allocated.fetchSub(ptr.len, .monotonic);
if (self.current_bytes_allocated.fetchAdd(new_len, .monotonic) >= self.bound)
if (new_len > ptr.len) {
const delta = new_len - ptr.len;
if (!self.reserve(delta))
return false;
if (self.child_allocator.rawResize(ptr, alignment, new_len, ret_addr))
return true;
self.release(delta);
return false;
_ = self.total_bytes_allocated.fetchAdd(new_len, .monotonic);
}
return self.child_allocator.rawResize(ptr, alignment, new_len, ret_addr);
}
fn remap(context: *anyopaque, ptr: []u8, alignment: Alignment, new_len: usize, ret_addr: usize) ?[*]u8 {
const self: *Self = @ptrCast(@alignCast(context));
_ = self.current_bytes_allocated.fetchSub(ptr.len, .monotonic);
if (self.current_bytes_allocated.fetchAdd(new_len, .monotonic) >= self.bound)
return null;
_ = self.total_bytes_allocated.fetchAdd(new_len, .monotonic);
return self.child_allocator.rawRemap(ptr, alignment, new_len, ret_addr);
if (new_len > ptr.len) {
const delta = new_len - ptr.len;
if (!self.reserve(delta))
return null;
return self.child_allocator.rawRemap(ptr, alignment, new_len, ret_addr) orelse {
self.release(delta);
return null;
};
}
return self.child_allocator.rawRemap(ptr, alignment, new_len, ret_addr) orelse null;
}
fn free(context: *anyopaque, ptr: []u8, alignment: Alignment, ret_addr: usize) void {
const self: *Self = @ptrCast(@alignCast(context));
_ = self.current_bytes_allocated.fetchSub(ptr.len, .monotonic);
self.release(ptr.len);
return self.child_allocator.rawFree(ptr, alignment, ret_addr);
}