]> git.draconx.ca Git - cdecl99.git/blobdiff - src/parse.y
Consolidate header files.
[cdecl99.git] / src / parse.y
index c76bc65035fd6b88d72a4d9c2c8b058a2d157a66..a14f909c530ceb58377743b331e33ae56878a813 100644 (file)
@@ -1,7 +1,7 @@
 %code top {
 /*
  *  Parser for C declarations.
- *  Copyright © 2011 Nick Bowler
+ *  Copyright © 2011-2012, 2021 Nick Bowler
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -18,7 +18,8 @@
  */
 }
 
-%parse-param {yyscan_t scanner}
+%name-prefix "cdecl__yy"
+%parse-param {void *scanner}
 %parse-param {struct cdecl **out}
 %lex-param {yyscan_t scanner}
 %define api.pure
 %locations
 
 %{
+#include <config.h>
 #include <assert.h>
 #include <stdbool.h>
 
 #include "scan.h"
 #include "cdecl.h"
+#include "cdecl-internal.h"
 
 #define FAIL(msg) do { \
        yyerror(&yylloc, NULL, NULL, msg); \
@@ -54,8 +57,9 @@
 }
 
 %code provides {
-void yyerror(YYLTYPE *, void *, struct cdecl **, const char *);
-int yyparse(void *scanner, struct cdecl **out);
+void cdecl__free(struct cdecl *);
+void cdecl__yyerror(YYLTYPE *, void *, struct cdecl **, const char *);
+int cdecl__yyparse(void *scanner, struct cdecl **out);
 }
 
 %union {
@@ -129,7 +133,7 @@ static void free_decl(struct cdecl *x)
        }
 }
 
-void cdecl_free(struct cdecl *decl)
+void cdecl__free(struct cdecl *decl)
 {
        free_decl(decl);
 }
@@ -140,7 +144,9 @@ void cdecl_free(struct cdecl *decl)
 %destructor { free_declarator($$); } <declarator>
 %destructor { free_decl($$); }       <decl>
 
+/* Magic tokens */
 %token T_LEX_ERROR
+%token T_ENGLISH
 
 %token <strval> T_IDENT "identifier"
 %token <uintval> T_UINT "integer constant"
@@ -152,7 +158,7 @@ void cdecl_free(struct cdecl *decl)
 %token T_LBRACKET  "["
 %token T_RBRACKET  "]"
 %token T_COMMA     ","
-%token T_ELLIPSIS  "."
+%token T_ELLIPSIS  "..."
 
 %token T_TYPEDEF   "typedef"
 %token T_EXTERN    "extern"
@@ -183,6 +189,20 @@ void cdecl_free(struct cdecl *decl)
 %token T_UNION     "union"
 %token T_ENUM      "enum"
 
+/*
+ * English keywords.
+ */
+%token T_TYPE      "type"
+%token T_DECLARE   "declare"
+%token T_POINTER   "pointer"
+%token T_FUNCTION  "function"
+%token T_RETURNING "returning"
+%token T_ARRAY     "array"
+%token T_TO        "to"
+%token T_OF        "of"
+%token T_AS        "as"
+%token T_VLA       "variable-length"
+
 %type <strval>     vla_ident
 %type <boolval>    varargs
 %type <uintval>    declspec_simple typespec_simple qualifier_simple
@@ -194,13 +214,31 @@ void cdecl_free(struct cdecl *decl)
 %type <decl>       declaration declarators declarator_wrap
 %type <decl>       parameter parameters
 
+%type <strval>     english_vla
+%type <declspec>   storage_func_specs post_specs
+%type <declspec>   type_qual_spec type_qual_specs typedef_name_qual
+%type <declarator> english_declarator english_array english_function
+%type <declarator> english_parameter_list null_decl
+%type <decl>       english_parameter english_parameters
+%type <decl>       english english_declaration
+
+/*
+ * Harmless shift/reduce conflicts in english_parameter.  See comments below
+ * for more details.
+ */
+%expect 2
+
 %%
 
