blob: 815e20306bba5900740cc8f3ad75a9f9ecd79b74 (
plain)
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
|
const builtin = @import("builtin");
const std = @import("std");
const value = @import("value.zig");
const seq = value.seq;
const Value = value.Value;
/// A "heap value" that could be a Value or object header.
pub const Hval = union {
value: Value,
seq_header: seq.Header,
};
var _debugAlloc = switch (builtin.mode) {
.Debug => std.heap.DebugAllocator(.{}).init,
else => undefined,
};
const alloc = switch (builtin.mode) {
.Debug => _debugAlloc.allocator(),
else => std.heap.smp_allocator,
};
// Cons cells
var cons_pool = std.heap.MemoryPool([2]Value).init(alloc);
pub fn cons(v1: Value, v2: Value) *[2]Value {
const mem = cons_pool.create() catch @panic("OOM");
mem[0] = v1;
mem[1] = v2;
return mem;
}
// Interned strings
var istr_pool = std.hash_map.StringHashMap(void).init(alloc);
pub fn intern(header: seq.Header, str: []const u8) *seq.Header {
const hs = @sizeOf(seq.Header);
const size = str.len + hs;
const copy = alloc.alloc(u8, size) catch @panic("OOM");
const header_bytes: [hs]u8 = @bitCast(header);
@memcpy(copy[0..hs], &header_bytes);
@memcpy(copy[hs..size], str);
const entry = istr_pool.getOrPutValue(copy, {}) catch @panic("OOM");
return @ptrCast(entry.key_ptr);
}
pub fn istrHeader(ptr: *Hval) *seq.Header {
const entry_key: *[]u8 = @ptrCast(ptr);
return @alignCast(@ptrCast(entry_key.ptr));
}
|