2018-07-12 12:08:40 -07:00
|
|
|
const std = @import("std");
|
2020-04-17 21:09:43 -07:00
|
|
|
const mem = std.mem;
|
2018-07-12 12:08:40 -07:00
|
|
|
const Allocator = std.mem.Allocator;
|
|
|
|
const Value = @import("value.zig").Value;
|
2020-04-18 16:41:45 -07:00
|
|
|
const Type = @import("type.zig").Type;
|
2018-07-12 12:08:40 -07:00
|
|
|
const assert = std.debug.assert;
|
2017-12-26 16:44:08 -08:00
|
|
|
|
2018-11-13 05:08:37 -08:00
|
|
|
pub const Inst = struct {
|
2020-04-17 21:09:43 -07:00
|
|
|
tag: Tag,
|
|
|
|
|
|
|
|
pub const all_types = .{
|
|
|
|
Constant,
|
|
|
|
PtrToInt,
|
|
|
|
FieldPtr,
|
|
|
|
Deref,
|
|
|
|
Assembly,
|
|
|
|
Unreach,
|
2020-04-17 23:55:28 -07:00
|
|
|
Fn,
|
2020-04-17 21:09:43 -07:00
|
|
|
};
|
|
|
|
|
2020-04-18 16:41:45 -07:00
|
|
|
/// These names are used for the IR text format.
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const Tag = enum {
|
|
|
|
constant,
|
|
|
|
ptrtoint,
|
|
|
|
fieldptr,
|
|
|
|
deref,
|
|
|
|
@"asm",
|
|
|
|
unreach,
|
2020-04-17 23:55:28 -07:00
|
|
|
@"fn",
|
2020-04-17 21:09:43 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/// This struct owns the `Value` memory. When the struct is deallocated,
|
|
|
|
/// so is the `Value`. The value of a constant must be copied into
|
|
|
|
/// a memory location for the value to survive after a const instruction.
|
|
|
|
pub const Constant = struct {
|
|
|
|
base: Inst = Inst{ .tag = .constant },
|
2020-04-18 16:41:45 -07:00
|
|
|
ty: Type,
|
2020-04-17 23:55:28 -07:00
|
|
|
|
2020-04-18 16:41:45 -07:00
|
|
|
positionals: struct {
|
|
|
|
value: Value,
|
|
|
|
},
|
2020-04-17 23:55:28 -07:00
|
|
|
kw_args: struct {},
|
2018-07-12 12:08:40 -07:00
|
|
|
};
|
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const PtrToInt = struct {
|
|
|
|
base: Inst = Inst{ .tag = .ptrtoint },
|
2020-04-17 23:55:28 -07:00
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
2018-07-12 12:08:40 -07:00
|
|
|
};
|
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const FieldPtr = struct {
|
|
|
|
base: Inst = Inst{ .tag = .fieldptr },
|
2020-04-17 23:55:28 -07:00
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
2018-07-12 12:08:40 -07:00
|
|
|
};
|
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const Deref = struct {
|
|
|
|
base: Inst = Inst{ .tag = .deref },
|
2020-04-17 23:55:28 -07:00
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
2018-07-22 20:27:58 -07:00
|
|
|
};
|
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const Assembly = struct {
|
|
|
|
base: Inst = Inst{ .tag = .@"asm" },
|
2020-04-17 23:55:28 -07:00
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
2018-07-24 17:24:05 -07:00
|
|
|
};
|
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const Unreach = struct {
|
|
|
|
base: Inst = Inst{ .tag = .unreach },
|
2020-04-17 23:55:28 -07:00
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const Fn = struct {
|
|
|
|
base: Inst = Inst{ .tag = .@"fn" },
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
body: Body,
|
|
|
|
},
|
|
|
|
kw_args: struct {
|
|
|
|
cc: std.builtin.CallingConvention = .Unspecified,
|
|
|
|
},
|
|
|
|
|
|
|
|
pub const Body = struct {
|
|
|
|
instructions: []*Inst,
|
|
|
|
};
|
2018-07-24 17:24:05 -07:00
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
};
|
2018-07-24 17:24:05 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const ErrorMsg = struct {
|
|
|
|
byte_offset: usize,
|
|
|
|
msg: []const u8,
|
|
|
|
};
|
2018-07-22 20:27:58 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub const Tree = struct {
|
|
|
|
decls: std.ArrayList(*Inst),
|
|
|
|
errors: std.ArrayList(ErrorMsg),
|
|
|
|
};
|
2018-07-22 20:27:58 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
const ParseContext = struct {
|
|
|
|
allocator: *Allocator,
|
|
|
|
i: usize,
|
|
|
|
source: []const u8,
|
|
|
|
errors: *std.ArrayList(ErrorMsg),
|
|
|
|
};
|
2018-07-22 20:27:58 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub fn parse(allocator: *Allocator, source: []const u8) Allocator.Error!Tree {
|
|
|
|
var tree: Tree = .{
|
|
|
|
.decls = std.ArrayList(*Inst).init(allocator),
|
|
|
|
.errors = std.ArrayList(ErrorMsg).init(allocator),
|
2018-07-22 20:27:58 -07:00
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
var ctx: ParseContext = .{
|
|
|
|
.allocator = allocator,
|
|
|
|
.i = 0,
|
|
|
|
.source = source,
|
|
|
|
.errors = &tree.errors,
|
2018-07-12 12:08:40 -07:00
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
parseRoot(&ctx, &tree) catch |err| switch (err) {
|
|
|
|
error.ParseFailure => {
|
|
|
|
assert(tree.errors.items.len != 0);
|
|
|
|
},
|
|
|
|
else => |e| return e,
|
2018-07-12 12:08:40 -07:00
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
return tree;
|
|
|
|
}
|
2018-07-12 12:08:40 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub fn parseRoot(ctx: *ParseContext, tree: *Tree) !void {
|
|
|
|
// The IR format is designed so that it can be tokenized and parsed at the same time.
|
|
|
|
var global_name_map = std.StringHashMap(usize).init(ctx.allocator);
|
|
|
|
while (ctx.i < ctx.source.len) : (ctx.i += 1) switch (ctx.source[ctx.i]) {
|
|
|
|
';' => _ = try skipToAndOver(ctx, '\n'),
|
|
|
|
'@' => {
|
|
|
|
const at_start = ctx.i;
|
|
|
|
const ident = try skipToAndOver(ctx, ' ');
|
|
|
|
var ty: ?*Value = null;
|
|
|
|
if (eatByte(ctx, ':')) {
|
|
|
|
ty = try parseType(ctx);
|
|
|
|
skipSpace(ctx);
|
|
|
|
}
|
|
|
|
try requireEatBytes(ctx, "= ");
|
|
|
|
const inst = try parseInstruction(ctx);
|
|
|
|
const ident_index = tree.decls.items.len;
|
|
|
|
if (try global_name_map.put(ident, ident_index)) |_| {
|
|
|
|
return parseError(ctx, "redefinition of identifier '{}'", .{ident});
|
|
|
|
}
|
|
|
|
try tree.decls.append(inst);
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
' ', '\n' => continue,
|
|
|
|
else => |byte| return parseError(ctx, "unexpected byte: '{c}'", .{byte}),
|
2018-07-12 12:08:40 -07:00
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
}
|
2018-07-12 12:08:40 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn eatByte(ctx: *ParseContext, byte: u8) bool {
|
|
|
|
if (ctx.i >= ctx.source.len) return false;
|
|
|
|
if (ctx.source[ctx.i] != byte) return false;
|
|
|
|
ctx.i += 1;
|
|
|
|
return true;
|
|
|
|
}
|
2018-07-13 18:56:38 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn skipSpace(ctx: *ParseContext) void {
|
|
|
|
while (ctx.i < ctx.source.len and ctx.source[ctx.i] == ' ') : (ctx.i += 1) {}
|
|
|
|
}
|
2018-07-12 12:08:40 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn requireEatBytes(ctx: *ParseContext, bytes: []const u8) !void {
|
|
|
|
if (ctx.i + bytes.len > ctx.source.len)
|
|
|
|
return parseError(ctx, "unexpected EOF", .{});
|
|
|
|
if (!mem.eql(u8, ctx.source[ctx.i..][0..bytes.len], bytes))
|
|
|
|
return parseError(ctx, "expected '{}'", .{bytes});
|
|
|
|
ctx.i += bytes.len;
|
|
|
|
}
|
2018-07-13 18:56:38 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn skipToAndOver(ctx: *ParseContext, byte: u8) ![]const u8 {
|
|
|
|
const start_i = ctx.i;
|
|
|
|
while (ctx.i < ctx.source.len) : (ctx.i += 1) {
|
|
|
|
if (ctx.source[ctx.i] == byte) {
|
|
|
|
const result = ctx.source[start_i..ctx.i];
|
|
|
|
ctx.i += 1;
|
|
|
|
return result;
|
2018-07-13 18:56:38 -07:00
|
|
|
}
|
2020-04-17 21:09:43 -07:00
|
|
|
}
|
|
|
|
return parseError(ctx, "unexpected EOF", .{});
|
|
|
|
}
|
2018-07-13 18:56:38 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn parseError(ctx: *ParseContext, comptime format: []const u8, args: var) error{ ParseFailure, OutOfMemory } {
|
|
|
|
const msg = try std.fmt.allocPrint(ctx.allocator, format, args);
|
|
|
|
(try ctx.errors.addOne()).* = .{
|
|
|
|
.byte_offset = ctx.i,
|
|
|
|
.msg = msg,
|
2018-07-18 14:40:59 -07:00
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
return error.ParseFailure;
|
|
|
|
}
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn parseType(ctx: *ParseContext) !*Value {
|
|
|
|
return parseError(ctx, "TODO parse type", .{});
|
|
|
|
}
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn parseInstruction(ctx: *ParseContext) !*Inst {
|
|
|
|
switch (ctx.source[ctx.i]) {
|
|
|
|
'"' => return parseStringLiteralConst(ctx),
|
|
|
|
'0'...'9' => return parseIntegerLiteralConst(ctx),
|
|
|
|
else => {},
|
|
|
|
}
|
2020-04-17 23:55:28 -07:00
|
|
|
const fn_name = try skipToAndOver(ctx, '(');
|
|
|
|
inline for (Inst.all_types) |InstType| {
|
|
|
|
const this_name = @tagName(std.meta.fieldInfo(InstType, "base").default_value.?.tag);
|
|
|
|
if (mem.eql(u8, this_name, fn_name)) {
|
|
|
|
return parseInstructionGeneric(ctx, this_name, InstType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return parseError(ctx, "unknown instruction '{}'", .{fn_name});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parseInstructionGeneric(ctx: *ParseContext, comptime fn_name: []const u8, comptime InstType: type) !*Inst {
|
|
|
|
const inst_specific = try ctx.allocator.create(InstType);
|
|
|
|
|
|
|
|
const Positionals = @TypeOf(inst_specific.positionals);
|
|
|
|
inline for (@typeInfo(Positionals).Struct.fields) |arg_field| {
|
|
|
|
@field(inst_specific.positionals, arg_field.name) = try parseParameterGeneric(ctx, arg_field.field_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
const KW_Args = @TypeOf(inst_specific.kw_args);
|
|
|
|
inst_specific.kw_args = .{}; // assign defaults
|
|
|
|
skipSpace(ctx);
|
|
|
|
while (eatByte(ctx, ',')) {
|
|
|
|
skipSpace(ctx);
|
|
|
|
const name = try skipToAndOver(ctx, '=');
|
|
|
|
inline for (@typeInfo(KW_Args).Struct.fields) |arg_field| {
|
|
|
|
if (mem.eql(u8, name, arg_field.name)) {
|
|
|
|
@field(inst_specific.kw_args, arg_field.name) = try parseParameterGeneric(ctx, arg_field.field_type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
skipSpace(ctx);
|
|
|
|
}
|
|
|
|
try requireEatBytes(ctx, ")");
|
|
|
|
|
|
|
|
return &inst_specific.base;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parseParameterGeneric(ctx: *ParseContext, comptime T: type) !T {
|
2020-04-18 16:41:45 -07:00
|
|
|
if (@typeInfo(T) == .Enum) {
|
|
|
|
const start = ctx.i;
|
|
|
|
while (ctx.i < ctx.source.len) : (ctx.i += 1) switch (ctx.source[ctx.i]) {
|
|
|
|
' ', '\n', ',', ')' => {
|
|
|
|
const enum_name = ctx.source[start..ctx.i];
|
|
|
|
ctx.i += 1;
|
|
|
|
return std.meta.stringToEnum(T, enum_name) orelse {
|
|
|
|
return parseError(ctx, "tag '{}' not a member of enum '{}'", .{ enum_name, @typeName(T) });
|
|
|
|
};
|
|
|
|
},
|
|
|
|
else => continue,
|
|
|
|
};
|
|
|
|
return parseError(ctx, "unexpected EOF in enum parameter", .{});
|
|
|
|
}
|
|
|
|
switch (T) {
|
|
|
|
Inst.Fn.Body => {
|
|
|
|
var instructions = std.ArrayList(*Inst).init(ctx.allocator);
|
|
|
|
try requireEatBytes(ctx, "{");
|
|
|
|
return T{
|
|
|
|
.instructions = instructions.toOwnedSlice(),
|
|
|
|
};
|
|
|
|
},
|
|
|
|
Value => return parseError(ctx, "TODO implement parseParameterGeneric for type Value", .{}),
|
|
|
|
else => @compileError("Unimplemented: ir parseParameterGeneric for type " ++ @typeName(T)),
|
|
|
|
}
|
2020-04-17 23:55:28 -07:00
|
|
|
return parseError(ctx, "TODO parse parameter {}", .{@typeName(T)});
|
2020-04-17 21:09:43 -07:00
|
|
|
}
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn parseStringLiteralConst(ctx: *ParseContext) !*Inst {
|
|
|
|
const start = ctx.i;
|
|
|
|
ctx.i += 1; // skip over '"'
|
|
|
|
|
|
|
|
while (ctx.i < ctx.source.len) : (ctx.i += 1) switch (ctx.source[ctx.i]) {
|
|
|
|
'"' => {
|
|
|
|
ctx.i += 1;
|
|
|
|
const span = ctx.source[start..ctx.i];
|
|
|
|
var bad_index: usize = undefined;
|
|
|
|
const parsed = std.zig.parseStringLiteral(ctx.allocator, span, &bad_index) catch |err| switch (err) {
|
|
|
|
error.InvalidCharacter => {
|
|
|
|
ctx.i = start + bad_index;
|
|
|
|
const bad_byte = ctx.source[ctx.i];
|
|
|
|
return parseError(ctx, "invalid string literal character: '{c}'\n", .{bad_byte});
|
|
|
|
},
|
|
|
|
else => |e| return e,
|
|
|
|
};
|
2020-04-18 16:41:45 -07:00
|
|
|
const bytes_payload = try ctx.allocator.create(Value.Payload.Bytes);
|
|
|
|
errdefer ctx.allocator.destroy(bytes_payload);
|
|
|
|
bytes_payload.* = .{ .data = parsed };
|
|
|
|
|
|
|
|
const ty_payload = try ctx.allocator.create(Type.Payload.Array_u8_Sentinel0);
|
|
|
|
errdefer ctx.allocator.destroy(ty_payload);
|
|
|
|
ty_payload.* = .{ .len = parsed.len };
|
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
const const_inst = try ctx.allocator.create(Inst.Constant);
|
2020-04-17 23:55:28 -07:00
|
|
|
const_inst.* = .{
|
2020-04-18 16:41:45 -07:00
|
|
|
.ty = Type.initPayload(&ty_payload.base),
|
|
|
|
.positionals = .{ .value = Value.initPayload(&bytes_payload.base) },
|
2020-04-17 23:55:28 -07:00
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
return &const_inst.base;
|
|
|
|
},
|
|
|
|
'\\' => {
|
|
|
|
ctx.i += 1;
|
|
|
|
if (ctx.i >= ctx.source.len) break;
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
else => continue,
|
2018-07-13 18:56:38 -07:00
|
|
|
};
|
2020-04-17 21:09:43 -07:00
|
|
|
return parseError(ctx, "unexpected EOF in string literal", .{});
|
|
|
|
}
|
2018-07-13 18:56:38 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn parseIntegerLiteralConst(ctx: *ParseContext) !*Inst {
|
|
|
|
return parseError(ctx, "TODO parse integer literal", .{});
|
|
|
|
}
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
pub fn main() anyerror!void {
|
|
|
|
var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator);
|
|
|
|
defer arena.deinit();
|
|
|
|
const allocator = &arena.allocator;
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
const args = try std.process.argsAlloc(allocator);
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
const src_path = args[1];
|
|
|
|
const debug_error_trace = true;
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
const source = try std.fs.cwd().readFileAlloc(allocator, src_path, std.math.maxInt(u32));
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
const tree = try parse(allocator, source);
|
|
|
|
if (tree.errors.items.len != 0) {
|
|
|
|
for (tree.errors.items) |err_msg| {
|
|
|
|
const loc = findLineColumn(source, err_msg.byte_offset);
|
|
|
|
std.debug.warn("{}:{}:{}: error: {}\n", .{ src_path, loc.line + 1, loc.column + 1, err_msg.msg });
|
2018-07-18 14:40:59 -07:00
|
|
|
}
|
2020-04-17 21:09:43 -07:00
|
|
|
if (debug_error_trace) return error.ParseFailure;
|
|
|
|
std.process.exit(1);
|
|
|
|
}
|
|
|
|
}
|
2018-07-18 14:40:59 -07:00
|
|
|
|
2020-04-17 21:09:43 -07:00
|
|
|
fn findLineColumn(source: []const u8, byte_offset: usize) struct { line: usize, column: usize } {
|
|
|
|
var line: usize = 0;
|
|
|
|
var column: usize = 0;
|
|
|
|
for (source[0..byte_offset]) |byte| {
|
|
|
|
switch (byte) {
|
|
|
|
'\n' => {
|
|
|
|
line += 1;
|
|
|
|
column = 0;
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
column += 1;
|
|
|
|
},
|
2018-07-18 14:40:59 -07:00
|
|
|
}
|
|
|
|
}
|
2020-04-17 21:09:43 -07:00
|
|
|
return .{ .line = line, .column = column };
|
2018-07-13 18:56:38 -07:00
|
|
|
}
|