| ... | @@ -1,9 +1,11 @@ | ... | @@ -1,9 +1,11 @@ |
| 1 | const link = @import("link.zig"); | 1 | const link = @import("link.zig"); |
| 2 | const Module = @import("Module.zig"); | 2 | const Module = @import("Module.zig"); |
| 3 | const ir = @import("ir.zig"); | 3 | |
| | 4 | const std = @import("std"); |
| | 5 | |
| | 6 | const Inst = @import("ir.zig").Inst; |
| 4 | const Value = @import("value.zig").Value; | 7 | const Value = @import("value.zig").Value; |
| 5 | const Type = @import("type.zig").Type; | 8 | const Type = @import("type.zig").Type; |
| 6 | const std = @import("std"); | | |
| 7 | | 9 | |
| 8 | const C = link.File.C; | 10 | const C = link.File.C; |
| 9 | const Decl = Module.Decl; | 11 | const Decl = Module.Decl; |
| ... | @@ -26,6 +28,14 @@ fn renderType(file: *C, writer: std.ArrayList(u8).Writer, T: Type, src: usize) ! | ... | @@ -26,6 +28,14 @@ fn renderType(file: *C, writer: std.ArrayList(u8).Writer, T: Type, src: usize) ! |
| 26 | try writer.writeAll("noreturn void"); | 28 | try writer.writeAll("noreturn void"); |
| 27 | }, | 29 | }, |
| 28 | .Void => try writer.writeAll("void"), | 30 | .Void => try writer.writeAll("void"), |
| | 31 | .Int => { |
| | 32 | if (T.tag() == .u8) { |
| | 33 | file.need_stdint = true; |
| | 34 | try writer.writeAll("uint8_t"); |
| | 35 | } else { |
| | 36 | return file.fail(src, "TODO implement int types", .{}); |
| | 37 | } |
| | 38 | }, |
| 29 | else => |e| return file.fail(src, "TODO implement type {}", .{e}), | 39 | else => |e| return file.fail(src, "TODO implement type {}", .{e}), |
| 30 | } | 40 | } |
| 31 | } | 41 | } |
| ... | @@ -37,132 +47,159 @@ fn renderFunctionSignature(file: *C, writer: std.ArrayList(u8).Writer, decl: *De | ... | @@ -37,132 +47,159 @@ fn renderFunctionSignature(file: *C, writer: std.ArrayList(u8).Writer, decl: *De |
| 37 | const name = try map(file.allocator, mem.spanZ(decl.name)); | 47 | const name = try map(file.allocator, mem.spanZ(decl.name)); |
| 38 | defer file.allocator.free(name); | 48 | defer file.allocator.free(name); |
| 39 | try writer.print(" {}(", .{name}); | 49 | try writer.print(" {}(", .{name}); |
| 40 | if (tv.ty.fnParamLen() == 0) { | 50 | if (tv.ty.fnParamLen() == 0) |
| 41 | try writer.writeAll("void)"); | 51 | try writer.writeAll("void)") |
| 42 | } else { | 52 | else |
| 43 | return file.fail(decl.src(), "TODO implement parameters", .{}); | 53 | return file.fail(decl.src(), "TODO implement parameters", .{}); |
| 44 | } | | |
| 45 | } | 54 | } |
| 46 | | 55 | |
| 47 | pub fn generate(file: *C, decl: *Decl) !void { | 56 | pub fn generate(file: *C, decl: *Decl) !void { |
| | 57 | switch (decl.typed_value.most_recent.typed_value.ty.zigTypeTag()) { |
| | 58 | .Fn => try genFn(file, decl), |
| | 59 | .Array => try genArray(file, decl), |
| | 60 | else => |e| return file.fail(decl.src(), "TODO {}", .{e}), |
| | 61 | } |
| | 62 | } |
| | 63 | |
| | 64 | fn genArray(file: *C, decl: *Decl) !void { |
| | 65 | const tv = decl.typed_value.most_recent.typed_value; |
| | 66 | // TODO: prevent inline asm constants from being emitted |
| | 67 | const name = try map(file.allocator, mem.span(decl.name)); |
| | 68 | defer file.allocator.free(name); |
| | 69 | if (tv.val.cast(Value.Payload.Bytes)) |payload| |
| | 70 | if (tv.ty.arraySentinel()) |sentinel| |
| | 71 | if (sentinel.toUnsignedInt() == 0) |
| | 72 | try file.constants.writer().print("const char *const {} = \"{}\";\n", .{ name, payload.data }) |
| | 73 | else |
| | 74 | return file.fail(decl.src(), "TODO byte arrays with non-zero sentinels", .{}) |
| | 75 | else |
| | 76 | return file.fail(decl.src(), "TODO byte arrays without sentinels", .{}) |
| | 77 | else |
| | 78 | return file.fail(decl.src(), "TODO non-byte arrays", .{}); |
| | 79 | } |
| | 80 | |
| | 81 | fn genFn(file: *C, decl: *Decl) !void { |
| 48 | const writer = file.main.writer(); | 82 | const writer = file.main.writer(); |
| 49 | const header = file.header.writer(); | | |
| 50 | const tv = decl.typed_value.most_recent.typed_value; | 83 | const tv = decl.typed_value.most_recent.typed_value; |
| 51 | switch (tv.ty.zigTypeTag()) { | 84 | |
| 52 | .Fn => { | 85 | try renderFunctionSignature(file, writer, decl); |
| 53 | try renderFunctionSignature(file, writer, decl); | 86 | |
| 54 | | 87 | try writer.writeAll(" {"); |
| 55 | try writer.writeAll(" {"); | 88 | |
| 56 | | 89 | const func: *Module.Fn = tv.val.cast(Value.Payload.Function).?.func; |
| 57 | const func: *Module.Fn = tv.val.cast(Value.Payload.Function).?.func; | 90 | const instructions = func.analysis.success.instructions; |
| 58 | const instructions = func.analysis.success.instructions; | 91 | if (instructions.len > 0) { |
| 59 | if (instructions.len > 0) { | 92 | for (instructions) |inst| { |
| 60 | for (instructions) |inst| { | 93 | try writer.writeAll("\n\t"); |
| 61 | try writer.writeAll("\n\t"); | 94 | switch (inst.tag) { |
| 62 | switch (inst.tag) { | 95 | .assembly => try genAsm(file, inst.cast(Inst.Assembly).?, decl), |
| 63 | .assembly => { | 96 | .call => try genCall(file, inst.cast(Inst.Call).?, decl), |
| 64 | const as = inst.cast(ir.Inst.Assembly).?.args; | 97 | .ret => try genRet(file, inst.cast(Inst.Ret).?, decl, tv.ty.fnReturnType()), |
| 65 | for (as.inputs) |i, index| { | 98 | else => |e| return file.fail(decl.src(), "TODO {}", .{e}), |
| 66 | if (i[0] == '{' and i[i.len - 1] == '}') { | | |
| 67 | const reg = i[1 .. i.len - 1]; | | |
| 68 | const arg = as.args[index]; | | |
| 69 | if (arg.cast(ir.Inst.Constant)) |c| { | | |
| 70 | if (c.val.tag() == .int_u64) { | | |
| 71 | try writer.writeAll("register "); | | |
| 72 | try renderType(file, writer, arg.ty, decl.src()); | | |
| 73 | try writer.print(" {}_constant __asm__(\"{}\") = {};\n\t", .{ reg, reg, c.val.toUnsignedInt() }); | | |
| 74 | } else { | | |
| 75 | return file.fail(decl.src(), "TODO inline asm {} args", .{c.val.tag()}); | | |
| 76 | } | | |
| 77 | } else { | | |
| 78 | return file.fail(decl.src(), "TODO non-constant inline asm args", .{}); | | |
| 79 | } | | |
| 80 | } else { | | |
| 81 | return file.fail(decl.src(), "TODO non-explicit inline asm regs", .{}); | | |
| 82 | } | | |
| 83 | } | | |
| 84 | try writer.print("__asm {} (\"{}\"", .{ if (as.is_volatile) @as([]const u8, "volatile") else "", as.asm_source }); | | |
| 85 | if (as.output) |o| { | | |
| 86 | return file.fail(decl.src(), "TODO inline asm output", .{}); | | |
| 87 | } | | |
| 88 | if (as.inputs.len > 0) { | | |
| 89 | if (as.output == null) { | | |
| 90 | try writer.writeAll(" :"); | | |
| 91 | } | | |
| 92 | try writer.writeAll(": "); | | |
| 93 | for (as.inputs) |i, index| { | | |
| 94 | if (i[0] == '{' and i[i.len - 1] == '}') { | | |
| 95 | const reg = i[1 .. i.len - 1]; | | |
| 96 | const arg = as.args[index]; | | |
| 97 | if (index > 0) { | | |
| 98 | try writer.writeAll(", "); | | |
| 99 | } | | |
| 100 | if (arg.cast(ir.Inst.Constant)) |c| { | | |
| 101 | try writer.print("\"\"({}_constant)", .{reg}); | | |
| 102 | } else { | | |
| 103 | // This is blocked by the earlier test | | |
| 104 | unreachable; | | |
| 105 | } | | |
| 106 | } else { | | |
| 107 | // This is blocked by the earlier test | | |
| 108 | unreachable; | | |
| 109 | } | | |
| 110 | } | | |
| 111 | } | | |
| 112 | try writer.writeAll(");"); | | |
| 113 | }, | | |
| 114 | .call => { | | |
| 115 | const call = inst.cast(ir.Inst.Call).?.args; | | |
| 116 | if (call.func.cast(ir.Inst.Constant)) |func_inst| { | | |
| 117 | if (func_inst.val.cast(Value.Payload.Function)) |func_val| { | | |
| 118 | const target = func_val.func.owner_decl; | | |
| 119 | const tname = mem.spanZ(target.name); | | |
| 120 | if (file.called.get(tname) == null) { | | |
| 121 | try file.called.put(tname, void{}); | | |
| 122 | try renderFunctionSignature(file, header, target); | | |
| 123 | try header.writeAll(";\n"); | | |
| 124 | } | | |
| 125 | try writer.print("{}();", .{tname}); | | |
| 126 | } else { | | |
| 127 | return file.fail(decl.src(), "TODO non-function call target?", .{}); | | |
| 128 | } | | |
| 129 | if (call.args.len != 0) { | | |
| 130 | return file.fail(decl.src(), "TODO function arguments", .{}); | | |
| 131 | } | | |
| 132 | } else { | | |
| 133 | return file.fail(decl.src(), "TODO non-constant call inst?", .{}); | | |
| 134 | } | | |
| 135 | }, | | |
| 136 | else => |e| { | | |
| 137 | return file.fail(decl.src(), "TODO {}", .{e}); | | |
| 138 | }, | | |
| 139 | } | | |
| 140 | } | | |
| 141 | try writer.writeAll("\n"); | | |
| 142 | } | 99 | } |
| | 100 | } |
| | 101 | try writer.writeAll("\n"); |
| | 102 | } |
| | 103 | |
| | 104 | try writer.writeAll("}\n\n"); |
| | 105 | } |
| 143 | | 106 | |
| 144 | try writer.writeAll("}\n\n"); | 107 | fn genRet(file: *C, inst: *Inst.Ret, decl: *Decl, expected_return_type: Type) !void { |
| 145 | }, | 108 | const writer = file.main.writer(); |
| 146 | .Array => { | 109 | const ret_value = inst.args.operand; |
| 147 | // TODO: prevent inline asm constants from being emitted | 110 | const value = ret_value.value().?; |
| 148 | const name = try map(file.allocator, mem.span(decl.name)); | 111 | if (expected_return_type.eql(ret_value.ty)) |
| 149 | defer file.allocator.free(name); | 112 | return file.fail(decl.src(), "TODO return {}", .{expected_return_type}) |
| 150 | if (tv.val.cast(Value.Payload.Bytes)) |payload| { | 113 | else if (expected_return_type.isInt() and ret_value.ty.tag() == .comptime_int) |
| 151 | if (tv.ty.arraySentinel()) |sentinel| { | 114 | if (value.intFitsInType(expected_return_type, file.options.target)) |
| 152 | if (sentinel.toUnsignedInt() == 0) { | 115 | if (expected_return_type.intInfo(file.options.target).bits <= 64) |
| 153 | try file.constants.writer().print("const char *const {} = \"{}\";\n", .{ name, payload.data }); | 116 | try writer.print("return {};", .{value.toUnsignedInt()}) |
| 154 | } else { | 117 | else |
| 155 | return file.fail(decl.src(), "TODO byte arrays with non-zero sentinels", .{}); | 118 | return file.fail(decl.src(), "TODO return ints > 64 bits", .{}) |
| 156 | } | 119 | else |
| | 120 | return file.fail(decl.src(), "comptime int {} does not fit in {}", .{ value.toUnsignedInt(), expected_return_type }) |
| | 121 | else |
| | 122 | return file.fail(decl.src(), "return type mismatch: expected {}, found {}", .{ expected_return_type, ret_value.ty }); |
| | 123 | } |
| | 124 | |
| | 125 | fn genCall(file: *C, inst: *Inst.Call, decl: *Decl) !void { |
| | 126 | const writer = file.main.writer(); |
| | 127 | const header = file.header.writer(); |
| | 128 | if (inst.args.func.cast(Inst.Constant)) |func_inst| { |
| | 129 | if (func_inst.val.cast(Value.Payload.Function)) |func_val| { |
| | 130 | const target = func_val.func.owner_decl; |
| | 131 | const target_ty = target.typed_value.most_recent.typed_value.ty; |
| | 132 | const ret_ty = target_ty.fnReturnType().tag(); |
| | 133 | if (target_ty.fnReturnType().hasCodeGenBits() and inst.base.isUnused()) { |
| | 134 | try writer.print("(void)", .{}); |
| | 135 | } |
| | 136 | const tname = mem.spanZ(target.name); |
| | 137 | if (file.called.get(tname) == null) { |
| | 138 | try file.called.put(tname, void{}); |
| | 139 | try renderFunctionSignature(file, header, target); |
| | 140 | try header.writeAll(";\n"); |
| | 141 | } |
| | 142 | try writer.print("{}();", .{tname}); |
| | 143 | } else { |
| | 144 | return file.fail(decl.src(), "TODO non-function call target?", .{}); |
| | 145 | } |
| | 146 | if (inst.args.args.len != 0) { |
| | 147 | return file.fail(decl.src(), "TODO function arguments", .{}); |
| | 148 | } |
| | 149 | } else { |
| | 150 | return file.fail(decl.src(), "TODO non-constant call inst?", .{}); |
| | 151 | } |
| | 152 | } |
| | 153 | |
| | 154 | fn genAsm(file: *C, inst: *Inst.Assembly, decl: *Decl) !void { |
| | 155 | const as = inst.args; |
| | 156 | const writer = file.main.writer(); |
| | 157 | for (as.inputs) |i, index| { |
| | 158 | if (i[0] == '{' and i[i.len - 1] == '}') { |
| | 159 | const reg = i[1 .. i.len - 1]; |
| | 160 | const arg = as.args[index]; |
| | 161 | if (arg.cast(Inst.Constant)) |c| { |
| | 162 | if (c.val.tag() == .int_u64) { |
| | 163 | try writer.writeAll("register "); |
| | 164 | try renderType(file, writer, arg.ty, decl.src()); |
| | 165 | try writer.print(" {}_constant __asm__(\"{}\") = {};\n\t", .{ reg, reg, c.val.toUnsignedInt() }); |
| | 166 | } else { |
| | 167 | return file.fail(decl.src(), "TODO inline asm {} args", .{c.val.tag()}); |
| | 168 | } |
| | 169 | } else { |
| | 170 | return file.fail(decl.src(), "TODO non-constant inline asm args", .{}); |
| | 171 | } |
| | 172 | } else { |
| | 173 | return file.fail(decl.src(), "TODO non-explicit inline asm regs", .{}); |
| | 174 | } |
| | 175 | } |
| | 176 | try writer.print("__asm {} (\"{}\"", .{ if (as.is_volatile) @as([]const u8, "volatile") else "", as.asm_source }); |
| | 177 | if (as.output) |o| { |
| | 178 | return file.fail(decl.src(), "TODO inline asm output", .{}); |
| | 179 | } |
| | 180 | if (as.inputs.len > 0) { |
| | 181 | if (as.output == null) { |
| | 182 | try writer.writeAll(" :"); |
| | 183 | } |
| | 184 | try writer.writeAll(": "); |
| | 185 | for (as.inputs) |i, index| { |
| | 186 | if (i[0] == '{' and i[i.len - 1] == '}') { |
| | 187 | const reg = i[1 .. i.len - 1]; |
| | 188 | const arg = as.args[index]; |
| | 189 | if (index > 0) { |
| | 190 | try writer.writeAll(", "); |
| | 191 | } |
| | 192 | if (arg.cast(Inst.Constant)) |c| { |
| | 193 | try writer.print("\"\"({}_constant)", .{reg}); |
| 157 | } else { | 194 | } else { |
| 158 | return file.fail(decl.src(), "TODO byte arrays without sentinels", .{}); | 195 | // This is blocked by the earlier test |
| | 196 | unreachable; |
| 159 | } | 197 | } |
| 160 | } else { | 198 | } else { |
| 161 | return file.fail(decl.src(), "TODO non-byte arrays", .{}); | 199 | // This is blocked by the earlier test |
| | 200 | unreachable; |
| 162 | } | 201 | } |
| 163 | }, | 202 | } |
| 164 | else => |e| { | | |
| 165 | return file.fail(decl.src(), "TODO {}", .{e}); | | |
| 166 | }, | | |
| 167 | } | 203 | } |
| | 204 | try writer.writeAll(");"); |
| 168 | } | 205 | } |