]>
Commit | Line | Data |
---|---|---|
12ffdd28 | 1 | %{/* Bison Grammar Parser -*- C -*- |
a737b216 | 2 | |
073f9288 | 3 | Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. |
e9955c83 AD |
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 | |
0fb669f9 PE |
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
20 | 02110-1301 USA | |
e9955c83 AD |
21 | */ |
22 | ||
2cec9080 | 23 | #include <config.h> |
e9955c83 | 24 | #include "system.h" |
3d2cbc26 | 25 | |
cb48f191 PE |
26 | #include <strverscmp.h> |
27 | ||
b275314e | 28 | #include "complain.h" |
3d2cbc26 | 29 | #include "conflicts.h" |
e9955c83 AD |
30 | #include "files.h" |
31 | #include "getargs.h" | |
e9955c83 | 32 | #include "gram.h" |
3d2cbc26 | 33 | #include "muscle_tab.h" |
ca407bdf | 34 | #include "quotearg.h" |
e9955c83 | 35 | #include "reader.h" |
3d2cbc26 | 36 | #include "symlist.h" |
e9071366 AD |
37 | #include "scan-gram.h" |
38 | #include "scan-code.h" | |
e9955c83 | 39 | |
b7295522 PE |
40 | #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N) |
41 | static YYLTYPE lloc_default (YYLTYPE const *, int); | |
4cdb01db | 42 | |
b233d555 | 43 | #define YY_LOCATION_PRINT(File, Loc) \ |
f0064700 | 44 | location_print (File, Loc) |
b233d555 | 45 | |
b50d2359 AD |
46 | static void version_check (location const *loc, char const *version); |
47 | ||
6e649e65 | 48 | /* Request detailed syntax error messages, and pass them to GRAM_ERROR. |
ad8a3efc | 49 | FIXME: depends on the undocumented availability of YYLLOC. */ |
e9955c83 AD |
50 | #undef yyerror |
51 | #define yyerror(Msg) \ | |
f0064700 | 52 | gram_error (&yylloc, Msg) |
3d2cbc26 | 53 | static void gram_error (location const *, char const *); |
e9955c83 | 54 | |
33ad1a9c PE |
55 | static char const *char_name (char); |
56 | ||
2ce4ed68 AD |
57 | /** Add a lex-param or a parse-param. |
58 | * | |
59 | * \param type \a lex_param or \a parse_param | |
60 | * \param decl the formal argument | |
61 | * \param loc the location in the source. | |
62 | */ | |
63 | static void add_param (char const *type, char *decl, location loc); | |
64 | ||
1773ceee | 65 | |
04098407 | 66 | static symbol_class current_class = unknown_sym; |
ddc8ede1 | 67 | static uniqstr current_type = NULL; |
877519f8 PE |
68 | static symbol *current_lhs; |
69 | static location current_lhs_location; | |
04098407 | 70 | static int current_prec = 0; |
d42cf844 | 71 | |
cb48f191 PE |
72 | #define YYTYPE_INT16 int_fast16_t |
73 | #define YYTYPE_INT8 int_fast8_t | |
74 | #define YYTYPE_UINT16 uint_fast16_t | |
75 | #define YYTYPE_UINT8 uint_fast8_t | |
e9955c83 AD |
76 | %} |
77 | ||
12ffdd28 | 78 | %debug |
82b248ad | 79 | %verbose |
12ffdd28 PE |
80 | %defines |
81 | %locations | |
82 | %pure-parser | |
83 | %error-verbose | |
84 | %defines | |
85 | %name-prefix="gram_" | |
219741d8 | 86 | %expect 0 |
12ffdd28 | 87 | |
cd3684cf AD |
88 | %initial-action |
89 | { | |
90 | /* Bison's grammar can initial empty locations, hence a default | |
91 | location is needed. */ | |
4a678af8 JD |
92 | boundary_set (&@$.start, current_file, 1, 1); |
93 | boundary_set (&@$.end, current_file, 1, 1); | |
cd3684cf | 94 | } |
e9955c83 AD |
95 | |
96 | /* Only NUMBERS have a value. */ | |
97 | %union | |
98 | { | |
3d2cbc26 PE |
99 | symbol *symbol; |
100 | symbol_list *list; | |
e9955c83 | 101 | int integer; |
3d2cbc26 PE |
102 | char *chars; |
103 | assoc assoc; | |
104 | uniqstr uniqstr; | |
58d7a1a1 | 105 | unsigned char character; |
e9955c83 AD |
106 | }; |
107 | ||
f9a85a15 | 108 | /* Define the tokens together with their human representation. */ |
3d38c03a AD |
109 | %token GRAM_EOF 0 "end of file" |
110 | %token STRING "string" | |
3d38c03a | 111 | %token INT "integer" |
e9955c83 | 112 | |
9280d3ef AD |
113 | %token PERCENT_TOKEN "%token" |
114 | %token PERCENT_NTERM "%nterm" | |
366eea36 | 115 | |
9280d3ef | 116 | %token PERCENT_TYPE "%type" |
e9071366 AD |
117 | %token PERCENT_DESTRUCTOR "%destructor" |
118 | %token PERCENT_PRINTER "%printer" | |
366eea36 | 119 | |
9280d3ef AD |
120 | %token PERCENT_LEFT "%left" |
121 | %token PERCENT_RIGHT "%right" | |
122 | %token PERCENT_NONASSOC "%nonassoc" | |
04e60654 | 123 | |
3d38c03a AD |
124 | %token PERCENT_PREC "%prec" |
125 | %token PERCENT_DPREC "%dprec" | |
126 | %token PERCENT_MERGE "%merge" | |
e9955c83 | 127 | |
e9955c83 | 128 | |
ae7453f2 AD |
129 | /*----------------------. |
130 | | Global Declarations. | | |
131 | `----------------------*/ | |
132 | ||
133 | %token | |
34f98f46 JD |
134 | PERCENT_AFTER_HEADER "%after-header" |
135 | PERCENT_BEFORE_HEADER "%before-header" | |
cd3684cf | 136 | PERCENT_DEBUG "%debug" |
39a06c25 | 137 | PERCENT_DEFAULT_PREC "%default-prec" |
cd3684cf AD |
138 | PERCENT_DEFINE "%define" |
139 | PERCENT_DEFINES "%defines" | |
34f98f46 | 140 | PERCENT_END_HEADER "%end-header" |
cd3684cf AD |
141 | PERCENT_ERROR_VERBOSE "%error-verbose" |
142 | PERCENT_EXPECT "%expect" | |
d6328241 | 143 | PERCENT_EXPECT_RR "%expect-rr" |
cd3684cf AD |
144 | PERCENT_FILE_PREFIX "%file-prefix" |
145 | PERCENT_GLR_PARSER "%glr-parser" | |
e9071366 AD |
146 | PERCENT_INITIAL_ACTION "%initial-action" |
147 | PERCENT_LEX_PARAM "%lex-param" | |
cd3684cf AD |
148 | PERCENT_LOCATIONS "%locations" |
149 | PERCENT_NAME_PREFIX "%name-prefix" | |
22fccf95 | 150 | PERCENT_NO_DEFAULT_PREC "%no-default-prec" |
cd3684cf AD |
151 | PERCENT_NO_LINES "%no-lines" |
152 | PERCENT_NONDETERMINISTIC_PARSER | |
f0064700 | 153 | "%nondeterministic-parser" |
cd3684cf | 154 | PERCENT_OUTPUT "%output" |
e9071366 | 155 | PERCENT_PARSE_PARAM "%parse-param" |
cd3684cf | 156 | PERCENT_PURE_PARSER "%pure-parser" |
f0064700 | 157 | PERCENT_REQUIRE "%require" |
cd3684cf AD |
158 | PERCENT_SKELETON "%skeleton" |
159 | PERCENT_START "%start" | |
34f98f46 | 160 | PERCENT_START_HEADER "%start-header" |
cd3684cf AD |
161 | PERCENT_TOKEN_TABLE "%token-table" |
162 | PERCENT_VERBOSE "%verbose" | |
163 | PERCENT_YACC "%yacc" | |
ae7453f2 | 164 | ; |
e9955c83 | 165 | |
58d7a1a1 AD |
166 | %token BRACED_CODE "{...}" |
167 | %token CHAR "char" | |
168 | %token EPILOGUE "epilogue" | |
3d38c03a | 169 | %token EQUAL "=" |
3d38c03a | 170 | %token ID "identifier" |
b7295522 | 171 | %token ID_COLON "identifier:" |
e9955c83 | 172 | %token PERCENT_PERCENT "%%" |
58d7a1a1 | 173 | %token PIPE "|" |
3d38c03a | 174 | %token PROLOGUE "%{...%}" |
58d7a1a1 AD |
175 | %token SEMICOLON ";" |
176 | %token TYPE "type" | |
177 | ||
178 | %type <character> CHAR | |
33ad1a9c | 179 | %printer { fputs (char_name ($$), stderr); } CHAR |
3d38c03a | 180 | |
2ce4ed68 AD |
181 | /* braceless is not to be used for rule or symbol actions, as it |
182 | calls translate_code. */ | |
183 | %type <chars> STRING "{...}" "%{...%}" EPILOGUE braceless content content.opt | |
33ad1a9c | 184 | %printer { fputs (quotearg_style (c_quoting_style, $$), stderr); } |
2ce4ed68 AD |
185 | STRING |
186 | %printer { fprintf (stderr, "{\n%s\n}", $$); } | |
187 | braceless content content.opt "{...}" "%{...%}" EPILOGUE | |
58d7a1a1 AD |
188 | |
189 | %type <uniqstr> TYPE ID ID_COLON | |
82b248ad | 190 | %printer { fprintf (stderr, "<%s>", $$); } TYPE |
33ad1a9c | 191 | %printer { fputs ($$, stderr); } ID |
58d7a1a1 AD |
192 | %printer { fprintf (stderr, "%s:", $$); } ID_COLON |
193 | ||
e9955c83 | 194 | %type <integer> INT |
82b248ad | 195 | %printer { fprintf (stderr, "%d", $$); } INT |
58d7a1a1 AD |
196 | |
197 | %type <symbol> id id_colon symbol string_as_id | |
198 | %printer { fprintf (stderr, "%s", $$->tag); } id symbol string_as_id | |
199 | %printer { fprintf (stderr, "%s:", $$->tag); } id_colon | |
200 | ||
2c569025 | 201 | %type <assoc> precedence_declarator |
1e0bab92 | 202 | %type <list> symbols.1 |
e9955c83 | 203 | %% |
2c569025 | 204 | |
8efe435c | 205 | input: |
2ce4ed68 | 206 | prologue_declarations "%%" grammar epilogue.opt |
e9955c83 AD |
207 | ; |
208 | ||
2c569025 AD |
209 | |
210 | /*------------------------------------. | |
211 | | Declarations: before the first %%. | | |
212 | `------------------------------------*/ | |
213 | ||
2ce4ed68 | 214 | prologue_declarations: |
e9955c83 | 215 | /* Nothing */ |
2ce4ed68 | 216 | | prologue_declarations prologue_declaration |
e9955c83 AD |
217 | ; |
218 | ||
2ce4ed68 | 219 | prologue_declaration: |
2c569025 | 220 | grammar_declaration |
2ce4ed68 AD |
221 | | "%{...%}" { prologue_augment (translate_code ($1, @1), @1, union_seen); } |
222 | | "%after-header" braceless { prologue_augment ($2, @2, true); } | |
223 | | "%before-header" braceless { prologue_augment ($2, @2, false); } | |
224 | | "%debug" { debug_flag = true; } | |
225 | | "%define" STRING content.opt { muscle_insert ($2, $3); } | |
226 | | "%defines" { defines_flag = true; } | |
227 | | "%end-header" braceless { muscle_code_grow ("end_header", $2, @2); } | |
228 | | "%error-verbose" { error_verbose = true; } | |
229 | | "%expect" INT { expected_sr_conflicts = $2; } | |
230 | | "%expect-rr" INT { expected_rr_conflicts = $2; } | |
231 | | "%file-prefix" "=" STRING { spec_file_prefix = $3; } | |
cd3684cf | 232 | | "%glr-parser" |
c66dfadd PE |
233 | { |
234 | nondeterministic_parser = true; | |
235 | glr_parser = true; | |
236 | } | |
e9071366 | 237 | | "%initial-action" "{...}" |
c66dfadd | 238 | { |
e9071366 | 239 | muscle_code_grow ("initial_action", translate_symbol_action ($2, @2), @2); |
c66dfadd | 240 | } |
2ce4ed68 AD |
241 | | "%lex-param" "{...}" { add_param ("lex_param", $2, @2); } |
242 | | "%locations" { locations_flag = true; } | |
243 | | "%name-prefix" "=" STRING { spec_name_prefix = $3; } | |
244 | | "%no-lines" { no_lines_flag = true; } | |
245 | | "%nondeterministic-parser" { nondeterministic_parser = true; } | |
246 | | "%output" "=" STRING { spec_outfile = $3; } | |
247 | | "%parse-param" "{...}" { add_param ("parse_param", $2, @2); } | |
248 | | "%pure-parser" { pure_parser = true; } | |
249 | | "%require" STRING { version_check (&@2, $2); } | |
250 | | "%skeleton" STRING { skeleton = $2; } | |
251 | | "%start-header" braceless { muscle_code_grow ("start_header", $2, @2); } | |
252 | | "%token-table" { token_table_flag = true; } | |
253 | | "%verbose" { report_flag = report_states; } | |
254 | | "%yacc" { yacc_flag = true; } | |
cd3684cf | 255 | | /*FIXME: Err? What is this horror doing here? */ ";" |
e9955c83 AD |
256 | ; |
257 | ||
2c569025 AD |
258 | grammar_declaration: |
259 | precedence_declaration | |
260 | | symbol_declaration | |
e9955c83 AD |
261 | | "%start" symbol |
262 | { | |
8efe435c | 263 | grammar_start_symbol_set ($2, @2); |
e9955c83 | 264 | } |
ec5479ce JD |
265 | | "%destructor" "{...}" |
266 | { | |
267 | default_destructor_set (translate_symbol_action ($2, @2), @2); | |
268 | } | |
e9071366 | 269 | | "%destructor" "{...}" symbols.1 |
9280d3ef | 270 | { |
3d2cbc26 | 271 | symbol_list *list; |
e9071366 AD |
272 | const char *action = translate_symbol_action ($2, @2); |
273 | for (list = $3; list; list = list->next) | |
274 | symbol_destructor_set (list->sym, action, @2); | |
275 | symbol_list_free ($3); | |
9280d3ef | 276 | } |
e9071366 | 277 | | "%printer" "{...}" symbols.1 |
366eea36 | 278 | { |
3d2cbc26 | 279 | symbol_list *list; |
e9071366 AD |
280 | const char *action = translate_symbol_action ($2, @2); |
281 | for (list = $3; list; list = list->next) | |
282 | symbol_printer_set (list->sym, action, @2); | |
283 | symbol_list_free ($3); | |
366eea36 | 284 | } |
ec5479ce JD |
285 | | "%printer" "{...}" |
286 | { | |
287 | default_printer_set (translate_symbol_action ($2, @2), @2); | |
288 | } | |
22fccf95 | 289 | | "%default-prec" |
39a06c25 | 290 | { |
22fccf95 PE |
291 | default_prec = true; |
292 | } | |
293 | | "%no-default-prec" | |
294 | { | |
295 | default_prec = false; | |
39a06c25 | 296 | } |
2c569025 AD |
297 | ; |
298 | ||
58d7a1a1 AD |
299 | |
300 | /*----------* | |
301 | | %union. | | |
302 | *----------*/ | |
303 | ||
304 | %token PERCENT_UNION "%union"; | |
305 | ||
306 | union_name: | |
307 | /* Nothing. */ {} | |
308 | | ID { muscle_code_grow ("union_name", $1, @1); } | |
309 | ; | |
310 | ||
311 | grammar_declaration: | |
312 | "%union" union_name "{...}" | |
313 | { | |
314 | char const *body = $3; | |
315 | ||
50a33993 JD |
316 | /* Concatenate the %union bodies. If this is the first %union, make sure |
317 | the synchronization line appears after the opening '{' so as not to | |
318 | confuse Doxygen. Otherwise, turn the previous %union's trailing '}' | |
319 | into '\n', and omit the new %union's leading '{'. */ | |
320 | if (!union_seen) | |
321 | { | |
322 | muscle_grow ("stype", "{", ""); | |
323 | } | |
324 | else | |
58d7a1a1 | 325 | { |
58d7a1a1 AD |
326 | char *code = muscle_find ("stype"); |
327 | code[strlen (code) - 1] = '\n'; | |
58d7a1a1 | 328 | } |
50a33993 | 329 | body++; |
58d7a1a1 | 330 | |
ddc8ede1 | 331 | union_seen = true; |
58d7a1a1 AD |
332 | muscle_code_grow ("stype", body, @3); |
333 | } | |
334 | ; | |
335 | ||
336 | ||
337 | ||
338 | ||
2c569025 AD |
339 | symbol_declaration: |
340 | "%nterm" { current_class = nterm_sym; } symbol_defs.1 | |
e9955c83 AD |
341 | { |
342 | current_class = unknown_sym; | |
343 | current_type = NULL; | |
344 | } | |
2c569025 | 345 | | "%token" { current_class = token_sym; } symbol_defs.1 |
e9955c83 | 346 | { |
2c569025 | 347 | current_class = unknown_sym; |
e9955c83 AD |
348 | current_type = NULL; |
349 | } | |
1e0bab92 | 350 | | "%type" TYPE symbols.1 |
e9955c83 | 351 | { |
ddc8ede1 | 352 | tag_seen = true; |
3d2cbc26 | 353 | symbol_list *list; |
1e0bab92 | 354 | for (list = $3; list; list = list->next) |
1a31ed21 | 355 | symbol_type_set (list->sym, $2, @2); |
dafdc66f | 356 | symbol_list_free ($3); |
e9955c83 AD |
357 | } |
358 | ; | |
359 | ||
2c569025 | 360 | precedence_declaration: |
1e0bab92 AD |
361 | precedence_declarator type.opt symbols.1 |
362 | { | |
3d2cbc26 | 363 | symbol_list *list; |
1e0bab92 AD |
364 | ++current_prec; |
365 | for (list = $3; list; list = list->next) | |
366 | { | |
1a31ed21 AD |
367 | symbol_type_set (list->sym, current_type, @2); |
368 | symbol_precedence_set (list->sym, current_prec, $1, @1); | |
1e0bab92 | 369 | } |
dafdc66f | 370 | symbol_list_free ($3); |
1e0bab92 AD |
371 | current_type = NULL; |
372 | } | |
e9955c83 AD |
373 | ; |
374 | ||
2c569025 | 375 | precedence_declarator: |
e9955c83 AD |
376 | "%left" { $$ = left_assoc; } |
377 | | "%right" { $$ = right_assoc; } | |
378 | | "%nonassoc" { $$ = non_assoc; } | |
379 | ; | |
380 | ||
381 | type.opt: | |
87fbb0bf | 382 | /* Nothing. */ { current_type = NULL; } |
ddc8ede1 | 383 | | TYPE { current_type = $1; tag_seen = true; } |
e9955c83 AD |
384 | ; |
385 | ||
386 | /* One or more nonterminals to be %typed. */ | |
1e0bab92 AD |
387 | symbols.1: |
388 | symbol { $$ = symbol_list_new ($1, @1); } | |
389 | | symbols.1 symbol { $$ = symbol_list_prepend ($1, $2, @2); } | |
e9955c83 AD |
390 | ; |
391 | ||
e9955c83 AD |
392 | /* One token definition. */ |
393 | symbol_def: | |
394 | TYPE | |
395 | { | |
396 | current_type = $1; | |
ddc8ede1 | 397 | tag_seen = true; |
e9955c83 | 398 | } |
58d7a1a1 | 399 | | id |
e9955c83 | 400 | { |
073f9288 | 401 | symbol_class_set ($1, current_class, @1, true); |
1a31ed21 | 402 | symbol_type_set ($1, current_type, @1); |
e9955c83 | 403 | } |
58d7a1a1 | 404 | | id INT |
e9955c83 | 405 | { |
073f9288 | 406 | symbol_class_set ($1, current_class, @1, true); |
1a31ed21 | 407 | symbol_type_set ($1, current_type, @1); |
e776192e | 408 | symbol_user_token_number_set ($1, $2, @2); |
e9955c83 | 409 | } |
58d7a1a1 | 410 | | id string_as_id |
e9955c83 | 411 | { |
073f9288 | 412 | symbol_class_set ($1, current_class, @1, true); |
1a31ed21 | 413 | symbol_type_set ($1, current_type, @1); |
a5d50994 | 414 | symbol_make_alias ($1, $2, @$); |
e9955c83 | 415 | } |
58d7a1a1 | 416 | | id INT string_as_id |
e9955c83 | 417 | { |
073f9288 | 418 | symbol_class_set ($1, current_class, @1, true); |
1a31ed21 | 419 | symbol_type_set ($1, current_type, @1); |
e776192e | 420 | symbol_user_token_number_set ($1, $2, @2); |
a5d50994 | 421 | symbol_make_alias ($1, $3, @$); |
e9955c83 AD |
422 | } |
423 | ; | |
424 | ||
425 | /* One or more symbol definitions. */ | |
426 | symbol_defs.1: | |
427 | symbol_def | |
e9955c83 | 428 | | symbol_defs.1 symbol_def |
e9955c83 AD |
429 | ; |
430 | ||
2c569025 AD |
431 | |
432 | /*------------------------------------------. | |
433 | | The grammar section: between the two %%. | | |
434 | `------------------------------------------*/ | |
435 | ||
436 | grammar: | |
1921f1d7 AD |
437 | rules_or_grammar_declaration |
438 | | grammar rules_or_grammar_declaration | |
439 | ; | |
440 | ||
441 | /* As a Bison extension, one can use the grammar declarations in the | |
b7295522 | 442 | body of the grammar. */ |
1921f1d7 | 443 | rules_or_grammar_declaration: |
e9955c83 | 444 | rules |
8d0a98bb | 445 | | grammar_declaration ";" |
b275314e AD |
446 | | error ";" |
447 | { | |
448 | yyerrok; | |
449 | } | |
e9955c83 AD |
450 | ; |
451 | ||
452 | rules: | |
58d7a1a1 | 453 | id_colon { current_lhs = $1; current_lhs_location = @1; } rhses.1 |
e9955c83 AD |
454 | ; |
455 | ||
456 | rhses.1: | |
8f3596a6 AD |
457 | rhs { grammar_current_rule_end (@1); } |
458 | | rhses.1 "|" rhs { grammar_current_rule_end (@3); } | |
8d0a98bb | 459 | | rhses.1 ";" |
e9955c83 AD |
460 | ; |
461 | ||
462 | rhs: | |
463 | /* Nothing. */ | |
8f3596a6 | 464 | { grammar_current_rule_begin (current_lhs, current_lhs_location); } |
e9955c83 | 465 | | rhs symbol |
8efe435c | 466 | { grammar_current_rule_symbol_append ($2, @2); } |
e9071366 | 467 | | rhs "{...}" |
381ecb06 | 468 | { grammar_current_rule_action_append ($2, @2); } |
e9955c83 | 469 | | rhs "%prec" symbol |
e776192e | 470 | { grammar_current_rule_prec_set ($3, @3); } |
676385e2 PH |
471 | | rhs "%dprec" INT |
472 | { grammar_current_rule_dprec_set ($3, @3); } | |
473 | | rhs "%merge" TYPE | |
474 | { grammar_current_rule_merge_set ($3, @3); } | |
e9955c83 AD |
475 | ; |
476 | ||
58d7a1a1 | 477 | |
2ce4ed68 AD |
478 | /*-----------* |
479 | | content. | | |
480 | *-----------*/ | |
481 | ||
482 | content: | |
483 | STRING | |
484 | | braceless | |
485 | ; | |
486 | ||
487 | /* Some content or "1" by default. */ | |
488 | content.opt: | |
489 | /* Nothing. */ | |
490 | { | |
491 | static char one[] = "1"; | |
492 | $$ = one; | |
493 | } | |
494 | | content | |
495 | ; | |
496 | ||
497 | ||
498 | braceless: | |
499 | "{...}" | |
500 | { | |
501 | $1[strlen ($1) - 1] = '\n'; | |
502 | $$ = translate_code ($1 + 1, @1); | |
503 | } | |
504 | ; | |
505 | ||
506 | ||
58d7a1a1 AD |
507 | /*---------------* |
508 | | Identifiers. | | |
509 | *---------------*/ | |
510 | ||
33ad1a9c PE |
511 | /* Identifiers are returned as uniqstr values by the scanner. |
512 | Depending on their use, we may need to make them genuine symbols. */ | |
58d7a1a1 AD |
513 | |
514 | id: | |
33ad1a9c | 515 | ID |
203b9274 | 516 | { $$ = symbol_from_uniqstr ($1, @1); } |
33ad1a9c PE |
517 | | CHAR |
518 | { | |
519 | $$ = symbol_get (char_name ($1), @1); | |
520 | symbol_class_set ($$, token_sym, @1, false); | |
521 | symbol_user_token_number_set ($$, $1, @1); | |
522 | } | |
58d7a1a1 AD |
523 | ; |
524 | ||
525 | id_colon: | |
203b9274 | 526 | ID_COLON { $$ = symbol_from_uniqstr ($1, @1); } |
58d7a1a1 AD |
527 | ; |
528 | ||
529 | ||
e9955c83 | 530 | symbol: |
58d7a1a1 AD |
531 | id |
532 | | string_as_id | |
e9955c83 AD |
533 | ; |
534 | ||
ca407bdf | 535 | /* A string used as an ID: quote it. */ |
e9955c83 AD |
536 | string_as_id: |
537 | STRING | |
538 | { | |
ca407bdf | 539 | $$ = symbol_get (quotearg_style (c_quoting_style, $1), @1); |
073f9288 | 540 | symbol_class_set ($$, token_sym, @1, false); |
e9955c83 AD |
541 | } |
542 | ; | |
543 | ||
e9955c83 AD |
544 | epilogue.opt: |
545 | /* Nothing. */ | |
e9955c83 AD |
546 | | "%%" EPILOGUE |
547 | { | |
e9071366 AD |
548 | muscle_code_grow ("epilogue", translate_code ($2, @2), @2); |
549 | gram_scanner_last_string_free (); | |
e9955c83 AD |
550 | } |
551 | ; | |
552 | ||
e9955c83 | 553 | %% |
b7295522 PE |
554 | |
555 | ||
556 | /* Return the location of the left-hand side of a rule whose | |
557 | right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in | |
558 | the right-hand side, and return an empty location equal to the end | |
559 | boundary of RHS[0] if the right-hand side is empty. */ | |
560 | ||
561 | static YYLTYPE | |
562 | lloc_default (YYLTYPE const *rhs, int n) | |
563 | { | |
564 | int i; | |
a737b216 | 565 | YYLTYPE loc; |
62cb8a99 PE |
566 | |
567 | /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;". | |
568 | The bug is fixed in 7.4.2m, but play it safe for now. */ | |
569 | loc.start = rhs[n].end; | |
570 | loc.end = rhs[n].end; | |
b7295522 | 571 | |
5320ca4d PE |
572 | /* Ignore empty nonterminals the start of the the right-hand side. |
573 | Do not bother to ignore them at the end of the right-hand side, | |
574 | since empty nonterminals have the same end as their predecessors. */ | |
b7295522 PE |
575 | for (i = 1; i <= n; i++) |
576 | if (! equal_boundaries (rhs[i].start, rhs[i].end)) | |
577 | { | |
a737b216 | 578 | loc.start = rhs[i].start; |
b7295522 PE |
579 | break; |
580 | } | |
581 | ||
a737b216 | 582 | return loc; |
b7295522 PE |
583 | } |
584 | ||
585 | ||
586 | /* Add a lex-param or a parse-param (depending on TYPE) with | |
587 | declaration DECL and location LOC. */ | |
588 | ||
1773ceee | 589 | static void |
e9ce5688 | 590 | add_param (char const *type, char *decl, location loc) |
1773ceee | 591 | { |
ead9e56e | 592 | static char const alphanum[26 + 26 + 1 + 10] = |
1773ceee PE |
593 | "abcdefghijklmnopqrstuvwxyz" |
594 | "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
ead9e56e PE |
595 | "_" |
596 | "0123456789"; | |
1773ceee | 597 | char const *name_start = NULL; |
e9ce5688 | 598 | char *p; |
1773ceee | 599 | |
e503aa60 AD |
600 | /* Stop on last actual character. */ |
601 | for (p = decl; p[1]; p++) | |
ead9e56e PE |
602 | if ((p == decl |
603 | || ! memchr (alphanum, p[-1], sizeof alphanum)) | |
604 | && memchr (alphanum, p[0], sizeof alphanum - 10)) | |
1773ceee PE |
605 | name_start = p; |
606 | ||
ead9e56e PE |
607 | /* Strip the surrounding '{' and '}', and any blanks just inside |
608 | the braces. */ | |
609 | while (*--p == ' ' || *p == '\t') | |
610 | continue; | |
e503aa60 | 611 | p[1] = '\0'; |
ead9e56e PE |
612 | while (*++decl == ' ' || *decl == '\t') |
613 | continue; | |
e9ce5688 | 614 | |
1773ceee PE |
615 | if (! name_start) |
616 | complain_at (loc, _("missing identifier in parameter declaration")); | |
617 | else | |
618 | { | |
619 | char *name; | |
620 | size_t name_len; | |
621 | ||
622 | for (name_len = 1; | |
ead9e56e | 623 | memchr (alphanum, name_start[name_len], sizeof alphanum); |
1773ceee PE |
624 | name_len++) |
625 | continue; | |
626 | ||
627 | name = xmalloc (name_len + 1); | |
628 | memcpy (name, name_start, name_len); | |
629 | name[name_len] = '\0'; | |
630 | muscle_pair_list_grow (type, decl, name); | |
631 | free (name); | |
632 | } | |
633 | ||
e9071366 | 634 | gram_scanner_last_string_free (); |
1773ceee PE |
635 | } |
636 | ||
2ce4ed68 | 637 | |
b50d2359 AD |
638 | static void |
639 | version_check (location const *loc, char const *version) | |
640 | { | |
641 | if (strverscmp (version, PACKAGE_VERSION) > 0) | |
9b8a5ce0 AD |
642 | { |
643 | complain_at (*loc, "require bison %s, but have %s", | |
644 | version, PACKAGE_VERSION); | |
645 | exit (63); | |
646 | } | |
b50d2359 AD |
647 | } |
648 | ||
1fec91df | 649 | static void |
3d2cbc26 | 650 | gram_error (location const *loc, char const *msg) |
e9955c83 | 651 | { |
ad8a3efc | 652 | complain_at (*loc, "%s", msg); |
e9955c83 | 653 | } |
e9ce5688 PE |
654 | |
655 | char const * | |
656 | token_name (int type) | |
657 | { | |
fc01665e | 658 | return yytname[YYTRANSLATE (type)]; |
e9ce5688 | 659 | } |
33ad1a9c PE |
660 | |
661 | static char const * | |
662 | char_name (char c) | |
663 | { | |
664 | if (c == '\'') | |
665 | return "'\\''"; | |
666 | else | |
667 | { | |
668 | char buf[4]; | |
669 | buf[0] = '\''; buf[1] = c; buf[2] = '\''; buf[3] = '\0'; | |
670 | return quotearg_style (escape_quoting_style, buf); | |
671 | } | |
672 | } |