1 %{/* Bison Grammar Parser -*- C -*-
3 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27 #include "conflicts.h"
31 #include "muscle_tab.h"
36 #include "strverscmp.h"
38 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
39 static YYLTYPE lloc_default (YYLTYPE const *, int);
41 #define YY_LOCATION_PRINT(File, Loc) \
42 location_print (File, Loc)
44 static void version_check (location const *loc, char const *version);
46 /* Request detailed syntax error messages, and pass them to GRAM_ERROR.
47 FIXME: depends on the undocumented availability of YYLLOC. */
49 #define yyerror(Msg) \
50 gram_error (&yylloc, Msg)
51 static void gram_error (location const *, char const *);
53 static void add_param (char const *, char *, location);
55 static symbol_class current_class = unknown_sym;
56 static uniqstr current_type = 0;
57 static symbol *current_lhs;
58 static location current_lhs_location;
59 static int current_prec = 0;
73 /* Bison's grammar can initial empty locations, hence a default
74 location is needed. */
75 @$.start.file = @$.end.file = current_file;
76 @$.start.line = @$.end.line = 1;
77 @$.start.column = @$.end.column = 0;
80 /* Only NUMBERS have a value. */
91 /* Define the tokens together with their human representation. */
92 %token GRAM_EOF 0 "end of file"
93 %token STRING "string"
96 %token PERCENT_TOKEN "%token"
97 %token PERCENT_NTERM "%nterm"
99 %token PERCENT_TYPE "%type"
100 %token PERCENT_DESTRUCTOR "%destructor {...}"
101 %token PERCENT_PRINTER "%printer {...}"
103 %token PERCENT_UNION "%union {...}"
105 %token PERCENT_LEFT "%left"
106 %token PERCENT_RIGHT "%right"
107 %token PERCENT_NONASSOC "%nonassoc"
109 %token PERCENT_PREC "%prec"
110 %token PERCENT_DPREC "%dprec"
111 %token PERCENT_MERGE "%merge"
114 /*----------------------.
115 | Global Declarations. |
116 `----------------------*/
119 PERCENT_DEBUG "%debug"
120 PERCENT_DEFAULT_PREC "%default-prec"
121 PERCENT_DEFINE "%define"
122 PERCENT_DEFINES "%defines"
123 PERCENT_ERROR_VERBOSE "%error-verbose"
124 PERCENT_EXPECT "%expect"
125 PERCENT_EXPECT_RR "%expect-rr"
126 PERCENT_FILE_PREFIX "%file-prefix"
127 PERCENT_GLR_PARSER "%glr-parser"
128 PERCENT_INITIAL_ACTION "%initial-action {...}"
129 PERCENT_LEX_PARAM "%lex-param {...}"
130 PERCENT_LOCATIONS "%locations"
131 PERCENT_NAME_PREFIX "%name-prefix"
132 PERCENT_NO_DEFAULT_PREC "%no-default-prec"
133 PERCENT_NO_LINES "%no-lines"
134 PERCENT_NONDETERMINISTIC_PARSER
135 "%nondeterministic-parser"
136 PERCENT_OUTPUT "%output"
137 PERCENT_PARSE_PARAM "%parse-param {...}"
138 PERCENT_PURE_PARSER "%pure-parser"
139 PERCENT_REQUIRE "%require"
140 PERCENT_SKELETON "%skeleton"
141 PERCENT_START "%start"
142 PERCENT_TOKEN_TABLE "%token-table"
143 PERCENT_VERBOSE "%verbose"
151 %token ID "identifier"
152 %token ID_COLON "identifier:"
153 %token PERCENT_PERCENT "%%"
154 %token PROLOGUE "%{...%}"
155 %token EPILOGUE "epilogue"
156 %token BRACED_CODE "{...}"
159 %type <chars> STRING string_content
161 "%initial-action {...}"
168 %printer { fprintf (stderr, "\"%s\"", $$); }
169 STRING string_content
170 %printer { fprintf (stderr, "{\n%s\n}", $$); }
172 "%initial-action {...}"
180 %printer { fprintf (stderr, "<%s>", $$); } TYPE
182 %printer { fprintf (stderr, "%d", $$); } INT
183 %type <symbol> ID symbol string_as_id
184 %printer { fprintf (stderr, "%s", $$->tag); } ID symbol string_as_id
185 %type <symbol> ID_COLON
186 %printer { fprintf (stderr, "%s:", $$->tag); } ID_COLON
187 %type <assoc> precedence_declarator
188 %type <list> symbols.1
192 declarations "%%" grammar epilogue.opt
196 /*------------------------------------.
197 | Declarations: before the first %%. |
198 `------------------------------------*/
202 | declarations declaration
207 | PROLOGUE { prologue_augment ($1, @1); }
208 | "%debug" { debug_flag = true; }
209 | "%define" string_content { muscle_insert ($2, "1"); }
210 | "%define" string_content string_content { muscle_insert ($2, $3); }
211 | "%defines" { defines_flag = true; }
212 | "%error-verbose" { error_verbose = true; }
213 | "%expect" INT { expected_sr_conflicts = $2; }
214 | "%expect-rr" INT { expected_rr_conflicts = $2; }
215 | "%file-prefix" "=" string_content { spec_file_prefix = $3; }
218 nondeterministic_parser = true;
221 | "%initial-action {...}"
223 muscle_code_grow ("initial_action", $1, @1);
225 | "%lex-param {...}" { add_param ("lex_param", $1, @1); }
226 | "%locations" { locations_flag = true; }
227 | "%name-prefix" "=" string_content { spec_name_prefix = $3; }
228 | "%no-lines" { no_lines_flag = true; }
229 | "%nondeterministic-parser" { nondeterministic_parser = true; }
230 | "%output" "=" string_content { spec_outfile = $3; }
231 | "%parse-param {...}" { add_param ("parse_param", $1, @1); }
232 | "%pure-parser" { pure_parser = true; }
233 | "%require" string_content { version_check (&@2, $2); }
234 | "%skeleton" string_content { skeleton = $2; }
235 | "%token-table" { token_table_flag = true; }
236 | "%verbose" { report_flag = report_states; }
237 | "%yacc" { yacc_flag = true; }
238 | /*FIXME: Err? What is this horror doing here? */ ";"
242 precedence_declaration
246 grammar_start_symbol_set ($2, @2);
250 char const *body = $1;
254 /* Concatenate the union bodies, turning the first one's
255 trailing '}' into '\n', and omitting the second one's '{'. */
256 char *code = muscle_find ("stype");
257 code[strlen (code) - 1] = '\n';
262 muscle_code_grow ("stype", body, @1);
264 | "%destructor {...}" symbols.1
267 for (list = $2; list; list = list->next)
268 symbol_destructor_set (list->sym, $1, @1);
269 symbol_list_free ($2);
271 | "%printer {...}" symbols.1
274 for (list = $2; list; list = list->next)
275 symbol_printer_set (list->sym, $1, list->location);
276 symbol_list_free ($2);
284 default_prec = false;
289 "%nterm" { current_class = nterm_sym; } symbol_defs.1
291 current_class = unknown_sym;
294 | "%token" { current_class = token_sym; } symbol_defs.1
296 current_class = unknown_sym;
299 | "%type" TYPE symbols.1
302 for (list = $3; list; list = list->next)
303 symbol_type_set (list->sym, $2, @2);
304 symbol_list_free ($3);
308 precedence_declaration:
309 precedence_declarator type.opt symbols.1
313 for (list = $3; list; list = list->next)
315 symbol_type_set (list->sym, current_type, @2);
316 symbol_precedence_set (list->sym, current_prec, $1, @1);
318 symbol_list_free ($3);
323 precedence_declarator:
324 "%left" { $$ = left_assoc; }
325 | "%right" { $$ = right_assoc; }
326 | "%nonassoc" { $$ = non_assoc; }
330 /* Nothing. */ { current_type = NULL; }
331 | TYPE { current_type = $1; }
334 /* One or more nonterminals to be %typed. */
337 symbol { $$ = symbol_list_new ($1, @1); }
338 | symbols.1 symbol { $$ = symbol_list_prepend ($1, $2, @2); }
341 /* One token definition. */
349 symbol_class_set ($1, current_class, @1, true);
350 symbol_type_set ($1, current_type, @1);
354 symbol_class_set ($1, current_class, @1, true);
355 symbol_type_set ($1, current_type, @1);
356 symbol_user_token_number_set ($1, $2, @2);
360 symbol_class_set ($1, current_class, @1, true);
361 symbol_type_set ($1, current_type, @1);
362 symbol_make_alias ($1, $2, @$);
364 | ID INT string_as_id
366 symbol_class_set ($1, current_class, @1, true);
367 symbol_type_set ($1, current_type, @1);
368 symbol_user_token_number_set ($1, $2, @2);
369 symbol_make_alias ($1, $3, @$);
373 /* One or more symbol definitions. */
376 | symbol_defs.1 symbol_def
380 /*------------------------------------------.
381 | The grammar section: between the two %%. |
382 `------------------------------------------*/
385 rules_or_grammar_declaration
386 | grammar rules_or_grammar_declaration
389 /* As a Bison extension, one can use the grammar declarations in the
390 body of the grammar. */
391 rules_or_grammar_declaration:
393 | grammar_declaration ";"
401 ID_COLON { current_lhs = $1; current_lhs_location = @1; } rhses.1
405 rhs { grammar_current_rule_end (@1); }
406 | rhses.1 "|" rhs { grammar_current_rule_end (@3); }
412 { grammar_current_rule_begin (current_lhs, current_lhs_location); }
414 { grammar_current_rule_symbol_append ($2, @2); }
416 { grammar_current_rule_action_append ($2, @2); }
418 { grammar_current_rule_prec_set ($3, @3); }
420 { grammar_current_rule_dprec_set ($3, @3); }
422 { grammar_current_rule_merge_set ($3, @3); }
427 | string_as_id { $$ = $1; }
435 /* A string used as an ID: quote it. */
439 $$ = symbol_get (quotearg_style (c_quoting_style, $1), @1);
440 symbol_class_set ($$, token_sym, @1, false);
444 /* A string used for its contents. Don't quote it. */
455 muscle_code_grow ("epilogue", $2, @2);
456 scanner_last_string_free ();
463 /* Return the location of the left-hand side of a rule whose
464 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
465 the right-hand side, and return an empty location equal to the end
466 boundary of RHS[0] if the right-hand side is empty. */
469 lloc_default (YYLTYPE const *rhs, int n)
474 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
475 The bug is fixed in 7.4.2m, but play it safe for now. */
476 loc.start = rhs[n].end;
477 loc.end = rhs[n].end;
479 /* Ignore empty nonterminals the start of the the right-hand side.
480 Do not bother to ignore them at the end of the right-hand side,
481 since empty nonterminals have the same end as their predecessors. */
482 for (i = 1; i <= n; i++)
483 if (! equal_boundaries (rhs[i].start, rhs[i].end))
485 loc.start = rhs[i].start;
493 /* Add a lex-param or a parse-param (depending on TYPE) with
494 declaration DECL and location LOC. */
497 add_param (char const *type, char *decl, location loc)
499 static char const alphanum[26 + 26 + 1 + 10] =
500 "abcdefghijklmnopqrstuvwxyz"
501 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
504 char const *name_start = NULL;
507 /* Stop on last actual character. */
508 for (p = decl; p[1]; p++)
510 || ! memchr (alphanum, p[-1], sizeof alphanum))
511 && memchr (alphanum, p[0], sizeof alphanum - 10))
514 /* Strip the surrounding '{' and '}', and any blanks just inside
516 while (*--p == ' ' || *p == '\t')
519 while (*++decl == ' ' || *decl == '\t')
523 complain_at (loc, _("missing identifier in parameter declaration"));
530 memchr (alphanum, name_start[name_len], sizeof alphanum);
534 name = xmalloc (name_len + 1);
535 memcpy (name, name_start, name_len);
536 name[name_len] = '\0';
537 muscle_pair_list_grow (type, decl, name);
541 scanner_last_string_free ();
545 version_check (location const *loc, char const *version)
547 if (strverscmp (version, PACKAGE_VERSION) > 0)
549 complain_at (*loc, "require bison %s, but have %s",
550 version, PACKAGE_VERSION);
556 gram_error (location const *loc, char const *msg)
558 complain_at (*loc, "%s", msg);
562 token_name (int type)
564 return yytname[YYTRANSLATE (type)];