forked from oven-sh/bun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtagged_pointer.zig
235 lines (193 loc) · 7.65 KB
/
tagged_pointer.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
const std = @import("std");
const bun = @import("root").bun;
const string = bun.string;
const Output = bun.Output;
const Global = bun.Global;
const Environment = bun.Environment;
const strings = bun.strings;
const default_allocator = bun.default_allocator;
const C = bun.C;
const typeBaseName = @import("./meta.zig").typeBaseName;
const TagSize = u15;
const AddressableSize = u49;
pub const TaggedPointer = packed struct {
_ptr: AddressableSize,
data: TagSize,
pub const Tag = TagSize;
pub inline fn init(ptr: anytype, data: TagSize) TaggedPointer {
const Ptr = @TypeOf(ptr);
if (comptime Ptr == @TypeOf(null)) {
return .{ ._ptr = 0, .data = data };
}
if (comptime @typeInfo(Ptr) != .Pointer and Ptr != ?*anyopaque) {
@compileError(@typeName(Ptr) ++ " must be a ptr, received: " ++ @tagName(@typeInfo(Ptr)));
}
const address = @intFromPtr(ptr);
return TaggedPointer{
._ptr = @as(AddressableSize, @truncate(address)),
.data = data,
};
}
pub inline fn get(this: TaggedPointer, comptime Type: type) *Type {
return @as(*Type, @ptrFromInt(@as(usize, @intCast(this._ptr))));
}
pub inline fn from(val: anytype) TaggedPointer {
const ValueType = @TypeOf(val);
return switch (ValueType) {
f64, i64, u64 => @as(TaggedPointer, @bitCast(val)),
?*anyopaque, *anyopaque => @as(TaggedPointer, @bitCast(@intFromPtr(val))),
else => @compileError("Unsupported type: " ++ @typeName(ValueType)),
};
}
pub inline fn to(this: TaggedPointer) *anyopaque {
return @as(*anyopaque, @ptrFromInt(@as(u64, @bitCast(this))));
}
};
const TypeMapT = struct {
value: TagSize,
ty: type,
name: []const u8,
};
pub fn TypeMap(comptime Types: anytype) type {
return [Types.len]TypeMapT;
}
pub fn TagTypeEnumWithTypeMap(comptime Types: anytype) struct {
tag_type: type,
ty_map: TypeMap(Types),
} {
var typeMap: TypeMap(Types) = undefined;
var enumFields: [Types.len]std.builtin.Type.EnumField = undefined;
@memset(&enumFields, std.mem.zeroes(std.builtin.Type.EnumField));
@memset(&typeMap, TypeMapT{ .value = 0, .ty = void, .name = "" });
inline for (Types, 0..) |field, i| {
const name = comptime typeBaseName(@typeName(field));
enumFields[i] = .{
.name = name,
.value = 1024 - i,
};
typeMap[i] = .{ .value = 1024 - i, .ty = field, .name = name };
}
return .{
.tag_type = @Type(.{
.Enum = .{
.tag_type = TagSize,
.fields = &enumFields,
.decls = &.{},
.is_exhaustive = false,
},
}),
.ty_map = typeMap,
};
}
pub fn TaggedPointerUnion(comptime Types: anytype) type {
const result = TagTypeEnumWithTypeMap(Types);
const TagType: type = result.tag_type;
return struct {
pub const Tag = TagType;
pub const TagInt = TagSize;
pub const type_map: TypeMap(Types) = result.ty_map;
repr: TaggedPointer,
pub const Null = .{ .repr = .{ ._ptr = 0, .data = 0 } };
pub fn clear(this: *@This()) void {
this.* = Null;
}
pub fn typeFromTag(comptime the_tag: comptime_int) type {
for (type_map) |entry| {
if (entry.value == the_tag) return entry.ty;
}
@compileError("Unknown tag: " ++ the_tag);
}
pub fn typeNameFromTag(the_tag: TagInt) ?[]const u8 {
inline for (type_map) |entry| {
if (entry.value == the_tag) return entry.name;
}
return null;
}
pub fn typeName(this: This) ?[]const u8 {
return @tagName(this.tag());
}
const This = @This();
pub fn assert_type(comptime Type: type) void {
const name = comptime typeBaseName(@typeName(Type));
if (!comptime @hasField(Tag, name)) {
@compileError("TaggedPointerUnion does not have " ++ name ++ ".");
}
}
pub inline fn get(this: This, comptime Type: type) ?*Type {
comptime assert_type(Type);
return if (this.is(Type)) this.as(Type) else null;
}
pub inline fn tag(this: This) TagType {
return @as(TagType, @enumFromInt(this.repr.data));
}
/// unsafely cast a tagged pointer to a specific type, without checking that it's really that type
pub inline fn as(this: This, comptime Type: type) *Type {
comptime assert_type(Type);
return this.repr.get(Type);
}
pub inline fn is(this: This, comptime Type: type) bool {
comptime assert_type(Type);
return this.repr.data == comptime @intFromEnum(@field(Tag, typeBaseName(@typeName(Type))));
}
pub fn set(this: *@This(), _ptr: anytype) void {
this.* = @This().init(_ptr);
}
pub inline fn isValidPtr(_ptr: ?*anyopaque) bool {
return This.isValid(This.from(_ptr));
}
pub inline fn isValid(this: This) bool {
return switch (this.repr.data) {
@intFromEnum(
@field(Tag, typeBaseName(@typeName(Types[Types.len - 1]))),
)...@intFromEnum(
@field(Tag, typeBaseName(@typeName(Types[0]))),
) => true,
else => false,
};
}
pub inline fn from(_ptr: ?*anyopaque) This {
return This{ .repr = TaggedPointer.from(_ptr) };
}
pub inline fn ptr(this: This) *anyopaque {
return this.repr.to();
}
pub inline fn ptrUnsafe(this: This) *anyopaque {
@setRuntimeSafety(false);
return this.repr.to();
}
pub inline fn init(_ptr: anytype) @This() {
const tyinfo = @typeInfo(@TypeOf(_ptr));
if (tyinfo != .Pointer) @compileError("Only pass pointers to TaggedPointerUnion.init(), you gave us a: " ++ @typeName(@TypeOf(_ptr)));
const Type = std.meta.Child(@TypeOf(_ptr));
return initWithType(Type, _ptr);
}
pub inline fn initWithType(comptime Type: type, _ptr: anytype) @This() {
const tyinfo = @typeInfo(@TypeOf(_ptr));
if (tyinfo != .Pointer) @compileError("Only pass pointers to TaggedPointerUnion.init(), you gave us a: " ++ @typeName(@TypeOf(_ptr)));
const name = comptime typeBaseName(@typeName(Type));
// there will be a compiler error if the passed in type doesn't exist in the enum
return This{ .repr = TaggedPointer.init(_ptr, @intFromEnum(@field(Tag, name))) };
}
pub inline fn isNull(this: This) bool {
return this.repr._ptr == 0;
}
pub inline fn call(this: This, comptime fn_name: []const u8, args_without_this: anytype, comptime Ret: type) Ret {
inline for (type_map) |entry| {
if (this.repr.data == entry.value) {
const pointer = this.as(entry.ty);
const func = &@field(entry.ty, fn_name);
const args = brk: {
var args: std.meta.ArgsTuple(@TypeOf(@field(entry.ty, fn_name))) = undefined;
args[0] = pointer;
inline for (args_without_this, 1..) |a, i| {
args[i] = a;
}
break :brk args;
};
return @call(.auto, func, args);
}
}
@panic("Invalid tag");
}
};
}