aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-07-11 20:45:27 -0400
committerGitHub <noreply@github.com>2022-07-11 20:45:27 -0400
commit7d2e14267985df0226a5deee96d0c17c94bf6eb2 (patch)
tree7ed0b99d42c983c1ed2246d0094600a9425c65c0 /src/Compilation.zig
parentdc815e5e8f194a03988624a6bf7e739ddfe0d3b4 (diff)
parent20d4f7213dde1ffabe0880bbee46a1de44d586fc (diff)
downloadzig-7d2e14267985df0226a5deee96d0c17c94bf6eb2.tar.gz
zig-7d2e14267985df0226a5deee96d0c17c94bf6eb2.zip
Merge pull request #12044 from Vexu/stage2-compile-errors
Sema: add detailed error notes to `coerceInMemoryAllowed`
Diffstat (limited to 'src/Compilation.zig')
-rw-r--r--src/Compilation.zig47
1 files changed, 23 insertions, 24 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index 51e85f37bb..b3ae4e787d 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -526,6 +526,9 @@ pub const AllErrors = struct {
Message.HashContext,
std.hash_map.default_max_load_percentage,
).init(allocator);
+ const err_source = try module_err_msg.src_loc.file_scope.getSource(module.gpa);
+ const err_byte_offset = try module_err_msg.src_loc.byteOffset(module.gpa);
+ const err_loc = std.zig.findLineColumn(err_source.bytes, err_byte_offset);
for (module_err_msg.notes) |module_note| {
const source = try module_note.src_loc.file_scope.getSource(module.gpa);
@@ -540,7 +543,7 @@ pub const AllErrors = struct {
.byte_offset = byte_offset,
.line = @intCast(u32, loc.line),
.column = @intCast(u32, loc.column),
- .source_line = try allocator.dupe(u8, loc.source_line),
+ .source_line = if (err_loc.eql(loc)) null else try allocator.dupe(u8, loc.source_line),
},
};
const gop = try seen_notes.getOrPut(note);
@@ -558,19 +561,16 @@ pub const AllErrors = struct {
});
return;
}
- const source = try module_err_msg.src_loc.file_scope.getSource(module.gpa);
- const byte_offset = try module_err_msg.src_loc.byteOffset(module.gpa);
- const loc = std.zig.findLineColumn(source.bytes, byte_offset);
const file_path = try module_err_msg.src_loc.file_scope.fullPath(allocator);
try errors.append(.{
.src = .{
.src_path = file_path,
.msg = try allocator.dupe(u8, module_err_msg.msg),
- .byte_offset = byte_offset,
- .line = @intCast(u32, loc.line),
- .column = @intCast(u32, loc.column),
+ .byte_offset = err_byte_offset,
+ .line = @intCast(u32, err_loc.line),
+ .column = @intCast(u32, err_loc.column),
.notes = notes_buf[0..note_i],
- .source_line = try allocator.dupe(u8, loc.source_line),
+ .source_line = try allocator.dupe(u8, err_loc.source_line),
},
});
}
@@ -593,6 +593,16 @@ pub const AllErrors = struct {
while (item_i < items_len) : (item_i += 1) {
const item = file.zir.extraData(Zir.Inst.CompileErrors.Item, extra_index);
extra_index = item.end;
+ const err_byte_offset = blk: {
+ const token_starts = file.tree.tokens.items(.start);
+ if (item.data.node != 0) {
+ const main_tokens = file.tree.nodes.items(.main_token);
+ const main_token = main_tokens[item.data.node];
+ break :blk token_starts[main_token];
+ }
+ break :blk token_starts[item.data.token] + item.data.byte_offset;
+ };
+ const err_loc = std.zig.findLineColumn(file.source, err_byte_offset);
var notes: []Message = &[0]Message{};
if (item.data.notes != 0) {
@@ -621,33 +631,22 @@ pub const AllErrors = struct {
.line = @intCast(u32, loc.line),
.column = @intCast(u32, loc.column),
.notes = &.{}, // TODO rework this function to be recursive
- .source_line = try arena.dupe(u8, loc.source_line),
+ .source_line = if (loc.eql(err_loc)) null else try arena.dupe(u8, loc.source_line),
},
};
}
}
const msg = file.zir.nullTerminatedString(item.data.msg);
- const byte_offset = blk: {
- const token_starts = file.tree.tokens.items(.start);
- if (item.data.node != 0) {
- const main_tokens = file.tree.nodes.items(.main_token);
- const main_token = main_tokens[item.data.node];
- break :blk token_starts[main_token];
- }
- break :blk token_starts[item.data.token] + item.data.byte_offset;
- };
- const loc = std.zig.findLineColumn(file.source, byte_offset);
-
try errors.append(.{
.src = .{
.src_path = try file.fullPath(arena),
.msg = try arena.dupe(u8, msg),
- .byte_offset = byte_offset,
- .line = @intCast(u32, loc.line),
- .column = @intCast(u32, loc.column),
+ .byte_offset = err_byte_offset,
+ .line = @intCast(u32, err_loc.line),
+ .column = @intCast(u32, err_loc.column),
.notes = notes,
- .source_line = try arena.dupe(u8, loc.source_line),
+ .source_line = try arena.dupe(u8, err_loc.source_line),
},
});
}