]> git.saurik.com Git - bison.git/blame_incremental - src/parse-gram.y
* bootstrap (gnulib_modules): Add strverscmp.
[bison.git] / src / parse-gram.y
... / ...
CommitLineData
1%{/* Bison Grammar Parser -*- C -*-
2
3 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4
5 This file is part of Bison, the GNU Compiler Compiler.
6
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.
11
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.
16
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
20 02110-1301 USA
21*/
22
23#include "system.h"
24
25#include "complain.h"
26#include "conflicts.h"
27#include "files.h"
28#include "getargs.h"
29#include "gram.h"
30#include "muscle_tab.h"
31#include "output.h"
32#include "quotearg.h"
33#include "reader.h"
34#include "symlist.h"
35#include "strverscmp.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 void add_param (char const *, char *, location);
53
54static symbol_class current_class = unknown_sym;
55static uniqstr current_type = 0;
56symbol *current_lhs;
57location current_lhs_location;
58assoc current_assoc;
59static int current_prec = 0;
60%}
61
62%debug
63%verbose
64%defines
65%locations
66%pure-parser
67%error-verbose
68%defines
69%name-prefix="gram_"
70
71%initial-action
72{
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;
78}
79
80/* Only NUMBERS have a value. */
81%union
82{
83 symbol *symbol;
84 symbol_list *list;
85 int integer;
86 char *chars;
87 assoc assoc;
88 uniqstr uniqstr;
89};
90
91/* Define the tokens together with their human representation. */
92%token GRAM_EOF 0 "end of file"
93%token STRING "string"
94%token INT "integer"
95
96%token PERCENT_TOKEN "%token"
97%token PERCENT_NTERM "%nterm"
98
99%token PERCENT_TYPE "%type"
100%token PERCENT_DESTRUCTOR "%destructor {...}"
101%token PERCENT_PRINTER "%printer {...}"
102
103%token PERCENT_UNION "%union {...}"
104
105%token PERCENT_LEFT "%left"
106%token PERCENT_RIGHT "%right"
107%token PERCENT_NONASSOC "%nonassoc"
108
109%token PERCENT_PREC "%prec"
110%token PERCENT_DPREC "%dprec"
111%token PERCENT_MERGE "%merge"
112
113
114/*----------------------.
115| Global Declarations. |
116`----------------------*/
117
118%token
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"
144 PERCENT_YACC "%yacc"
145;
146
147%token TYPE "type"
148%token EQUAL "="
149%token SEMICOLON ";"
150%token PIPE "|"
151%token ID "identifier"
152%token ID_COLON "identifier:"
153%token PERCENT_PERCENT "%%"
154%token PROLOGUE "%{...%}"
155%token EPILOGUE "epilogue"
156%token BRACED_CODE "{...}"
157
158
159%type <chars> STRING string_content
160 "%destructor {...}"
161 "%initial-action {...}"
162 "%lex-param {...}"
163 "%parse-param {...}"
164 "%printer {...}"
165 "%union {...}"
166 BRACED_CODE action
167 PROLOGUE EPILOGUE
168%printer { fprintf (stderr, "\"%s\"", $$); }
169 STRING string_content
170%printer { fprintf (stderr, "{\n%s\n}", $$); }
171 "%destructor {...}"
172 "%initial-action {...}"
173 "%lex-param {...}"
174 "%parse-param {...}"
175 "%printer {...}"
176 "%union {...}"
177 BRACED_CODE action
178 PROLOGUE EPILOGUE
179%type <uniqstr> TYPE
180%printer { fprintf (stderr, "<%s>", $$); } TYPE
181%type <integer> INT
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
189%%
190
191input:
192 declarations "%%" grammar epilogue.opt
193;
194
195
196 /*------------------------------------.
197 | Declarations: before the first %%. |
198 `------------------------------------*/
199
200declarations:
201 /* Nothing */
202| declarations declaration
203;
204
205declaration:
206 grammar_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; }
216| "%glr-parser"
217 {
218 nondeterministic_parser = true;
219 glr_parser = true;
220 }
221| "%initial-action {...}"
222 {
223 muscle_code_grow ("initial_action", $1, @1);
224 }
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? */ ";"
239;
240
241grammar_declaration:
242 precedence_declaration
243| symbol_declaration
244| "%start" symbol
245 {
246 grammar_start_symbol_set ($2, @2);
247 }
248| "%union {...}"
249 {
250 typed = true;
251 MUSCLE_INSERT_INT ("stype_line", @1.start.line);
252 muscle_insert ("stype", $1);
253 }
254| "%destructor {...}" symbols.1
255 {
256 symbol_list *list;
257 for (list = $2; list; list = list->next)
258 symbol_destructor_set (list->sym, $1, @1);
259 symbol_list_free ($2);
260 }
261| "%printer {...}" symbols.1
262 {
263 symbol_list *list;
264 for (list = $2; list; list = list->next)
265 symbol_printer_set (list->sym, $1, list->location);
266 symbol_list_free ($2);
267 }
268| "%default-prec"
269 {
270 default_prec = true;
271 }
272| "%no-default-prec"
273 {
274 default_prec = false;
275 }
276;
277
278symbol_declaration:
279 "%nterm" { current_class = nterm_sym; } symbol_defs.1
280 {
281 current_class = unknown_sym;
282 current_type = NULL;
283 }
284| "%token" { current_class = token_sym; } symbol_defs.1
285 {
286 current_class = unknown_sym;
287 current_type = NULL;
288 }
289| "%type" TYPE symbols.1
290 {
291 symbol_list *list;
292 for (list = $3; list; list = list->next)
293 symbol_type_set (list->sym, $2, @2);
294 symbol_list_free ($3);
295 }
296;
297
298precedence_declaration:
299 precedence_declarator type.opt symbols.1
300 {
301 symbol_list *list;
302 ++current_prec;
303 for (list = $3; list; list = list->next)
304 {
305 symbol_type_set (list->sym, current_type, @2);
306 symbol_precedence_set (list->sym, current_prec, $1, @1);
307 }
308 symbol_list_free ($3);
309 current_type = NULL;
310 }
311;
312
313precedence_declarator:
314 "%left" { $$ = left_assoc; }
315| "%right" { $$ = right_assoc; }
316| "%nonassoc" { $$ = non_assoc; }
317;
318
319type.opt:
320 /* Nothing. */ { current_type = NULL; }
321| TYPE { current_type = $1; }
322;
323
324/* One or more nonterminals to be %typed. */
325
326symbols.1:
327 symbol { $$ = symbol_list_new ($1, @1); }
328| symbols.1 symbol { $$ = symbol_list_prepend ($1, $2, @2); }
329;
330
331/* One token definition. */
332symbol_def:
333 TYPE
334 {
335 current_type = $1;
336 }
337| ID
338 {
339 symbol_class_set ($1, current_class, @1);
340 symbol_type_set ($1, current_type, @1);
341 }
342| ID INT
343 {
344 symbol_class_set ($1, current_class, @1);
345 symbol_type_set ($1, current_type, @1);
346 symbol_user_token_number_set ($1, $2, @2);
347 }
348| ID string_as_id
349 {
350 symbol_class_set ($1, current_class, @1);
351 symbol_type_set ($1, current_type, @1);
352 symbol_make_alias ($1, $2, @$);
353 }
354| ID INT string_as_id
355 {
356 symbol_class_set ($1, current_class, @1);
357 symbol_type_set ($1, current_type, @1);
358 symbol_user_token_number_set ($1, $2, @2);
359 symbol_make_alias ($1, $3, @$);
360 }
361;
362
363/* One or more symbol definitions. */
364symbol_defs.1:
365 symbol_def
366| symbol_defs.1 symbol_def
367;
368
369
370 /*------------------------------------------.
371 | The grammar section: between the two %%. |
372 `------------------------------------------*/
373
374grammar:
375 rules_or_grammar_declaration
376| grammar rules_or_grammar_declaration
377;
378
379/* As a Bison extension, one can use the grammar declarations in the
380 body of the grammar. */
381rules_or_grammar_declaration:
382 rules
383| grammar_declaration ";"
384 {
385 if (yacc_flag)
386 complain_at (@$, _("POSIX forbids declarations in the grammar"));
387 }
388| error ";"
389 {
390 yyerrok;
391 }
392;
393
394rules:
395 ID_COLON { current_lhs = $1; current_lhs_location = @1; } rhses.1
396;
397
398rhses.1:
399 rhs { grammar_rule_end (@1); }
400| rhses.1 "|" rhs { grammar_rule_end (@3); }
401| rhses.1 ";"
402;
403
404rhs:
405 /* Nothing. */
406 { grammar_rule_begin (current_lhs, current_lhs_location); }
407| rhs symbol
408 { grammar_current_rule_symbol_append ($2, @2); }
409| rhs action
410 { grammar_current_rule_action_append ($2, @2); }
411| rhs "%prec" symbol
412 { grammar_current_rule_prec_set ($3, @3); }
413| rhs "%dprec" INT
414 { grammar_current_rule_dprec_set ($3, @3); }
415| rhs "%merge" TYPE
416 { grammar_current_rule_merge_set ($3, @3); }
417;
418
419symbol:
420 ID { $$ = $1; }
421| string_as_id { $$ = $1; }
422;
423
424action:
425 BRACED_CODE
426 { $$ = $1; }
427;
428
429/* A string used as an ID: quote it. */
430string_as_id:
431 STRING
432 {
433 $$ = symbol_get (quotearg_style (c_quoting_style, $1), @1);
434 symbol_class_set ($$, token_sym, @1);
435 }
436;
437
438/* A string used for its contents. Don't quote it. */
439string_content:
440 STRING
441 { $$ = $1; }
442;
443
444
445epilogue.opt:
446 /* Nothing. */
447| "%%" EPILOGUE
448 {
449 muscle_code_grow ("epilogue", $2, @2);
450 scanner_last_string_free ();
451 }
452;
453
454%%
455
456
457/* Return the location of the left-hand side of a rule whose
458 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
459 the right-hand side, and return an empty location equal to the end
460 boundary of RHS[0] if the right-hand side is empty. */
461
462static YYLTYPE
463lloc_default (YYLTYPE const *rhs, int n)
464{
465 int i;
466 YYLTYPE loc;
467
468 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
469 The bug is fixed in 7.4.2m, but play it safe for now. */
470 loc.start = rhs[n].end;
471 loc.end = rhs[n].end;
472
473 /* Ignore empty nonterminals the start of the the right-hand side.
474 Do not bother to ignore them at the end of the right-hand side,
475 since empty nonterminals have the same end as their predecessors. */
476 for (i = 1; i <= n; i++)
477 if (! equal_boundaries (rhs[i].start, rhs[i].end))
478 {
479 loc.start = rhs[i].start;
480 break;
481 }
482
483 return loc;
484}
485
486
487/* Add a lex-param or a parse-param (depending on TYPE) with
488 declaration DECL and location LOC. */
489
490static void
491add_param (char const *type, char *decl, location loc)
492{
493 static char const alphanum[26 + 26 + 1 + 10] =
494 "abcdefghijklmnopqrstuvwxyz"
495 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
496 "_"
497 "0123456789";
498 char const *name_start = NULL;
499 char *p;
500
501 /* Stop on last actual character. */
502 for (p = decl; p[1]; p++)
503 if ((p == decl
504 || ! memchr (alphanum, p[-1], sizeof alphanum))
505 && memchr (alphanum, p[0], sizeof alphanum - 10))
506 name_start = p;
507
508 /* Strip the surrounding '{' and '}', and any blanks just inside
509 the braces. */
510 while (*--p == ' ' || *p == '\t')
511 continue;
512 p[1] = '\0';
513 while (*++decl == ' ' || *decl == '\t')
514 continue;
515
516 if (! name_start)
517 complain_at (loc, _("missing identifier in parameter declaration"));
518 else
519 {
520 char *name;
521 size_t name_len;
522
523 for (name_len = 1;
524 memchr (alphanum, name_start[name_len], sizeof alphanum);
525 name_len++)
526 continue;
527
528 name = xmalloc (name_len + 1);
529 memcpy (name, name_start, name_len);
530 name[name_len] = '\0';
531 muscle_pair_list_grow (type, decl, name);
532 free (name);
533 }
534
535 scanner_last_string_free ();
536}
537
538static void
539version_check (location const *loc, char const *version)
540{
541 if (strverscmp (version, PACKAGE_VERSION) > 0)
542 complain_at (*loc, "require bison %s, but have %s",
543 version, PACKAGE_VERSION);
544}
545
546static void
547gram_error (location const *loc, char const *msg)
548{
549 complain_at (*loc, "%s", msg);
550}
551
552char const *
553token_name (int type)
554{
555 return yytname[YYTRANSLATE (type)];
556}