2020-04-20 16:19:35 -07:00
|
|
|
//! This file has to do with parsing and rendering the ZIR text format.
|
2020-04-20 21:56:30 -07:00
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
const std = @import("std");
|
|
|
|
const mem = std.mem;
|
|
|
|
const Allocator = std.mem.Allocator;
|
|
|
|
const assert = std.debug.assert;
|
2020-05-01 03:15:58 -07:00
|
|
|
const BigIntConst = std.math.big.int.Const;
|
|
|
|
const BigIntMutable = std.math.big.int.Mutable;
|
2020-05-15 18:44:33 -07:00
|
|
|
const Type = @import("type.zig").Type;
|
|
|
|
const Value = @import("value.zig").Value;
|
|
|
|
const TypedValue = @import("TypedValue.zig");
|
|
|
|
const ir = @import("ir.zig");
|
|
|
|
const IrModule = @import("Module.zig");
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
/// These are instructions that correspond to the ZIR text format. See `ir.Inst` for
|
|
|
|
/// in-memory, analyzed instructions with types and values.
|
|
|
|
pub const Inst = struct {
|
|
|
|
tag: Tag,
|
2020-04-21 10:50:04 -07:00
|
|
|
/// Byte offset into the source.
|
|
|
|
src: usize,
|
2020-05-09 23:05:54 -07:00
|
|
|
name: []const u8,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
2020-05-14 22:22:04 -07:00
|
|
|
/// Slice into the source of the part after the = and before the next instruction.
|
2020-05-15 12:20:42 -07:00
|
|
|
contents: []const u8 = &[0]u8{},
|
2020-05-14 22:22:04 -07:00
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
/// These names are used directly as the instruction names in the text format.
|
|
|
|
pub const Tag = enum {
|
2020-04-29 16:11:40 -07:00
|
|
|
breakpoint,
|
2020-05-09 23:05:54 -07:00
|
|
|
call,
|
|
|
|
/// Represents a reference to a global decl by name.
|
2020-05-14 10:20:27 -07:00
|
|
|
/// The syntax `@foo` is equivalent to `declref("foo")`.
|
2020-05-09 23:05:54 -07:00
|
|
|
declref,
|
2020-04-20 16:19:35 -07:00
|
|
|
str,
|
|
|
|
int,
|
|
|
|
ptrtoint,
|
|
|
|
fieldptr,
|
|
|
|
deref,
|
|
|
|
as,
|
|
|
|
@"asm",
|
|
|
|
@"unreachable",
|
2020-04-28 18:40:51 -07:00
|
|
|
@"return",
|
2020-04-20 16:19:35 -07:00
|
|
|
@"fn",
|
|
|
|
@"export",
|
|
|
|
primitive,
|
2020-05-14 10:20:27 -07:00
|
|
|
ref,
|
2020-04-20 16:19:35 -07:00
|
|
|
fntype,
|
2020-04-21 16:48:59 -07:00
|
|
|
intcast,
|
2020-04-23 17:23:16 -07:00
|
|
|
bitcast,
|
2020-04-25 22:20:58 -07:00
|
|
|
elemptr,
|
|
|
|
add,
|
2020-04-28 18:04:18 -07:00
|
|
|
cmp,
|
|
|
|
condbr,
|
|
|
|
isnull,
|
|
|
|
isnonnull,
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
pub fn TagToType(tag: Tag) type {
|
|
|
|
return switch (tag) {
|
2020-04-29 16:11:40 -07:00
|
|
|
.breakpoint => Breakpoint,
|
2020-05-09 23:05:54 -07:00
|
|
|
.call => Call,
|
|
|
|
.declref => DeclRef,
|
2020-04-20 16:19:35 -07:00
|
|
|
.str => Str,
|
|
|
|
.int => Int,
|
|
|
|
.ptrtoint => PtrToInt,
|
|
|
|
.fieldptr => FieldPtr,
|
|
|
|
.deref => Deref,
|
|
|
|
.as => As,
|
2020-04-21 19:19:32 -07:00
|
|
|
.@"asm" => Asm,
|
2020-04-20 16:19:35 -07:00
|
|
|
.@"unreachable" => Unreachable,
|
2020-04-28 18:40:51 -07:00
|
|
|
.@"return" => Return,
|
2020-04-20 16:19:35 -07:00
|
|
|
.@"fn" => Fn,
|
|
|
|
.@"export" => Export,
|
|
|
|
.primitive => Primitive,
|
2020-05-14 10:20:27 -07:00
|
|
|
.ref => Ref,
|
2020-04-20 16:19:35 -07:00
|
|
|
.fntype => FnType,
|
2020-04-21 16:48:59 -07:00
|
|
|
.intcast => IntCast,
|
2020-04-23 17:23:16 -07:00
|
|
|
.bitcast => BitCast,
|
2020-04-25 22:20:58 -07:00
|
|
|
.elemptr => ElemPtr,
|
|
|
|
.add => Add,
|
2020-04-28 18:04:18 -07:00
|
|
|
.cmp => Cmp,
|
|
|
|
.condbr => CondBr,
|
|
|
|
.isnull => IsNull,
|
|
|
|
.isnonnull => IsNonNull,
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cast(base: *Inst, comptime T: type) ?*T {
|
2020-04-20 21:56:30 -07:00
|
|
|
if (base.tag != T.base_tag)
|
2020-04-20 16:19:35 -07:00
|
|
|
return null;
|
|
|
|
|
|
|
|
return @fieldParentPtr(T, "base", base);
|
|
|
|
}
|
|
|
|
|
2020-04-29 16:11:40 -07:00
|
|
|
pub const Breakpoint = struct {
|
|
|
|
pub const base_tag = Tag.breakpoint;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
2020-05-09 23:05:54 -07:00
|
|
|
pub const Call = struct {
|
|
|
|
pub const base_tag = Tag.call;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
func: *Inst,
|
|
|
|
args: []*Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {
|
|
|
|
modifier: std.builtin.CallOptions.Modifier = .auto,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const DeclRef = struct {
|
|
|
|
pub const base_tag = Tag.declref;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
name: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
pub const Str = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.str;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
2020-04-21 21:04:52 -07:00
|
|
|
bytes: []const u8,
|
2020-04-20 16:19:35 -07:00
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const Int = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.int;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
2020-05-01 03:15:58 -07:00
|
|
|
int: BigIntConst,
|
2020-04-20 16:19:35 -07:00
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const PtrToInt = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.ptrtoint;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
ptr: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const FieldPtr = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.fieldptr;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
object_ptr: *Inst,
|
|
|
|
field_name: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const Deref = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.deref;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
ptr: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const As = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.as;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
dest_type: *Inst,
|
|
|
|
value: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
2020-04-21 19:19:32 -07:00
|
|
|
pub const Asm = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.@"asm";
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
asm_source: *Inst,
|
|
|
|
return_type: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {
|
|
|
|
@"volatile": bool = false,
|
|
|
|
output: ?*Inst = null,
|
|
|
|
inputs: []*Inst = &[0]*Inst{},
|
|
|
|
clobbers: []*Inst = &[0]*Inst{},
|
|
|
|
args: []*Inst = &[0]*Inst{},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const Unreachable = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.@"unreachable";
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
2020-04-28 18:40:51 -07:00
|
|
|
pub const Return = struct {
|
|
|
|
pub const base_tag = Tag.@"return";
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
pub const Fn = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.@"fn";
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
fn_type: *Inst,
|
2020-04-28 18:04:18 -07:00
|
|
|
body: Module.Body,
|
2020-04-20 16:19:35 -07:00
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const Export = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.@"export";
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
symbol_name: *Inst,
|
|
|
|
value: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
2020-05-14 10:20:27 -07:00
|
|
|
pub const Ref = struct {
|
|
|
|
pub const base_tag = Tag.ref;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
operand: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
pub const Primitive = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.primitive;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
tag: BuiltinType,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
|
|
|
|
pub const BuiltinType = enum {
|
2020-05-09 23:05:54 -07:00
|
|
|
isize,
|
|
|
|
usize,
|
|
|
|
c_short,
|
|
|
|
c_ushort,
|
|
|
|
c_int,
|
|
|
|
c_uint,
|
|
|
|
c_long,
|
|
|
|
c_ulong,
|
|
|
|
c_longlong,
|
|
|
|
c_ulonglong,
|
|
|
|
c_longdouble,
|
|
|
|
c_void,
|
|
|
|
f16,
|
|
|
|
f32,
|
|
|
|
f64,
|
|
|
|
f128,
|
|
|
|
bool,
|
|
|
|
void,
|
|
|
|
noreturn,
|
|
|
|
type,
|
|
|
|
anyerror,
|
|
|
|
comptime_int,
|
|
|
|
comptime_float,
|
2020-04-21 14:11:42 -07:00
|
|
|
|
2020-05-08 04:52:09 -07:00
|
|
|
pub fn toType(self: BuiltinType) Type {
|
2020-04-21 14:11:42 -07:00
|
|
|
return switch (self) {
|
2020-05-09 23:05:54 -07:00
|
|
|
.isize => Type.initTag(.isize),
|
|
|
|
.usize => Type.initTag(.usize),
|
|
|
|
.c_short => Type.initTag(.c_short),
|
|
|
|
.c_ushort => Type.initTag(.c_ushort),
|
|
|
|
.c_int => Type.initTag(.c_int),
|
|
|
|
.c_uint => Type.initTag(.c_uint),
|
|
|
|
.c_long => Type.initTag(.c_long),
|
|
|
|
.c_ulong => Type.initTag(.c_ulong),
|
|
|
|
.c_longlong => Type.initTag(.c_longlong),
|
|
|
|
.c_ulonglong => Type.initTag(.c_ulonglong),
|
|
|
|
.c_longdouble => Type.initTag(.c_longdouble),
|
|
|
|
.c_void => Type.initTag(.c_void),
|
|
|
|
.f16 => Type.initTag(.f16),
|
|
|
|
.f32 => Type.initTag(.f32),
|
|
|
|
.f64 => Type.initTag(.f64),
|
|
|
|
.f128 => Type.initTag(.f128),
|
|
|
|
.bool => Type.initTag(.bool),
|
|
|
|
.void => Type.initTag(.void),
|
|
|
|
.noreturn => Type.initTag(.noreturn),
|
|
|
|
.type => Type.initTag(.type),
|
|
|
|
.anyerror => Type.initTag(.anyerror),
|
|
|
|
.comptime_int => Type.initTag(.comptime_int),
|
|
|
|
.comptime_float => Type.initTag(.comptime_float),
|
2020-04-21 14:11:42 -07:00
|
|
|
};
|
|
|
|
}
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const FnType = struct {
|
2020-04-20 21:56:30 -07:00
|
|
|
pub const base_tag = Tag.fntype;
|
|
|
|
base: Inst,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
param_types: []*Inst,
|
|
|
|
return_type: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {
|
|
|
|
cc: std.builtin.CallingConvention = .Unspecified,
|
|
|
|
},
|
|
|
|
};
|
2020-04-21 16:48:59 -07:00
|
|
|
|
|
|
|
pub const IntCast = struct {
|
|
|
|
pub const base_tag = Tag.intcast;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
dest_type: *Inst,
|
|
|
|
value: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
2020-04-23 17:23:16 -07:00
|
|
|
|
|
|
|
pub const BitCast = struct {
|
|
|
|
pub const base_tag = Tag.bitcast;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
dest_type: *Inst,
|
|
|
|
operand: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
2020-04-25 22:20:58 -07:00
|
|
|
|
|
|
|
pub const ElemPtr = struct {
|
|
|
|
pub const base_tag = Tag.elemptr;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
array_ptr: *Inst,
|
|
|
|
index: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const Add = struct {
|
|
|
|
pub const base_tag = Tag.add;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
lhs: *Inst,
|
|
|
|
rhs: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
2020-04-28 18:04:18 -07:00
|
|
|
|
|
|
|
pub const Cmp = struct {
|
|
|
|
pub const base_tag = Tag.cmp;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
lhs: *Inst,
|
|
|
|
op: std.math.CompareOperator,
|
|
|
|
rhs: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const CondBr = struct {
|
|
|
|
pub const base_tag = Tag.condbr;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
condition: *Inst,
|
|
|
|
true_body: Module.Body,
|
|
|
|
false_body: Module.Body,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const IsNull = struct {
|
|
|
|
pub const base_tag = Tag.isnull;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
operand: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const IsNonNull = struct {
|
|
|
|
pub const base_tag = Tag.isnonnull;
|
|
|
|
base: Inst,
|
|
|
|
|
|
|
|
positionals: struct {
|
|
|
|
operand: *Inst,
|
|
|
|
},
|
|
|
|
kw_args: struct {},
|
|
|
|
};
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
pub const ErrorMsg = struct {
|
|
|
|
byte_offset: usize,
|
|
|
|
msg: []const u8,
|
|
|
|
};
|
|
|
|
|
|
|
|
pub const Module = struct {
|
|
|
|
decls: []*Inst,
|
2020-05-14 10:20:27 -07:00
|
|
|
arena: std.heap.ArenaAllocator,
|
2020-05-11 22:02:48 -07:00
|
|
|
error_msg: ?ErrorMsg = null,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
2020-04-28 18:04:18 -07:00
|
|
|
pub const Body = struct {
|
|
|
|
instructions: []*Inst,
|
|
|
|
};
|
|
|
|
|
2020-04-20 21:56:30 -07:00
|
|
|
pub fn deinit(self: *Module, allocator: *Allocator) void {
|
|
|
|
allocator.free(self.decls);
|
2020-05-14 10:20:27 -07:00
|
|
|
self.arena.deinit();
|
2020-04-20 16:19:35 -07:00
|
|
|
self.* = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This is a debugging utility for rendering the tree to stderr.
|
|
|
|
pub fn dump(self: Module) void {
|
|
|
|
self.writeToStream(std.heap.page_allocator, std.io.getStdErr().outStream()) catch {};
|
|
|
|
}
|
|
|
|
|
2020-04-28 18:04:18 -07:00
|
|
|
const InstPtrTable = std.AutoHashMap(*Inst, struct { index: usize, fn_body: ?*Module.Body });
|
2020-04-20 16:19:35 -07:00
|
|
|
|
2020-05-28 09:19:00 -07:00
|
|
|
/// TODO Look into making a table to speed this up.
|
|
|
|
pub fn findDecl(self: Module, name: []const u8) ?*Inst {
|
|
|
|
for (self.decls) |decl| {
|
|
|
|
if (mem.eql(u8, decl.name, name)) {
|
|
|
|
return decl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:56:30 -07:00
|
|
|
/// The allocator is used for temporary storage, but this function always returns
|
|
|
|
/// with no resources allocated.
|
2020-04-20 16:19:35 -07:00
|
|
|
pub fn writeToStream(self: Module, allocator: *Allocator, stream: var) !void {
|
|
|
|
// First, build a map of *Inst to @ or % indexes
|
|
|
|
var inst_table = InstPtrTable.init(allocator);
|
|
|
|
defer inst_table.deinit();
|
|
|
|
|
|
|
|
try inst_table.ensureCapacity(self.decls.len);
|
|
|
|
|
|
|
|
for (self.decls) |decl, decl_i| {
|
|
|
|
try inst_table.putNoClobber(decl, .{ .index = decl_i, .fn_body = null });
|
|
|
|
|
|
|
|
if (decl.cast(Inst.Fn)) |fn_inst| {
|
|
|
|
for (fn_inst.positionals.body.instructions) |inst, inst_i| {
|
|
|
|
try inst_table.putNoClobber(inst, .{ .index = inst_i, .fn_body = &fn_inst.positionals.body });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (self.decls) |decl, i| {
|
|
|
|
try stream.print("@{} ", .{i});
|
|
|
|
try self.writeInstToStream(stream, decl, &inst_table);
|
|
|
|
try stream.writeByte('\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn writeInstToStream(
|
|
|
|
self: Module,
|
|
|
|
stream: var,
|
|
|
|
decl: *Inst,
|
|
|
|
inst_table: *const InstPtrTable,
|
|
|
|
) @TypeOf(stream).Error!void {
|
|
|
|
// TODO I tried implementing this with an inline for loop and hit a compiler bug
|
|
|
|
switch (decl.tag) {
|
2020-04-29 16:11:40 -07:00
|
|
|
.breakpoint => return self.writeInstToStreamGeneric(stream, .breakpoint, decl, inst_table),
|
2020-05-09 23:05:54 -07:00
|
|
|
.call => return self.writeInstToStreamGeneric(stream, .call, decl, inst_table),
|
2020-05-13 17:06:01 -07:00
|
|
|
.declref => return self.writeInstToStreamGeneric(stream, .declref, decl, inst_table),
|
2020-04-20 16:19:35 -07:00
|
|
|
.str => return self.writeInstToStreamGeneric(stream, .str, decl, inst_table),
|
|
|
|
.int => return self.writeInstToStreamGeneric(stream, .int, decl, inst_table),
|
|
|
|
.ptrtoint => return self.writeInstToStreamGeneric(stream, .ptrtoint, decl, inst_table),
|
|
|
|
.fieldptr => return self.writeInstToStreamGeneric(stream, .fieldptr, decl, inst_table),
|
|
|
|
.deref => return self.writeInstToStreamGeneric(stream, .deref, decl, inst_table),
|
|
|
|
.as => return self.writeInstToStreamGeneric(stream, .as, decl, inst_table),
|
|
|
|
.@"asm" => return self.writeInstToStreamGeneric(stream, .@"asm", decl, inst_table),
|
|
|
|
.@"unreachable" => return self.writeInstToStreamGeneric(stream, .@"unreachable", decl, inst_table),
|
2020-04-28 18:40:51 -07:00
|
|
|
.@"return" => return self.writeInstToStreamGeneric(stream, .@"return", decl, inst_table),
|
2020-04-20 16:19:35 -07:00
|
|
|
.@"fn" => return self.writeInstToStreamGeneric(stream, .@"fn", decl, inst_table),
|
|
|
|
.@"export" => return self.writeInstToStreamGeneric(stream, .@"export", decl, inst_table),
|
2020-05-14 10:20:27 -07:00
|
|
|
.ref => return self.writeInstToStreamGeneric(stream, .ref, decl, inst_table),
|
2020-04-20 16:19:35 -07:00
|
|
|
.primitive => return self.writeInstToStreamGeneric(stream, .primitive, decl, inst_table),
|
|
|
|
.fntype => return self.writeInstToStreamGeneric(stream, .fntype, decl, inst_table),
|
2020-04-21 16:48:59 -07:00
|
|
|
.intcast => return self.writeInstToStreamGeneric(stream, .intcast, decl, inst_table),
|
2020-04-23 17:23:16 -07:00
|
|
|
.bitcast => return self.writeInstToStreamGeneric(stream, .bitcast, decl, inst_table),
|
2020-04-25 22:20:58 -07:00
|
|
|
.elemptr => return self.writeInstToStreamGeneric(stream, .elemptr, decl, inst_table),
|
|
|
|
.add => return self.writeInstToStreamGeneric(stream, .add, decl, inst_table),
|
2020-04-28 18:04:18 -07:00
|
|
|
.cmp => return self.writeInstToStreamGeneric(stream, .cmp, decl, inst_table),
|
|
|
|
.condbr => return self.writeInstToStreamGeneric(stream, .condbr, decl, inst_table),
|
|
|
|
.isnull => return self.writeInstToStreamGeneric(stream, .isnull, decl, inst_table),
|
|
|
|
.isnonnull => return self.writeInstToStreamGeneric(stream, .isnonnull, decl, inst_table),
|
2020-04-20 16:19:35 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn writeInstToStreamGeneric(
|
|
|
|
self: Module,
|
|
|
|
stream: var,
|
|
|
|
comptime inst_tag: Inst.Tag,
|
|
|
|
base: *Inst,
|
|
|
|
inst_table: *const InstPtrTable,
|
|
|
|
) !void {
|
|
|
|
const SpecificInst = Inst.TagToType(inst_tag);
|
|
|
|
const inst = @fieldParentPtr(SpecificInst, "base", base);
|
|
|
|
const Positionals = @TypeOf(inst.positionals);
|
|
|
|
try stream.writeAll("= " ++ @tagName(inst_tag) ++ "(");
|
|
|
|
const pos_fields = @typeInfo(Positionals).Struct.fields;
|
|
|
|
inline for (pos_fields) |arg_field, i| {
|
|
|
|
if (i != 0) {
|
|
|
|
try stream.writeAll(", ");
|
|
|
|
}
|
|
|
|
try self.writeParamToStream(stream, @field(inst.positionals, arg_field.name), inst_table);
|
|
|
|
}
|
|
|
|
|
|
|
|
comptime var need_comma = pos_fields.len != 0;
|
|
|
|
const KW_Args = @TypeOf(inst.kw_args);
|
|
|
|
inline for (@typeInfo(KW_Args).Struct.fields) |arg_field, i| {
|
|
|
|
if (@typeInfo(arg_field.field_type) == .Optional) {
|
|
|
|
if (@field(inst.kw_args, arg_field.name)) |non_optional| {
|
2020-04-22 00:08:50 -07:00
|
|
|
if (need_comma) try stream.writeAll(", ");
|
2020-04-20 16:19:35 -07:00
|
|
|
try stream.print("{}=", .{arg_field.name});
|
|
|
|
try self.writeParamToStream(stream, non_optional, inst_table);
|
|
|
|
need_comma = true;
|
|
|
|
}
|
|
|
|
} else {
|
2020-04-22 00:08:50 -07:00
|
|
|
if (need_comma) try stream.writeAll(", ");
|
2020-04-20 16:19:35 -07:00
|
|
|
try stream.print("{}=", .{arg_field.name});
|
|
|
|
try self.writeParamToStream(stream, @field(inst.kw_args, arg_field.name), inst_table);
|
|
|
|
need_comma = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try stream.writeByte(')');
|
|
|
|
}
|
|
|
|
|
|
|
|
fn writeParamToStream(self: Module, stream: var, param: var, inst_table: *const InstPtrTable) !void {
|
|
|
|
if (@typeInfo(@TypeOf(param)) == .Enum) {
|
|
|
|
return stream.writeAll(@tagName(param));
|
|
|
|
}
|
|
|
|
switch (@TypeOf(param)) {
|
|
|
|
*Inst => return self.writeInstParamToStream(stream, param, inst_table),
|
|
|
|
[]*Inst => {
|
|
|
|
try stream.writeByte('[');
|
|
|
|
for (param) |inst, i| {
|
|
|
|
if (i != 0) {
|
|
|
|
try stream.writeAll(", ");
|
|
|
|
}
|
|
|
|
try self.writeInstParamToStream(stream, inst, inst_table);
|
|
|
|
}
|
|
|
|
try stream.writeByte(']');
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
Module.Body => {
|
2020-04-20 16:19:35 -07:00
|
|
|
try stream.writeAll("{\n");
|
|
|
|
for (param.instructions) |inst, i| {
|
|
|
|
try stream.print(" %{} ", .{i});
|
|
|
|
try self.writeInstToStream(stream, inst, inst_table);
|
|
|
|
try stream.writeByte('\n');
|
|
|
|
}
|
|
|
|
try stream.writeByte('}');
|
|
|
|
},
|
|
|
|
bool => return stream.writeByte("01"[@boolToInt(param)]),
|
2020-04-21 21:04:52 -07:00
|
|
|
[]u8, []const u8 => return std.zig.renderStringLiteral(param, stream),
|
2020-05-01 03:15:58 -07:00
|
|
|
BigIntConst => return stream.print("{}", .{param}),
|
2020-04-20 16:19:35 -07:00
|
|
|
else => |T| @compileError("unimplemented: rendering parameter of type " ++ @typeName(T)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn writeInstParamToStream(self: Module, stream: var, inst: *Inst, inst_table: *const InstPtrTable) !void {
|
|
|
|
const info = inst_table.getValue(inst).?;
|
|
|
|
const prefix = if (info.fn_body == null) "@" else "%";
|
|
|
|
try stream.print("{}{}", .{ prefix, info.index });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
pub fn parse(allocator: *Allocator, source: [:0]const u8) Allocator.Error!Module {
|
|
|
|
var global_name_map = std.StringHashMap(usize).init(allocator);
|
|
|
|
defer global_name_map.deinit();
|
|
|
|
|
|
|
|
var parser: Parser = .{
|
|
|
|
.allocator = allocator,
|
2020-04-20 21:56:30 -07:00
|
|
|
.arena = std.heap.ArenaAllocator.init(allocator),
|
2020-04-20 16:19:35 -07:00
|
|
|
.i = 0,
|
|
|
|
.source = source,
|
|
|
|
.global_name_map = &global_name_map,
|
2020-05-09 23:05:54 -07:00
|
|
|
.decls = .{},
|
2020-05-13 17:06:01 -07:00
|
|
|
.unnamed_index = 0,
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
2020-04-21 21:04:52 -07:00
|
|
|
errdefer parser.arena.deinit();
|
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
parser.parseRoot() catch |err| switch (err) {
|
|
|
|
error.ParseFailure => {
|
2020-05-11 22:02:48 -07:00
|
|
|
assert(parser.error_msg != null);
|
2020-04-20 16:19:35 -07:00
|
|
|
},
|
|
|
|
else => |e| return e,
|
|
|
|
};
|
2020-05-09 23:05:54 -07:00
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
return Module{
|
2020-05-09 23:05:54 -07:00
|
|
|
.decls = parser.decls.toOwnedSlice(allocator),
|
2020-05-14 10:20:27 -07:00
|
|
|
.arena = parser.arena,
|
2020-05-11 22:02:48 -07:00
|
|
|
.error_msg = parser.error_msg,
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const Parser = struct {
|
|
|
|
allocator: *Allocator,
|
2020-04-20 21:56:30 -07:00
|
|
|
arena: std.heap.ArenaAllocator,
|
2020-04-20 16:19:35 -07:00
|
|
|
i: usize,
|
|
|
|
source: [:0]const u8,
|
2020-05-09 23:05:54 -07:00
|
|
|
decls: std.ArrayListUnmanaged(*Inst),
|
2020-04-20 16:19:35 -07:00
|
|
|
global_name_map: *std.StringHashMap(usize),
|
2020-05-11 22:02:48 -07:00
|
|
|
error_msg: ?ErrorMsg = null,
|
2020-05-13 17:06:01 -07:00
|
|
|
unnamed_index: usize,
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
const Body = struct {
|
|
|
|
instructions: std.ArrayList(*Inst),
|
|
|
|
name_map: std.StringHashMap(usize),
|
|
|
|
};
|
|
|
|
|
2020-04-28 18:04:18 -07:00
|
|
|
fn parseBody(self: *Parser) !Module.Body {
|
2020-04-20 16:19:35 -07:00
|
|
|
var body_context = Body{
|
|
|
|
.instructions = std.ArrayList(*Inst).init(self.allocator),
|
|
|
|
.name_map = std.StringHashMap(usize).init(self.allocator),
|
|
|
|
};
|
|
|
|
defer body_context.instructions.deinit();
|
|
|
|
defer body_context.name_map.deinit();
|
|
|
|
|
|
|
|
try requireEatBytes(self, "{");
|
|
|
|
skipSpace(self);
|
|
|
|
|
|
|
|
while (true) : (self.i += 1) switch (self.source[self.i]) {
|
|
|
|
';' => _ = try skipToAndOver(self, '\n'),
|
|
|
|
'%' => {
|
|
|
|
self.i += 1;
|
|
|
|
const ident = try skipToAndOver(self, ' ');
|
|
|
|
skipSpace(self);
|
|
|
|
try requireEatBytes(self, "=");
|
|
|
|
skipSpace(self);
|
2020-05-14 10:20:27 -07:00
|
|
|
const inst = try parseInstruction(self, &body_context, ident);
|
2020-04-20 16:19:35 -07:00
|
|
|
const ident_index = body_context.instructions.items.len;
|
|
|
|
if (try body_context.name_map.put(ident, ident_index)) |_| {
|
|
|
|
return self.fail("redefinition of identifier '{}'", .{ident});
|
|
|
|
}
|
2020-05-13 17:06:01 -07:00
|
|
|
try body_context.instructions.append(inst);
|
2020-04-20 16:19:35 -07:00
|
|
|
continue;
|
|
|
|
},
|
|
|
|
' ', '\n' => continue,
|
|
|
|
'}' => {
|
|
|
|
self.i += 1;
|
|
|
|
break;
|
|
|
|
},
|
|
|
|
else => |byte| return self.failByte(byte),
|
|
|
|
};
|
|
|
|
|
2020-04-27 15:26:59 -07:00
|
|
|
// Move the instructions to the arena
|
|
|
|
const instrs = try self.arena.allocator.alloc(*Inst, body_context.instructions.items.len);
|
|
|
|
mem.copy(*Inst, instrs, body_context.instructions.items);
|
2020-04-28 18:04:18 -07:00
|
|
|
return Module.Body{ .instructions = instrs };
|
2020-04-20 16:19:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn parseStringLiteral(self: *Parser) ![]u8 {
|
|
|
|
const start = self.i;
|
|
|
|
try self.requireEatBytes("\"");
|
|
|
|
|
|
|
|
while (true) : (self.i += 1) switch (self.source[self.i]) {
|
|
|
|
'"' => {
|
|
|
|
self.i += 1;
|
|
|
|
const span = self.source[start..self.i];
|
|
|
|
var bad_index: usize = undefined;
|
2020-04-20 21:56:30 -07:00
|
|
|
const parsed = std.zig.parseStringLiteral(&self.arena.allocator, span, &bad_index) catch |err| switch (err) {
|
2020-04-20 16:19:35 -07:00
|
|
|
error.InvalidCharacter => {
|
|
|
|
self.i = start + bad_index;
|
|
|
|
const bad_byte = self.source[self.i];
|
|
|
|
return self.fail("invalid string literal character: '{c}'\n", .{bad_byte});
|
|
|
|
},
|
|
|
|
else => |e| return e,
|
|
|
|
};
|
|
|
|
return parsed;
|
|
|
|
},
|
|
|
|
'\\' => {
|
|
|
|
self.i += 1;
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
0 => return self.failByte(0),
|
|
|
|
else => continue,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-05-01 03:15:58 -07:00
|
|
|
fn parseIntegerLiteral(self: *Parser) !BigIntConst {
|
2020-04-20 16:19:35 -07:00
|
|
|
const start = self.i;
|
|
|
|
if (self.source[self.i] == '-') self.i += 1;
|
|
|
|
while (true) : (self.i += 1) switch (self.source[self.i]) {
|
|
|
|
'0'...'9' => continue,
|
|
|
|
else => break,
|
|
|
|
};
|
|
|
|
const number_text = self.source[start..self.i];
|
2020-05-01 03:15:58 -07:00
|
|
|
const base = 10;
|
|
|
|
// TODO reuse the same array list for this
|
|
|
|
const limbs_buffer_len = std.math.big.int.calcSetStringLimbsBufferLen(base, number_text.len);
|
|
|
|
const limbs_buffer = try self.allocator.alloc(std.math.big.Limb, limbs_buffer_len);
|
|
|
|
defer self.allocator.free(limbs_buffer);
|
2020-05-01 03:40:51 -07:00
|
|
|
const limb_len = std.math.big.int.calcSetStringLimbCount(base, number_text.len);
|
2020-05-01 03:15:58 -07:00
|
|
|
const limbs = try self.arena.allocator.alloc(std.math.big.Limb, limb_len);
|
|
|
|
var result = BigIntMutable{ .limbs = limbs, .positive = undefined, .len = undefined };
|
|
|
|
result.setString(base, number_text, limbs_buffer, self.allocator) catch |err| switch (err) {
|
|
|
|
error.InvalidCharacter => {
|
|
|
|
self.i = start;
|
|
|
|
return self.fail("invalid digit in integer literal", .{});
|
|
|
|
},
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
2020-05-01 03:15:58 -07:00
|
|
|
return result.toConst();
|
2020-04-20 16:19:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn parseRoot(self: *Parser) !void {
|
|
|
|
// The IR format is designed so that it can be tokenized and parsed at the same time.
|
2020-04-27 15:26:59 -07:00
|
|
|
while (true) {
|
|
|
|
switch (self.source[self.i]) {
|
|
|
|
';' => _ = try skipToAndOver(self, '\n'),
|
|
|
|
'@' => {
|
|
|
|
self.i += 1;
|
|
|
|
const ident = try skipToAndOver(self, ' ');
|
|
|
|
skipSpace(self);
|
|
|
|
try requireEatBytes(self, "=");
|
|
|
|
skipSpace(self);
|
2020-05-14 10:20:27 -07:00
|
|
|
const inst = try parseInstruction(self, null, ident);
|
2020-04-27 15:26:59 -07:00
|
|
|
const ident_index = self.decls.items.len;
|
|
|
|
if (try self.global_name_map.put(ident, ident_index)) |_| {
|
|
|
|
return self.fail("redefinition of identifier '{}'", .{ident});
|
|
|
|
}
|
2020-05-12 20:59:46 -07:00
|
|
|
try self.decls.append(self.allocator, inst);
|
2020-04-27 15:26:59 -07:00
|
|
|
},
|
|
|
|
' ', '\n' => self.i += 1,
|
|
|
|
0 => break,
|
|
|
|
else => |byte| return self.fail("unexpected byte: '{c}'", .{byte}),
|
|
|
|
}
|
|
|
|
}
|
2020-04-20 16:19:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn eatByte(self: *Parser, byte: u8) bool {
|
|
|
|
if (self.source[self.i] != byte) return false;
|
|
|
|
self.i += 1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn skipSpace(self: *Parser) void {
|
|
|
|
while (self.source[self.i] == ' ' or self.source[self.i] == '\n') {
|
|
|
|
self.i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn requireEatBytes(self: *Parser, bytes: []const u8) !void {
|
|
|
|
const start = self.i;
|
|
|
|
for (bytes) |byte| {
|
|
|
|
if (self.source[self.i] != byte) {
|
|
|
|
self.i = start;
|
|
|
|
return self.fail("expected '{}'", .{bytes});
|
|
|
|
}
|
|
|
|
self.i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn skipToAndOver(self: *Parser, byte: u8) ![]const u8 {
|
|
|
|
const start_i = self.i;
|
|
|
|
while (self.source[self.i] != 0) : (self.i += 1) {
|
|
|
|
if (self.source[self.i] == byte) {
|
|
|
|
const result = self.source[start_i..self.i];
|
|
|
|
self.i += 1;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return self.fail("unexpected EOF", .{});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ParseFailure is an internal error code; handled in `parse`.
|
|
|
|
const InnerError = error{ ParseFailure, OutOfMemory };
|
|
|
|
|
|
|
|
fn failByte(self: *Parser, byte: u8) InnerError {
|
|
|
|
if (byte == 0) {
|
|
|
|
return self.fail("unexpected EOF", .{});
|
|
|
|
} else {
|
|
|
|
return self.fail("unexpected byte: '{c}'", .{byte});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fail(self: *Parser, comptime format: []const u8, args: var) InnerError {
|
|
|
|
@setCold(true);
|
2020-05-11 22:02:48 -07:00
|
|
|
self.error_msg = ErrorMsg{
|
2020-04-20 16:19:35 -07:00
|
|
|
.byte_offset = self.i,
|
2020-05-11 22:02:48 -07:00
|
|
|
.msg = try std.fmt.allocPrint(&self.arena.allocator, format, args),
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
|
|
|
return error.ParseFailure;
|
|
|
|
}
|
|
|
|
|
2020-05-13 17:06:01 -07:00
|
|
|
fn parseInstruction(self: *Parser, body_ctx: ?*Body, name: []const u8) InnerError!*Inst {
|
2020-05-14 22:22:04 -07:00
|
|
|
const contents_start = self.i;
|
2020-04-20 16:19:35 -07:00
|
|
|
const fn_name = try skipToAndOver(self, '(');
|
|
|
|
inline for (@typeInfo(Inst.Tag).Enum.fields) |field| {
|
|
|
|
if (mem.eql(u8, field.name, fn_name)) {
|
|
|
|
const tag = @field(Inst.Tag, field.name);
|
2020-05-14 22:22:04 -07:00
|
|
|
return parseInstructionGeneric(self, field.name, Inst.TagToType(tag), body_ctx, name, contents_start);
|
2020-04-20 16:19:35 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return self.fail("unknown instruction '{}'", .{fn_name});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parseInstructionGeneric(
|
|
|
|
self: *Parser,
|
|
|
|
comptime fn_name: []const u8,
|
|
|
|
comptime InstType: type,
|
|
|
|
body_ctx: ?*Body,
|
2020-05-13 17:06:01 -07:00
|
|
|
inst_name: []const u8,
|
2020-05-14 22:22:04 -07:00
|
|
|
contents_start: usize,
|
2020-05-13 17:06:01 -07:00
|
|
|
) InnerError!*Inst {
|
2020-04-20 21:56:30 -07:00
|
|
|
const inst_specific = try self.arena.allocator.create(InstType);
|
|
|
|
inst_specific.base = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.name = inst_name,
|
2020-04-21 10:50:04 -07:00
|
|
|
.src = self.i,
|
2020-04-20 21:56:30 -07:00
|
|
|
.tag = InstType.base_tag,
|
|
|
|
};
|
2020-04-20 16:19:35 -07:00
|
|
|
|
|
|
|
if (@hasField(InstType, "ty")) {
|
|
|
|
inst_specific.ty = opt_type orelse {
|
|
|
|
return self.fail("instruction '" ++ fn_name ++ "' requires type", .{});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const Positionals = @TypeOf(inst_specific.positionals);
|
|
|
|
inline for (@typeInfo(Positionals).Struct.fields) |arg_field| {
|
|
|
|
if (self.source[self.i] == ',') {
|
|
|
|
self.i += 1;
|
|
|
|
skipSpace(self);
|
|
|
|
} else if (self.source[self.i] == ')') {
|
|
|
|
return self.fail("expected positional parameter '{}'", .{arg_field.name});
|
|
|
|
}
|
|
|
|
@field(inst_specific.positionals, arg_field.name) = try parseParameterGeneric(
|
|
|
|
self,
|
|
|
|
arg_field.field_type,
|
|
|
|
body_ctx,
|
|
|
|
);
|
|
|
|
skipSpace(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
const KW_Args = @TypeOf(inst_specific.kw_args);
|
|
|
|
inst_specific.kw_args = .{}; // assign defaults
|
|
|
|
skipSpace(self);
|
|
|
|
while (eatByte(self, ',')) {
|
|
|
|
skipSpace(self);
|
|
|
|
const name = try skipToAndOver(self, '=');
|
|
|
|
inline for (@typeInfo(KW_Args).Struct.fields) |arg_field| {
|
|
|
|
const field_name = arg_field.name;
|
|
|
|
if (mem.eql(u8, name, field_name)) {
|
|
|
|
const NonOptional = switch (@typeInfo(arg_field.field_type)) {
|
|
|
|
.Optional => |info| info.child,
|
|
|
|
else => arg_field.field_type,
|
|
|
|
};
|
|
|
|
@field(inst_specific.kw_args, field_name) = try parseParameterGeneric(self, NonOptional, body_ctx);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return self.fail("unrecognized keyword parameter: '{}'", .{name});
|
|
|
|
}
|
|
|
|
skipSpace(self);
|
|
|
|
}
|
|
|
|
try requireEatBytes(self, ")");
|
|
|
|
|
2020-05-14 22:22:04 -07:00
|
|
|
inst_specific.base.contents = self.source[contents_start..self.i];
|
|
|
|
|
2020-04-20 16:19:35 -07:00
|
|
|
return &inst_specific.base;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parseParameterGeneric(self: *Parser, comptime T: type, body_ctx: ?*Body) !T {
|
|
|
|
if (@typeInfo(T) == .Enum) {
|
|
|
|
const start = self.i;
|
|
|
|
while (true) : (self.i += 1) switch (self.source[self.i]) {
|
|
|
|
' ', '\n', ',', ')' => {
|
|
|
|
const enum_name = self.source[start..self.i];
|
|
|
|
return std.meta.stringToEnum(T, enum_name) orelse {
|
|
|
|
return self.fail("tag '{}' not a member of enum '{}'", .{ enum_name, @typeName(T) });
|
|
|
|
};
|
|
|
|
},
|
|
|
|
0 => return self.failByte(0),
|
|
|
|
else => continue,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
switch (T) {
|
2020-04-28 18:04:18 -07:00
|
|
|
Module.Body => return parseBody(self),
|
2020-04-20 16:19:35 -07:00
|
|
|
bool => {
|
|
|
|
const bool_value = switch (self.source[self.i]) {
|
|
|
|
'0' => false,
|
|
|
|
'1' => true,
|
|
|
|
else => |byte| return self.fail("expected '0' or '1' for boolean value, found {c}", .{byte}),
|
|
|
|
};
|
|
|
|
self.i += 1;
|
|
|
|
return bool_value;
|
|
|
|
},
|
|
|
|
[]*Inst => {
|
|
|
|
try requireEatBytes(self, "[");
|
|
|
|
skipSpace(self);
|
|
|
|
if (eatByte(self, ']')) return &[0]*Inst{};
|
|
|
|
|
2020-04-20 21:56:30 -07:00
|
|
|
var instructions = std.ArrayList(*Inst).init(&self.arena.allocator);
|
2020-04-20 16:19:35 -07:00
|
|
|
while (true) {
|
|
|
|
skipSpace(self);
|
2020-05-13 17:06:01 -07:00
|
|
|
try instructions.append(try parseParameterInst(self, body_ctx));
|
2020-04-20 16:19:35 -07:00
|
|
|
skipSpace(self);
|
|
|
|
if (!eatByte(self, ',')) break;
|
|
|
|
}
|
|
|
|
try requireEatBytes(self, "]");
|
|
|
|
return instructions.toOwnedSlice();
|
|
|
|
},
|
|
|
|
*Inst => return parseParameterInst(self, body_ctx),
|
2020-04-21 21:04:52 -07:00
|
|
|
[]u8, []const u8 => return self.parseStringLiteral(),
|
2020-05-01 03:15:58 -07:00
|
|
|
BigIntConst => return self.parseIntegerLiteral(),
|
2020-04-20 16:19:35 -07:00
|
|
|
else => @compileError("Unimplemented: ir parseParameterGeneric for type " ++ @typeName(T)),
|
|
|
|
}
|
|
|
|
return self.fail("TODO parse parameter {}", .{@typeName(T)});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parseParameterInst(self: *Parser, body_ctx: ?*Body) !*Inst {
|
|
|
|
const local_ref = switch (self.source[self.i]) {
|
|
|
|
'@' => false,
|
|
|
|
'%' => true,
|
|
|
|
else => |byte| return self.fail("unexpected byte: '{c}'", .{byte}),
|
|
|
|
};
|
|
|
|
const map = if (local_ref)
|
|
|
|
if (body_ctx) |bc|
|
|
|
|
&bc.name_map
|
|
|
|
else
|
|
|
|
return self.fail("referencing a % instruction in global scope", .{})
|
|
|
|
else
|
|
|
|
self.global_name_map;
|
|
|
|
|
|
|
|
self.i += 1;
|
|
|
|
const name_start = self.i;
|
|
|
|
while (true) : (self.i += 1) switch (self.source[self.i]) {
|
|
|
|
0, ' ', '\n', ',', ')', ']' => break,
|
|
|
|
else => continue,
|
|
|
|
};
|
|
|
|
const ident = self.source[name_start..self.i];
|
|
|
|
const kv = map.get(ident) orelse {
|
|
|
|
const bad_name = self.source[name_start - 1 .. self.i];
|
2020-05-09 23:05:54 -07:00
|
|
|
const src = name_start - 1;
|
|
|
|
if (local_ref) {
|
|
|
|
self.i = src;
|
|
|
|
return self.fail("unrecognized identifier: {}", .{bad_name});
|
|
|
|
} else {
|
2020-06-02 14:43:51 -07:00
|
|
|
const name_array = try self.arena.allocator.create(Inst.Str);
|
|
|
|
name_array.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.generateName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Str.base_tag,
|
|
|
|
},
|
2020-05-09 23:05:54 -07:00
|
|
|
.positionals = .{ .bytes = ident },
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-06-02 14:43:51 -07:00
|
|
|
const name = try self.arena.allocator.create(Inst.Ref);
|
|
|
|
name.* = .{
|
|
|
|
.base = .{
|
|
|
|
.name = try self.generateName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Ref.base_tag,
|
|
|
|
},
|
|
|
|
.positionals = .{ .operand = &name_array.base },
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-05-09 23:05:54 -07:00
|
|
|
const declref = try self.arena.allocator.create(Inst.DeclRef);
|
|
|
|
declref.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.generateName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.DeclRef.base_tag,
|
|
|
|
},
|
2020-05-09 23:05:54 -07:00
|
|
|
.positionals = .{ .name = &name.base },
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-06-02 14:43:51 -07:00
|
|
|
const deref = try self.arena.allocator.create(Inst.Deref);
|
|
|
|
deref.* = .{
|
|
|
|
.base = .{
|
|
|
|
.name = try self.generateName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Deref.base_tag,
|
|
|
|
},
|
|
|
|
.positionals = .{ .ptr = &declref.base },
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
return &deref.base;
|
2020-05-09 23:05:54 -07:00
|
|
|
}
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
|
|
|
if (local_ref) {
|
|
|
|
return body_ctx.?.instructions.items[kv.value];
|
|
|
|
} else {
|
|
|
|
return self.decls.items[kv.value];
|
|
|
|
}
|
|
|
|
}
|
2020-05-13 17:06:01 -07:00
|
|
|
|
|
|
|
fn generateName(self: *Parser) ![]u8 {
|
|
|
|
const result = try std.fmt.allocPrint(&self.arena.allocator, "unnamed${}", .{self.unnamed_index});
|
|
|
|
self.unnamed_index += 1;
|
|
|
|
return result;
|
|
|
|
}
|
2020-04-20 16:19:35 -07:00
|
|
|
};
|
2020-04-21 21:04:52 -07:00
|
|
|
|
2020-05-15 18:44:33 -07:00
|
|
|
pub fn emit(allocator: *Allocator, old_module: IrModule) !Module {
|
2020-04-21 21:04:52 -07:00
|
|
|
var ctx: EmitZIR = .{
|
|
|
|
.allocator = allocator,
|
2020-05-13 17:06:01 -07:00
|
|
|
.decls = .{},
|
2020-04-21 21:04:52 -07:00
|
|
|
.decl_table = std.AutoHashMap(*ir.Inst, *Inst).init(allocator),
|
|
|
|
.arena = std.heap.ArenaAllocator.init(allocator),
|
|
|
|
.old_module = &old_module,
|
|
|
|
};
|
2020-05-13 17:06:01 -07:00
|
|
|
defer ctx.decls.deinit(allocator);
|
2020-04-21 21:04:52 -07:00
|
|
|
defer ctx.decl_table.deinit();
|
|
|
|
errdefer ctx.arena.deinit();
|
|
|
|
|
|
|
|
try ctx.emit();
|
|
|
|
|
|
|
|
return Module{
|
2020-05-13 17:06:01 -07:00
|
|
|
.decls = ctx.decls.toOwnedSlice(allocator),
|
2020-05-14 10:20:27 -07:00
|
|
|
.arena = ctx.arena,
|
2020-04-21 21:04:52 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const EmitZIR = struct {
|
|
|
|
allocator: *Allocator,
|
|
|
|
arena: std.heap.ArenaAllocator,
|
2020-05-15 18:44:33 -07:00
|
|
|
old_module: *const IrModule,
|
2020-05-13 17:06:01 -07:00
|
|
|
decls: std.ArrayListUnmanaged(*Inst),
|
2020-04-21 21:04:52 -07:00
|
|
|
decl_table: std.AutoHashMap(*ir.Inst, *Inst),
|
|
|
|
|
2020-04-22 00:08:50 -07:00
|
|
|
fn emit(self: *EmitZIR) !void {
|
2020-05-13 17:06:01 -07:00
|
|
|
var it = self.old_module.decl_exports.iterator();
|
|
|
|
while (it.next()) |kv| {
|
|
|
|
const decl = kv.key;
|
|
|
|
const exports = kv.value;
|
|
|
|
const export_value = try self.emitTypedValue(decl.src, decl.typed_value.most_recent.typed_value);
|
|
|
|
for (exports) |module_export| {
|
|
|
|
const symbol_name = try self.emitStringLiteral(module_export.src, module_export.options.name);
|
|
|
|
const export_inst = try self.arena.allocator.create(Inst.Export);
|
|
|
|
export_inst.* = .{
|
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = module_export.src,
|
|
|
|
.tag = Inst.Export.base_tag,
|
|
|
|
},
|
|
|
|
.positionals = .{
|
|
|
|
.symbol_name = symbol_name,
|
|
|
|
.value = export_value,
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
try self.decls.append(self.allocator, &export_inst.base);
|
|
|
|
}
|
2020-04-21 21:04:52 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 00:08:50 -07:00
|
|
|
fn resolveInst(self: *EmitZIR, inst_table: *const std.AutoHashMap(*ir.Inst, *Inst), inst: *ir.Inst) !*Inst {
|
2020-04-21 21:04:52 -07:00
|
|
|
if (inst.cast(ir.Inst.Constant)) |const_inst| {
|
|
|
|
if (self.decl_table.getValue(inst)) |decl| {
|
|
|
|
return decl;
|
|
|
|
}
|
|
|
|
const new_decl = try self.emitTypedValue(inst.src, .{ .ty = inst.ty, .val = const_inst.val });
|
|
|
|
try self.decl_table.putNoClobber(inst, new_decl);
|
|
|
|
return new_decl;
|
|
|
|
} else {
|
|
|
|
return inst_table.getValue(inst).?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 00:08:50 -07:00
|
|
|
fn emitComptimeIntVal(self: *EmitZIR, src: usize, val: Value) !*Inst {
|
2020-04-28 18:04:18 -07:00
|
|
|
const big_int_space = try self.arena.allocator.create(Value.BigIntSpace);
|
2020-04-22 00:08:50 -07:00
|
|
|
const int_inst = try self.arena.allocator.create(Inst.Int);
|
|
|
|
int_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Int.base_tag,
|
|
|
|
},
|
2020-04-22 00:08:50 -07:00
|
|
|
.positionals = .{
|
2020-04-28 18:04:18 -07:00
|
|
|
.int = val.toBigInt(big_int_space),
|
2020-04-22 00:08:50 -07:00
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-05-12 20:59:46 -07:00
|
|
|
try self.decls.append(self.allocator, &int_inst.base);
|
2020-04-22 00:08:50 -07:00
|
|
|
return &int_inst.base;
|
|
|
|
}
|
|
|
|
|
2020-05-13 17:06:01 -07:00
|
|
|
fn emitTypedValue(self: *EmitZIR, src: usize, typed_value: TypedValue) Allocator.Error!*Inst {
|
2020-05-14 10:20:27 -07:00
|
|
|
const allocator = &self.arena.allocator;
|
2020-04-21 21:04:52 -07:00
|
|
|
switch (typed_value.ty.zigTypeTag()) {
|
|
|
|
.Pointer => {
|
|
|
|
const ptr_elem_type = typed_value.ty.elemType();
|
|
|
|
switch (ptr_elem_type.zigTypeTag()) {
|
|
|
|
.Array => {
|
|
|
|
// TODO more checks to make sure this can be emitted as a string literal
|
|
|
|
//const array_elem_type = ptr_elem_type.elemType();
|
|
|
|
//if (array_elem_type.eql(Type.initTag(.u8)) and
|
|
|
|
// ptr_elem_type.hasSentinel(Value.initTag(.zero)))
|
|
|
|
//{
|
|
|
|
//}
|
2020-05-14 10:20:27 -07:00
|
|
|
const bytes = typed_value.val.toAllocatedBytes(allocator) catch |err| switch (err) {
|
|
|
|
error.AnalysisFail => unreachable,
|
|
|
|
else => |e| return e,
|
|
|
|
};
|
2020-04-21 21:04:52 -07:00
|
|
|
return self.emitStringLiteral(src, bytes);
|
|
|
|
},
|
|
|
|
else => |t| std.debug.panic("TODO implement emitTypedValue for pointer to {}", .{@tagName(t)}),
|
|
|
|
}
|
|
|
|
},
|
2020-04-22 00:08:50 -07:00
|
|
|
.ComptimeInt => return self.emitComptimeIntVal(src, typed_value.val),
|
|
|
|
.Int => {
|
|
|
|
const as_inst = try self.arena.allocator.create(Inst.As);
|
|
|
|
as_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.As.base_tag,
|
|
|
|
},
|
2020-04-22 00:08:50 -07:00
|
|
|
.positionals = .{
|
|
|
|
.dest_type = try self.emitType(src, typed_value.ty),
|
|
|
|
.value = try self.emitComptimeIntVal(src, typed_value.val),
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-05-12 20:59:46 -07:00
|
|
|
try self.decls.append(self.allocator, &as_inst.base);
|
2020-04-22 00:08:50 -07:00
|
|
|
|
|
|
|
return &as_inst.base;
|
|
|
|
},
|
2020-04-21 21:04:52 -07:00
|
|
|
.Type => {
|
|
|
|
const ty = typed_value.val.toType();
|
|
|
|
return self.emitType(src, ty);
|
|
|
|
},
|
|
|
|
.Fn => {
|
2020-05-13 17:06:01 -07:00
|
|
|
const module_fn = typed_value.val.cast(Value.Payload.Function).?.func;
|
2020-04-21 21:04:52 -07:00
|
|
|
|
|
|
|
var inst_table = std.AutoHashMap(*ir.Inst, *Inst).init(self.allocator);
|
|
|
|
defer inst_table.deinit();
|
|
|
|
|
|
|
|
var instructions = std.ArrayList(*Inst).init(self.allocator);
|
|
|
|
defer instructions.deinit();
|
|
|
|
|
2020-05-13 17:06:01 -07:00
|
|
|
try self.emitBody(module_fn.analysis.success, &inst_table, &instructions);
|
2020-04-21 21:04:52 -07:00
|
|
|
|
|
|
|
const fn_type = try self.emitType(src, module_fn.fn_type);
|
|
|
|
|
2020-04-28 18:40:51 -07:00
|
|
|
const arena_instrs = try self.arena.allocator.alloc(*Inst, instructions.items.len);
|
|
|
|
mem.copy(*Inst, arena_instrs, instructions.items);
|
|
|
|
|
2020-04-21 21:04:52 -07:00
|
|
|
const fn_inst = try self.arena.allocator.create(Inst.Fn);
|
|
|
|
fn_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Fn.base_tag,
|
|
|
|
},
|
2020-04-21 21:04:52 -07:00
|
|
|
.positionals = .{
|
|
|
|
.fn_type = fn_type,
|
2020-04-28 18:40:51 -07:00
|
|
|
.body = .{ .instructions = arena_instrs },
|
2020-04-21 21:04:52 -07:00
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-05-12 20:59:46 -07:00
|
|
|
try self.decls.append(self.allocator, &fn_inst.base);
|
2020-04-21 21:04:52 -07:00
|
|
|
return &fn_inst.base;
|
|
|
|
},
|
|
|
|
else => |t| std.debug.panic("TODO implement emitTypedValue for {}", .{@tagName(t)}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-29 16:11:40 -07:00
|
|
|
fn emitTrivial(self: *EmitZIR, src: usize, comptime T: type) Allocator.Error!*Inst {
|
|
|
|
const new_inst = try self.arena.allocator.create(T);
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = T.base_tag,
|
|
|
|
},
|
2020-04-29 16:11:40 -07:00
|
|
|
.positionals = .{},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
return &new_inst.base;
|
|
|
|
}
|
|
|
|
|
2020-04-28 18:04:18 -07:00
|
|
|
fn emitBody(
|
|
|
|
self: *EmitZIR,
|
2020-05-15 18:44:33 -07:00
|
|
|
body: IrModule.Body,
|
2020-04-28 18:04:18 -07:00
|
|
|
inst_table: *std.AutoHashMap(*ir.Inst, *Inst),
|
|
|
|
instructions: *std.ArrayList(*Inst),
|
|
|
|
) Allocator.Error!void {
|
|
|
|
for (body.instructions) |inst| {
|
|
|
|
const new_inst = switch (inst.tag) {
|
2020-04-29 16:11:40 -07:00
|
|
|
.breakpoint => try self.emitTrivial(inst.src, Inst.Breakpoint),
|
2020-05-09 23:05:54 -07:00
|
|
|
.call => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.Call).?;
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.Call);
|
|
|
|
|
|
|
|
const args = try self.arena.allocator.alloc(*Inst, old_inst.args.args.len);
|
|
|
|
for (args) |*elem, i| {
|
|
|
|
elem.* = try self.resolveInst(inst_table, old_inst.args.args[i]);
|
|
|
|
}
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.Call.base_tag,
|
|
|
|
},
|
2020-05-09 23:05:54 -07:00
|
|
|
.positionals = .{
|
|
|
|
.func = try self.resolveInst(inst_table, old_inst.args.func),
|
|
|
|
.args = args,
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
2020-04-29 16:11:40 -07:00
|
|
|
.unreach => try self.emitTrivial(inst.src, Inst.Unreachable),
|
|
|
|
.ret => try self.emitTrivial(inst.src, Inst.Return),
|
2020-04-28 18:04:18 -07:00
|
|
|
.constant => unreachable, // excluded from function bodies
|
|
|
|
.assembly => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.Assembly).?;
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.Asm);
|
|
|
|
|
|
|
|
const inputs = try self.arena.allocator.alloc(*Inst, old_inst.args.inputs.len);
|
|
|
|
for (inputs) |*elem, i| {
|
|
|
|
elem.* = try self.emitStringLiteral(inst.src, old_inst.args.inputs[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
const clobbers = try self.arena.allocator.alloc(*Inst, old_inst.args.clobbers.len);
|
|
|
|
for (clobbers) |*elem, i| {
|
|
|
|
elem.* = try self.emitStringLiteral(inst.src, old_inst.args.clobbers[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
const args = try self.arena.allocator.alloc(*Inst, old_inst.args.args.len);
|
|
|
|
for (args) |*elem, i| {
|
|
|
|
elem.* = try self.resolveInst(inst_table, old_inst.args.args[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.Asm.base_tag,
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
.positionals = .{
|
|
|
|
.asm_source = try self.emitStringLiteral(inst.src, old_inst.args.asm_source),
|
|
|
|
.return_type = try self.emitType(inst.src, inst.ty),
|
|
|
|
},
|
|
|
|
.kw_args = .{
|
|
|
|
.@"volatile" = old_inst.args.is_volatile,
|
|
|
|
.output = if (old_inst.args.output) |o|
|
|
|
|
try self.emitStringLiteral(inst.src, o)
|
|
|
|
else
|
|
|
|
null,
|
|
|
|
.inputs = inputs,
|
|
|
|
.clobbers = clobbers,
|
|
|
|
.args = args,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
|
|
|
.ptrtoint => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.PtrToInt).?;
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.PtrToInt);
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.PtrToInt.base_tag,
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
.positionals = .{
|
|
|
|
.ptr = try self.resolveInst(inst_table, old_inst.args.ptr),
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
|
|
|
.bitcast => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.BitCast).?;
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.BitCast);
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.BitCast.base_tag,
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
.positionals = .{
|
|
|
|
.dest_type = try self.emitType(inst.src, inst.ty),
|
|
|
|
.operand = try self.resolveInst(inst_table, old_inst.args.operand),
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
|
|
|
.cmp => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.Cmp).?;
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.Cmp);
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.Cmp.base_tag,
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
.positionals = .{
|
|
|
|
.lhs = try self.resolveInst(inst_table, old_inst.args.lhs),
|
|
|
|
.rhs = try self.resolveInst(inst_table, old_inst.args.rhs),
|
|
|
|
.op = old_inst.args.op,
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
|
|
|
.condbr => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.CondBr).?;
|
|
|
|
|
|
|
|
var true_body = std.ArrayList(*Inst).init(self.allocator);
|
|
|
|
var false_body = std.ArrayList(*Inst).init(self.allocator);
|
|
|
|
|
|
|
|
defer true_body.deinit();
|
|
|
|
defer false_body.deinit();
|
|
|
|
|
|
|
|
try self.emitBody(old_inst.args.true_body, inst_table, &true_body);
|
|
|
|
try self.emitBody(old_inst.args.false_body, inst_table, &false_body);
|
|
|
|
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.CondBr);
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.CondBr.base_tag,
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
.positionals = .{
|
|
|
|
.condition = try self.resolveInst(inst_table, old_inst.args.condition),
|
|
|
|
.true_body = .{ .instructions = true_body.toOwnedSlice() },
|
|
|
|
.false_body = .{ .instructions = false_body.toOwnedSlice() },
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
|
|
|
.isnull => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.IsNull).?;
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.IsNull);
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.IsNull.base_tag,
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
.positionals = .{
|
|
|
|
.operand = try self.resolveInst(inst_table, old_inst.args.operand),
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
|
|
|
.isnonnull => blk: {
|
|
|
|
const old_inst = inst.cast(ir.Inst.IsNonNull).?;
|
|
|
|
const new_inst = try self.arena.allocator.create(Inst.IsNonNull);
|
|
|
|
new_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = inst.src,
|
|
|
|
.tag = Inst.IsNonNull.base_tag,
|
|
|
|
},
|
2020-04-28 18:04:18 -07:00
|
|
|
.positionals = .{
|
|
|
|
.operand = try self.resolveInst(inst_table, old_inst.args.operand),
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
break :blk &new_inst.base;
|
|
|
|
},
|
|
|
|
};
|
2020-05-13 17:06:01 -07:00
|
|
|
try instructions.append(new_inst);
|
2020-04-28 18:04:18 -07:00
|
|
|
try inst_table.putNoClobber(inst, new_inst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 00:08:50 -07:00
|
|
|
fn emitType(self: *EmitZIR, src: usize, ty: Type) Allocator.Error!*Inst {
|
2020-04-21 21:04:52 -07:00
|
|
|
switch (ty.tag()) {
|
|
|
|
.isize => return self.emitPrimitiveType(src, .isize),
|
|
|
|
.usize => return self.emitPrimitiveType(src, .usize),
|
|
|
|
.c_short => return self.emitPrimitiveType(src, .c_short),
|
|
|
|
.c_ushort => return self.emitPrimitiveType(src, .c_ushort),
|
|
|
|
.c_int => return self.emitPrimitiveType(src, .c_int),
|
|
|
|
.c_uint => return self.emitPrimitiveType(src, .c_uint),
|
|
|
|
.c_long => return self.emitPrimitiveType(src, .c_long),
|
|
|
|
.c_ulong => return self.emitPrimitiveType(src, .c_ulong),
|
|
|
|
.c_longlong => return self.emitPrimitiveType(src, .c_longlong),
|
|
|
|
.c_ulonglong => return self.emitPrimitiveType(src, .c_ulonglong),
|
|
|
|
.c_longdouble => return self.emitPrimitiveType(src, .c_longdouble),
|
|
|
|
.c_void => return self.emitPrimitiveType(src, .c_void),
|
|
|
|
.f16 => return self.emitPrimitiveType(src, .f16),
|
|
|
|
.f32 => return self.emitPrimitiveType(src, .f32),
|
|
|
|
.f64 => return self.emitPrimitiveType(src, .f64),
|
|
|
|
.f128 => return self.emitPrimitiveType(src, .f128),
|
|
|
|
.anyerror => return self.emitPrimitiveType(src, .anyerror),
|
|
|
|
else => switch (ty.zigTypeTag()) {
|
|
|
|
.Bool => return self.emitPrimitiveType(src, .bool),
|
|
|
|
.Void => return self.emitPrimitiveType(src, .void),
|
|
|
|
.NoReturn => return self.emitPrimitiveType(src, .noreturn),
|
|
|
|
.Type => return self.emitPrimitiveType(src, .type),
|
|
|
|
.ComptimeInt => return self.emitPrimitiveType(src, .comptime_int),
|
|
|
|
.ComptimeFloat => return self.emitPrimitiveType(src, .comptime_float),
|
2020-04-21 21:26:37 -07:00
|
|
|
.Fn => {
|
|
|
|
const param_types = try self.allocator.alloc(Type, ty.fnParamLen());
|
|
|
|
defer self.allocator.free(param_types);
|
|
|
|
|
|
|
|
ty.fnParamTypes(param_types);
|
|
|
|
const emitted_params = try self.arena.allocator.alloc(*Inst, param_types.len);
|
|
|
|
for (param_types) |param_type, i| {
|
|
|
|
emitted_params[i] = try self.emitType(src, param_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
const fntype_inst = try self.arena.allocator.create(Inst.FnType);
|
|
|
|
fntype_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.FnType.base_tag,
|
|
|
|
},
|
2020-04-21 21:26:37 -07:00
|
|
|
.positionals = .{
|
|
|
|
.param_types = emitted_params,
|
|
|
|
.return_type = try self.emitType(src, ty.fnReturnType()),
|
|
|
|
},
|
|
|
|
.kw_args = .{
|
|
|
|
.cc = ty.fnCallingConvention(),
|
|
|
|
},
|
|
|
|
};
|
2020-05-12 20:59:46 -07:00
|
|
|
try self.decls.append(self.allocator, &fntype_inst.base);
|
2020-04-21 21:26:37 -07:00
|
|
|
return &fntype_inst.base;
|
|
|
|
},
|
2020-04-21 21:04:52 -07:00
|
|
|
else => std.debug.panic("TODO implement emitType for {}", .{ty}),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-13 17:06:01 -07:00
|
|
|
fn autoName(self: *EmitZIR) ![]u8 {
|
|
|
|
return std.fmt.allocPrint(&self.arena.allocator, "{}", .{self.decls.items.len});
|
|
|
|
}
|
|
|
|
|
2020-04-22 00:08:50 -07:00
|
|
|
fn emitPrimitiveType(self: *EmitZIR, src: usize, tag: Inst.Primitive.BuiltinType) !*Inst {
|
2020-04-21 21:04:52 -07:00
|
|
|
const primitive_inst = try self.arena.allocator.create(Inst.Primitive);
|
|
|
|
primitive_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Primitive.base_tag,
|
|
|
|
},
|
2020-04-21 21:04:52 -07:00
|
|
|
.positionals = .{
|
|
|
|
.tag = tag,
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-05-12 20:59:46 -07:00
|
|
|
try self.decls.append(self.allocator, &primitive_inst.base);
|
2020-04-21 21:04:52 -07:00
|
|
|
return &primitive_inst.base;
|
|
|
|
}
|
|
|
|
|
2020-04-22 00:08:50 -07:00
|
|
|
fn emitStringLiteral(self: *EmitZIR, src: usize, str: []const u8) !*Inst {
|
2020-04-21 21:04:52 -07:00
|
|
|
const str_inst = try self.arena.allocator.create(Inst.Str);
|
|
|
|
str_inst.* = .{
|
2020-05-13 17:06:01 -07:00
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Str.base_tag,
|
|
|
|
},
|
2020-04-21 21:04:52 -07:00
|
|
|
.positionals = .{
|
|
|
|
.bytes = str,
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
2020-05-12 20:59:46 -07:00
|
|
|
try self.decls.append(self.allocator, &str_inst.base);
|
2020-05-15 16:11:00 -07:00
|
|
|
|
|
|
|
const ref_inst = try self.arena.allocator.create(Inst.Ref);
|
|
|
|
ref_inst.* = .{
|
|
|
|
.base = .{
|
|
|
|
.name = try self.autoName(),
|
|
|
|
.src = src,
|
|
|
|
.tag = Inst.Ref.base_tag,
|
|
|
|
},
|
|
|
|
.positionals = .{
|
|
|
|
.operand = &str_inst.base,
|
|
|
|
},
|
|
|
|
.kw_args = .{},
|
|
|
|
};
|
|
|
|
try self.decls.append(self.allocator, &ref_inst.base);
|
|
|
|
|
|
|
|
return &ref_inst.base;
|
2020-04-21 21:04:52 -07:00
|
|
|
}
|
|
|
|
};
|