-input: declaration {
+input: T_ENGLISH english {
+       *out = $2;
+} | declaration {
        *out = $1;
 };
 
-declaration: declspecs declarators T_SEMICOLON {
+semi: | T_SEMICOLON
+
+declaration: declspecs declarators semi {
        $$ = $2;
 
        for (struct cdecl *i = $$; i; i = i->next)
@@ -384,13 +422,171 @@ direct_declarator: {
        $$->child = $1;
 }
 
+english: T_DECLARE T_IDENT T_AS english_declaration {
+       $$ = $4;
+       for (struct cdecl_declarator *d = $$->declarators; d; d = d->child) {
+               if (d->type == CDECL_DECL_NULL) {
+                       d->type = CDECL_DECL_IDENT;
+                       d->u.ident = $2;
+               }
+       }
+} | T_TYPE english_declaration {
+       $$ = $2;
+}
+
+storage_func_specs: { $$ = NULL; } | declspec_simple storage_func_specs {
+       ALLOC_STRUCT($$, struct cdecl_declspec,
+               .type = $1,
+               .next = $2);
+}
+
+type_qual_spec: typespec_noid | qualifier
+
+type_qual_specs: { $$ = NULL; } | type_qual_spec type_qual_specs {
+       $$ = $1;
+       $$->next = $2;
+}
+
+/*
+ * The "qualifiers" nonterminal needs to be used here to avoid shift/reduce
+ * conflicts with pointer declarators.  So we end up needing to stitch
+ * together three different specifiers lists.
+ */
+post_specs: qualifiers typespec type_qual_specs {
+       $$ = $2;
+       $$->next = $1;
+       for (struct cdecl_declspec *s = $$; s; s = s->next) {
+               if (!s->next) {
+                       s->next = $3;
+                       break;
+               }
+       }
+}
+
+english_declaration: storage_func_specs english_declarator post_specs {
+       ALLOC_STRUCT($$, struct cdecl,
+               .specifiers = $3,
+               .declarators = $2);
+
+       for (struct cdecl_declspec *s = $$->specifiers; s; s = s->next) {
+               if (!s->next) {
+                       s->next = $1;
+                       break;
+               }
+       }
+}
+
+english_declarator: {
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_NULL);
+} | english_declarator qualifiers T_POINTER T_TO {
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_POINTER,
+               .child = $1,
+               .u.pointer.qualifiers = $2);
+} | english_declarator english_array {
+       $$ = $2;
+       $$->child = $1;
+} | english_declarator english_function {
+       $$ = $2;
+       $$->child = $1;
+}
+
+english_function: T_FUNCTION T_RETURNING {
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_FUNCTION,
+               .u.function.parameters = NULL);
+} | T_FUNCTION T_LPAREN english_parameter_list T_RPAREN T_RETURNING {
+       $$ = $3;
+}
+
+english_parameter_list: english_parameters varargs {
+       struct cdecl *p, *c, *n;
+
+       /* Parameters were accumulated in reverse order. */
+       for (p = NULL, c = $1; c; p = c, c = n) {
+               n = c->next;
+               c->next = p;
+       }
+
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_FUNCTION,
+               .u.function.parameters = p,
+               .u.function.variadic = $2);
+}
+
+english_parameters: english_parameters T_COMMA english_parameter {
+       $$ = $3;
+       $$->next = $1;
+} | english_parameter
+
+typedef_name_qual: T_IDENT qualifiers {
+       ALLOC_STRUCT($$, struct cdecl_declspec,
+               .type = CDECL_TYPE_IDENT,
+               .ident = $1,
+               .next = $2);
+}
+
+null_decl: {
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_NULL);
+}
+
+/*
+ * There is a small shift/reduce conflict here.  An unadorned identifier
+ * as the first thing in the parameter might be a typedef name deep in the
+ * first english_declaration (thus empty storage_func_specs and empty
+ * english_declarator need to be reduced) or it might be the identifier
+ * before the "as" (thus the identifier should be shifted).
+ *
+ * The typedef name conflict is the only issue, so treating it as a special
+ * case makes the shift harmless.
+ */
+english_parameter: english_declaration | typedef_name_qual null_decl {
+       ALLOC_STRUCT($$, struct cdecl,
+               .specifiers = $1,
+               .declarators = $2);
+} | T_IDENT T_AS english_declaration {
+       $$ = $3;
+       for (struct cdecl_declarator *d = $$->declarators; d; d = d->child) {
+               if (d->type == CDECL_DECL_NULL) {
+                       d->type = CDECL_DECL_IDENT;
+                       d->u.ident = $1;
+               }
+       }
+}
+
+english_array: T_VLA T_ARRAY english_vla T_OF {
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_ARRAY,
+               .u.array.vla = $3);
+} | T_ARRAY T_UINT T_OF {
+       if ($2 == 0)
+               FAIL("array length must be positive");
+
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_ARRAY,
+               .u.array.length = $2);
+} | T_ARRAY T_OF {
+       ALLOC_STRUCT($$, struct cdecl_declarator,
+               .type = CDECL_DECL_ARRAY,
+               .u.array.length = 0);
+}
+
+english_vla: T_IDENT | {
+       ALLOC($$, sizeof "");
+       strcpy($$, "");
+}
+
 %%
 void
-yyerror(YYLTYPE *loc, yyscan_t scanner, struct cdecl **out,
-        const char *err)
+yyerror(YYLTYPE *loc, yyscan_t scanner, struct cdecl **out, const char *err)
 {
        if (strstr(err, "T_LEX_ERROR"))
                return;
 
-       fprintf(stderr, "%s\n", err);
+       cdecl__set_error(&(const struct cdecl_error){
+               .code = CDECL_ENOPARSE,
+               .str  = err,
+       });
 }