]> git.draconx.ca Git - cdecl99.git/blob - src/parse.y
libcdecl: Factor out open-coded identifier patchup.
[cdecl99.git] / src / parse.y
1 %code top {
2 /*
3  *  Parser for C declarations.
4  *  Copyright © 2011-2012, 2021, 2023 Nick Bowler
5  *
6  *  This program is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 }
20
21 %name-prefix "cdecl__yy"
22 %parse-param {void *scanner}
23 %parse-param {struct cdecl **out}
24 %lex-param {yyscan_t scanner}
25 %define api.pure
26 %error-verbose
27 %locations
28
29 %{
30 #include <config.h>
31 #include <assert.h>
32 #include <stdbool.h>
33
34 #include "scan.h"
35 #include "cdecl.h"
36 #include "cdecl-internal.h"
37 #include "errmsg.h"
38
39 #define FAIL(msg) do { \
40         yyerror(&yylloc, NULL, NULL, msg); \
41         YYERROR; \
42 } while (0)
43
44 #define ALLOC(ptr, size) do { \
45         (ptr) = malloc(size); \
46         if (!(ptr)) { \
47                 cdecl__errmsg(CDECL__ENOMEM); \
48                 YYERROR; \
49         } \
50 } while (0)
51
52 #define ALLOC_STRUCT(ptr, type, ...) do { \
53         ALLOC(ptr, sizeof (type)); \
54         *(ptr) = (type) { __VA_ARGS__ }; \
55 } while (0)
56 %}
57
58 %code requires {
59 #include <inttypes.h>
60 }
61
62 %code provides {
63 void cdecl__free(struct cdecl *);
64 int cdecl__yyparse(void *scanner, struct cdecl **out);
65 const char *cdecl__token_name(unsigned token);
66 }
67
68 %union {
69         uintmax_t uintval;
70         unsigned spectype;
71         _Bool boolval;
72         char *strval;
73         struct cdecl_declspec *declspec;
74         struct cdecl_declarator *declarator;
75         struct cdecl *decl;
76 }
77
78 %{
79 static void yyerror(YYLTYPE *, yyscan_t, struct cdecl **, const char *);
80 static void free_decl(struct cdecl *);
81
82 static void free_declspec(struct cdecl_declspec *x)
83 {
84         struct cdecl_declspec *p;
85         while (x) {
86                 p = x->next;
87                 free(x->ident);
88                 free(x);
89                 x = p;
90         }
91 }
92
93 static void free_declarator(struct cdecl_declarator *x)
94 {
95         struct cdecl_declarator *p;
96
97         while (x) {
98                 p = x->child;
99
100                 switch (x->type) {
101                 case CDECL_DECL_NULL:
102                         break;
103                 case CDECL_DECL_IDENT:
104                         free(x->u.ident);
105                         break;
106                 case CDECL_DECL_POINTER:
107                         free_declspec(x->u.pointer.qualifiers);
108                         break;
109                 case CDECL_DECL_ARRAY:
110                         free(x->u.array.vla);
111                         break;
112                 case CDECL_DECL_FUNCTION:
113                         free_decl(x->u.function.parameters);
114                         break;
115                 default:
116                         assert(0);
117                 }
118
119                 free(x);
120                 x = p;
121         }
122 }
123
124 static void free_decl(struct cdecl *x)
125 {
126         struct cdecl *p;
127
128         while (x) {
129                 p = x->next;
130
131                 /* The specifiers may be shared by an entire chain. */
132                 if (!p || p->specifiers != x->specifiers)
133                         free_declspec(x->specifiers);
134
135                 free_declarator(x->declarators);
136                 free(x);
137                 x = p;
138         }
139 }
140
141 void cdecl__free(struct cdecl *decl)
142 {
143         free_decl(decl);
144 }
145
146 /*
147  * Join two declaration specifier lists into a single list, with "a" being the
148  * head of the new list.
149  *
150  * The list "a" is assumed to be nonempty.
151  */
152 static void join_specs(struct cdecl_declspec *a, struct cdecl_declspec *b)
153 {
154         while (a->next)
155                 a = a->next;
156         a->next = b;
157 }
158
159 /*
160  * Alter an abstract declarator (type name) to declare an identifier instead,
161  * used by the English parser rules to reduce "identifier as type" sequences.
162  */
163 static struct cdecl *insert_identifier(struct cdecl *decl, char *ident)
164 {
165         struct cdecl_declarator *d = decl->declarators;
166
167         while (d->child)
168                 d = d->child;
169
170         d->type = CDECL_DECL_IDENT;
171         d->u.ident = ident;
172
173         return decl;
174 }
175 %}
176
177 %destructor { free($$); }            <strval>
178 %destructor { free_declspec($$); }   <declspec>
179 %destructor { free_declarator($$); } <declarator>
180 %destructor { free_decl($$); }       <decl>
181
182 /* Magic tokens */
183 %token T_LEX_ERROR
184 %token T_ENGLISH
185
186 %token <strval> T_IDENT "identifier"
187 %token <uintval> T_UINT "integer constant"
188
189 %token T_SEMICOLON ";"
190 %token T_ASTERISK  "*"
191 %token T_LPAREN    "("
192 %token T_RPAREN    ")"
193 %token T_LBRACKET  "["
194 %token T_RBRACKET  "]"
195 %token T_COMMA     ","
196 %token T_ELLIPSIS  "..."
197
198 %token <spectype> T_TYPEDEF   "typedef"
199 %token <spectype> T_EXTERN    "extern"
200 %token <spectype> T_STATIC    "static"
201 %token <spectype> T_AUTO      "auto"
202 %token <spectype> T_REGISTER  "register"
203
204 %token <spectype> T_INLINE    "inline"
205
206 %token <spectype> T_RESTRICT  "restrict"
207 %token <spectype> T_VOLATILE  "volatile"
208 %token <spectype> T_CONST     "const"
209
210 %token <spectype> T_VOID      "void"
211 %token <spectype> T_CHAR      "char"
212 %token <spectype> T_SHORT     "short"
213 %token <spectype> T_INT       "int"
214 %token <spectype> T_LONG      "long"
215 %token <spectype> T_FLOAT     "float"
216 %token <spectype> T_DOUBLE    "double"
217 %token <spectype> T_SIGNED    "signed"
218 %token <spectype> T_UNSIGNED  "unsigned"
219 %token <spectype> T_BOOL      "_Bool"
220 %token <spectype> T_COMPLEX   "_Complex"
221 %token <spectype> T_IMAGINARY "_Imaginary"
222
223 %token <spectype> T_STRUCT    "struct"
224 %token <spectype> T_UNION     "union"
225 %token <spectype> T_ENUM      "enum"
226
227 /*
228  * English keywords.
229  */
230 %token T_TYPE      "type"
231 %token T_DECLARE   "declare"
232 %token T_POINTER   "pointer"
233 %token T_FUNCTION  "function"
234 %token T_RETURNING "returning"
235 %token T_ARRAY     "array"
236 %token T_TO        "to"
237 %token T_OF        "of"
238 %token T_AS        "as"
239 %token T_VLA       "variable-length"
240
241 %type <strval>     vla_ident
242 %type <boolval>    varargs
243 %type <spectype>   declspec_simple qualifier_simple
244 %type <spectype>   typespec_simple typespec_tagged
245 %type <declspec>   declspec_notype declspec_noid typespec_noid typespec
246 %type <declspec>   qualifier qualifiers
247 %type <declspec>   declspecs declspecs_noid
248 %type <declarator> direct_declarator declarator pointer array parens postfix
249 %type <declarator> direct_declarator_ish declarator_ish parameter_type_list
250 %type <decl>       declaration declarators declarator_wrap
251 %type <decl>       parameter parameters
252
253 %type <strval>     english_vla
254 %type <declspec>   storage_func_specs post_specs
255 %type <declspec>   type_qual_spec type_qual_specs typedef_name_qual
256 %type <declarator> english_declarator english_array english_function
257 %type <declarator> english_parameter_list null_decl
258 %type <decl>       english_parameter english_parameters
259 %type <decl>       english english_declaration
260
261 /*
262  * Harmless shift/reduce conflicts in english_parameter.  See comments below
263  * for more details.
264  */
265 %expect 2
266
267 %%
268
269 input: T_ENGLISH english {
270         *out = $2;
271 } | declaration {
272         *out = $1;
273 };
274
275 semi: | T_SEMICOLON
276
277 declaration: declspecs declarators semi {
278         $$ = $2;
279         $$->specifiers = $1;
280 };
281
282 /*
283  * We support parsing declarations using arbitrary identifiers as type
284  * specifiers (a la C typedef).  To avoid confusion with identifiers that
285  * may also be used as declarators, note the following:
286  *
287  *  (a) Every valid C declaration must have at least one type specifier, and
288  *  (b) Valid declarations with typedef names have exactly one type specifier.
289  *
290  * So the rule applied when parsing specifiers is: an identifier is a type
291  * specifier only if we have not yet seen any type specifiers whatsoever
292  * (within one declaration specifier list).
293  *
294  * Treating identifiers as type specifiers by default can lead to strange and
295  * unexpected parses; libcdecl applies a simplification step to the resulting
296  * parse tree afterwards.
297  */
298 declspecs: declspec_notype declspecs {
299         $$ = $1;
300         $$->next = $2;
301 } | typespec declspecs_noid {
302         $$ = $1;
303         $$->next = $2;
304 }
305
306 declspecs_noid: { $$ = NULL; } | declspec_noid declspecs_noid {
307         $$ = $1;
308         $$->next = $2;
309 }
310
311 qualifiers: { $$ = NULL; } | qualifiers qualifier {
312         $$ = $2;
313         $$->next = $1;
314 }
315
316 declarators: declarator_wrap | declarator_wrap T_COMMA declarators {
317         $$ = $1;
318         $$->next = $3;
319 }
320
321 declarator_wrap: declarator {
322         ALLOC_STRUCT($$, struct cdecl, .declarators = $1);
323 }
324
325 declspec_simple: T_AUTO
326         | T_TYPEDEF
327         | T_EXTERN
328         | T_STATIC
329         | T_REGISTER
330         | T_INLINE
331
332 typespec_simple: T_VOID
333         | T_CHAR
334         | T_SHORT
335         | T_INT
336         | T_LONG
337         | T_FLOAT
338         | T_DOUBLE
339         | T_SIGNED
340         | T_UNSIGNED
341         | T_BOOL
342         | T_COMPLEX
343         | T_IMAGINARY
344
345 typespec_tagged: T_STRUCT | T_UNION | T_ENUM
346
347 qualifier_simple: T_CONST
348         | T_RESTRICT
349         | T_VOLATILE
350
351 declspec_notype: qualifier | declspec_simple {
352         ALLOC_STRUCT($$, struct cdecl_declspec, .type = $1);
353 }
354
355 typespec_noid: typespec_simple {
356         ALLOC_STRUCT($$, struct cdecl_declspec, .type = $1);
357 }
358
359 qualifier: qualifier_simple {
360         ALLOC_STRUCT($$, struct cdecl_declspec, .type = $1);
361 }
362
363 typespec: typespec_noid | typespec_tagged T_IDENT {
364         ALLOC_STRUCT($$, struct cdecl_declspec,
365                 .type  = $1,
366                 .ident = $2);
367 } | T_IDENT {
368         ALLOC_STRUCT($$, struct cdecl_declspec,
369                 .type = CDECL_TYPE_IDENT,
370                 .ident = $1);
371 }
372
373 declspec_noid: declspec_notype | typespec_noid
374
375 vla_ident: T_IDENT | T_ASTERISK {
376         ALLOC($$, sizeof "");
377         strcpy($$, "");
378 }
379
380 array: T_LBRACKET T_UINT T_RBRACKET {
381         if ($2 == 0)
382                 FAIL(_("array length must be positive"));
383
384         ALLOC_STRUCT($$, struct cdecl_declarator,
385                 .type = CDECL_DECL_ARRAY,
386                 .u.array.length = $2);
387 } | T_LBRACKET vla_ident T_RBRACKET {
388         ALLOC_STRUCT($$, struct cdecl_declarator,
389                 .type = CDECL_DECL_ARRAY,
390                 .u.array.vla = $2);
391 } | T_LBRACKET T_RBRACKET {
392         ALLOC_STRUCT($$, struct cdecl_declarator,
393                 .type = CDECL_DECL_ARRAY);
394 }
395
396 parameter: declspecs declarator {
397         ALLOC_STRUCT($$, struct cdecl,
398                 .specifiers = $1,
399                 .declarators = $2);
400 }
401
402 parameters: parameter | parameters T_COMMA parameter {
403         $$ = $3;
404         $$->next = $1;
405 }
406
407 varargs: { $$ = false; } | T_COMMA T_ELLIPSIS { $$ = true; }
408
409 parameter_type_list: parameters varargs {
410         struct cdecl *p, *c, *n;
411
412         /* Parameters were accumulated in reverse order. */
413         for (p = NULL, c = $1; c; p = c, c = n) {
414                 n = c->next;
415                 c->next = p;
416         }
417
418         ALLOC_STRUCT($$, struct cdecl_declarator,
419                 .type = CDECL_DECL_FUNCTION,
420                 .u.function.parameters = p,
421                 .u.function.variadic = $2);
422 }
423
424 parens: T_LPAREN parameter_type_list T_RPAREN {
425         $$ = $2;
426 } | T_LPAREN declarator_ish T_RPAREN {
427         ALLOC_STRUCT($$, struct cdecl_declarator,
428                 .type = CDECL_DECL_FUNCTION);
429         ALLOC_STRUCT($$->u.function.parameters, struct cdecl,
430                 .declarators = $2);
431 }
432
433 pointer: T_ASTERISK qualifiers direct_declarator {
434         ALLOC_STRUCT($$, struct cdecl_declarator,
435                 .type = CDECL_DECL_POINTER,
436                 .u.pointer.qualifiers = $2,
437                 .child = $3);
438 } | T_ASTERISK qualifiers pointer {
439         ALLOC_STRUCT($$, struct cdecl_declarator,
440                 .type = CDECL_DECL_POINTER,
441                 .u.pointer.qualifiers = $2,
442                 .child = $3);
443 }
444
445 declarator: direct_declarator | pointer
446 declarator_ish: direct_declarator_ish | pointer
447 postfix: array | parens
448
449 direct_declarator_ish: {
450         ALLOC_STRUCT($$, struct cdecl_declarator,
451                 .type = CDECL_DECL_NULL);
452 } | direct_declarator_ish postfix {
453         $$ = $2;
454         $$->child = $1;
455 }
456
457 direct_declarator: {
458         ALLOC_STRUCT($$, struct cdecl_declarator,
459                 .type = CDECL_DECL_NULL);
460 } | T_IDENT {
461         ALLOC_STRUCT($$, struct cdecl_declarator,
462                 .type = CDECL_DECL_IDENT,
463                 .u.ident = $1);
464 } | direct_declarator postfix {
465         $$ = $2;
466         $$->child = $1;
467 }
468
469 english: T_DECLARE T_IDENT T_AS english_declaration {
470         $$ = insert_identifier($4, $2);
471 } | T_TYPE english_declaration {
472         $$ = $2;
473 }
474
475 storage_func_specs: { $$ = NULL; } | declspec_simple storage_func_specs {
476         ALLOC_STRUCT($$, struct cdecl_declspec,
477                 .type = $1,
478                 .next = $2);
479 }
480
481 type_qual_spec: typespec_noid | qualifier
482
483 type_qual_specs: { $$ = NULL; } | type_qual_spec type_qual_specs {
484         $$ = $1;
485         $$->next = $2;
486 }
487
488 /*
489  * The "qualifiers" nonterminal needs to be used here to avoid shift/reduce
490  * conflicts with pointer declarators.  So we end up needing to stitch
491  * together three different specifiers lists.
492  */
493 post_specs: qualifiers typespec type_qual_specs {
494         $2->next = $3;
495         join_specs($2, $1);
496         $$ = $2;
497 }
498
499 english_declaration: storage_func_specs english_declarator post_specs {
500         join_specs($3, $1);
501         ALLOC_STRUCT($$, struct cdecl,
502                 .specifiers = $3,
503                 .declarators = $2);
504 }
505
506 english_declarator: {
507         ALLOC_STRUCT($$, struct cdecl_declarator,
508                 .type = CDECL_DECL_NULL);
509 } | english_declarator qualifiers T_POINTER T_TO {
510         ALLOC_STRUCT($$, struct cdecl_declarator,
511                 .type = CDECL_DECL_POINTER,
512                 .child = $1,
513                 .u.pointer.qualifiers = $2);
514 } | english_declarator english_array {
515         $$ = $2;
516         $$->child = $1;
517 } | english_declarator english_function {
518         $$ = $2;
519         $$->child = $1;
520 }
521
522 english_function: T_FUNCTION T_RETURNING {
523         ALLOC_STRUCT($$, struct cdecl_declarator,
524                 .type = CDECL_DECL_FUNCTION,
525                 .u.function.parameters = NULL);
526 } | T_FUNCTION T_LPAREN english_parameter_list T_RPAREN T_RETURNING {
527         $$ = $3;
528 }
529
530 english_parameter_list: english_parameters varargs {
531         struct cdecl *p, *c, *n;
532
533         /* Parameters were accumulated in reverse order. */
534         for (p = NULL, c = $1; c; p = c, c = n) {
535                 n = c->next;
536                 c->next = p;
537         }
538
539         ALLOC_STRUCT($$, struct cdecl_declarator,
540                 .type = CDECL_DECL_FUNCTION,
541                 .u.function.parameters = p,
542                 .u.function.variadic = $2);
543 }
544
545 english_parameters: english_parameters T_COMMA english_parameter {
546         $$ = $3;
547         $$->next = $1;
548 } | english_parameter
549
550 typedef_name_qual: T_IDENT qualifiers {
551         ALLOC_STRUCT($$, struct cdecl_declspec,
552                 .type = CDECL_TYPE_IDENT,
553                 .ident = $1,
554                 .next = $2);
555 }
556
557 null_decl: {
558         ALLOC_STRUCT($$, struct cdecl_declarator,
559                 .type = CDECL_DECL_NULL);
560 }
561
562 /*
563  * There is a small shift/reduce conflict here.  An unadorned identifier
564  * as the first thing in the parameter might be a typedef name deep in the
565  * first english_declaration (thus empty storage_func_specs and empty
566  * english_declarator need to be reduced) or it might be the identifier
567  * before the "as" (thus the identifier should be shifted).
568  *
569  * The typedef name conflict is the only issue, so treating it as a special
570  * case makes the shift harmless.
571  */
572 english_parameter: english_declaration | typedef_name_qual null_decl {
573         ALLOC_STRUCT($$, struct cdecl,
574                 .specifiers = $1,
575                 .declarators = $2);
576 } | T_IDENT T_AS english_declaration {
577         $$ = insert_identifier($3, $1);
578 }
579
580 english_array: T_VLA T_ARRAY english_vla T_OF {
581         ALLOC_STRUCT($$, struct cdecl_declarator,
582                 .type = CDECL_DECL_ARRAY,
583                 .u.array.vla = $3);
584 } | T_ARRAY T_UINT T_OF {
585         if ($2 == 0)
586                 FAIL(_("array length must be positive"));
587
588         ALLOC_STRUCT($$, struct cdecl_declarator,
589                 .type = CDECL_DECL_ARRAY,
590                 .u.array.length = $2);
591 } | T_ARRAY T_OF {
592         ALLOC_STRUCT($$, struct cdecl_declarator,
593                 .type = CDECL_DECL_ARRAY,
594                 .u.array.length = 0);
595 }
596
597 english_vla: T_IDENT | {
598         ALLOC($$, sizeof "");
599         strcpy($$, "");
600 }
601
602 %%
603
604 /*
605  * Expose the token string table to the rest of the library, in order to
606  * produce strings that match parser keywords.
607  *
608  * In order for this to work properly, the Bison output must be postprocessed
609  * by fix-yytname.awk to remove pointless quotation marks from the keyword
610  * strings.
611  */
612 const char *cdecl__token_name(unsigned token)
613 {
614         return yytname[YYTRANSLATE(token)];
615 }
616
617 static void
618 yyerror(YYLTYPE *loc, yyscan_t scanner, struct cdecl **out, const char *err)
619 {
620         if (strstr(err, yytname[YYTRANSLATE(T_LEX_ERROR)]))
621                 return;
622
623         cdecl__err(CDECL_ENOPARSE, "%s", err);
624 }