Amend code review comments
This commit is contained in:
parent
5500de299b
commit
3794259949
|
@ -170,13 +170,13 @@ pub fn check(self: *Self, condition: bool, failure_message: []const u8) !void {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn deinit(self: *Self) void {
|
pub fn deinit(self: *Self) void {
|
||||||
self.discard(.{.object = self.global_object});
|
self.object_release(self.global_object);
|
||||||
|
|
||||||
{
|
{
|
||||||
var interned_iterable = InternTable.Iterable{.hashed_map = &self.interned};
|
var interned_iterable = InternTable.Iterable{.hashed_map = &self.interned};
|
||||||
|
|
||||||
while (interned_iterable.next()) |entry| {
|
while (interned_iterable.next()) |entry| {
|
||||||
self.discard(.{.object = entry.value});
|
self.object_release(entry.value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -189,28 +189,7 @@ pub fn deinit(self: *Self) void {
|
||||||
|
|
||||||
pub fn discard(self: *Self, val: types.Val) void {
|
pub fn discard(self: *Self, val: types.Val) void {
|
||||||
switch (val) {
|
switch (val) {
|
||||||
.object => |object| {
|
.object => |object| self.object_release(object),
|
||||||
var data = self.heap.fetch(object);
|
|
||||||
|
|
||||||
coral.debug.assert(data.ref_count != 0);
|
|
||||||
|
|
||||||
data.ref_count -= 1;
|
|
||||||
|
|
||||||
if (data.ref_count == 0) {
|
|
||||||
data.state.info.deinitializer(.{
|
|
||||||
.env = self,
|
|
||||||
.obj = val.as_ref(),
|
|
||||||
});
|
|
||||||
|
|
||||||
// TODO: Free individual key-value pairs of fields
|
|
||||||
data.state.fields.deinit(self.allocator);
|
|
||||||
coral.io.deallocate(self.allocator, data.state.userdata);
|
|
||||||
self.heap.remove(object);
|
|
||||||
} else {
|
|
||||||
self.heap.assign(object, data);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
else => {},
|
else => {},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -417,6 +396,28 @@ pub fn new_string(self: *Self, data: []const u8) coral.io.AllocationError!types.
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn object_release(self: *Self, object: types.Object) void {
|
||||||
|
var data = self.heap.fetch(object);
|
||||||
|
|
||||||
|
coral.debug.assert(data.ref_count != 0);
|
||||||
|
|
||||||
|
data.ref_count -= 1;
|
||||||
|
|
||||||
|
if (data.ref_count == 0) {
|
||||||
|
data.state.info.deinitializer(.{
|
||||||
|
.env = self,
|
||||||
|
.obj = .{.object = object},
|
||||||
|
});
|
||||||
|
|
||||||
|
// TODO: Free individual key-value pairs of fields
|
||||||
|
data.state.fields.deinit(self.allocator);
|
||||||
|
coral.io.deallocate(self.allocator, data.state.userdata);
|
||||||
|
self.heap.remove(object);
|
||||||
|
} else {
|
||||||
|
self.heap.assign(object, data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn set_global(self: *Self, global_name: []const u8, value: types.Ref) coral.io.AllocationError!void {
|
pub fn set_global(self: *Self, global_name: []const u8, value: types.Ref) coral.io.AllocationError!void {
|
||||||
try self.globals.assign(self.allocator, global_name, value);
|
try self.globals.assign(self.allocator, global_name, value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue