zls/tests/language_features/comptime_interpreter.zig

487 lines
16 KiB
Zig
Raw Permalink Normal View History

2022-10-28 04:59:24 +01:00
const std = @import("std");
const zls = @import("zls");
2023-01-14 13:08:15 +00:00
const builtin = @import("builtin");
2022-10-28 04:59:24 +01:00
const Ast = std.zig.Ast;
const ZigVersionWrapper = zls.ZigVersionWrapper;
2022-10-28 04:59:24 +01:00
const ComptimeInterpreter = zls.ComptimeInterpreter;
const InternPool = zls.analyser.InternPool;
2023-01-14 13:08:15 +00:00
const Index = InternPool.Index;
const Key = InternPool.Key;
2023-01-20 18:55:53 +00:00
const ast = zls.ast;
const offsets = zls.offsets;
2022-10-28 04:59:24 +01:00
const allocator: std.mem.Allocator = std.testing.allocator;
2023-01-20 16:06:16 +00:00
test "ComptimeInterpreter - primitive types" {
try testExpr("true", .{ .simple_value = .bool_true });
try testExpr("false", .{ .simple_value = .bool_false });
try testExpr("5", .{ .int_u64_value = .{ .ty = .comptime_int_type, .int = 5 } });
// TODO try testExpr("-2", .{ .int_i64_value = .{ .ty = .comptime_int, .int = -2 } });
try testExpr("3.0", .{ .float_comptime_value = 3.0 });
try testExpr("null", .{ .simple_value = .null_value });
try testExpr("void", .{ .simple_type = .void });
try testExpr("undefined", .{ .simple_value = .undefined_value });
try testExpr("noreturn", .{ .simple_type = .noreturn });
2023-01-20 16:06:16 +00:00
}
test "ComptimeInterpreter - expressions" {
if (true) return error.SkipZigTest; // TODO
try testExpr("5 + 3", .{ .int_u64_value = .{ .ty = .comptime_int_type, .int = 8 } });
// try testExpr("5.2 + 4.2", .{ .simple_type = .comptime_float }, null);
2023-01-20 16:06:16 +00:00
try testExpr("3 == 3", .{ .simple_valueclear = .bool_true });
try testExpr("5.2 == 2.1", .{ .simple_value = .bool_false });
2023-01-20 16:06:16 +00:00
try testExpr("@as(?bool, null) orelse true", .{ .simple_value = .bool_true });
2023-01-20 16:06:16 +00:00
}
test "ComptimeInterpreter - builtins" {
if (true) return error.SkipZigTest; // TODO
try testExpr("@as(bool, true)", .{ .simple_value = .bool_true });
try testExpr("@as(u32, 3)", .{ .int_u64_value = .{ .ty = .u32_type, .int = 3 } });
}
test "ComptimeInterpreter - @TypeOf" {
try testExpr("@TypeOf(bool)", .{ .simple_type = .type });
try testExpr("@TypeOf(5)", .{ .simple_type = .comptime_int });
try testExpr("@TypeOf(3.14)", .{ .simple_type = .comptime_float });
try testExpr("@TypeOf(bool, u32)", .{ .simple_type = .type });
try testExpr("@TypeOf(true, false)", .{ .simple_type = .bool });
try testExpr("@TypeOf(3, 2)", .{ .simple_type = .comptime_int });
try testExpr("@TypeOf(3.14, 2)", .{ .simple_type = .comptime_float });
try testExpr("@TypeOf(null, 2)", .{ .optional_type = .{ .payload_type = .comptime_int_type } });
2023-01-20 16:06:16 +00:00
}
2023-01-20 18:29:03 +00:00
test "ComptimeInterpreter - string literal" {
if (true) return error.SkipZigTest; // TODO
2023-01-23 20:29:51 +00:00
var context = try Context.init(
2023-01-20 18:29:03 +00:00
\\const foobarbaz = "hello world!";
\\
2023-01-23 20:29:51 +00:00
);
defer context.deinit();
const result = try context.interpret(context.findVar("foobarbaz"));
2023-01-20 18:29:03 +00:00
try std.testing.expect(result.ty == .pointer_type);
2023-01-23 20:29:51 +00:00
try std.testing.expectEqualStrings("hello world!", result.val.?.bytes);
2023-01-20 18:29:03 +00:00
}
test "ComptimeInterpreter - labeled block" {
2023-01-23 20:29:51 +00:00
try testExpr(
2023-01-20 18:29:03 +00:00
\\blk: {
\\ break :blk true;
\\}
, .{ .simple_value = .bool_true });
2023-01-23 20:29:51 +00:00
try testExpr(
\\blk: {
\\ break :blk 3;
\\}
, .{ .int_u64_value = .{ .ty = .comptime_int_type, .int = 3 } });
2023-01-20 18:29:03 +00:00
}
test "ComptimeInterpreter - if" {
2023-01-23 20:29:51 +00:00
try testExpr(
2023-01-20 18:29:03 +00:00
\\blk: {
\\ break :blk if (true) true else false;
\\}
, .{ .simple_value = .bool_true });
2023-01-23 20:29:51 +00:00
try testExpr(
2023-01-20 18:29:03 +00:00
\\blk: {
\\ break :blk if (false) true else false;
\\}
, .{ .simple_value = .bool_false });
2023-01-28 18:22:51 +00:00
try testExpr(
\\blk: {
\\ if (false) break :blk true;
\\ break :blk false;
\\}
, .{ .simple_value = .bool_false });
2023-01-28 18:22:51 +00:00
// TODO
// try testExpr(
// \\outer: {
// \\ if (:inner {
// \\ break :inner true;
// \\ }) break :outer true;
// \\ break :outer false;
// \\}
// , .{ .simple_value = .bool_true });
2023-01-20 18:29:03 +00:00
}
2023-01-23 20:29:51 +00:00
test "ComptimeInterpreter - variable lookup" {
2023-01-28 18:22:51 +00:00
try testExpr(
\\blk: {
\\ var foo = 42;
\\ break :blk foo;
\\}
, .{ .int_u64_value = .{ .ty = .comptime_int_type, .int = 42 } });
2023-01-23 20:29:51 +00:00
try testExpr(
\\blk: {
\\ var foo = 1;
\\ var bar = 2;
\\ var baz = 3;
\\ break :blk bar;
\\}
, .{ .int_u64_value = .{ .ty = .comptime_int_type, .int = 2 } });
2023-01-28 17:54:16 +00:00
var context = try Context.init(
\\const bar = foo;
\\const foo = 3;
);
defer context.deinit();
const result = try context.interpret(context.findVar("bar"));
try expectEqualKey(context.interpreter.ip.*, .{ .int_u64_value = .{ .ty = .comptime_int_type, .int = 3 } }, result.val);
2023-01-23 20:29:51 +00:00
}
2023-01-20 21:25:19 +00:00
test "ComptimeInterpreter - field access" {
2023-01-23 20:29:51 +00:00
try testExpr(
2023-01-20 21:25:19 +00:00
\\blk: {
2023-01-23 20:29:51 +00:00
\\ const foo: struct {alpha: u64, beta: bool} = undefined;
\\ break :blk @TypeOf(foo.beta);
2023-01-20 21:25:19 +00:00
\\}
, .{ .simple_type = .bool });
2023-01-28 18:22:51 +00:00
try testExpr(
\\blk: {
\\ const foo: struct {alpha: u64, beta: bool} = undefined;
\\ break :blk @TypeOf(foo.alpha);
2023-01-28 18:22:51 +00:00
\\}
, .{ .int_type = .{
.signedness = .unsigned,
.bits = 64,
} });
2023-01-28 18:22:51 +00:00
}
test "ComptimeInterpreter - optional operations" {
if (true) return error.SkipZigTest; // TODO
try testExpr(
\\blk: {
\\ const foo: ?bool = true;
\\ break :blk foo.?;
\\}
, .{ .simple_value = .bool_true });
2023-01-28 18:22:51 +00:00
try testExpr(
\\blk: {
\\ const foo: ?bool = true;
\\ break :blk foo == null;
\\}
, .{ .simple_value = .bool_false });
2023-01-20 21:25:19 +00:00
}
test "ComptimeInterpreter - pointer operations" {
if (true) return error.SkipZigTest; // TODO
2023-01-23 20:29:51 +00:00
try testExpr(
2023-01-20 21:25:19 +00:00
\\blk: {
\\ const foo: []const u8 = "";
\\ break :blk foo.len;
\\}
, .{ .int_u64_value = .{ .ty = .usize_type, .int = 0 } });
2023-01-23 20:29:51 +00:00
try testExpr(
2023-01-20 21:25:19 +00:00
\\blk: {
\\ const foo = true;
\\ break :blk &foo;
\\}
, .{ .simple_value = .bool_true });
2023-01-23 20:29:51 +00:00
try testExpr(
2023-01-20 21:25:19 +00:00
\\blk: {
\\ const foo = true;
\\ const bar = &foo;
\\ break :blk bar.*;
\\}
, .{ .simple_value = .bool_true });
2023-01-20 21:25:19 +00:00
}
2023-01-14 13:08:15 +00:00
test "ComptimeInterpreter - call return primitive type" {
2023-01-23 20:29:51 +00:00
try testCall(
2023-01-14 13:08:15 +00:00
\\pub fn Foo() type {
\\ return bool;
\\}
2023-02-08 20:01:15 +00:00
, &.{}, .{ .simple_type = .bool });
2022-11-11 01:51:02 +00:00
2023-01-23 20:29:51 +00:00
try testCall(
2023-01-14 13:08:15 +00:00
\\pub fn Foo() type {
\\ return u32;
2022-10-28 04:59:24 +01:00
\\}
2023-01-14 13:08:15 +00:00
, &.{}, .{ .int_type = .{ .signedness = .unsigned, .bits = 32 } });
2022-10-28 04:59:24 +01:00
2023-01-23 20:29:51 +00:00
try testCall(
2023-01-14 13:08:15 +00:00
\\pub fn Foo() type {
\\ return i128;
\\}
, &.{}, .{ .int_type = .{ .signedness = .signed, .bits = 128 } });
2022-10-28 04:59:24 +01:00
2023-01-23 20:29:51 +00:00
try testCall(
2023-01-14 13:08:15 +00:00
\\pub fn Foo() type {
\\ const alpha = i128;
\\ return alpha;
\\}
, &.{}, .{ .int_type = .{ .signedness = .signed, .bits = 128 } });
}
test "ComptimeInterpreter - call return struct" {
2023-01-23 20:29:51 +00:00
var context = try Context.init(
2023-01-14 13:08:15 +00:00
\\pub fn Foo() type {
\\ return struct {
\\ slay: bool,
\\ var abc = 123;
\\ };
\\}
2023-01-23 20:29:51 +00:00
);
defer context.deinit();
const result = try context.call(context.findFn("Foo"), &.{});
2023-02-08 20:01:15 +00:00
try std.testing.expect(result.ty == .simple_type);
try std.testing.expect(result.ty.simple_type == .type);
const struct_info = context.interpreter.ip.getStruct(result.val.?.struct_type);
2023-01-14 13:08:15 +00:00
try std.testing.expectEqual(Index.none, struct_info.backing_int_ty);
try std.testing.expectEqual(std.builtin.Type.ContainerLayout.Auto, struct_info.layout);
2023-01-22 21:51:54 +00:00
try std.testing.expectEqual(@as(usize, 1), struct_info.fields.count());
try std.testing.expectEqualStrings("slay", struct_info.fields.keys()[0]);
try std.testing.expect(struct_info.fields.values()[0].ty == Index.bool_type);
2023-01-14 13:08:15 +00:00
}
2023-01-04 10:12:29 +00:00
2023-01-14 13:08:15 +00:00
test "ComptimeInterpreter - call comptime argument" {
2023-01-23 20:29:51 +00:00
var context = try Context.init(
2023-01-14 13:08:15 +00:00
\\pub fn Foo(comptime my_arg: bool) type {
\\ var abc = z: {break :z if (!my_arg) 123 else 0;};
\\ if (abc == 123) return u69;
\\ return u8;
\\}
2023-01-23 20:29:51 +00:00
);
defer context.deinit();
const result1 = try context.call(context.findFn("Foo"), &.{KV{
2023-02-08 20:01:15 +00:00
.ty = .{ .simple_type = .bool },
.val = .{ .simple_value = .bool_true },
2023-01-23 20:29:51 +00:00
}});
2023-02-08 20:01:15 +00:00
try std.testing.expect(result1.ty == .simple_type);
try std.testing.expect(result1.ty.simple_type == .type);
2023-01-23 20:29:51 +00:00
try std.testing.expectEqual(Key{ .int_type = .{ .signedness = .unsigned, .bits = 8 } }, result1.val.?);
var result2 = try context.call(context.findFn("Foo"), &.{KV{
2023-02-08 20:01:15 +00:00
.ty = .{ .simple_type = .bool },
.val = .{ .simple_value = .bool_false },
2023-01-23 20:29:51 +00:00
}});
2023-02-08 20:01:15 +00:00
try std.testing.expect(result2.ty == .simple_type);
try std.testing.expect(result2.ty.simple_type == .type);
2023-01-23 20:29:51 +00:00
try std.testing.expectEqual(Key{ .int_type = .{ .signedness = .unsigned, .bits = 69 } }, result2.val.?);
2023-01-14 13:08:15 +00:00
}
2022-11-11 01:51:02 +00:00
2023-02-10 23:04:08 +00:00
test "ComptimeInterpreter - call inner function" {
try testCall(
\\pub fn Inner() type {
\\ return bool;
\\}
\\pub fn Foo() type {
\\ return Inner();
\\}
, &.{}, .{ .simple_type = .bool });
}
2023-01-14 13:08:15 +00:00
//
// Helper functions
//
2023-01-23 20:29:51 +00:00
const KV = struct {
2023-01-20 16:06:16 +00:00
ty: Key,
2023-01-23 20:29:51 +00:00
val: ?Key,
2023-01-14 13:08:15 +00:00
};
2022-10-28 04:59:24 +01:00
2023-01-23 20:29:51 +00:00
const Context = struct {
config: *zls.Config,
document_store: *zls.DocumentStore,
ip: *InternPool,
2023-01-23 20:29:51 +00:00
interpreter: *ComptimeInterpreter,
pub fn init(source: []const u8) !Context {
var config = try allocator.create(zls.Config);
errdefer allocator.destroy(config);
var document_store = try allocator.create(zls.DocumentStore);
errdefer allocator.destroy(document_store);
var interpreter = try allocator.create(ComptimeInterpreter);
errdefer allocator.destroy(interpreter);
var ip = try allocator.create(InternPool);
errdefer allocator.destroy(ip);
ip.* = try InternPool.init(allocator);
errdefer ip.deinit(allocator);
2023-01-23 20:29:51 +00:00
config.* = .{};
document_store.* = .{
.allocator = allocator,
.config = config,
2023-03-21 16:28:52 +00:00
.runtime_zig_version = &@as(?ZigVersionWrapper, null),
2023-01-23 20:29:51 +00:00
};
errdefer document_store.deinit();
const test_uri: []const u8 = switch (builtin.os.tag) {
.windows => "file:///C:\\test.zig",
else => "file:///test.zig",
};
const handle = try document_store.openDocument(test_uri, try document_store.allocator.dupeZ(u8, source));
2023-01-23 20:29:51 +00:00
2023-02-10 23:04:08 +00:00
// TODO handle handle.tree.errors
2023-01-23 20:29:51 +00:00
interpreter.* = .{
.allocator = allocator,
.ip = ip,
2023-01-23 20:29:51 +00:00
.document_store = document_store,
.uri = handle.uri,
};
errdefer interpreter.deinit();
2022-10-28 06:22:03 +01:00
_ = try interpreter.interpret(0, .none, .{});
// _ = reportErrors(interpreter);
2023-01-23 20:29:51 +00:00
return .{
.config = config,
.document_store = document_store,
.ip = ip,
2023-01-23 20:29:51 +00:00
.interpreter = interpreter,
2023-01-14 13:08:15 +00:00
};
}
2022-11-11 01:51:02 +00:00
2023-01-23 20:29:51 +00:00
pub fn deinit(self: *Context) void {
self.interpreter.deinit();
self.document_store.deinit();
self.ip.deinit(allocator);
2023-01-14 13:08:15 +00:00
2023-01-23 20:29:51 +00:00
allocator.destroy(self.config);
allocator.destroy(self.document_store);
allocator.destroy(self.interpreter);
allocator.destroy(self.ip);
2023-01-23 20:29:51 +00:00
}
2023-01-14 13:08:15 +00:00
2023-01-23 20:29:51 +00:00
pub fn call(self: *Context, func_node: Ast.Node.Index, arguments: []const KV) !KV {
var args = try allocator.alloc(ComptimeInterpreter.Value, arguments.len);
defer allocator.free(args);
for (arguments, 0..) |argument, i| {
2023-01-23 20:29:51 +00:00
args[i] = .{
.interpreter = self.interpreter,
.node_idx = 0,
.index = if (argument.val) |val|
try self.interpreter.ip.get(self.interpreter.allocator, val)
else
try self.interpreter.ip.get(self.interpreter.allocator, .{
.unknown_value = .{ .ty = try self.interpreter.ip.get(self.interpreter.allocator, argument.ty) },
}),
2023-01-23 20:29:51 +00:00
};
}
2022-10-28 06:22:03 +01:00
2023-06-21 16:08:10 +01:00
const namespace = @enumFromInt(ComptimeInterpreter.Namespace.Index, 0); // root namespace
2023-01-23 20:29:51 +00:00
const result = (try self.interpreter.call(namespace, func_node, args, .{})).result;
const val = self.interpreter.ip.indexToKey(result.value.index);
const ty = self.interpreter.ip.indexToKey(val.typeOf());
2023-01-23 20:29:51 +00:00
return KV{
.ty = ty,
.val = val,
2023-01-23 20:29:51 +00:00
};
2023-01-20 16:06:16 +00:00
}
2023-01-23 20:29:51 +00:00
pub fn interpret(self: *Context, node: Ast.Node.Index) !KV {
2023-06-21 16:08:10 +01:00
const namespace = @enumFromInt(ComptimeInterpreter.Namespace.Index, 0); // root namespace
2023-01-23 20:29:51 +00:00
const result = try (try self.interpreter.interpret(node, namespace, .{})).getValue();
2023-01-20 16:06:16 +00:00
const val = self.interpreter.ip.indexToKey(result.index);
const ty = self.interpreter.ip.indexToKey(val.typeOf());
2023-01-20 16:06:16 +00:00
2023-01-23 20:29:51 +00:00
return KV{
.ty = ty,
.val = val,
2023-01-23 20:29:51 +00:00
};
}
2023-01-20 16:06:16 +00:00
2023-01-23 20:29:51 +00:00
pub fn findFn(self: Context, name: []const u8) Ast.Node.Index {
const handle = self.interpreter.getHandle();
for (handle.tree.nodes.items(.tag), 0..) |tag, i| {
2023-01-23 20:29:51 +00:00
if (tag != .fn_decl) continue;
const node = @intCast(Ast.Node.Index, i);
var buffer: [1]Ast.Node.Index = undefined;
const fn_decl = handle.tree.fullFnProto(&buffer, node).?;
const fn_name = offsets.tokenToSlice(handle.tree, fn_decl.name_token.?);
if (std.mem.eql(u8, fn_name, name)) return node;
}
std.debug.panic("failed to find function with name '{s}'", .{name});
}
2023-01-20 16:06:16 +00:00
2023-01-23 20:29:51 +00:00
pub fn findVar(self: Context, name: []const u8) Ast.Node.Index {
const handle = self.interpreter.getHandle();
var node: Ast.Node.Index = 0;
while (node < handle.tree.nodes.len) : (node += 1) {
const var_decl = handle.tree.fullVarDecl(node) orelse continue;
const name_token = var_decl.ast.mut_token + 1;
const var_name = offsets.tokenToSlice(handle.tree, name_token);
if (std.mem.eql(u8, var_name, name)) return var_decl.ast.init_node;
}
std.debug.panic("failed to find var declaration with name '{s}'", .{name});
}
};
2023-01-20 16:06:16 +00:00
2023-01-23 20:29:51 +00:00
fn testCall(
source: []const u8,
arguments: []const KV,
expected_ty: Key,
) !void {
var context = try Context.init(source);
defer context.deinit();
2023-01-20 16:06:16 +00:00
2023-01-23 20:29:51 +00:00
const result = try context.call(context.findFn("Foo"), arguments);
2023-01-20 18:29:03 +00:00
try expectEqualKey(context.interpreter.ip.*, Key{ .simple_type = .type }, result.ty);
try expectEqualKey(context.interpreter.ip.*, expected_ty, result.val);
2023-01-20 16:06:16 +00:00
}
2023-01-23 20:29:51 +00:00
fn testExpr(
2023-01-20 16:06:16 +00:00
expr: []const u8,
expected: Key,
2023-01-20 16:06:16 +00:00
) !void {
const source = try std.fmt.allocPrint(allocator,
\\const foobarbaz = {s};
, .{expr});
defer allocator.free(source);
2023-01-23 20:29:51 +00:00
var context = try Context.init(source);
defer context.deinit();
2023-01-20 16:06:16 +00:00
2023-01-23 20:29:51 +00:00
const result = try context.interpret(context.findVar("foobarbaz"));
try expectEqualKey(context.interpreter.ip.*, expected, result.val);
2023-01-23 20:29:51 +00:00
}
2023-01-20 16:06:16 +00:00
2023-01-23 20:29:51 +00:00
fn expectEqualKey(ip: InternPool, expected: Key, actual: ?Key) !void {
if (actual) |actual_key| {
if (!expected.eql(actual_key)) {
std.debug.print("expected `{}`, found `{}`\n", .{ expected.fmt(ip), actual_key.fmt(ip) });
return error.TestExpectedEqual;
2023-01-23 20:29:51 +00:00
}
} else {
std.debug.print("expected `{}`, found null\n", .{expected.fmt(ip)});
return error.TestExpectedEqual;
2023-01-20 16:06:16 +00:00
}
2022-10-28 06:22:03 +01:00
}
2023-01-20 18:55:53 +00:00
fn reportErrors(interpreter: *ComptimeInterpreter) void {
2023-01-20 18:55:53 +00:00
// TODO use ErrorBuilder
var err_it = interpreter.errors.iterator();
if (interpreter.errors.count() != 0) {
const handle = interpreter.getHandle();
std.debug.print("\n{s}\n", .{handle.text});
while (err_it.next()) |entry| {
const token = handle.tree.firstToken(entry.key_ptr.*);
const position = offsets.tokenToPosition(handle.tree, token, .@"utf-8");
std.debug.print("{d}:{d}: {s}\n", .{ position.line, position.character, entry.value_ptr.message });
}
}
}