summaryrefslogtreecommitdiff
path: root/_tests
diff options
context:
space:
mode:
authorTaylan Kammer <taylan.kammer@gmail.com>2026-06-24 14:34:37 +0200
committerTaylan Kammer <taylan.kammer@gmail.com>2026-06-24 14:34:37 +0200
commitede65518591b9af79cb50b18dc83419625d27782 (patch)
tree4eedff3b74b59a55841dd5024583dd5660ec480e /_tests
parent61f87806e4e0beade8597a5f7a8fdf7769a7f081 (diff)
Various code cleanup.
Diffstat (limited to '_tests')
-rw-r--r--_tests/eval.scm25
-rw-r--r--_tests/perf.zig105
-rw-r--r--_tests/syntax.scm36
-rw-r--r--_tests/test.zig39
4 files changed, 196 insertions, 9 deletions
diff --git a/_tests/eval.scm b/_tests/eval.scm
new file mode 100644
index 0000000..accd858
--- /dev/null
+++ b/_tests/eval.scm
@@ -0,0 +1,25 @@
+
+
+
+(define (eval form module)
+ (cond
+ ((const? form) form)
+ ((id? form) (lookup form module))
+ ((list? form)
+ (let ((len (list-len form))
+ (ptr (list-ptr form)))
+ (eval-list ptr len module)))))
+
+(define (eval-list ptr len module)
+ (let ((first ptr[0]))
+ (cond
+ ((funcall? first)
+ (let ((fun-ptr (funcall-ptr first))
+ (argv (eval-args ptr len module)))
+ (funcall fun-ptr argv)))
+ (()))))
+
+
+
+
+
diff --git a/_tests/perf.zig b/_tests/perf.zig
new file mode 100644
index 0000000..02c9226
--- /dev/null
+++ b/_tests/perf.zig
@@ -0,0 +1,105 @@
+const builtin = @import("builtin");
+const std = @import("std");
+
+const endian = builtin.target.cpu.arch.endian();
+
+const min = std.math.minInt(i52) + 1;
+const max = std.math.maxInt(i52) - 1;
+
+export fn checkValidRange(int: i64) u8 {
+ return if (min < int and int < max) 1 else 0;
+}
+
+export fn checkValidRange2(int: i64) u8 {
+ const x: u64 = @bitCast(int);
+ return if (if (int < 0)
+ x >> 51 == std.math.maxInt(u13)
+ else
+ x >> 51 == 0) 1 else 0;
+}
+
+export fn isFixnum(v: u64) u8 {
+ const expt = v >> 52;
+ const rest = v << 13;
+ return if (expt == 0xfff and rest != 0) 1 else 0;
+}
+
+export fn isFixnum2(v: u64) u8 {
+ const hi: u14 = @intCast(v >> 50);
+ return if (hi == (0xfff << 2 | 0b01)) 1 else 0;
+}
+
+export fn sstrLen(x: u64) u8 {
+ const bytes: @Vector(8, u8) = @bitCast(x);
+ const nulls: @Vector(8, u8) = @splat(0);
+ const comps: u8 = @bitCast(bytes == nulls);
+ // Two bits will always be 0, since the actual short string starts at the
+ // third byte; third lowest or third highest depending on endianness. So,
+ // depending on endianness, either cut off the two leading bits and ensure
+ // that the second-last is set, or ensure that the second highest set, to
+ // limit the length to 6.
+ return switch (endian) {
+ .big => @clz(comps << 2 | 2),
+ .little => @ctz(comps | 64),
+ };
+}
+
+const positive_mask: u64 = 0xfff7ffffffffffff;
+
+fn unpackNegative(v: u64) i64 {
+ return @bitCast(v);
+}
+
+fn unpackPositive(v: u64) i64 {
+ const uint: u64 = @bitCast(v);
+ return @bitCast(uint ^ positive_mask);
+}
+
+fn packNegative(int: i64) u64 {
+ return @bitCast(int);
+}
+
+fn packPositive(int: i64) u64 {
+ const uint: u64 = @bitCast(int);
+ return @bitCast(uint ^ positive_mask);
+}
+
+export fn packFx(int: i64) u64 {
+ if (int < 0) {
+ return packNegative(int);
+ } else {
+ return packPositive(int);
+ }
+}
+
+export fn packSstr(len: usize, s: [*]const u8) u64 {
+ var v: u64 = 0xfff3000000000000;
+ const buf: *[8]u8 = @ptrCast(&v);
+ @memcpy(buf[0 .. 0 + len], s);
+ return v;
+}
+
+pub fn packSstrTest(buf: [*]const u64, len: usize) ?Value {
+ if (len > 6) return null;
+
+ const v = switch (endian) {
+ .big => @byteSwap(buf[0]),
+ .little => buf[0],
+ };
+
+ const shift: u6 = 8 * @as(u6, @intCast(len));
+ const mask = @as(u64, std.math.maxInt(u64)) << shift;
+ const s = Value{ .sstr = .{ .bytes = @intCast(v & ~mask) } };
+
+ // This effectively checks if there were any NUL bytes:
+ if (len != value.sstrLen(&s)) return null;
+
+ return s;
+}
+
+pub fn packSstrStatic(comptime s: []const u8) Value {
+ var val: u64 = undefined;
+ const buf: [*]align(8) u8 = @ptrCast(&val);
+ @memcpy(buf, s);
+ return pack(@ptrCast(buf), s.len).?;
+}
diff --git a/_tests/syntax.scm b/_tests/syntax.scm
new file mode 100644
index 0000000..467e669
--- /dev/null
+++ b/_tests/syntax.scm
@@ -0,0 +1,36 @@
+(let ((foo bar))
+ (normal scheme stuff))
+
+;; local
+(let foo bar)
+
+;; local fn
+(let foo
+ {(x:Int y:Double)
+ (print x)
+ (print y)
+ (+ x y)})
+
+;; exported
+(define foo bar)
+
+;; exported fn
+(define foo
+ {(x:Int y:Double)
+ (print x)
+ (print y)
+ (+ y z)})
+
+
+
+
+
+
+(<scope> ((<lexical> <expr>)
+ ))
+
+
+
+(foo (+ x (* y z))
+ (blah)
+ (blah))
diff --git a/_tests/test.zig b/_tests/test.zig
index 7e86ed2..21e8c14 100644
--- a/_tests/test.zig
+++ b/_tests/test.zig
@@ -1,21 +1,42 @@
const std = @import("std");
-pub fn main() u8 {
- // const y: [3]u64 = .{ 1, 2, 3 };
- // const x: struct { u8, u64, u8 } = y;
- // @import("std").debug.print("{}\n", .{x[0] + x[1] + x[2]});
+const List = std.ArrayListAlignedUnmanaged;
- // std.debug.print("{}\n", .{@sizeOf(struct { u64, ?u8 })});
+const MyList = List(u8, .fromByteUnits(1 << 20));
- // return while (true) if (true) break 1;
+pub fn main() !u8 {
+ const alloc = std.heap.smp_allocator;
- const x: ?*u64 = null;
- const y: ?*u32 = @ptrCast(x);
- _ = y;
+ var my_list = try MyList.initCapacity(alloc, 4);
+ try my_list.append(alloc, 0);
+ try my_list.append(alloc, 1);
+ try my_list.append(alloc, 2);
+ try my_list.append(alloc, 3);
+
+ std.debug.print("addrs: {}, {}, {}, {}\n", .{
+ &my_list.items[0],
+ &my_list.items[1],
+ &my_list.items[2],
+ &my_list.items[3],
+ });
return 0;
}
+// pub fn main() u8 {
+// const y: [3]u64 = .{ 1, 2, 3 };
+// const x: struct { u8, u64, u8 } = y;
+// @import("std").debug.print("{}\n", .{x[0] + x[1] + x[2]});
+
+// std.debug.print("{}\n", .{@sizeOf(struct { u64, ?u8 })});
+
+// return while (true) if (true) break 1;
+
+// const x: ?*u64 = null;
+// const y: ?*u32 = @ptrCast(x);
+// _ = y;
+// }
+
// const x: ?u8 = 5;
// if (x == null) {
// return 1;