1 /* Bison Grammar Parser -*- C -*-
2 Copyright (C) 2002 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
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 2 of the License, or
9 (at your option) any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
34 #include "muscle_tab.h"
41 #include "conflicts.h"
43 /* Produce verbose parse errors. */
44 #define YYERROR_VERBOSE 1
45 #define YYLLOC_DEFAULT(Current, Rhs, N) \
49 Current.first_column = Rhs[1].first_column; \
50 Current.first_line = Rhs[1].first_line; \
51 Current.last_column = Rhs[N].last_column; \
52 Current.last_line = Rhs[N].last_line; \
60 /* Pass the control structure to YYPARSE and YYLEX. */
61 #define YYPARSE_PARAM gram_control
62 #define YYLEX_PARAM gram_control
63 /* YYPARSE receives GRAM_CONTROL as a void *. Provide a
64 correctly typed access to it. */
65 #define yycontrol ((gram_control_t *) gram_control)
67 /* Request detailed parse error messages, and pass them to GRAM_ERROR.
68 FIXME: depends on the undocumented availability of YYLLOC.t */
70 #define yyerror(Msg) \
71 gram_error (&yylloc, Msg)
73 #define YYPRINT(File, Type, Value) \
74 yyprint (File, Type, &Value)
75 static void yyprint (FILE *file, int type, const yystype *value);
77 symbol_class current_class = unknown_sym;
78 char *current_type = 0;
79 symbol_t *current_lhs;
80 location_t current_lhs_location;
81 assoc_t current_assoc;
83 braced_code_t current_braced_code = action_braced_code;
87 /* Only NUMBERS have a value. */
97 /* Define the tokens together with their human representation. */
98 %token GRAM_EOF 0 "end of file"
99 %token STRING "string"
100 %token CHARACTER "character"
103 %token PERCENT_TOKEN "%token"
104 %token PERCENT_NTERM "%nterm"
106 %token PERCENT_TYPE "%type"
107 %token PERCENT_DESTRUCTOR "%destructor"
108 %token PERCENT_PRINTER "%printer"
110 %token PERCENT_UNION "%union"
112 %token PERCENT_LEFT "%left"
113 %token PERCENT_RIGHT "%right"
114 %token PERCENT_NONASSOC "%nonassoc"
116 %token PERCENT_EXPECT "%expect"
117 %token PERCENT_START "%start"
118 %token PERCENT_PREC "%prec"
119 %token PERCENT_DPREC "%dprec"
120 %token PERCENT_MERGE "%merge"
121 %token PERCENT_VERBOSE "%verbose"
122 %token PERCENT_ERROR_VERBOSE "%error-verbose"
124 %token PERCENT_OUTPUT "%output"
125 %token PERCENT_FILE_PREFIX "%file-prefix"
126 %token PERCENT_NAME_PREFIX "%name-prefix"
128 %token PERCENT_DEFINE "%define"
129 %token PERCENT_PURE_PARSER "%pure-parser"
130 %token PERCENT_GLR_PARSER "%glr-parser"
132 %token PERCENT_DEFINES "%defines"
134 %token PERCENT_YACC "%yacc"
136 %token PERCENT_DEBUG "%debug"
137 %token PERCENT_LOCATIONS "%locations"
138 %token PERCENT_NO_LINES "%no-lines"
139 %token PERCENT_SKELETON "%skeleton"
140 %token PERCENT_TOKEN_TABLE "%token-table"
147 %token ID "identifier"
148 %token PERCENT_PERCENT "%%"
149 %token PROLOGUE "%{...%}"
150 %token EPILOGUE "epilogue"
151 %token BRACED_CODE "{...}"
154 %type <string> CHARACTER TYPE STRING string_content
155 BRACED_CODE PROLOGUE EPILOGUE epilogue.opt action
157 %type <symbol> ID symbol string_as_id
158 %type <assoc> precedence_declarator
159 %type <list> symbols.1
163 declarations "%%" grammar epilogue.opt
165 yycontrol->errcode = 0;
166 epilogue_set ($4, @4);
171 /*------------------------------------.
172 | Declarations: before the first %%. |
173 `------------------------------------*/
177 | declarations declaration semi_colon.opt
182 | PROLOGUE { prologue_augment ($1, @1); }
183 | "%debug" { debug_flag = 1; }
184 | "%define" string_content string_content { muscle_insert ($2, $3); }
185 | "%defines" { defines_flag = 1; }
186 | "%error-verbose" { error_verbose = 1; }
187 | "%expect" INT { expected_conflicts = $2; }
188 | "%file-prefix" "=" string_content { spec_file_prefix = $3; }
189 | "%locations" { locations_flag = 1; }
190 | "%name-prefix" "=" string_content { spec_name_prefix = $3; }
191 | "%no-lines" { no_lines_flag = 1; }
192 | "%output" "=" string_content { spec_outfile = $3; }
193 | "%pure-parser" { pure_parser = 1; }
194 | "%glr-parser" { glr_parser = 1; }
195 | "%skeleton" string_content { skeleton = $2; }
196 | "%token-table" { token_table_flag = 1; }
197 | "%verbose" { report_flag = 1; }
198 | "%yacc" { yacc_flag = 1; }
202 precedence_declaration
206 grammar_start_symbol_set ($2, @2);
208 | "%union" BRACED_CODE
211 MUSCLE_INSERT_INT ("stype_line", @2.first_line);
212 muscle_insert ("stype", $2);
215 { current_braced_code = destructor_braced_code; }
216 BRACED_CODE symbols.1
219 for (list = $4; list; list = list->next)
220 symbol_destructor_set (list->sym, $3, @3);
221 symbol_list_free ($4);
222 current_braced_code = action_braced_code;
225 { current_braced_code = printer_braced_code; }
226 BRACED_CODE symbols.1
229 for (list = $4; list; list = list->next)
230 symbol_printer_set (list->sym, $3, list->location);
231 symbol_list_free ($4);
232 current_braced_code = action_braced_code;
237 "%nterm" { current_class = nterm_sym; } symbol_defs.1
239 current_class = unknown_sym;
242 | "%token" { current_class = token_sym; } symbol_defs.1
244 current_class = unknown_sym;
247 | "%type" TYPE symbols.1
250 for (list = $3; list; list = list->next)
251 symbol_type_set (list->sym, $2, @2);
252 symbol_list_free ($3);
256 precedence_declaration:
257 precedence_declarator type.opt symbols.1
261 for (list = $3; list; list = list->next)
263 symbol_type_set (list->sym, current_type, @2);
264 symbol_precedence_set (list->sym, current_prec, $1, @1);
266 symbol_list_free ($3);
271 precedence_declarator:
272 "%left" { $$ = left_assoc; }
273 | "%right" { $$ = right_assoc; }
274 | "%nonassoc" { $$ = non_assoc; }
278 /* Nothing. */ { current_type = NULL;}
279 | TYPE { current_type = $1; }
282 /* One or more nonterminals to be %typed. */
285 symbol { $$ = symbol_list_new ($1, @1); }
286 | symbols.1 symbol { $$ = symbol_list_prepend ($1, $2, @2); }
289 /* One token definition. */
297 symbol_class_set ($1, current_class, @1);
298 symbol_type_set ($1, current_type, @1);
302 symbol_class_set ($1, current_class, @1);
303 symbol_type_set ($1, current_type, @1);
304 symbol_user_token_number_set ($1, $2, @2);
308 symbol_class_set ($1, current_class, @1);
309 symbol_type_set ($1, current_type, @1);
310 symbol_make_alias ($1, $2, @$);
312 | ID INT string_as_id
314 symbol_class_set ($1, current_class, @1);
315 symbol_type_set ($1, current_type, @1);
316 symbol_user_token_number_set ($1, $2, @2);
317 symbol_make_alias ($1, $3, @$);
321 /* One or more symbol definitions. */
325 | symbol_defs.1 symbol_def
330 /*------------------------------------------.
331 | The grammar section: between the two %%. |
332 `------------------------------------------*/
335 rules_or_grammar_declaration
336 | grammar rules_or_grammar_declaration
339 /* As a Bison extension, one can use the grammar declarations in the
340 body of the grammar. But to remain LALR(1), they must be ended
341 with a semi-colon. */
342 rules_or_grammar_declaration:
344 | grammar_declaration ";"
347 complain_at (@$, _("POSIX forbids declarations in the grammar"));
356 ID ":" { current_lhs = $1; current_lhs_location = @1; } rhses.1 ";"
361 rhs { grammar_rule_end (@1); }
362 | rhses.1 "|" rhs { grammar_rule_end (@3); }
367 { grammar_rule_begin (current_lhs, current_lhs_location); }
369 { grammar_current_rule_symbol_append ($2, @2); }
371 { grammar_current_rule_action_append ($2, @2); }
373 { grammar_current_rule_prec_set ($3, @3); }
375 { grammar_current_rule_dprec_set ($3, @3); }
377 { grammar_current_rule_merge_set ($3, @3); }
382 | string_as_id { $$ = $1; }
383 | CHARACTER { $$ = symbol_get ($1, @1); }
391 /* A string used as an ID: we have to keep the quotes. */
395 $$ = symbol_get ($1, @1);
396 symbol_class_set ($$, token_sym, @1);
400 /* A string used for its contents. Strip the quotes. */
405 $$[strlen ($$) - 1] = '\0';
425 /*------------------------------------------------------------------.
426 | When debugging the parser, display tokens' locations and values. |
427 `------------------------------------------------------------------*/
431 int type, const yystype *value)
437 fprintf (file, " = '%s'", value->string);
441 fprintf (file, " = %s", value->symbol->tag);
445 fprintf (file, " = %d", value->integer);
449 fprintf (file, " = \"%s\"", value->string);
453 fprintf (file, " = <%s>", value->string);
459 fprintf (file, " = {{ %s }}", value->string);
465 gram_error (location_t *yylloc, const char *msg)
467 complain_at (*yylloc, "%s", msg);