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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
%{
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <fwd/parser.h>
%}
%locations
%define parse.trace
%define parse.error verbose
%define api.pure full
%define lr.type ielr
%lex-param {void *scanner} {struct parser *parser}
%parse-param {void *scanner} {struct parser* parser}
%union {
struct ast *node;
struct type *type;
double dbl;
long long integer;
char *str;
};
%token <integer> INT
%token <integer> CHAR
%token <integer> BOOL
%token <dbl> FLOAT
%token <str> STRING
%token <str> ID
%token <str> APPLY
%token QUESTION "?"
%token SQUOTE "'"
%token TO "="
%token ELLIPSIS "..."
%token SEMICOLON ";"
%token COLON ":"
%token BANG "!"
%token SIZEOF "sizeof"
%token STAR "*"
%token DIV "/"
%token REM "%"
%token MINUS "-"
%token PLUS "+"
%token XOR "^"
%token AND "&"
%token BAR "|"
%token TILDE "~"
%token LT "<"
%token GT ">"
%token LE "<="
%token GE ">="
%token NE "!="
%token EQ "=="
%token LSHIFT "<<"
%token RSHIFT ">>"
%token COMMA ","
%token LPAREN "("
%token RPAREN ")"
%token LBRACE "{"
%token RBRACE "}"
%token LBRACKET "["
%token RBRACKET "]"
%token IF "if"
%token ELSE "else"
%token NIL "nil"
%token OWN "own"
%token PUB "pub"
%token MUT "mut"
%token CONTINUE "continue"
%token IMPORT "import"
%token ERROR "error"
%token DOT "."
%token SCOPE "::"
%token FATARROW "=>"
%token ERRARROW "!>"
%right "[" "]"
/* precedence */
%left ","
%right "=" "+=" "-=" "*=" "/=" "%=" "<<=" ">>="
%left "==" "!="
%left "<" ">" "<=" ">="
%left "^"
%left "&"
%left "<<" ">>"
%left "+" "-"
%left "*" "/" "%"
%left "as" "sizeof"
%right "'" "!" "~"
%left "." "=>" "(" ")"
%left "::"
%nterm <node> top unit proc proc_decl call closure var expr statement body
%nterm <node> vars exprs statements closures err trailing_closure
%nterm <node> opt_vars opt_exprs opt_statements opt_trailing_closure opt_err opt_error
%nterm <node> rev_vars rev_exprs rev_closures rev_statements
%nterm <node> let if nil own unop binop construct import
%nterm <node> struct struct_cont trait
%nterm <node> type_param type_params opt_type_params
%nterm <node> behaviour behaviours opt_behaviours
%nterm <node> member members opt_members
%nterm <type> type rev_types types opt_types
%{
/** Modifies the signature of yylex to fit our parser better. */
#define YY_DECL int yylex(YYSTYPE *yylval, YYLTYPE *yylloc, \
void *yyscanner, struct parser *parser)
/**
* Declare yylex.
*
* @param yylval Bison current value.
* @param yylloc Bison location info.
* @param yyscanner Flex scanner.
* @param parser Current parser state.
* @return \c 0 when succesful, \c 1 otherwise.
* More info on yylex() can be found in the flex manual.
*/
YY_DECL;
/**
* Gobble tokens until we reach the next interesting feature.
* Interesting features are generally new statements.
* Mainly intended for trying to get to a sensible
* location to continue parser after an error has occured.
*
* @param yylval Current parser value.
* @param yylloc Parser location info.
* @param scanner Lex scanner.
* @param parser Current parser.
* @return \c 0 on success, non-zero otherwise.
*/
static int next_interesting_feature(YYSTYPE *yylval, YYLTYPE *yylloc,
void *scanner, struct parser *parser);
/**
* Convert bison location info to our own source location info.
*
* @param yylloc Bison location info.
* @return Internal location info.
*/
static struct src_loc src_loc(YYLTYPE yylloc);
/**
* Print parsing error.
* Automatically called by bison.
*
* @param yylloc Location of error.
* @param lexer Lexer.
* @param parser Parser state.
* @param msg Message to print.
*/
static void yyerror(YYLTYPE *yylloc, void *lexer,
struct parser *parser, const char *msg);
/**
* Try to convert escape code to its actual value.
* I.e. '\n' -> 0x0a.
*
* @param c Escape character without backslash.
* @return Corresponding value.
*/
static char match_escape(char c);
/**
* Similar to strdup() but skips quotation marks that would
* otherwise be included.
* I.e. "something" -> something.
*
* @param s String to clone, with quotation marks surrounding it.
* @return Identical string but without quotation marks around it.
*/
static char *strip(const char *s);
%}
%start input;
%%
var
: type ID { $$ = gen_var($2, $1, src_loc(@$)); }
rev_vars
: rev_vars "," var { $$ = $3; $$->n = $1; }
| rev_vars "|" var { $$ = $3; $$->n = $1; opt_group($1, $3); }
| var
vars
: rev_vars { $$ = reverse_ast_list($1); }
| rev_vars "," { $$ = reverse_ast_list($1); }
opt_vars
: vars
| {$$ = NULL;}
proc
: ID "(" opt_vars ")" body {
$$ = gen_proc($[ID], $[opt_vars], NULL, $[body], src_loc(@$));
}
proc_decl
: ID "(" opt_vars ")" ";" {
$$ = gen_proc($[ID], $[opt_vars], NULL, NULL, src_loc(@$));
}
binop
: expr "+" expr { $$ = gen_binop(AST_ADD, $1, $3, src_loc(@$)); }
| expr "-" expr { $$ = gen_binop(AST_SUB, $1, $3, src_loc(@$)); }
| expr "*" expr { $$ = gen_binop(AST_MUL, $1, $3, src_loc(@$)); }
| expr "/" expr { $$ = gen_binop(AST_DIV, $1, $3, src_loc(@$)); }
| expr "%" expr { $$ = gen_binop(AST_REM, $1, $3, src_loc(@$)); }
| expr "<" expr { $$ = gen_comparison(AST_LT, $1, $3, src_loc(@$)); }
| expr ">" expr { $$ = gen_comparison(AST_GT, $1, $3, src_loc(@$)); }
| expr "<<" expr { $$ = gen_binop(AST_LSHIFT, $1, $3, src_loc(@$)); }
| expr ">>" expr { $$ = gen_binop(AST_RSHIFT, $1, $3, src_loc(@$)); }
| expr "<=" expr { $$ = gen_comparison(AST_LE, $1, $3, src_loc(@$)); }
| expr ">=" expr { $$ = gen_comparison(AST_GE, $1, $3, src_loc(@$)); }
| expr "!=" expr { $$ = gen_comparison(AST_NE, $1, $3, src_loc(@$)); }
| expr "==" expr { $$ = gen_comparison(AST_EQ, $1, $3, src_loc(@$)); }
unop
: "-" expr { $$ = gen_unop(AST_NEG, $2, src_loc(@$)); }
| "!" expr { $$ = gen_unop(AST_LNOT, $2, src_loc(@$)); }
type
: ID { $$ = tgen_id($[ID], src_loc(@$)); }
| APPLY "[" opt_types "]" {
$$ = tgen_construct($[APPLY], $[opt_types], src_loc(@$));
}
| "(" opt_types ")" { $$ = tgen_closure($2, src_loc(@$)); }
| "&&" type {
if ($2->k == TYPE_CLOSURE) {
$$ = $2; $$->k = TYPE_PURE_CLOSURE;
} else {
$$ = tgen_ref($2, src_loc(@$));
}
/* heh */
$$ = tgen_ref($$, src_loc(@$));
}
| "&" type {
if ($2->k == TYPE_CLOSURE) {
$$ = $2; $$->k = TYPE_PURE_CLOSURE;
} else {
$$ = tgen_ref($2, src_loc(@$));
}
}
| "*" type {
if ($2->k == TYPE_CLOSURE) {
$$ = $2; $$->k = TYPE_FUNC_PTR;
} else {
$$ = tgen_ptr($2, src_loc(@$));
}
}
rev_types
: rev_types "," type { $$ = $3; $$->n = $1; }
| type
types
: rev_types { $$ = reverse_type_list($1); }
opt_types
: types
| { $$ = NULL; }
construct
: APPLY "{" opt_exprs "}" {
$$ = gen_init($[APPLY], NULL, $[opt_exprs], src_loc(@$));
}
| APPLY "[" opt_types "]" "{" opt_exprs "}" {
$$ = gen_init($[APPLY], $[opt_types], $[opt_exprs], src_loc(@$));
}
expr
: expr "." ID { $$ = gen_dot($3, $1, src_loc(@$)); }
| STRING { $$ = gen_const_str(strip($1), src_loc(@$)); }
| FLOAT { $$ = gen_const_float($1, src_loc(@$)); }
| BOOL { $$ = gen_const_bool($1, src_loc(@$)); }
| CHAR { $$ = gen_const_char($1, src_loc(@$)); }
| INT { $$ = gen_const_int($1, src_loc(@$)); }
| ID { $$ = gen_id($1, src_loc(@$)); }
| "(" expr ")" { $$ = $2; }
| expr "&" { $$ = gen_ref($1, src_loc(@$)); }
| expr "*" { $$ = gen_deref($1, src_loc(@$)); }
| construct
| binop
| unop
rev_exprs
: rev_exprs "," expr { $$ = $3; $3->n = $1; }
| expr
exprs
: rev_exprs { $$ = reverse_ast_list($1); }
opt_exprs
: exprs
| { $$ = NULL; }
closure
: "=>" opt_vars body {
$$ = gen_closure($[opt_vars], $[body], src_loc(@$));
}
| "&" "=>" opt_vars body {
$$ = gen_closure($[opt_vars], $[body], src_loc(@$));
ast_set_flags($$, AST_FLAG_NOMOVES);
}
rev_closures
: rev_closures closure { $$ = $2; $2->n = $1; }
| closure
trailing_closure
: "=>" opt_vars ";" { $$ = gen_closure($[opt_vars], NULL, src_loc(@$));}
| "&" "=>" opt_vars ";" {
$$ = gen_closure($[opt_vars], NULL, src_loc(@$));
ast_set_flags($$, AST_FLAG_NOMOVES);
}
opt_trailing_closure
: trailing_closure
| { $$ = NULL; }
closures
: rev_closures opt_trailing_closure {
if ($[opt_trailing_closure]) {
$[opt_trailing_closure]->n = $[rev_closures];
$$ = reverse_ast_list($[opt_trailing_closure]);
} else {
$$ = reverse_ast_list($[rev_closures]);
}
}
err
: "!>" ID body {
$$ = gen_err_branch($2, $3, src_loc(@$));
}
opt_err
: err
| { $$ = NULL; }
call
: expr "(" opt_exprs ")" ";" opt_err {
$$ = gen_call($1, $[opt_exprs], $[opt_err], src_loc(@$));
}
| expr "(" opt_exprs ")" "=>" opt_vars ";" opt_err {
/* the rest of the function body is our closure, gets fixed up
* later */
struct ast *closure = gen_closure($[opt_vars], NULL, src_loc(@$));
ast_append(&$[opt_exprs], closure);
$$ = gen_call($[expr], $[opt_exprs], $[opt_err], src_loc(@$));
}
| expr "(" opt_exprs ")" closures opt_err {
ast_append(&$[opt_exprs], $[closures]);
$$ = gen_call($[expr], $[opt_exprs], $[opt_err], src_loc(@$));
}
let
: expr "=>" var ";" { $$ = gen_let($3, $1, src_loc(@$)); }
if
: "if" expr body { $$ = gen_if($2, $3, NULL, src_loc(@$)); }
| "if" expr body "else" body { $$ = gen_if($2, $3, $5, src_loc(@$)); }
| "if" expr body "else" if { $$ = gen_if($2, $3, $5, src_loc(@$)); }
nil
: "nil" ID body "=>" var {
$$ = gen_nil($2, $3, $5, src_loc(@$));
}
own
: "own" ID body {
$$ = gen_own($2, $3, src_loc(@$));
}
opt_error
: "error" STRING {
$$ = gen_error($2, NULL, src_loc(@$));
}
| "error" ID {
$$ = gen_error(NULL, gen_id($2, src_loc(@$)), src_loc(@$));
}
| { $$ = NULL; }
statement
: call
| body
| let
| nil
| own
| if
| ";" { $$ = gen_empty(src_loc(@$)); }
rev_statements
: rev_statements statement { $$ = $2; $2->n = $1; }
| statement
statements
: rev_statements { $$ = reverse_ast_list($1); fix_closures($$); }
opt_statements
: statements
| { $$ = NULL; }
body
: "{" opt_statements opt_error "}" {
$$ = gen_block($2, $3, src_loc(@$));
}
behaviour
: APPLY ";" { $$ = gen_trait_apply($1, src_loc(@$)); }
| proc_decl ";"
| proc
behaviours
: behaviours behaviour { $$ = $1; $1->n = $2; }
| behaviour
opt_behaviours
: behaviours
| { $$ = NULL; }
member
: var ";"
| behaviour
members
: members member { $$ = $1; $1->n = $2; }
| member
opt_members
: members
| { $$ = NULL; }
type_param
: ID ID {
struct type *t = tgen_id($1, src_loc(@1));
$$ = gen_var($2, t, src_loc(@$));
}
type_params
: type_param "," type_params {
$$ = $1; $1->n = $3;
}
| type_param
opt_type_params
: type_params
| { $$ = NULL; }
struct
: ID "[" opt_type_params "]" "{" opt_members "}" {
$$ = gen_struct($1, $3, $6, src_loc(@$));
}
struct_cont
: "continue" ID "[" opt_type_params "]" "{" opt_behaviours "}" {
$$ = gen_struct_cont($2, $4, $7, src_loc(@$));
}
trait
: ID "{" opt_behaviours "}" {
$$ = gen_trait($1, $3, src_loc(@$));
}
import
: "import" STRING {
$$ = gen_import($2, src_loc(@$));
}
top
: proc
| proc_decl
| struct
| struct_cont
| import
| trait
| "pub" proc { $$ = $2; ast_set_flags($$, AST_FLAG_PUBLIC); }
| "pub" proc_decl { $$ = $2; ast_set_flags($$, AST_FLAG_PUBLIC); }
| "pub" struct { $$ = $2; ast_set_flags($$, AST_FLAG_PUBLIC); }
| "pub" struct_cont { $$ = $2; ast_set_flags($$, AST_FLAG_PUBLIC); }
| "pub" import { $$ = $2; ast_set_flags($$, AST_FLAG_PUBLIC); }
| "pub" trait { $$ = $2; ast_set_flags($$, AST_FLAG_PUBLIC); }
| error {
$$ = gen_empty(src_loc(@$));
parser->failed = true;
/* ignore any content inside a top level thing and just move onto
* the next one */
if (next_interesting_feature(&yylval, &yylloc, scanner, parser)) {
YYABORT;
}
yyclearin;
yyerrok;
}
unit
: top { $$ = $1; }
| unit top { $$ = $2; $2->n = $1; }
input
: unit { parser->tree = reverse_ast_list($1); }
| /* empty */
%%
#include "gen_lexer.inc"
/* I'm not convinced this is foolproof quite yet, more testing would be nice. */
static int next_interesting_feature(YYSTYPE *yylval, YYLTYPE *yylloc,
void *scanner, struct parser *parser)
{
size_t depth = 0;
while (1) {
int ret = yylex(yylval, yylloc, scanner, parser);
if (ret == LBRACE) {
depth++;
continue;
}
if (ret == RBRACE && depth > 0)
depth--;
if (ret == RBRACE && depth == 0)
return 0;
if (ret == SEMICOLON && depth == 0)
return 0;
/* return fatal error and parser should abort */
if (ret == YYEOF)
/* some error for unmatched braces would be cool I think */
return 1;
}
}
static struct src_loc src_loc(YYLTYPE yylloc)
{
struct src_loc loc;
loc.first_line = yylloc.first_line;
loc.last_line = yylloc.last_line;
loc.first_col = yylloc.first_column;
loc.last_col = yylloc.last_column;
return loc;
}
static void yyerror(YYLTYPE *yylloc, void *lexer,
struct parser *parser, const char *msg)
{
(void)lexer;
struct src_issue issue;
issue.level = SRC_ERROR;
issue.loc = src_loc(*yylloc);
issue.fctx.fbuf = parser->buf;
issue.fctx.fname = parser->fname;
src_issue(issue, msg);
}
static char match_escape(char c)
{
switch (c) {
case '\'': return '\'';
case '\\': return '\\';
case 'a': return '\a';
case 'b': return '\b';
case 'f': return '\f';
case 'n': return '\n';
case 'r': return '\r';
case 't': return '\t';
case 'v': return '\v';
}
return c;
}
static char *strip(const char *str)
{
const size_t len = strlen(str) + 1;
char *buf = malloc(len);
if (!buf) {
/* should probably try to handle the error in some way... */
internal_error("failed allocating buffer for string clone");
free((void *)str);
return NULL;
}
/* skip quotation marks */
size_t j = 0;
for (size_t i = 1; i < len - 2; ++i)
buf[j++] = str[i];
buf[j] = 0;
free((void *)str);
return buf;
}
struct parser *create_parser()
{
return calloc(1, sizeof(struct parser));
}
void destroy_parser(struct parser *p)
{
yylex_destroy(p->lexer);
free(p);
}
void parse(struct parser *p, const char *fname, const char *buf)
{
p->fname = fname;
p->buf = buf;
p->comment_nesting = 0;
p->failed = false;
yylex_init(&p->lexer);
yy_scan_string(buf, p->lexer);
yyparse(p->lexer, p);
}
|