]> git.saurik.com Git - bison.git/blame_incremental - src/parse-gram.y
scan-code: avoid compiler warnings
[bison.git] / src / parse-gram.y
... / ...
CommitLineData
1%{/* Bison Grammar Parser -*- C -*-
2
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
4 Software Foundation, Inc.
5
6 This file is part of Bison, the GNU Compiler Compiler.
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21#include <config.h>
22#include "system.h"
23
24#include "complain.h"
25#include "conflicts.h"
26#include "files.h"
27#include "getargs.h"
28#include "gram.h"
29#include "muscle_tab.h"
30#include "quotearg.h"
31#include "reader.h"
32#include "symlist.h"
33#include "named-ref.h"
34#include "scan-gram.h"
35#include "scan-code.h"
36
37#define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
38static YYLTYPE lloc_default (YYLTYPE const *, int);
39
40#define YY_LOCATION_PRINT(File, Loc) \
41 location_print (File, Loc)
42
43static void version_check (location const *loc, char const *version);
44
45/* Request detailed syntax error messages, and pass them to GRAM_ERROR.
46 FIXME: depends on the undocumented availability of YYLLOC. */
47#undef yyerror
48#define yyerror(Msg) \
49 gram_error (&yylloc, Msg)
50static void gram_error (location const *, char const *);
51
52static char const *char_name (char);
53
54/** Add a lex-param or a parse-param.
55 *
56 * \param type \a lex_param or \a parse_param
57 * \param decl the formal argument
58 * \param loc the location in the source.
59 */
60static void add_param (char const *type, char *decl, location loc);
61
62
63static symbol_class current_class = unknown_sym;
64static uniqstr current_type = NULL;
65static symbol *current_lhs;
66static location current_lhs_location;
67static named_ref *current_lhs_named_ref;
68static int current_prec = 0;
69
70#define YYTYPE_INT16 int_fast16_t
71#define YYTYPE_INT8 int_fast8_t
72#define YYTYPE_UINT16 uint_fast16_t
73#define YYTYPE_UINT8 uint_fast8_t
74%}
75
76%debug
77%verbose
78%defines
79%locations
80%pure-parser
81%error-verbose
82%name-prefix="gram_"
83%expect 0
84
85%initial-action
86{
87 /* Bison's grammar can initial empty locations, hence a default
88 location is needed. */
89 boundary_set (&@$.start, current_file, 1, 1);
90 boundary_set (&@$.end, current_file, 1, 1);
91}
92
93%union
94{
95 symbol *symbol;
96 symbol_list *list;
97 int integer;
98 char const *chars;
99 char *code;
100 assoc assoc;
101 uniqstr uniqstr;
102 unsigned char character;
103 named_ref *named_ref;
104};
105
106/* Define the tokens together with their human representation. */
107%token GRAM_EOF 0 "end of file"
108%token STRING "string"
109%token INT "integer"
110
111%token PERCENT_TOKEN "%token"
112%token PERCENT_NTERM "%nterm"
113
114%token PERCENT_TYPE "%type"
115%token PERCENT_DESTRUCTOR "%destructor"
116%token PERCENT_PRINTER "%printer"
117
118%token PERCENT_LEFT "%left"
119%token PERCENT_RIGHT "%right"
120%token PERCENT_NONASSOC "%nonassoc"
121
122%token PERCENT_PREC "%prec"
123%token PERCENT_DPREC "%dprec"
124%token PERCENT_MERGE "%merge"
125
126
127/*----------------------.
128| Global Declarations. |
129`----------------------*/
130
131%token
132 PERCENT_CODE "%code"
133 PERCENT_DEBUG "%debug"
134 PERCENT_DEFAULT_PREC "%default-prec"
135 PERCENT_DEFINE "%define"
136 PERCENT_DEFINES "%defines"
137 PERCENT_ERROR_VERBOSE "%error-verbose"
138 PERCENT_EXPECT "%expect"
139 PERCENT_EXPECT_RR "%expect-rr"
140 PERCENT_FILE_PREFIX "%file-prefix"
141 PERCENT_GLR_PARSER "%glr-parser"
142 PERCENT_INITIAL_ACTION "%initial-action"
143 PERCENT_LANGUAGE "%language"
144 PERCENT_LEX_PARAM "%lex-param"
145 PERCENT_LOCATIONS "%locations"
146 PERCENT_NAME_PREFIX "%name-prefix"
147 PERCENT_NO_DEFAULT_PREC "%no-default-prec"
148 PERCENT_NO_LINES "%no-lines"
149 PERCENT_NONDETERMINISTIC_PARSER
150 "%nondeterministic-parser"
151 PERCENT_OUTPUT "%output"
152 PERCENT_PARSE_PARAM "%parse-param"
153 PERCENT_PURE_PARSER "%pure-parser"
154 PERCENT_REQUIRE "%require"
155 PERCENT_SKELETON "%skeleton"
156 PERCENT_START "%start"
157 PERCENT_TOKEN_TABLE "%token-table"
158 PERCENT_VERBOSE "%verbose"
159 PERCENT_YACC "%yacc"
160;
161
162%token BRACED_CODE "{...}"
163%token CHAR "char"
164%token EPILOGUE "epilogue"
165%token EQUAL "="
166%token ID "identifier"
167%token ID_COLON "identifier:"
168%token PERCENT_PERCENT "%%"
169%token PIPE "|"
170%token PROLOGUE "%{...%}"
171%token SEMICOLON ";"
172%token TYPE "type"
173%token TYPE_TAG_ANY "<*>"
174%token TYPE_TAG_NONE "<>"
175%token BRACKETED_ID "[id]"
176
177%type <character> CHAR
178%printer { fputs (char_name ($$), stderr); } CHAR
179
180/* braceless is not to be used for rule or symbol actions, as it
181 calls code_props_plain_init. */
182%type <chars> STRING "%{...%}" EPILOGUE braceless content.opt
183%type <code> "{...}"
184%printer { fputs (quotearg_style (c_quoting_style, $$), stderr); }
185 STRING
186%printer { fprintf (stderr, "{\n%s\n}", $$); }
187 braceless content.opt "{...}" "%{...%}" EPILOGUE
188
189%type <uniqstr> TYPE ID ID_COLON BRACKETED_ID variable
190%type <named_ref> named_ref.opt
191%printer { fprintf (stderr, "<%s>", $$); } TYPE
192%printer { fputs ($$, stderr); } ID variable
193%printer { fprintf (stderr, "%s:", $$); } ID_COLON
194
195%type <integer> INT
196%printer { fprintf (stderr, "%d", $$); } INT
197
198%type <symbol> id id_colon symbol symbol.prec string_as_id
199%printer { fprintf (stderr, "%s", $$->tag); } id symbol string_as_id
200%printer { fprintf (stderr, "%s:", $$->tag); } id_colon
201
202%type <assoc> precedence_declarator
203%type <list> symbols.1 symbols.prec generic_symlist generic_symlist_item
204%%
205
206input:
207 prologue_declarations "%%" grammar epilogue.opt
208;
209
210
211 /*------------------------------------.
212 | Declarations: before the first %%. |
213 `------------------------------------*/
214
215prologue_declarations:
216 /* Nothing */
217| prologue_declarations prologue_declaration
218;
219
220prologue_declaration:
221 grammar_declaration
222| "%{...%}"
223 {
224 code_props plain_code;
225 code_props_plain_init (&plain_code, $1, @1);
226 code_props_translate_code (&plain_code);
227 gram_scanner_last_string_free ();
228 muscle_code_grow (union_seen ? "post_prologue" : "pre_prologue",
229 plain_code.code, @1);
230 code_scanner_last_string_free ();
231 }
232| "%debug" { debug_flag = true; }
233| "%define" variable content.opt
234 {
235 muscle_percent_define_insert ($2, @2, $3,
236 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE);
237 }
238| "%defines" { defines_flag = true; }
239| "%defines" STRING
240 {
241 defines_flag = true;
242 spec_defines_file = xstrdup ($2);
243 }
244| "%error-verbose" { error_verbose = true; }
245| "%expect" INT { expected_sr_conflicts = $2; }
246| "%expect-rr" INT { expected_rr_conflicts = $2; }
247| "%file-prefix" STRING { spec_file_prefix = $2; }
248| "%file-prefix" "=" STRING { spec_file_prefix = $3; } /* deprecated */
249| "%glr-parser"
250 {
251 nondeterministic_parser = true;
252 glr_parser = true;
253 }
254| "%initial-action" "{...}"
255 {
256 code_props action;
257 code_props_symbol_action_init (&action, $2, @2);
258 code_props_translate_code (&action);
259 gram_scanner_last_string_free ();
260 muscle_code_grow ("initial_action", action.code, @2);
261 code_scanner_last_string_free ();
262 }
263| "%language" STRING { language_argmatch ($2, grammar_prio, @1); }
264| "%lex-param" "{...}" { add_param ("lex_param", $2, @2); }
265| "%locations" { locations_flag = true; }
266| "%name-prefix" STRING { spec_name_prefix = $2; }
267| "%name-prefix" "=" STRING { spec_name_prefix = $3; } /* deprecated */
268| "%no-lines" { no_lines_flag = true; }
269| "%nondeterministic-parser" { nondeterministic_parser = true; }
270| "%output" STRING { spec_outfile = $2; }
271| "%output" "=" STRING { spec_outfile = $3; } /* deprecated */
272| "%parse-param" "{...}" { add_param ("parse_param", $2, @2); }
273| "%pure-parser"
274 {
275 /* %pure-parser is deprecated in favor of `%define api.pure', so use
276 `%define api.pure' in a backward-compatible manner here. First, don't
277 complain if %pure-parser is specified multiple times. */
278 if (!muscle_find_const ("percent_define(api.pure)"))
279 muscle_percent_define_insert ("api.pure", @1, "",
280 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE);
281 /* In all cases, use api.pure now so that the backend doesn't complain if
282 the skeleton ignores api.pure, but do warn now if there's a previous
283 conflicting definition from an actual %define. */
284 if (!muscle_percent_define_flag_if ("api.pure"))
285 muscle_percent_define_insert ("api.pure", @1, "",
286 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE);
287 }
288| "%require" STRING { version_check (&@2, $2); }
289| "%skeleton" STRING
290 {
291 char const *skeleton_user = $2;
292 if (strchr (skeleton_user, '/'))
293 {
294 size_t dir_length = strlen (current_file);
295 char *skeleton_build;
296 while (dir_length && current_file[dir_length - 1] != '/')
297 --dir_length;
298 while (dir_length && current_file[dir_length - 1] == '/')
299 --dir_length;
300 skeleton_build =
301 xmalloc (dir_length + 1 + strlen (skeleton_user) + 1);
302 if (dir_length > 0)
303 {
304 strncpy (skeleton_build, current_file, dir_length);
305 skeleton_build[dir_length++] = '/';
306 }
307 strcpy (skeleton_build + dir_length, skeleton_user);
308 skeleton_user = uniqstr_new (skeleton_build);
309 free (skeleton_build);
310 }
311 skeleton_arg (skeleton_user, grammar_prio, @1);
312 }
313| "%token-table" { token_table_flag = true; }
314| "%verbose" { report_flag |= report_states; }
315| "%yacc" { yacc_flag = true; }
316| /*FIXME: Err? What is this horror doing here? */ ";"
317;
318
319grammar_declaration:
320 precedence_declaration
321| symbol_declaration
322| "%start" symbol
323 {
324 grammar_start_symbol_set ($2, @2);
325 }
326| "%destructor" "{...}" generic_symlist
327 {
328 symbol_list *list;
329 for (list = $3; list; list = list->next)
330 symbol_list_destructor_set (list, $2, @2);
331 symbol_list_free ($3);
332 }
333| "%printer" "{...}" generic_symlist
334 {
335 symbol_list *list;
336 for (list = $3; list; list = list->next)
337 symbol_list_printer_set (list, $2, @2);
338 symbol_list_free ($3);
339 }
340| "%default-prec"
341 {
342 default_prec = true;
343 }
344| "%no-default-prec"
345 {
346 default_prec = false;
347 }
348| "%code" braceless
349 {
350 /* Do not invoke muscle_percent_code_grow here since it invokes
351 muscle_user_name_list_grow. */
352 muscle_code_grow ("percent_code()", $2, @2);
353 code_scanner_last_string_free ();
354 }
355| "%code" ID braceless
356 {
357 muscle_percent_code_grow ($2, @2, $3, @3);
358 code_scanner_last_string_free ();
359 }
360;
361
362
363/*----------*
364 | %union. |
365 *----------*/
366
367%token PERCENT_UNION "%union";
368
369union_name:
370 /* Nothing. */ {}
371| ID { muscle_code_grow ("union_name", $1, @1); }
372;
373
374grammar_declaration:
375 "%union" union_name braceless
376 {
377 union_seen = true;
378 muscle_code_grow ("stype", $3, @3);
379 code_scanner_last_string_free ();
380 }
381;
382
383
384
385
386symbol_declaration:
387 "%nterm" { current_class = nterm_sym; } symbol_defs.1
388 {
389 current_class = unknown_sym;
390 current_type = NULL;
391 }
392| "%token" { current_class = token_sym; } symbol_defs.1
393 {
394 current_class = unknown_sym;
395 current_type = NULL;
396 }
397| "%type" TYPE symbols.1
398 {
399 symbol_list *list;
400 tag_seen = true;
401 for (list = $3; list; list = list->next)
402 symbol_type_set (list->content.sym, $2, @2);
403 symbol_list_free ($3);
404 }
405;
406
407precedence_declaration:
408 precedence_declarator type.opt symbols.prec
409 {
410 symbol_list *list;
411 ++current_prec;
412 for (list = $3; list; list = list->next)
413 {
414 symbol_type_set (list->content.sym, current_type, @2);
415 symbol_precedence_set (list->content.sym, current_prec, $1, @1);
416 }
417 symbol_list_free ($3);
418 current_type = NULL;
419 }
420;
421
422precedence_declarator:
423 "%left" { $$ = left_assoc; }
424| "%right" { $$ = right_assoc; }
425| "%nonassoc" { $$ = non_assoc; }
426;
427
428type.opt:
429 /* Nothing. */ { current_type = NULL; }
430| TYPE { current_type = $1; tag_seen = true; }
431;
432
433/* Just like symbols.1 but accept INT for the sake of POSIX. */
434symbols.prec:
435 symbol.prec
436 { $$ = symbol_list_sym_new ($1, @1); }
437| symbols.prec symbol.prec
438 { $$ = symbol_list_prepend ($1, symbol_list_sym_new ($2, @2)); }
439;
440
441symbol.prec:
442 symbol { $$ = $1; }
443 | symbol INT { $$ = $1; symbol_user_token_number_set ($1, $2, @2); }
444 ;
445
446/* One or more symbols to be %typed. */
447symbols.1:
448 symbol
449 { $$ = symbol_list_sym_new ($1, @1); }
450| symbols.1 symbol
451 { $$ = symbol_list_prepend ($1, symbol_list_sym_new ($2, @2)); }
452;
453
454generic_symlist:
455 generic_symlist_item { $$ = $1; }
456| generic_symlist generic_symlist_item { $$ = symbol_list_prepend ($1, $2); }
457;
458
459generic_symlist_item:
460 symbol { $$ = symbol_list_sym_new ($1, @1); }
461| TYPE { $$ = symbol_list_type_new ($1, @1); }
462| "<*>" { $$ = symbol_list_default_tagged_new (@1); }
463| "<>" { $$ = symbol_list_default_tagless_new (@1); }
464;
465
466/* One token definition. */
467symbol_def:
468 TYPE
469 {
470 current_type = $1;
471 tag_seen = true;
472 }
473| id
474 {
475 symbol_class_set ($1, current_class, @1, true);
476 symbol_type_set ($1, current_type, @1);
477 }
478| id INT
479 {
480 symbol_class_set ($1, current_class, @1, true);
481 symbol_type_set ($1, current_type, @1);
482 symbol_user_token_number_set ($1, $2, @2);
483 }
484| id string_as_id
485 {
486 symbol_class_set ($1, current_class, @1, true);
487 symbol_type_set ($1, current_type, @1);
488 symbol_make_alias ($1, $2, @$);
489 }
490| id INT string_as_id
491 {
492 symbol_class_set ($1, current_class, @1, true);
493 symbol_type_set ($1, current_type, @1);
494 symbol_user_token_number_set ($1, $2, @2);
495 symbol_make_alias ($1, $3, @$);
496 }
497;
498
499/* One or more symbol definitions. */
500symbol_defs.1:
501 symbol_def
502| symbol_defs.1 symbol_def
503;
504
505
506 /*------------------------------------------.
507 | The grammar section: between the two %%. |
508 `------------------------------------------*/
509
510grammar:
511 rules_or_grammar_declaration
512| grammar rules_or_grammar_declaration
513;
514
515/* As a Bison extension, one can use the grammar declarations in the
516 body of the grammar. */
517rules_or_grammar_declaration:
518 rules
519| grammar_declaration ";"
520| error ";"
521 {
522 yyerrok;
523 }
524;
525
526rules:
527 id_colon named_ref.opt { current_lhs = $1; current_lhs_location = @1;
528 current_lhs_named_ref = $2; } rhses.1
529;
530
531rhses.1:
532 rhs { grammar_current_rule_end (@1); }
533| rhses.1 "|" rhs { grammar_current_rule_end (@3); }
534| rhses.1 ";"
535;
536
537rhs:
538 /* Nothing. */
539 { grammar_current_rule_begin (current_lhs, current_lhs_location,
540 current_lhs_named_ref); }
541| rhs symbol named_ref.opt
542 { grammar_current_rule_symbol_append ($2, @2, $3); }
543| rhs "{...}" named_ref.opt
544 { grammar_current_rule_action_append ($2, @2, $3); }
545| rhs "%prec" symbol
546 { grammar_current_rule_prec_set ($3, @3); }
547| rhs "%dprec" INT
548 { grammar_current_rule_dprec_set ($3, @3); }
549| rhs "%merge" TYPE
550 { grammar_current_rule_merge_set ($3, @3); }
551;
552
553named_ref.opt:
554 /* Nothing. */
555 { $$ = 0; }
556|
557 BRACKETED_ID
558 { $$ = named_ref_new($1, @1); }
559;
560
561
562/*----------------------------*
563 | variable and content.opt. |
564 *---------------------------*/
565
566/* The STRING form of variable is deprecated and is not M4-friendly.
567 For example, M4 fails for `%define "[" "value"'. */
568variable:
569 ID
570| STRING { $$ = uniqstr_new ($1); }
571;
572
573/* Some content or empty by default. */
574content.opt:
575 /* Nothing. */ { $$ = ""; }
576| STRING
577;
578
579
580/*-------------*
581 | braceless. |
582 *-------------*/
583
584braceless:
585 "{...}"
586 {
587 code_props plain_code;
588 $1[strlen ($1) - 1] = '\n';
589 code_props_plain_init (&plain_code, $1+1, @1);
590 code_props_translate_code (&plain_code);
591 gram_scanner_last_string_free ();
592 $$ = plain_code.code;
593 }
594;
595
596
597/*---------------*
598 | Identifiers. |
599 *---------------*/
600
601/* Identifiers are returned as uniqstr values by the scanner.
602 Depending on their use, we may need to make them genuine symbols. */
603
604id:
605 ID
606 { $$ = symbol_from_uniqstr ($1, @1); }
607| CHAR
608 {
609 $$ = symbol_get (char_name ($1), @1);
610 symbol_class_set ($$, token_sym, @1, false);
611 symbol_user_token_number_set ($$, $1, @1);
612 }
613;
614
615id_colon:
616 ID_COLON { $$ = symbol_from_uniqstr ($1, @1); }
617;
618
619
620symbol:
621 id
622| string_as_id
623;
624
625/* A string used as an ID: quote it. */
626string_as_id:
627 STRING
628 {
629 $$ = symbol_get (quotearg_style (c_quoting_style, $1), @1);
630 symbol_class_set ($$, token_sym, @1, false);
631 }
632;
633
634epilogue.opt:
635 /* Nothing. */
636| "%%" EPILOGUE
637 {
638 code_props plain_code;
639 code_props_plain_init (&plain_code, $2, @2);
640 code_props_translate_code (&plain_code);
641 gram_scanner_last_string_free ();
642 muscle_code_grow ("epilogue", plain_code.code, @2);
643 code_scanner_last_string_free ();
644 }
645;
646
647%%
648
649
650/* Return the location of the left-hand side of a rule whose
651 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
652 the right-hand side, and return an empty location equal to the end
653 boundary of RHS[0] if the right-hand side is empty. */
654
655static YYLTYPE
656lloc_default (YYLTYPE const *rhs, int n)
657{
658 int i;
659 YYLTYPE loc;
660
661 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
662 The bug is fixed in 7.4.2m, but play it safe for now. */
663 loc.start = rhs[n].end;
664 loc.end = rhs[n].end;
665
666 /* Ignore empty nonterminals the start of the the right-hand side.
667 Do not bother to ignore them at the end of the right-hand side,
668 since empty nonterminals have the same end as their predecessors. */
669 for (i = 1; i <= n; i++)
670 if (! equal_boundaries (rhs[i].start, rhs[i].end))
671 {
672 loc.start = rhs[i].start;
673 break;
674 }
675
676 return loc;
677}
678
679
680/* Add a lex-param or a parse-param (depending on TYPE) with
681 declaration DECL and location LOC. */
682
683static void
684add_param (char const *type, char *decl, location loc)
685{
686 static char const alphanum[26 + 26 + 1 + 10] =
687 "abcdefghijklmnopqrstuvwxyz"
688 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
689 "_"
690 "0123456789";
691 char const *name_start = NULL;
692 char *p;
693
694 /* Stop on last actual character. */
695 for (p = decl; p[1]; p++)
696 if ((p == decl
697 || ! memchr (alphanum, p[-1], sizeof alphanum))
698 && memchr (alphanum, p[0], sizeof alphanum - 10))
699 name_start = p;
700
701 /* Strip the surrounding '{' and '}', and any blanks just inside
702 the braces. */
703 while (*--p == ' ' || *p == '\t')
704 continue;
705 p[1] = '\0';
706 while (*++decl == ' ' || *decl == '\t')
707 continue;
708
709 if (! name_start)
710 complain_at (loc, _("missing identifier in parameter declaration"));
711 else
712 {
713 char *name;
714 size_t name_len;
715
716 for (name_len = 1;
717 memchr (alphanum, name_start[name_len], sizeof alphanum);
718 name_len++)
719 continue;
720
721 name = xmalloc (name_len + 1);
722 memcpy (name, name_start, name_len);
723 name[name_len] = '\0';
724 muscle_pair_list_grow (type, decl, name);
725 free (name);
726 }
727
728 gram_scanner_last_string_free ();
729}
730
731
732static void
733version_check (location const *loc, char const *version)
734{
735 if (strverscmp (version, PACKAGE_VERSION) > 0)
736 {
737 complain_at (*loc, "require bison %s, but have %s",
738 version, PACKAGE_VERSION);
739 exit (63);
740 }
741}
742
743static void
744gram_error (location const *loc, char const *msg)
745{
746 complain_at (*loc, "%s", msg);
747}
748
749char const *
750token_name (int type)
751{
752 return yytname[YYTRANSLATE (type)];
753}
754
755static char const *
756char_name (char c)
757{
758 if (c == '\'')
759 return "'\\''";
760 else
761 {
762 char buf[4];
763 buf[0] = '\''; buf[1] = c; buf[2] = '\''; buf[3] = '\0';
764 return quotearg_style (escape_quoting_style, buf);
765 }
766}