]>
Commit | Line | Data |
---|---|---|
12ffdd28 | 1 | %{/* Bison Grammar Parser -*- C -*- |
a737b216 | 2 | |
7d6bad19 | 3 | Copyright (C) 2002-2013 Free Software Foundation, Inc. |
e9955c83 AD |
4 | |
5 | This file is part of Bison, the GNU Compiler Compiler. | |
6 | ||
f16b0819 | 7 | This program is free software: you can redistribute it and/or modify |
e9955c83 | 8 | it under the terms of the GNU General Public License as published by |
f16b0819 | 9 | the Free Software Foundation, either version 3 of the License, or |
e9955c83 AD |
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 | |
f16b0819 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
e9955c83 | 19 | |
2cec9080 | 20 | #include <config.h> |
e9955c83 | 21 | #include "system.h" |
3d2cbc26 | 22 | |
457bf919 | 23 | #include "c-ctype.h" |
b275314e | 24 | #include "complain.h" |
3d2cbc26 | 25 | #include "conflicts.h" |
e9955c83 AD |
26 | #include "files.h" |
27 | #include "getargs.h" | |
e9955c83 | 28 | #include "gram.h" |
00f5d575 | 29 | #include "muscle-tab.h" |
872b52bc | 30 | #include "named-ref.h" |
ca407bdf | 31 | #include "quotearg.h" |
e9955c83 | 32 | #include "reader.h" |
3d2cbc26 | 33 | #include "symlist.h" |
49196047 | 34 | #include "symtab.h" |
e9071366 AD |
35 | #include "scan-gram.h" |
36 | #include "scan-code.h" | |
e54ec80c | 37 | #include "xmemdup0.h" |
e9955c83 | 38 | |
b7295522 PE |
39 | #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N) |
40 | static YYLTYPE lloc_default (YYLTYPE const *, int); | |
4cdb01db | 41 | |
b233d555 | 42 | #define YY_LOCATION_PRINT(File, Loc) \ |
b805eca7 | 43 | location_print (Loc, File) |
b233d555 | 44 | |
b50d2359 AD |
45 | static void version_check (location const *loc, char const *version); |
46 | ||
3d2cbc26 | 47 | static void gram_error (location const *, char const *); |
e9955c83 | 48 | |
66c209cf | 49 | /* A string that describes a char (e.g., 'a' -> "'a'"). */ |
33ad1a9c | 50 | static char const *char_name (char); |
e9955c83 AD |
51 | %} |
52 | ||
a7706735 AD |
53 | %code |
54 | { | |
eaca4c11 | 55 | static int current_prec = 0; |
a7706735 AD |
56 | static location current_lhs_location; |
57 | static named_ref *current_lhs_named_ref; | |
a4d1bf6a | 58 | static symbol *current_lhs_symbol; |
eaca4c11 AD |
59 | static symbol_class current_class = unknown_sym; |
60 | static uniqstr current_type = NULL; | |
a7706735 | 61 | |
a4d1bf6a AD |
62 | /** Set the new current left-hand side symbol, possibly common |
63 | * to several right-hand side parts of rule. | |
64 | */ | |
65 | static | |
66 | void | |
f50fa145 | 67 | current_lhs (symbol *sym, location loc, named_ref *ref) |
a4d1bf6a AD |
68 | { |
69 | current_lhs_symbol = sym; | |
70 | current_lhs_location = loc; | |
71 | /* In order to simplify memory management, named references for lhs | |
72 | are always assigned by deep copy into the current symbol_list | |
73 | node. This is because a single named-ref in the grammar may | |
74 | result in several uses when the user factors lhs between several | |
75 | rules using "|". Therefore free the parser's original copy. */ | |
76 | free (current_lhs_named_ref); | |
77 | current_lhs_named_ref = ref; | |
78 | } | |
79 | ||
a7706735 AD |
80 | #define YYTYPE_INT16 int_fast16_t |
81 | #define YYTYPE_INT8 int_fast8_t | |
82 | #define YYTYPE_UINT16 uint_fast16_t | |
83 | #define YYTYPE_UINT8 uint_fast8_t | |
84 | } | |
85 | ||
e73ac5a0 | 86 | %define api.prefix "gram_" |
2c056d69 | 87 | %define api.pure full |
d0a30438 | 88 | %define locations |
5320fffd | 89 | %define parse.error verbose |
107844a3 | 90 | %define parse.lac full |
5320fffd | 91 | %define parse.trace |
12ffdd28 | 92 | %defines |
219741d8 | 93 | %expect 0 |
e73ac5a0 | 94 | %verbose |
12ffdd28 | 95 | |
cd3684cf AD |
96 | %initial-action |
97 | { | |
98 | /* Bison's grammar can initial empty locations, hence a default | |
99 | location is needed. */ | |
4a678af8 JD |
100 | boundary_set (&@$.start, current_file, 1, 1); |
101 | boundary_set (&@$.end, current_file, 1, 1); | |
cd3684cf | 102 | } |
e9955c83 | 103 | |
e9955c83 AD |
104 | %union |
105 | { | |
a7706735 AD |
106 | assoc assoc; |
107 | char *code; | |
108 | char const *chars; | |
109 | int integer; | |
110 | named_ref *named_ref; | |
3d2cbc26 PE |
111 | symbol *symbol; |
112 | symbol_list *list; | |
3d2cbc26 | 113 | uniqstr uniqstr; |
58d7a1a1 | 114 | unsigned char character; |
e9955c83 AD |
115 | }; |
116 | ||
f9a85a15 | 117 | /* Define the tokens together with their human representation. */ |
3d38c03a AD |
118 | %token GRAM_EOF 0 "end of file" |
119 | %token STRING "string" | |
3d38c03a | 120 | %token INT "integer" |
e9955c83 | 121 | |
9280d3ef AD |
122 | %token PERCENT_TOKEN "%token" |
123 | %token PERCENT_NTERM "%nterm" | |
366eea36 | 124 | |
9280d3ef | 125 | %token PERCENT_TYPE "%type" |
e9071366 AD |
126 | %token PERCENT_DESTRUCTOR "%destructor" |
127 | %token PERCENT_PRINTER "%printer" | |
366eea36 | 128 | |
9280d3ef AD |
129 | %token PERCENT_LEFT "%left" |
130 | %token PERCENT_RIGHT "%right" | |
131 | %token PERCENT_NONASSOC "%nonassoc" | |
d78f0ac9 | 132 | %token PERCENT_PRECEDENCE "%precedence" |
04e60654 | 133 | |
3d38c03a AD |
134 | %token PERCENT_PREC "%prec" |
135 | %token PERCENT_DPREC "%dprec" | |
136 | %token PERCENT_MERGE "%merge" | |
e9955c83 | 137 | |
ae7453f2 AD |
138 | /*----------------------. |
139 | | Global Declarations. | | |
140 | `----------------------*/ | |
141 | ||
142 | %token | |
136a0f76 | 143 | PERCENT_CODE "%code" |
39a06c25 | 144 | PERCENT_DEFAULT_PREC "%default-prec" |
cd3684cf AD |
145 | PERCENT_DEFINE "%define" |
146 | PERCENT_DEFINES "%defines" | |
31b850d2 | 147 | PERCENT_ERROR_VERBOSE "%error-verbose" |
cd3684cf | 148 | PERCENT_EXPECT "%expect" |
a7706735 | 149 | PERCENT_EXPECT_RR "%expect-rr" |
ba061fa6 | 150 | PERCENT_FLAG "%<flag>" |
cd3684cf AD |
151 | PERCENT_FILE_PREFIX "%file-prefix" |
152 | PERCENT_GLR_PARSER "%glr-parser" | |
e9071366 | 153 | PERCENT_INITIAL_ACTION "%initial-action" |
0e021770 | 154 | PERCENT_LANGUAGE "%language" |
cd3684cf | 155 | PERCENT_NAME_PREFIX "%name-prefix" |
22fccf95 | 156 | PERCENT_NO_DEFAULT_PREC "%no-default-prec" |
cd3684cf AD |
157 | PERCENT_NO_LINES "%no-lines" |
158 | PERCENT_NONDETERMINISTIC_PARSER | |
a7706735 | 159 | "%nondeterministic-parser" |
cd3684cf | 160 | PERCENT_OUTPUT "%output" |
a7706735 | 161 | PERCENT_REQUIRE "%require" |
cd3684cf AD |
162 | PERCENT_SKELETON "%skeleton" |
163 | PERCENT_START "%start" | |
164 | PERCENT_TOKEN_TABLE "%token-table" | |
165 | PERCENT_VERBOSE "%verbose" | |
166 | PERCENT_YACC "%yacc" | |
ae7453f2 | 167 | ; |
e9955c83 | 168 | |
58d7a1a1 | 169 | %token BRACED_CODE "{...}" |
ca2a6d15 | 170 | %token BRACED_PREDICATE "%?{...}" |
b143f404 | 171 | %token BRACKETED_ID "[identifier]" |
58d7a1a1 AD |
172 | %token CHAR "char" |
173 | %token EPILOGUE "epilogue" | |
3d38c03a | 174 | %token EQUAL "=" |
3d38c03a | 175 | %token ID "identifier" |
b7295522 | 176 | %token ID_COLON "identifier:" |
e9955c83 | 177 | %token PERCENT_PERCENT "%%" |
58d7a1a1 | 178 | %token PIPE "|" |
3d38c03a | 179 | %token PROLOGUE "%{...%}" |
58d7a1a1 | 180 | %token SEMICOLON ";" |
cb823b6f AD |
181 | %token TAG "<tag>" |
182 | %token TAG_ANY "<*>" | |
183 | %token TAG_NONE "<>" | |
58d7a1a1 AD |
184 | |
185 | %type <character> CHAR | |
585a791e | 186 | %printer { fputs (char_name ($$), yyo); } CHAR |
3d38c03a | 187 | |
2ce4ed68 | 188 | /* braceless is not to be used for rule or symbol actions, as it |
7c0c6181 | 189 | calls code_props_plain_init. */ |
6afc30cc | 190 | %type <chars> STRING "%{...%}" EPILOGUE braceless content.opt |
ca2a6d15 | 191 | %type <code> "{...}" "%?{...}" |
585a791e | 192 | %printer { fputs (quotearg_style (c_quoting_style, $$), yyo); } |
e9690142 | 193 | STRING |
585a791e | 194 | %printer { fprintf (yyo, "{\n%s\n}", $$); } |
e9690142 | 195 | braceless content.opt "{...}" "%{...%}" EPILOGUE |
58d7a1a1 | 196 | |
a82cbb63 | 197 | %type <uniqstr> BRACKETED_ID ID ID_COLON PERCENT_FLAG TAG tag variable |
585a791e AD |
198 | %printer { fputs ($$, yyo); } <uniqstr> |
199 | %printer { fprintf (yyo, "[%s]", $$); } BRACKETED_ID | |
200 | %printer { fprintf (yyo, "%s:", $$); } ID_COLON | |
201 | %printer { fprintf (yyo, "%%%s", $$); } PERCENT_FLAG | |
202 | %printer { fprintf (yyo, "<%s>", $$); } TAG tag | |
58d7a1a1 | 203 | |
e9955c83 | 204 | %type <integer> INT |
585a791e | 205 | %printer { fprintf (yyo, "%d", $$); } <integer> |
58d7a1a1 | 206 | |
b143f404 | 207 | %type <symbol> id id_colon string_as_id symbol symbol.prec |
585a791e AD |
208 | %printer { fprintf (yyo, "%s", $$->tag); } <symbol> |
209 | %printer { fprintf (yyo, "%s:", $$->tag); } id_colon | |
58d7a1a1 | 210 | |
2c569025 | 211 | %type <assoc> precedence_declarator |
ab7f29f8 | 212 | %type <list> symbols.1 symbols.prec generic_symlist generic_symlist_item |
b143f404 | 213 | %type <named_ref> named_ref.opt |
a7706735 AD |
214 | |
215 | /*---------. | |
216 | | %param. | | |
217 | `---------*/ | |
218 | %code requires | |
219 | { | |
220 | # ifndef PARAM_TYPE | |
221 | # define PARAM_TYPE | |
222 | typedef enum | |
223 | { | |
eaca4c11 | 224 | param_none = 0, |
a7706735 AD |
225 | param_lex = 1 << 0, |
226 | param_parse = 1 << 1, | |
227 | param_both = param_lex | param_parse | |
228 | } param_type; | |
229 | # endif | |
230 | }; | |
231 | %code | |
232 | { | |
233 | /** Add a lex-param and/or a parse-param. | |
234 | * | |
235 | * \param type where to push this formal argument. | |
236 | * \param decl the formal argument. Destroyed. | |
237 | * \param loc the location in the source. | |
238 | */ | |
239 | static void add_param (param_type type, char *decl, location loc); | |
eaca4c11 | 240 | static param_type current_param = param_none; |
a7706735 AD |
241 | }; |
242 | %union | |
243 | { | |
244 | param_type param; | |
245 | } | |
246 | %token <param> PERCENT_PARAM "%param"; | |
247 | %printer | |
248 | { | |
249 | switch ($$) | |
250 | { | |
251 | #define CASE(In, Out) \ | |
eaca4c11 | 252 | case param_ ## In: fputs ("%" #Out, stderr); break |
f50fa145 AD |
253 | CASE (lex, lex-param); |
254 | CASE (parse, parse-param); | |
255 | CASE (both, param); | |
a7706735 | 256 | #undef CASE |
2d399888 | 257 | case param_none: aver (false); break; |
eaca4c11 | 258 | } |
a7706735 AD |
259 | } <param>; |
260 | ||
eaca4c11 AD |
261 | |
262 | /*==========\ | |
263 | | Grammar. | | |
264 | \==========*/ | |
e9955c83 | 265 | %% |
2c569025 | 266 | |
8efe435c | 267 | input: |
2ce4ed68 | 268 | prologue_declarations "%%" grammar epilogue.opt |
e9955c83 AD |
269 | ; |
270 | ||
2c569025 | 271 | |
e9690142 JD |
272 | /*------------------------------------. |
273 | | Declarations: before the first %%. | | |
274 | `------------------------------------*/ | |
2c569025 | 275 | |
2ce4ed68 | 276 | prologue_declarations: |
fd003416 | 277 | %empty |
2ce4ed68 | 278 | | prologue_declarations prologue_declaration |
e9955c83 AD |
279 | ; |
280 | ||
2ce4ed68 | 281 | prologue_declaration: |
2c569025 | 282 | grammar_declaration |
7c0c6181 JD |
283 | | "%{...%}" |
284 | { | |
285 | code_props plain_code; | |
286 | code_props_plain_init (&plain_code, $1, @1); | |
287 | code_props_translate_code (&plain_code); | |
288 | gram_scanner_last_string_free (); | |
7ecec4dd JD |
289 | muscle_code_grow (union_seen ? "post_prologue" : "pre_prologue", |
290 | plain_code.code, @1); | |
7c0c6181 JD |
291 | code_scanner_last_string_free (); |
292 | } | |
ba061fa6 | 293 | | "%<flag>" |
0ce61575 | 294 | { |
4920ae8b | 295 | muscle_percent_define_ensure ($1, @1, true); |
0ce61575 | 296 | } |
16dc6a9e | 297 | | "%define" variable content.opt |
7eb8a0bc | 298 | { |
de5ab940 JD |
299 | muscle_percent_define_insert ($2, @2, $3, |
300 | MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE); | |
7eb8a0bc | 301 | } |
2ce4ed68 | 302 | | "%defines" { defines_flag = true; } |
02975b9a JD |
303 | | "%defines" STRING |
304 | { | |
305 | defines_flag = true; | |
306 | spec_defines_file = xstrdup ($2); | |
307 | } | |
31b850d2 AD |
308 | | "%error-verbose" |
309 | { | |
310 | muscle_percent_define_insert ("parse.error", @1, "verbose", | |
311 | MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE); | |
312 | } | |
2ce4ed68 | 313 | | "%expect" INT { expected_sr_conflicts = $2; } |
e9690142 | 314 | | "%expect-rr" INT { expected_rr_conflicts = $2; } |
02975b9a | 315 | | "%file-prefix" STRING { spec_file_prefix = $2; } |
cd3684cf | 316 | | "%glr-parser" |
c66dfadd PE |
317 | { |
318 | nondeterministic_parser = true; | |
319 | glr_parser = true; | |
320 | } | |
e9071366 | 321 | | "%initial-action" "{...}" |
c66dfadd | 322 | { |
7c0c6181 JD |
323 | code_props action; |
324 | code_props_symbol_action_init (&action, $2, @2); | |
325 | code_props_translate_code (&action); | |
326 | gram_scanner_last_string_free (); | |
327 | muscle_code_grow ("initial_action", action.code, @2); | |
328 | code_scanner_last_string_free (); | |
c66dfadd | 329 | } |
e9690142 | 330 | | "%language" STRING { language_argmatch ($2, grammar_prio, @1); } |
02975b9a | 331 | | "%name-prefix" STRING { spec_name_prefix = $2; } |
2ce4ed68 | 332 | | "%no-lines" { no_lines_flag = true; } |
e9690142 | 333 | | "%nondeterministic-parser" { nondeterministic_parser = true; } |
02975b9a | 334 | | "%output" STRING { spec_outfile = $2; } |
eaca4c11 | 335 | | "%param" { current_param = $1; } params { current_param = param_none; } |
2ce4ed68 | 336 | | "%require" STRING { version_check (&@2, $2); } |
a7867f53 JD |
337 | | "%skeleton" STRING |
338 | { | |
339 | char const *skeleton_user = $2; | |
84526bf3 | 340 | if (strchr (skeleton_user, '/')) |
a7867f53 JD |
341 | { |
342 | size_t dir_length = strlen (current_file); | |
343 | char *skeleton_build; | |
344 | while (dir_length && current_file[dir_length - 1] != '/') | |
345 | --dir_length; | |
346 | while (dir_length && current_file[dir_length - 1] == '/') | |
347 | --dir_length; | |
348 | skeleton_build = | |
349 | xmalloc (dir_length + 1 + strlen (skeleton_user) + 1); | |
350 | if (dir_length > 0) | |
351 | { | |
bb3b912b | 352 | memcpy (skeleton_build, current_file, dir_length); |
a7867f53 JD |
353 | skeleton_build[dir_length++] = '/'; |
354 | } | |
355 | strcpy (skeleton_build + dir_length, skeleton_user); | |
356 | skeleton_user = uniqstr_new (skeleton_build); | |
357 | free (skeleton_build); | |
358 | } | |
51365192 | 359 | skeleton_arg (skeleton_user, grammar_prio, @1); |
a7867f53 | 360 | } |
2ce4ed68 | 361 | | "%token-table" { token_table_flag = true; } |
ef1b4273 | 362 | | "%verbose" { report_flag |= report_states; } |
2ce4ed68 | 363 | | "%yacc" { yacc_flag = true; } |
cd3684cf | 364 | | /*FIXME: Err? What is this horror doing here? */ ";" |
e9955c83 AD |
365 | ; |
366 | ||
eaca4c11 AD |
367 | params: |
368 | params "{...}" { add_param (current_param, $2, @2); } | |
369 | | "{...}" { add_param (current_param, $1, @1); } | |
370 | ; | |
371 | ||
a7706735 AD |
372 | |
373 | /*----------------------. | |
374 | | grammar_declaration. | | |
375 | `----------------------*/ | |
376 | ||
2c569025 AD |
377 | grammar_declaration: |
378 | precedence_declaration | |
379 | | symbol_declaration | |
e9955c83 AD |
380 | | "%start" symbol |
381 | { | |
8efe435c | 382 | grammar_start_symbol_set ($2, @2); |
e9955c83 | 383 | } |
49196047 | 384 | | code_props_type "{...}" generic_symlist |
9280d3ef | 385 | { |
1c292035 AD |
386 | code_props code; |
387 | code_props_symbol_action_init (&code, $2, @2); | |
388 | code_props_translate_code (&code); | |
389 | { | |
390 | symbol_list *list; | |
391 | for (list = $3; list; list = list->next) | |
4323e0da | 392 | symbol_list_code_props_set (list, $1, &code); |
1c292035 AD |
393 | symbol_list_free ($3); |
394 | } | |
9280d3ef | 395 | } |
22fccf95 | 396 | | "%default-prec" |
39a06c25 | 397 | { |
22fccf95 PE |
398 | default_prec = true; |
399 | } | |
400 | | "%no-default-prec" | |
401 | { | |
402 | default_prec = false; | |
39a06c25 | 403 | } |
8e0a5e9e JD |
404 | | "%code" braceless |
405 | { | |
9611cfa2 JD |
406 | /* Do not invoke muscle_percent_code_grow here since it invokes |
407 | muscle_user_name_list_grow. */ | |
592d0b1e | 408 | muscle_code_grow ("percent_code()", $2, @2); |
8e0a5e9e JD |
409 | code_scanner_last_string_free (); |
410 | } | |
16dc6a9e | 411 | | "%code" ID braceless |
8e0a5e9e | 412 | { |
9611cfa2 | 413 | muscle_percent_code_grow ($2, @2, $3, @3); |
8e0a5e9e | 414 | code_scanner_last_string_free (); |
8e0a5e9e | 415 | } |
2c569025 AD |
416 | ; |
417 | ||
49196047 AD |
418 | %type <code_type> code_props_type; |
419 | %union {code_props_type code_type;}; | |
585a791e | 420 | %printer { fprintf (yyo, "%s", code_props_type_string ($$)); } <code_type>; |
49196047 AD |
421 | code_props_type: |
422 | "%destructor" { $$ = destructor; } | |
423 | | "%printer" { $$ = printer; } | |
424 | ; | |
58d7a1a1 | 425 | |
3c262606 AD |
426 | /*---------. |
427 | | %union. | | |
428 | `---------*/ | |
58d7a1a1 AD |
429 | |
430 | %token PERCENT_UNION "%union"; | |
431 | ||
432 | union_name: | |
fd003416 AD |
433 | %empty {} |
434 | | ID { muscle_code_grow ("union_name", $1, @1); } | |
58d7a1a1 AD |
435 | ; |
436 | ||
437 | grammar_declaration: | |
7ecec4dd | 438 | "%union" union_name braceless |
58d7a1a1 | 439 | { |
ddc8ede1 | 440 | union_seen = true; |
c5dbd909 | 441 | muscle_code_grow ("union_members", $3, @3); |
7ecec4dd | 442 | code_scanner_last_string_free (); |
58d7a1a1 AD |
443 | } |
444 | ; | |
445 | ||
446 | ||
447 | ||
448 | ||
2c569025 AD |
449 | symbol_declaration: |
450 | "%nterm" { current_class = nterm_sym; } symbol_defs.1 | |
e9955c83 AD |
451 | { |
452 | current_class = unknown_sym; | |
453 | current_type = NULL; | |
454 | } | |
2c569025 | 455 | | "%token" { current_class = token_sym; } symbol_defs.1 |
e9955c83 | 456 | { |
2c569025 | 457 | current_class = unknown_sym; |
e9955c83 AD |
458 | current_type = NULL; |
459 | } | |
cb823b6f | 460 | | "%type" TAG symbols.1 |
e9955c83 | 461 | { |
3d2cbc26 | 462 | symbol_list *list; |
4f82b42a | 463 | tag_seen = true; |
1e0bab92 | 464 | for (list = $3; list; list = list->next) |
e9690142 | 465 | symbol_type_set (list->content.sym, $2, @2); |
dafdc66f | 466 | symbol_list_free ($3); |
e9955c83 AD |
467 | } |
468 | ; | |
469 | ||
2c569025 | 470 | precedence_declaration: |
cb823b6f | 471 | precedence_declarator tag.opt symbols.prec |
1e0bab92 | 472 | { |
3d2cbc26 | 473 | symbol_list *list; |
1e0bab92 AD |
474 | ++current_prec; |
475 | for (list = $3; list; list = list->next) | |
e9690142 JD |
476 | { |
477 | symbol_type_set (list->content.sym, current_type, @2); | |
478 | symbol_precedence_set (list->content.sym, current_prec, $1, @1); | |
479 | } | |
dafdc66f | 480 | symbol_list_free ($3); |
1e0bab92 AD |
481 | current_type = NULL; |
482 | } | |
e9955c83 AD |
483 | ; |
484 | ||
2c569025 | 485 | precedence_declarator: |
d78f0ac9 AD |
486 | "%left" { $$ = left_assoc; } |
487 | | "%right" { $$ = right_assoc; } | |
488 | | "%nonassoc" { $$ = non_assoc; } | |
489 | | "%precedence" { $$ = precedence_assoc; } | |
e9955c83 AD |
490 | ; |
491 | ||
cb823b6f | 492 | tag.opt: |
fd003416 AD |
493 | %empty { current_type = NULL; } |
494 | | TAG { current_type = $1; tag_seen = true; } | |
e9955c83 AD |
495 | ; |
496 | ||
ab7f29f8 JD |
497 | /* Just like symbols.1 but accept INT for the sake of POSIX. */ |
498 | symbols.prec: | |
499 | symbol.prec | |
500 | { $$ = symbol_list_sym_new ($1, @1); } | |
501 | | symbols.prec symbol.prec | |
93561c21 | 502 | { $$ = symbol_list_append ($1, symbol_list_sym_new ($2, @2)); } |
ab7f29f8 JD |
503 | ; |
504 | ||
505 | symbol.prec: | |
0560fa24 AD |
506 | symbol { $$ = $1; } |
507 | | symbol INT { $$ = $1; symbol_user_token_number_set ($1, $2, @2); } | |
508 | ; | |
ab7f29f8 | 509 | |
3be03b13 | 510 | /* One or more symbols to be %typed. */ |
1e0bab92 | 511 | symbols.1: |
3be03b13 JD |
512 | symbol |
513 | { $$ = symbol_list_sym_new ($1, @1); } | |
514 | | symbols.1 symbol | |
93561c21 | 515 | { $$ = symbol_list_append ($1, symbol_list_sym_new ($2, @2)); } |
3be03b13 JD |
516 | ; |
517 | ||
518 | generic_symlist: | |
519 | generic_symlist_item { $$ = $1; } | |
93561c21 | 520 | | generic_symlist generic_symlist_item { $$ = symbol_list_append ($1, $2); } |
3be03b13 JD |
521 | ; |
522 | ||
523 | generic_symlist_item: | |
cb823b6f | 524 | symbol { $$ = symbol_list_sym_new ($1, @1); } |
a82cbb63 AD |
525 | | tag { $$ = symbol_list_type_new ($1, @1); } |
526 | ; | |
527 | ||
528 | tag: | |
529 | TAG | |
530 | | "<*>" { $$ = uniqstr_new ("*"); } | |
531 | | "<>" { $$ = uniqstr_new (""); } | |
e9955c83 AD |
532 | ; |
533 | ||
e9955c83 AD |
534 | /* One token definition. */ |
535 | symbol_def: | |
cb823b6f | 536 | TAG |
c1392807 AD |
537 | { |
538 | current_type = $1; | |
539 | tag_seen = true; | |
540 | } | |
58d7a1a1 | 541 | | id |
c1392807 AD |
542 | { |
543 | symbol_class_set ($1, current_class, @1, true); | |
544 | symbol_type_set ($1, current_type, @1); | |
545 | } | |
58d7a1a1 | 546 | | id INT |
e9955c83 | 547 | { |
073f9288 | 548 | symbol_class_set ($1, current_class, @1, true); |
1a31ed21 | 549 | symbol_type_set ($1, current_type, @1); |
e776192e | 550 | symbol_user_token_number_set ($1, $2, @2); |
e9955c83 | 551 | } |
58d7a1a1 | 552 | | id string_as_id |
e9955c83 | 553 | { |
073f9288 | 554 | symbol_class_set ($1, current_class, @1, true); |
1a31ed21 | 555 | symbol_type_set ($1, current_type, @1); |
a5d50994 | 556 | symbol_make_alias ($1, $2, @$); |
e9955c83 | 557 | } |
58d7a1a1 | 558 | | id INT string_as_id |
e9955c83 | 559 | { |
073f9288 | 560 | symbol_class_set ($1, current_class, @1, true); |
1a31ed21 | 561 | symbol_type_set ($1, current_type, @1); |
e776192e | 562 | symbol_user_token_number_set ($1, $2, @2); |
a5d50994 | 563 | symbol_make_alias ($1, $3, @$); |
e9955c83 AD |
564 | } |
565 | ; | |
566 | ||
567 | /* One or more symbol definitions. */ | |
568 | symbol_defs.1: | |
569 | symbol_def | |
e9955c83 | 570 | | symbol_defs.1 symbol_def |
e9955c83 AD |
571 | ; |
572 | ||
2c569025 | 573 | |
e9690142 JD |
574 | /*------------------------------------------. |
575 | | The grammar section: between the two %%. | | |
576 | `------------------------------------------*/ | |
2c569025 AD |
577 | |
578 | grammar: | |
1921f1d7 AD |
579 | rules_or_grammar_declaration |
580 | | grammar rules_or_grammar_declaration | |
581 | ; | |
582 | ||
583 | /* As a Bison extension, one can use the grammar declarations in the | |
b7295522 | 584 | body of the grammar. */ |
1921f1d7 | 585 | rules_or_grammar_declaration: |
e9955c83 | 586 | rules |
8d0a98bb | 587 | | grammar_declaration ";" |
b275314e AD |
588 | | error ";" |
589 | { | |
590 | yyerrok; | |
591 | } | |
e9955c83 AD |
592 | ; |
593 | ||
594 | rules: | |
a4d1bf6a AD |
595 | id_colon named_ref.opt { current_lhs ($1, @1, $2); } rhses.1 |
596 | { | |
597 | /* Free the current lhs. */ | |
598 | current_lhs (0, @1, 0); | |
599 | } | |
e9955c83 AD |
600 | ; |
601 | ||
602 | rhses.1: | |
8f3596a6 AD |
603 | rhs { grammar_current_rule_end (@1); } |
604 | | rhses.1 "|" rhs { grammar_current_rule_end (@3); } | |
8d0a98bb | 605 | | rhses.1 ";" |
e9955c83 AD |
606 | ; |
607 | ||
ae2b48f5 | 608 | %token PERCENT_EMPTY "%empty"; |
e9955c83 | 609 | rhs: |
fd003416 | 610 | %empty |
a4d1bf6a | 611 | { grammar_current_rule_begin (current_lhs_symbol, current_lhs_location, |
e9690142 | 612 | current_lhs_named_ref); } |
b9f1d9a4 AR |
613 | | rhs symbol named_ref.opt |
614 | { grammar_current_rule_symbol_append ($2, @2, $3); } | |
615 | | rhs "{...}" named_ref.opt | |
ca2a6d15 | 616 | { grammar_current_rule_action_append ($2, @2, $3, false); } |
59420cd7 | 617 | | rhs "%?{...}" |
ca2a6d15 | 618 | { grammar_current_rule_action_append ($2, @2, NULL, true); } |
ae2b48f5 AD |
619 | | rhs "%empty" |
620 | { grammar_current_rule_empty_set (@2); } | |
e9955c83 | 621 | | rhs "%prec" symbol |
e776192e | 622 | { grammar_current_rule_prec_set ($3, @3); } |
676385e2 PH |
623 | | rhs "%dprec" INT |
624 | { grammar_current_rule_dprec_set ($3, @3); } | |
cb823b6f | 625 | | rhs "%merge" TAG |
676385e2 | 626 | { grammar_current_rule_merge_set ($3, @3); } |
e9955c83 AD |
627 | ; |
628 | ||
b9f1d9a4 | 629 | named_ref.opt: |
fd003416 AD |
630 | %empty { $$ = 0; } |
631 | | BRACKETED_ID { $$ = named_ref_new($1, @1); } | |
b9f1d9a4 AR |
632 | ; |
633 | ||
3c262606 AD |
634 | /*---------------------------. |
635 | | variable and content.opt. | | |
636 | `---------------------------*/ | |
16dc6a9e | 637 | |
c9aded4b JD |
638 | /* The STRING form of variable is deprecated and is not M4-friendly. |
639 | For example, M4 fails for `%define "[" "value"'. */ | |
16dc6a9e JD |
640 | variable: |
641 | ID | |
4f646c37 | 642 | | STRING { $$ = uniqstr_new ($1); } |
3c262606 | 643 | ; |
2ce4ed68 | 644 | |
592d0b1e | 645 | /* Some content or empty by default. */ |
2ce4ed68 | 646 | content.opt: |
fd003416 AD |
647 | %empty { $$ = ""; } |
648 | | ID { $$ = $1; } | |
649 | | STRING { $$ = $1; } | |
2ce4ed68 AD |
650 | ; |
651 | ||
652 | ||
3c262606 AD |
653 | /*------------. |
654 | | braceless. | | |
655 | `------------*/ | |
6afc30cc | 656 | |
2ce4ed68 AD |
657 | braceless: |
658 | "{...}" | |
659 | { | |
7c0c6181 | 660 | code_props plain_code; |
2ce4ed68 | 661 | $1[strlen ($1) - 1] = '\n'; |
7c0c6181 JD |
662 | code_props_plain_init (&plain_code, $1+1, @1); |
663 | code_props_translate_code (&plain_code); | |
664 | gram_scanner_last_string_free (); | |
665 | $$ = plain_code.code; | |
2ce4ed68 AD |
666 | } |
667 | ; | |
668 | ||
669 | ||
3c262606 AD |
670 | /*--------------. |
671 | | Identifiers. | | |
672 | `--------------*/ | |
58d7a1a1 | 673 | |
33ad1a9c PE |
674 | /* Identifiers are returned as uniqstr values by the scanner. |
675 | Depending on their use, we may need to make them genuine symbols. */ | |
58d7a1a1 AD |
676 | |
677 | id: | |
33ad1a9c | 678 | ID |
203b9274 | 679 | { $$ = symbol_from_uniqstr ($1, @1); } |
33ad1a9c PE |
680 | | CHAR |
681 | { | |
682 | $$ = symbol_get (char_name ($1), @1); | |
683 | symbol_class_set ($$, token_sym, @1, false); | |
684 | symbol_user_token_number_set ($$, $1, @1); | |
685 | } | |
58d7a1a1 AD |
686 | ; |
687 | ||
688 | id_colon: | |
203b9274 | 689 | ID_COLON { $$ = symbol_from_uniqstr ($1, @1); } |
58d7a1a1 AD |
690 | ; |
691 | ||
692 | ||
e9955c83 | 693 | symbol: |
58d7a1a1 AD |
694 | id |
695 | | string_as_id | |
e9955c83 AD |
696 | ; |
697 | ||
ca407bdf | 698 | /* A string used as an ID: quote it. */ |
e9955c83 AD |
699 | string_as_id: |
700 | STRING | |
701 | { | |
ca407bdf | 702 | $$ = symbol_get (quotearg_style (c_quoting_style, $1), @1); |
db89d400 | 703 | symbol_class_set ($$, token_sym, @1, false); |
e9955c83 AD |
704 | } |
705 | ; | |
706 | ||
e9955c83 | 707 | epilogue.opt: |
fd003416 | 708 | %empty |
e9955c83 AD |
709 | | "%%" EPILOGUE |
710 | { | |
7c0c6181 JD |
711 | code_props plain_code; |
712 | code_props_plain_init (&plain_code, $2, @2); | |
713 | code_props_translate_code (&plain_code); | |
e9071366 | 714 | gram_scanner_last_string_free (); |
7c0c6181 JD |
715 | muscle_code_grow ("epilogue", plain_code.code, @2); |
716 | code_scanner_last_string_free (); | |
e9955c83 AD |
717 | } |
718 | ; | |
719 | ||
e9955c83 | 720 | %% |
b7295522 | 721 | |
b7295522 PE |
722 | /* Return the location of the left-hand side of a rule whose |
723 | right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in | |
724 | the right-hand side, and return an empty location equal to the end | |
725 | boundary of RHS[0] if the right-hand side is empty. */ | |
726 | ||
727 | static YYLTYPE | |
728 | lloc_default (YYLTYPE const *rhs, int n) | |
729 | { | |
730 | int i; | |
a737b216 | 731 | YYLTYPE loc; |
62cb8a99 PE |
732 | |
733 | /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;". | |
734 | The bug is fixed in 7.4.2m, but play it safe for now. */ | |
735 | loc.start = rhs[n].end; | |
736 | loc.end = rhs[n].end; | |
b7295522 | 737 | |
59420cd7 | 738 | /* Ignore empty nonterminals the start of the right-hand side. |
5320ca4d PE |
739 | Do not bother to ignore them at the end of the right-hand side, |
740 | since empty nonterminals have the same end as their predecessors. */ | |
b7295522 PE |
741 | for (i = 1; i <= n; i++) |
742 | if (! equal_boundaries (rhs[i].start, rhs[i].end)) | |
743 | { | |
e9690142 JD |
744 | loc.start = rhs[i].start; |
745 | break; | |
b7295522 PE |
746 | } |
747 | ||
a737b216 | 748 | return loc; |
b7295522 PE |
749 | } |
750 | ||
751 | ||
1773ceee | 752 | static void |
a7706735 | 753 | add_param (param_type type, char *decl, location loc) |
1773ceee | 754 | { |
ead9e56e | 755 | static char const alphanum[26 + 26 + 1 + 10] = |
1773ceee PE |
756 | "abcdefghijklmnopqrstuvwxyz" |
757 | "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
ead9e56e PE |
758 | "_" |
759 | "0123456789"; | |
f71db70b | 760 | |
1773ceee | 761 | char const *name_start = NULL; |
f71db70b AD |
762 | { |
763 | char *p; | |
764 | /* Stop on last actual character. */ | |
765 | for (p = decl; p[1]; p++) | |
766 | if ((p == decl | |
767 | || ! memchr (alphanum, p[-1], sizeof alphanum)) | |
768 | && memchr (alphanum, p[0], sizeof alphanum - 10)) | |
769 | name_start = p; | |
770 | ||
771 | /* Strip the surrounding '{' and '}', and any blanks just inside | |
772 | the braces. */ | |
c9d546b2 | 773 | --p; |
6b5a7489 | 774 | while (c_isspace ((unsigned char) *p)) |
c8554191 | 775 | --p; |
f71db70b | 776 | p[1] = '\0'; |
c9d546b2 | 777 | ++decl; |
6b5a7489 | 778 | while (c_isspace ((unsigned char) *decl)) |
c8554191 | 779 | ++decl; |
f71db70b | 780 | } |
e9ce5688 | 781 | |
1773ceee | 782 | if (! name_start) |
bb8e56ff | 783 | complain (&loc, complaint, _("missing identifier in parameter declaration")); |
1773ceee PE |
784 | else |
785 | { | |
60457f30 | 786 | char *name = xmemdup0 (name_start, strspn (name_start, alphanum)); |
a7706735 AD |
787 | if (type & param_lex) |
788 | muscle_pair_list_grow ("lex_param", decl, name); | |
789 | if (type & param_parse) | |
790 | muscle_pair_list_grow ("parse_param", decl, name); | |
1773ceee PE |
791 | free (name); |
792 | } | |
793 | ||
e9071366 | 794 | gram_scanner_last_string_free (); |
1773ceee PE |
795 | } |
796 | ||
2ce4ed68 | 797 | |
b50d2359 AD |
798 | static void |
799 | version_check (location const *loc, char const *version) | |
800 | { | |
801 | if (strverscmp (version, PACKAGE_VERSION) > 0) | |
9b8a5ce0 | 802 | { |
bb8e56ff TR |
803 | complain (loc, complaint, "require bison %s, but have %s", |
804 | version, PACKAGE_VERSION); | |
459a57a9 | 805 | exit (EX_MISMATCH); |
9b8a5ce0 | 806 | } |
b50d2359 AD |
807 | } |
808 | ||
1fec91df | 809 | static void |
3d2cbc26 | 810 | gram_error (location const *loc, char const *msg) |
e9955c83 | 811 | { |
bb8e56ff | 812 | complain (loc, complaint, "%s", msg); |
e9955c83 | 813 | } |
e9ce5688 PE |
814 | |
815 | char const * | |
816 | token_name (int type) | |
817 | { | |
fc01665e | 818 | return yytname[YYTRANSLATE (type)]; |
e9ce5688 | 819 | } |
33ad1a9c PE |
820 | |
821 | static char const * | |
822 | char_name (char c) | |
823 | { | |
824 | if (c == '\'') | |
825 | return "'\\''"; | |
826 | else | |
827 | { | |
828 | char buf[4]; | |
829 | buf[0] = '\''; buf[1] = c; buf[2] = '\''; buf[3] = '\0'; | |
830 | return quotearg_style (escape_quoting_style, buf); | |
831 | } | |
832 | } |