1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/**
* @file debug.c
*
* Debugging and information printing helper implementations.
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <fwd/debug.h>
#include <fwd/scope.h>
/**
* Get string representation of issue_level.
*
* @param level issue_level to get string representation for.
* @return \p level as a string.
*/
const char *issue_level_str(enum issue_level level)
{
switch (level) {
case SRC_INFO: return "info";
case SRC_WARN: return "warn";
case SRC_ERROR: return "error";
}
return "unknown";
}
/**
* Find position in file buffer where line number \p no
* starts. Lines are assumed to be one-indexed, with
* \p no = \c 0 and \p no = \c 1 both considered the first line.
*
* @param buf Buffer to look in.
* @param no Line number whose start to look for.
* @return Pointer to location in buffer where line number \p no
* starts.
*/
static const char *find_lineno(const char *buf, size_t no)
{
if (no == 0 || no == 1)
return buf;
char c;
while ((c = *buf)) {
buf++;
if (c == '\n')
no--;
if (no == 1)
break;
}
return buf;
}
/**
* Helper for printing out an issue.
*
* @param issue Issue context.
* @param fmt Format string. Follows standard printf() formatting.
* @param args Arguments for \p fmt.
*/
static void _issue(struct src_issue issue, const char *fmt, va_list args)
{
/* get start and end of current line in buffer */
const char *line_start = find_lineno(issue.fctx.fbuf,
(size_t)issue.loc.first_line);
const char *line_end = strchr(line_start, '\n');
if (!line_end)
line_end = strchr(line_start, 0);
const int line_len = (int)(line_end - line_start);
fprintf(stderr, "%s:%i:%i: %s: ", issue.fctx.fname,
issue.loc.first_line,
issue.loc.first_col,
issue_level_str(issue.level));
vfprintf(stderr, fmt, args);
fputc('\n', stderr);
int lineno_len = snprintf(NULL, 0, "%i", issue.loc.first_line);
fputc(' ', stderr);
fprintf(stderr, "%i | ", issue.loc.first_line);
fprintf(stderr, "%.*s\n", line_len, line_start);
for (int i = 0; i < lineno_len + 2; ++i)
fputc(' ', stderr);
fprintf(stderr, "| ");
for (int i = 0; i < issue.loc.first_col - 1; ++i)
fputc(line_start[i] == '\t' ? '\t' : ' ', stderr);
for (int i = issue.loc.first_col; i < issue.loc.last_col; ++i) {
if (i == issue.loc.first_col)
fputc('^', stderr);
else
fputc('~', stderr);
}
fputc('\n', stderr);
}
void src_issue(struct src_issue issue, const char *err_msg, ...)
{
va_list args;
va_start(args, err_msg);
_issue(issue, err_msg, args);
va_end(args);
}
void semantic_error(struct scope *scope, struct ast *node,
const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
struct src_issue issue;
issue.level = SRC_ERROR;
issue.loc = node->loc;
issue.fctx = scope->fctx;
_issue(issue, fmt, args);
va_end(args);
}
void type_mismatch(struct scope *scope, struct ast *node,
struct type *l, struct type *r)
{
const char *ls = type_str(l);
const char *rs = type_str(r);
semantic_error(scope, node, "type mismatch: %s vs %s\n", ls, rs);
free((void *)ls);
free((void *)rs);
}
void move_error(struct ast *new_use, struct ast *prev_use)
{
semantic_error(new_use->scope, new_use, "using moved value");
semantic_info(prev_use->scope, prev_use, "previously moved here");
}
static void _type_str(FILE *f, struct type *t);
static void _type_list_str(FILE *f, struct type *types)
{
_type_str(f, types);
foreach_type(type, types->n) {
fprintf(f, ", ");
_type_str(f, type);
}
}
static void _type_str(FILE *f, struct type *type)
{
if (!type)
return;
switch (type->k) {
case TYPE_VOID:
fprintf(f, "void");
break;
case TYPE_PTR:
fprintf(f, "*");
_type_list_str(f, tptr_base(type));
break;
case TYPE_REF:
fprintf(f, "&");
_type_list_str(f, tref_base(type));
break;
case TYPE_ID:
fprintf(f, "%s", type->id);
break;
case TYPE_CALLABLE:
fprintf(f, "(");
_type_list_str(f, type->t0);
fprintf(f, ")");
break;
case TYPE_CONSTRUCT:
fprintf(f, "%s![", type->id);
_type_list_str(f, type->t0);
fprintf(f, "]");
break;
}
}
const char *type_str(struct type *t)
{
if (!t)
return strdup("NULL");
char *buf = NULL; size_t size = 0;
FILE *memstream = open_memstream(&buf, &size);
if (!memstream)
return NULL;
_type_str(memstream, t);
fclose(memstream);
return buf;
}
void loc_error(struct scope *scope, struct src_loc loc,
const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
struct src_issue issue;
issue.level = SRC_ERROR;
issue.loc = loc;
issue.fctx = scope->fctx;
_issue(issue, fmt, args);
va_end(args);
}
void semantic_warn(struct scope *scope, struct ast *node, const char *fmt,
...)
{
va_list args;
va_start(args, fmt);
struct src_issue issue;
issue.level = SRC_WARN;
issue.loc = node->loc;
issue.fctx = scope->fctx;
_issue(issue, fmt, args);
va_end(args);
}
void semantic_info(struct scope *scope, struct ast *node, const char *fmt,
...)
{
va_list args;
va_start(args, fmt);
struct src_issue issue;
issue.level = SRC_INFO;
issue.loc = node->loc;
issue.fctx = scope->fctx;
_issue(issue, fmt, args);
va_end(args);
}
void internal_error(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
fprintf(stderr, "internal error: ");
vfprintf(stderr, fmt, args);
fprintf(stderr, "\n");
va_end(args);
}
void internal_warn(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
fprintf(stderr, "internal warning: ");
vfprintf(stderr, fmt, args);
fprintf(stderr, "\n");
va_end(args);
}
|