]> git.saurik.com Git - bison.git/blob - src/parse-gram.c
50b4fb8cf5c702d7558b44d247be925cf3751423
[bison.git] / src / parse-gram.c
1
2 /* A Bison parser, made by GNU Bison 2.3a+. */
3
4 /* Skeleton implementation for Bison's Yacc-like parsers in C
5
6 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
7 Free Software Foundation, Inc.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
23
24 /* As a special exception, you may create a larger work that contains
25 part or all of the Bison parser skeleton and distribute that work
26 under terms of your choice, so long as that work isn't itself a
27 parser generator using the skeleton or a modified version thereof
28 as a parser skeleton. Alternatively, if you modify or redistribute
29 the parser skeleton itself, you may (at your option) remove this
30 special exception, which will cause the skeleton and the resulting
31 Bison output files to be licensed under the GNU General Public
32 License without this special exception.
33
34 This special exception was added by the Free Software Foundation in
35 version 2.2 of Bison. */
36
37 /* C LALR(1) parser skeleton written by Richard Stallman, by
38 simplifying the original so-called "semantic" parser. */
39
40 /* All symbols defined below should begin with yy or YY, to avoid
41 infringing on user name space. This should be done even for local
42 variables, as they might otherwise be expanded by user macros.
43 There are some unavoidable exceptions within include files to
44 define necessary library symbols; they are noted "INFRINGES ON
45 USER NAME SPACE" below. */
46
47 /* Identify Bison output. */
48 #define YYBISON 1
49
50 /* Bison version. */
51 #define YYBISON_VERSION "2.3a+"
52
53 /* Skeleton name. */
54 #define YYSKELETON_NAME "yacc.c"
55
56 /* Pure parsers. */
57 #define YYPURE 1
58
59 /* Push parsers. */
60 #define YYPUSH 0
61
62 /* Pull parsers. */
63 #define YYPULL 1
64
65 /* Using locations. */
66 #define YYLSP_NEEDED 1
67
68 /* Substitute the variable and function names. */
69 #define yyparse gram_parse
70 #define yylex gram_lex
71 #define yyerror gram_error
72 #define yylval gram_lval
73 #define yychar gram_char
74 #define yydebug gram_debug
75 #define yynerrs gram_nerrs
76 #define yylloc gram_lloc
77
78 /* Copy the first part of user declarations. */
79
80 /* Line 176 of yacc.c */
81 #line 1 "parse-gram.y"
82 /* Bison Grammar Parser -*- C -*-
83
84 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation,
85 Inc.
86
87 This file is part of Bison, the GNU Compiler Compiler.
88
89 This program is free software; you can redistribute it and/or modify
90 it under the terms of the GNU General Public License as published by
91 the Free Software Foundation; either version 2 of the License, or
92 (at your option) any later version.
93
94 This program is distributed in the hope that it will be useful,
95 but WITHOUT ANY WARRANTY; without even the implied warranty of
96 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
97 GNU General Public License for more details.
98
99 You should have received a copy of the GNU General Public License
100 along with this program; if not, write to the Free Software
101 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
102 02110-1301 USA
103 */
104
105 #include <config.h>
106 #include "system.h"
107
108 #include <strverscmp.h>
109
110 #include "complain.h"
111 #include "conflicts.h"
112 #include "files.h"
113 #include "getargs.h"
114 #include "gram.h"
115 #include "muscle_tab.h"
116 #include "quotearg.h"
117 #include "reader.h"
118 #include "symlist.h"
119 #include "scan-gram.h"
120 #include "scan-code.h"
121
122 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
123 static YYLTYPE lloc_default (YYLTYPE const *, int);
124
125 #define YY_LOCATION_PRINT(File, Loc) \
126 location_print (File, Loc)
127
128 static void version_check (location const *loc, char const *version);
129
130 /* Request detailed syntax error messages, and pass them to GRAM_ERROR.
131 FIXME: depends on the undocumented availability of YYLLOC. */
132 #undef yyerror
133 #define yyerror(Msg) \
134 gram_error (&yylloc, Msg)
135 static void gram_error (location const *, char const *);
136
137 static char const *char_name (char);
138
139 /** Add a lex-param or a parse-param.
140 *
141 * \param type \a lex_param or \a parse_param
142 * \param decl the formal argument
143 * \param loc the location in the source.
144 */
145 static void add_param (char const *type, char *decl, location loc);
146
147
148 static symbol_class current_class = unknown_sym;
149 static uniqstr current_type = NULL;
150 static symbol *current_lhs;
151 static location current_lhs_location;
152 static int current_prec = 0;
153
154 #define YYTYPE_INT16 int_fast16_t
155 #define YYTYPE_INT8 int_fast8_t
156 #define YYTYPE_UINT16 uint_fast16_t
157 #define YYTYPE_UINT8 uint_fast8_t
158
159
160 /* Line 176 of yacc.c */
161 #line 162 "parse-gram.c"
162
163 /* Enabling traces. */
164 #ifndef YYDEBUG
165 # define YYDEBUG 1
166 #endif
167
168 /* Enabling verbose error messages. */
169 #ifdef YYERROR_VERBOSE
170 # undef YYERROR_VERBOSE
171 # define YYERROR_VERBOSE 1
172 #else
173 # define YYERROR_VERBOSE 1
174 #endif
175
176 /* Enabling the token table. */
177 #ifndef YYTOKEN_TABLE
178 # define YYTOKEN_TABLE 0
179 #endif
180
181
182 /* Tokens. */
183 #ifndef YYTOKENTYPE
184 # define YYTOKENTYPE
185 /* Put the tokens into the symbol table, so that GDB and other debuggers
186 know about them. */
187 enum yytokentype {
188 GRAM_EOF = 0,
189 STRING = 258,
190 INT = 259,
191 PERCENT_TOKEN = 260,
192 PERCENT_NTERM = 261,
193 PERCENT_TYPE = 262,
194 PERCENT_DESTRUCTOR = 263,
195 PERCENT_PRINTER = 264,
196 PERCENT_LEFT = 265,
197 PERCENT_RIGHT = 266,
198 PERCENT_NONASSOC = 267,
199 PERCENT_PREC = 268,
200 PERCENT_DPREC = 269,
201 PERCENT_MERGE = 270,
202 PERCENT_CODE = 271,
203 PERCENT_DEBUG = 272,
204 PERCENT_DEFAULT_PREC = 273,
205 PERCENT_DEFINE = 274,
206 PERCENT_DEFINES = 275,
207 PERCENT_ERROR_VERBOSE = 276,
208 PERCENT_EXPECT = 277,
209 PERCENT_EXPECT_RR = 278,
210 PERCENT_FILE_PREFIX = 279,
211 PERCENT_GLR_PARSER = 280,
212 PERCENT_INITIAL_ACTION = 281,
213 PERCENT_LANGUAGE = 282,
214 PERCENT_LEX_PARAM = 283,
215 PERCENT_LOCATIONS = 284,
216 PERCENT_NAME_PREFIX = 285,
217 PERCENT_NO_DEFAULT_PREC = 286,
218 PERCENT_NO_LINES = 287,
219 PERCENT_NONDETERMINISTIC_PARSER = 288,
220 PERCENT_OUTPUT = 289,
221 PERCENT_PARSE_PARAM = 290,
222 PERCENT_PURE_PARSER = 291,
223 PERCENT_PUSH_PARSER = 292,
224 PERCENT_PUSH_PULL_PARSER = 293,
225 PERCENT_REQUIRE = 294,
226 PERCENT_SKELETON = 295,
227 PERCENT_START = 296,
228 PERCENT_TOKEN_TABLE = 297,
229 PERCENT_VERBOSE = 298,
230 PERCENT_YACC = 299,
231 BRACED_CODE = 300,
232 CHAR = 301,
233 EPILOGUE = 302,
234 EQUAL = 303,
235 ID = 304,
236 ID_COLON = 305,
237 PERCENT_PERCENT = 306,
238 PIPE = 307,
239 PROLOGUE = 308,
240 SEMICOLON = 309,
241 TYPE = 310,
242 TYPE_TAG_ANY = 311,
243 TYPE_TAG_NONE = 312,
244 PERCENT_UNION = 313
245 };
246 #endif
247 /* Tokens. */
248 #define GRAM_EOF 0
249 #define STRING 258
250 #define INT 259
251 #define PERCENT_TOKEN 260
252 #define PERCENT_NTERM 261
253 #define PERCENT_TYPE 262
254 #define PERCENT_DESTRUCTOR 263
255 #define PERCENT_PRINTER 264
256 #define PERCENT_LEFT 265
257 #define PERCENT_RIGHT 266
258 #define PERCENT_NONASSOC 267
259 #define PERCENT_PREC 268
260 #define PERCENT_DPREC 269
261 #define PERCENT_MERGE 270
262 #define PERCENT_CODE 271
263 #define PERCENT_DEBUG 272
264 #define PERCENT_DEFAULT_PREC 273
265 #define PERCENT_DEFINE 274
266 #define PERCENT_DEFINES 275
267 #define PERCENT_ERROR_VERBOSE 276
268 #define PERCENT_EXPECT 277
269 #define PERCENT_EXPECT_RR 278
270 #define PERCENT_FILE_PREFIX 279
271 #define PERCENT_GLR_PARSER 280
272 #define PERCENT_INITIAL_ACTION 281
273 #define PERCENT_LANGUAGE 282
274 #define PERCENT_LEX_PARAM 283
275 #define PERCENT_LOCATIONS 284
276 #define PERCENT_NAME_PREFIX 285
277 #define PERCENT_NO_DEFAULT_PREC 286
278 #define PERCENT_NO_LINES 287
279 #define PERCENT_NONDETERMINISTIC_PARSER 288
280 #define PERCENT_OUTPUT 289
281 #define PERCENT_PARSE_PARAM 290
282 #define PERCENT_PURE_PARSER 291
283 #define PERCENT_PUSH_PARSER 292
284 #define PERCENT_PUSH_PULL_PARSER 293
285 #define PERCENT_REQUIRE 294
286 #define PERCENT_SKELETON 295
287 #define PERCENT_START 296
288 #define PERCENT_TOKEN_TABLE 297
289 #define PERCENT_VERBOSE 298
290 #define PERCENT_YACC 299
291 #define BRACED_CODE 300
292 #define CHAR 301
293 #define EPILOGUE 302
294 #define EQUAL 303
295 #define ID 304
296 #define ID_COLON 305
297 #define PERCENT_PERCENT 306
298 #define PIPE 307
299 #define PROLOGUE 308
300 #define SEMICOLON 309
301 #define TYPE 310
302 #define TYPE_TAG_ANY 311
303 #define TYPE_TAG_NONE 312
304 #define PERCENT_UNION 313
305
306
307
308
309 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
310 typedef union YYSTYPE
311 {
312 /* Line 210 of yacc.c */
313 #line 97 "parse-gram.y"
314
315 symbol *symbol;
316 symbol_list *list;
317 int integer;
318 char const *chars;
319 char *code;
320 assoc assoc;
321 uniqstr uniqstr;
322 unsigned char character;
323 }
324
325 /* Line 210 of yacc.c */
326 #line 327 "parse-gram.c"
327 YYSTYPE;
328 # define YYSTYPE_IS_TRIVIAL 1
329 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
330 # define YYSTYPE_IS_DECLARED 1
331 #endif
332
333 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
334 typedef struct YYLTYPE
335 {
336 int first_line;
337 int first_column;
338 int last_line;
339 int last_column;
340 } YYLTYPE;
341 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
342 # define YYLTYPE_IS_DECLARED 1
343 # define YYLTYPE_IS_TRIVIAL 1
344 #endif
345
346
347 /* Copy the second part of user declarations. */
348
349
350 /* Line 233 of yacc.c */
351 #line 352 "parse-gram.c"
352
353 #ifdef short
354 # undef short
355 #endif
356
357 #ifdef YYTYPE_UINT8
358 typedef YYTYPE_UINT8 yytype_uint8;
359 #else
360 typedef unsigned char yytype_uint8;
361 #endif
362
363 #ifdef YYTYPE_INT8
364 typedef YYTYPE_INT8 yytype_int8;
365 #elif (defined __STDC__ || defined __C99__FUNC__ \
366 || defined __cplusplus || defined _MSC_VER)
367 typedef signed char yytype_int8;
368 #else
369 typedef short int yytype_int8;
370 #endif
371
372 #ifdef YYTYPE_UINT16
373 typedef YYTYPE_UINT16 yytype_uint16;
374 #else
375 typedef unsigned short int yytype_uint16;
376 #endif
377
378 #ifdef YYTYPE_INT16
379 typedef YYTYPE_INT16 yytype_int16;
380 #else
381 typedef short int yytype_int16;
382 #endif
383
384 #ifndef YYSIZE_T
385 # ifdef __SIZE_TYPE__
386 # define YYSIZE_T __SIZE_TYPE__
387 # elif defined size_t
388 # define YYSIZE_T size_t
389 # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
390 || defined __cplusplus || defined _MSC_VER)
391 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
392 # define YYSIZE_T size_t
393 # else
394 # define YYSIZE_T unsigned int
395 # endif
396 #endif
397
398 #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
399
400 #ifndef YY_
401 # if YYENABLE_NLS
402 # if ENABLE_NLS
403 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
404 # define YY_(msgid) dgettext ("bison-runtime", msgid)
405 # endif
406 # endif
407 # ifndef YY_
408 # define YY_(msgid) msgid
409 # endif
410 #endif
411
412 /* Suppress unused-variable warnings by "using" E. */
413 #if ! defined lint || defined __GNUC__
414 # define YYUSE(e) ((void) (e))
415 #else
416 # define YYUSE(e) /* empty */
417 #endif
418
419 /* Identity function, used to suppress warnings about constant conditions. */
420 #ifndef lint
421 # define YYID(n) (n)
422 #else
423 #if (defined __STDC__ || defined __C99__FUNC__ \
424 || defined __cplusplus || defined _MSC_VER)
425 static int
426 YYID (int yyi)
427 #else
428 static int
429 YYID (yyi)
430 int yyi;
431 #endif
432 {
433 return yyi;
434 }
435 #endif
436
437 #if ! defined yyoverflow || YYERROR_VERBOSE
438
439 /* The parser invokes alloca or malloc; define the necessary symbols. */
440
441 # ifdef YYSTACK_USE_ALLOCA
442 # if YYSTACK_USE_ALLOCA
443 # ifdef __GNUC__
444 # define YYSTACK_ALLOC __builtin_alloca
445 # elif defined __BUILTIN_VA_ARG_INCR
446 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
447 # elif defined _AIX
448 # define YYSTACK_ALLOC __alloca
449 # elif defined _MSC_VER
450 # include <malloc.h> /* INFRINGES ON USER NAME SPACE */
451 # define alloca _alloca
452 # else
453 # define YYSTACK_ALLOC alloca
454 # if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
455 || defined __cplusplus || defined _MSC_VER)
456 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
457 # ifndef _STDLIB_H
458 # define _STDLIB_H 1
459 # endif
460 # endif
461 # endif
462 # endif
463 # endif
464
465 # ifdef YYSTACK_ALLOC
466 /* Pacify GCC's `empty if-body' warning. */
467 # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
468 # ifndef YYSTACK_ALLOC_MAXIMUM
469 /* The OS might guarantee only one guard page at the bottom of the stack,
470 and a page size can be as small as 4096 bytes. So we cannot safely
471 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
472 to allow for a few compiler-allocated temporary stack slots. */
473 # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
474 # endif
475 # else
476 # define YYSTACK_ALLOC YYMALLOC
477 # define YYSTACK_FREE YYFREE
478 # ifndef YYSTACK_ALLOC_MAXIMUM
479 # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
480 # endif
481 # if (defined __cplusplus && ! defined _STDLIB_H \
482 && ! ((defined YYMALLOC || defined malloc) \
483 && (defined YYFREE || defined free)))
484 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
485 # ifndef _STDLIB_H
486 # define _STDLIB_H 1
487 # endif
488 # endif
489 # ifndef YYMALLOC
490 # define YYMALLOC malloc
491 # if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
492 || defined __cplusplus || defined _MSC_VER)
493 void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
494 # endif
495 # endif
496 # ifndef YYFREE
497 # define YYFREE free
498 # if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
499 || defined __cplusplus || defined _MSC_VER)
500 void free (void *); /* INFRINGES ON USER NAME SPACE */
501 # endif
502 # endif
503 # endif
504 #endif /* ! defined yyoverflow || YYERROR_VERBOSE */
505
506
507 #if (! defined yyoverflow \
508 && (! defined __cplusplus \
509 || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
510 && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
511
512 /* A type that is properly aligned for any stack member. */
513 union yyalloc
514 {
515 yytype_int16 yyss;
516 YYSTYPE yyvs;
517 YYLTYPE yyls;
518 };
519
520 /* The size of the maximum gap between one aligned stack and the next. */
521 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
522
523 /* The size of an array large to enough to hold all stacks, each with
524 N elements. */
525 # define YYSTACK_BYTES(N) \
526 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
527 + 2 * YYSTACK_GAP_MAXIMUM)
528
529 /* Copy COUNT objects from FROM to TO. The source and destination do
530 not overlap. */
531 # ifndef YYCOPY
532 # if defined __GNUC__ && 1 < __GNUC__
533 # define YYCOPY(To, From, Count) \
534 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
535 # else
536 # define YYCOPY(To, From, Count) \
537 do \
538 { \
539 YYSIZE_T yyi; \
540 for (yyi = 0; yyi < (Count); yyi++) \
541 (To)[yyi] = (From)[yyi]; \
542 } \
543 while (YYID (0))
544 # endif
545 # endif
546
547 /* Relocate STACK from its old location to the new one. The
548 local variables YYSIZE and YYSTACKSIZE give the old and new number of
549 elements in the stack, and YYPTR gives the new location of the
550 stack. Advance YYPTR to a properly aligned location for the next
551 stack. */
552 # define YYSTACK_RELOCATE(Stack) \
553 do \
554 { \
555 YYSIZE_T yynewbytes; \
556 YYCOPY (&yyptr->Stack, Stack, yysize); \
557 Stack = &yyptr->Stack; \
558 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
559 yyptr += yynewbytes / sizeof (*yyptr); \
560 } \
561 while (YYID (0))
562
563 #endif
564
565 /* YYFINAL -- State number of the termination state. */
566 #define YYFINAL 3
567 /* YYLAST -- Last index in YYTABLE. */
568 #define YYLAST 187
569
570 /* YYNTOKENS -- Number of terminals. */
571 #define YYNTOKENS 59
572 /* YYNNTS -- Number of nonterminals. */
573 #define YYNNTS 31
574 /* YYNRULES -- Number of rules. */
575 #define YYNRULES 103
576 /* YYNRULES -- Number of states. */
577 #define YYNSTATES 141
578
579 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
580 #define YYUNDEFTOK 2
581 #define YYMAXUTOK 313
582
583 #define YYTRANSLATE(YYX) \
584 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
585
586 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
587 static const yytype_uint8 yytranslate[] =
588 {
589 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
590 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
591 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
592 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
593 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
594 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
595 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
596 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
597 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
598 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
599 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
600 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
601 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
602 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
603 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
604 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
605 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
606 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
607 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
608 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
609 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
610 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
611 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
612 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
613 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
614 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
615 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
616 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
617 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
618 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
619 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
620 55, 56, 57, 58
621 };
622
623 #if YYDEBUG
624 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
625 YYRHS. */
626 static const yytype_uint16 yyprhs[] =
627 {
628 0, 0, 3, 8, 9, 12, 14, 16, 18, 22,
629 24, 27, 29, 32, 35, 38, 42, 44, 47, 50,
630 53, 55, 58, 62, 64, 66, 69, 73, 76, 78,
631 80, 82, 85, 88, 90, 92, 94, 96, 98, 100,
632 103, 107, 111, 113, 115, 118, 122, 123, 125, 129,
633 130, 134, 135, 139, 143, 147, 149, 151, 153, 154,
634 156, 158, 161, 163, 166, 168, 170, 172, 174, 176,
635 178, 181, 184, 188, 190, 193, 195, 198, 200, 203,
636 206, 207, 211, 213, 217, 220, 221, 224, 227, 231,
637 235, 239, 241, 243, 244, 246, 248, 250, 252, 254,
638 256, 258, 260, 261
639 };
640
641 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
642 static const yytype_int8 yyrhs[] =
643 {
644 60, 0, -1, 61, 51, 76, 89, -1, -1, 61,
645 62, -1, 63, -1, 53, -1, 17, -1, 19, 3,
646 83, -1, 20, -1, 20, 3, -1, 21, -1, 22,
647 4, -1, 23, 4, -1, 24, 3, -1, 24, 48,
648 3, -1, 25, -1, 26, 45, -1, 27, 3, -1,
649 28, 45, -1, 29, -1, 30, 3, -1, 30, 48,
650 3, -1, 32, -1, 33, -1, 34, 3, -1, 34,
651 48, 3, -1, 35, 45, -1, 36, -1, 37, -1,
652 38, -1, 39, 3, -1, 40, 3, -1, 42, -1,
653 43, -1, 44, -1, 54, -1, 68, -1, 65, -1,
654 41, 87, -1, 8, 45, 72, -1, 9, 45, 72,
655 -1, 18, -1, 31, -1, 16, 84, -1, 16, 3,
656 84, -1, -1, 49, -1, 58, 64, 45, -1, -1,
657 6, 66, 75, -1, -1, 5, 67, 75, -1, 7,
658 55, 71, -1, 69, 70, 71, -1, 10, -1, 11,
659 -1, 12, -1, -1, 55, -1, 87, -1, 71, 87,
660 -1, 73, -1, 72, 73, -1, 87, -1, 55, -1,
661 56, -1, 57, -1, 55, -1, 85, -1, 85, 4,
662 -1, 85, 88, -1, 85, 4, 88, -1, 74, -1,
663 75, 74, -1, 77, -1, 76, 77, -1, 78, -1,
664 63, 54, -1, 1, 54, -1, -1, 86, 79, 80,
665 -1, 81, -1, 80, 52, 81, -1, 80, 54, -1,
666 -1, 81, 87, -1, 81, 45, -1, 81, 13, 87,
667 -1, 81, 14, 4, -1, 81, 15, 55, -1, 3,
668 -1, 84, -1, -1, 82, -1, 45, -1, 49, -1,
669 46, -1, 50, -1, 85, -1, 88, -1, 3, -1,
670 -1, 51, 47, -1
671 };
672
673 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
674 static const yytype_uint16 yyrline[] =
675 {
676 0, 210, 210, 218, 220, 224, 225, 234, 235, 244,
677 245, 250, 251, 252, 253, 254, 255, 260, 269, 270,
678 271, 272, 273, 274, 275, 276, 277, 278, 279, 280,
679 281, 282, 283, 284, 285, 286, 287, 291, 292, 293,
680 297, 304, 311, 315, 319, 324, 347, 348, 352, 381,
681 381, 386, 386, 391, 402, 417, 418, 419, 423, 424,
682 429, 431, 436, 437, 441, 442, 443, 444, 449, 454,
683 459, 465, 471, 482, 483, 492, 493, 499, 500, 501,
684 508, 508, 512, 513, 514, 519, 520, 522, 524, 526,
685 528, 538, 539, 545, 549, 554, 574, 576, 585, 590,
686 591, 596, 603, 605
687 };
688 #endif
689
690 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
691 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
692 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
693 static const char *const yytname[] =
694 {
695 "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"",
696 "\"%token\"", "\"%nterm\"", "\"%type\"", "\"%destructor\"",
697 "\"%printer\"", "\"%left\"", "\"%right\"", "\"%nonassoc\"", "\"%prec\"",
698 "\"%dprec\"", "\"%merge\"", "\"%code\"", "\"%debug\"",
699 "\"%default-prec\"", "\"%define\"", "\"%defines\"", "\"%error-verbose\"",
700 "\"%expect\"", "\"%expect-rr\"", "\"%file-prefix\"", "\"%glr-parser\"",
701 "\"%initial-action\"", "\"%language\"", "\"%lex-param\"",
702 "\"%locations\"", "\"%name-prefix\"", "\"%no-default-prec\"",
703 "\"%no-lines\"", "\"%nondeterministic-parser\"", "\"%output\"",
704 "\"%parse-param\"", "\"%pure-parser\"", "\"%push-parser\"",
705 "\"%push-pull-parser\"", "\"%require\"", "\"%skeleton\"", "\"%start\"",
706 "\"%token-table\"", "\"%verbose\"", "\"%yacc\"", "\"{...}\"", "\"char\"",
707 "\"epilogue\"", "\"=\"", "\"identifier\"", "\"identifier:\"", "\"%%\"",
708 "\"|\"", "\"%{...%}\"", "\";\"", "\"type\"", "\"<*>\"", "\"<>\"",
709 "\"%union\"", "$accept", "input", "prologue_declarations",
710 "prologue_declaration", "grammar_declaration", "union_name",
711 "symbol_declaration", "$@1", "$@2", "precedence_declaration",
712 "precedence_declarator", "type.opt", "symbols.1", "generic_symlist",
713 "generic_symlist_item", "symbol_def", "symbol_defs.1", "grammar",
714 "rules_or_grammar_declaration", "rules", "$@3", "rhses.1", "rhs",
715 "content", "content.opt", "braceless", "id", "id_colon", "symbol",
716 "string_as_id", "epilogue.opt", 0
717 };
718 #endif
719
720 # ifdef YYPRINT
721 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
722 token YYLEX-NUM. */
723 static const yytype_uint16 yytoknum[] =
724 {
725 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
726 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
727 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
728 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
729 295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
730 305, 306, 307, 308, 309, 310, 311, 312, 313
731 };
732 # endif
733
734 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
735 static const yytype_uint8 yyr1[] =
736 {
737 0, 59, 60, 61, 61, 62, 62, 62, 62, 62,
738 62, 62, 62, 62, 62, 62, 62, 62, 62, 62,
739 62, 62, 62, 62, 62, 62, 62, 62, 62, 62,
740 62, 62, 62, 62, 62, 62, 62, 63, 63, 63,
741 63, 63, 63, 63, 63, 63, 64, 64, 63, 66,
742 65, 67, 65, 65, 68, 69, 69, 69, 70, 70,
743 71, 71, 72, 72, 73, 73, 73, 73, 74, 74,
744 74, 74, 74, 75, 75, 76, 76, 77, 77, 77,
745 79, 78, 80, 80, 80, 81, 81, 81, 81, 81,
746 81, 82, 82, 83, 83, 84, 85, 85, 86, 87,
747 87, 88, 89, 89
748 };
749
750 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
751 static const yytype_uint8 yyr2[] =
752 {
753 0, 2, 4, 0, 2, 1, 1, 1, 3, 1,
754 2, 1, 2, 2, 2, 3, 1, 2, 2, 2,
755 1, 2, 3, 1, 1, 2, 3, 2, 1, 1,
756 1, 2, 2, 1, 1, 1, 1, 1, 1, 2,
757 3, 3, 1, 1, 2, 3, 0, 1, 3, 0,
758 3, 0, 3, 3, 3, 1, 1, 1, 0, 1,
759 1, 2, 1, 2, 1, 1, 1, 1, 1, 1,
760 2, 2, 3, 1, 2, 1, 2, 1, 2, 2,
761 0, 3, 1, 3, 2, 0, 2, 2, 3, 3,
762 3, 1, 1, 0, 1, 1, 1, 1, 1, 1,
763 1, 1, 0, 2
764 };
765
766 /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
767 STATE-NUM when YYTABLE doesn't specify something else to do. Zero
768 means the default is an error. */
769 static const yytype_uint8 yydefact[] =
770 {
771 3, 0, 0, 1, 51, 49, 0, 0, 0, 55,
772 56, 57, 0, 7, 42, 0, 9, 11, 0, 0,
773 0, 16, 0, 0, 0, 20, 0, 43, 23, 24,
774 0, 0, 28, 29, 30, 0, 0, 0, 33, 34,
775 35, 0, 6, 36, 46, 4, 5, 38, 37, 58,
776 0, 0, 0, 0, 0, 0, 95, 44, 93, 10,
777 12, 13, 14, 0, 17, 18, 19, 21, 0, 25,
778 0, 27, 31, 32, 101, 97, 96, 99, 39, 100,
779 0, 98, 0, 0, 75, 77, 80, 47, 0, 59,
780 0, 68, 73, 52, 69, 50, 53, 60, 65, 66,
781 67, 40, 62, 64, 41, 45, 91, 94, 8, 92,
782 15, 22, 26, 79, 78, 0, 76, 2, 85, 48,
783 54, 74, 70, 71, 61, 63, 103, 81, 82, 72,
784 85, 84, 0, 0, 0, 87, 86, 83, 88, 89,
785 90
786 };
787
788 /* YYDEFGOTO[NTERM-NUM]. */
789 static const yytype_int16 yydefgoto[] =
790 {
791 -1, 1, 2, 45, 82, 88, 47, 51, 50, 48,
792 49, 90, 96, 101, 102, 92, 93, 83, 84, 85,
793 118, 127, 128, 107, 108, 57, 77, 86, 103, 79,
794 117
795 };
796
797 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
798 STATE-NUM. */
799 #define YYPACT_NINF -93
800 static const yytype_int16 yypact[] =
801 {
802 -93, 14, 96, -93, -93, -93, -4, 20, 30, -93,
803 -93, -93, 21, -93, -93, 73, 75, -93, 76, 77,
804 6, -93, 34, 79, 39, -93, 22, -93, -93, -93,
805 23, 41, -93, -93, -93, 84, 85, -2, -93, -93,
806 -93, 27, -93, -93, 40, -93, -93, -93, -93, 35,
807 -42, -42, -2, 0, 0, 47, -93, -93, 28, -93,
808 -93, -93, -93, 90, -93, -93, -93, -93, 91, -93,
809 93, -93, -93, -93, -93, -93, -93, -93, -93, -93,
810 43, -93, 44, 11, -93, -93, -93, -93, 54, -93,
811 -2, -93, -93, -42, 37, -42, -2, -93, -93, -93,
812 -93, 0, -93, -93, 0, -93, -93, -93, -93, -93,
813 -93, -93, -93, -93, -93, 62, -93, -93, -93, -93,
814 -2, -93, 107, -93, -93, -93, -93, -44, 138, -93,
815 -93, -93, -2, 139, 56, -93, -93, 138, -93, -93,
816 -93
817 };
818
819 /* YYPGOTO[NTERM-NUM]. */
820 static const yytype_int16 yypgoto[] =
821 {
822 -93, -93, -93, -93, 140, -93, -93, -93, -93, -93,
823 -93, -93, 55, 92, -41, -21, 97, -93, 61, -93,
824 -93, -93, 25, -93, -93, 9, -45, -93, -37, -92,
825 -93
826 };
827
828 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
829 positive, shift that token. If negative, reduce the rule which
830 number is the opposite. If zero, do what YYDEFACT says.
831 If YYTABLE_NINF, syntax error. */
832 #define YYTABLE_NINF -103
833 static const yytype_int16 yytable[] =
834 {
835 78, 74, 123, 74, 75, 94, 94, 76, 130, 62,
836 131, -102, 80, 91, 3, 97, 4, 5, 6, 7,
837 8, 9, 10, 11, 55, 67, 69, 12, 80, 14,
838 129, 106, 4, 5, 6, 7, 8, 9, 10, 11,
839 74, 122, 27, 12, 75, 14, 75, 76, 94, 76,
840 94, 52, 37, 97, 63, 98, 99, 100, 27, 124,
841 125, 81, 115, 125, 105, 53, 56, 109, 37, 44,
842 68, 70, 121, 56, 121, 54, 58, 81, 59, 64,
843 60, 61, 65, 124, 66, 44, 71, 72, 73, 87,
844 89, 136, 56, 110, 111, 138, 112, 113, 114, 119,
845 136, 4, 5, 6, 7, 8, 9, 10, 11, 126,
846 74, 140, 12, 13, 14, 15, 16, 17, 18, 19,
847 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
848 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
849 40, 74, 46, 139, 116, 120, 104, 41, 95, 42,
850 43, 132, 133, 134, 44, 137, 0, 0, 0, 0,
851 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
852 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
853 0, 0, 0, 135, 75, 0, 0, 76
854 };
855
856 static const yytype_int16 yycheck[] =
857 {
858 37, 3, 94, 3, 46, 50, 51, 49, 52, 3,
859 54, 0, 1, 55, 0, 52, 5, 6, 7, 8,
860 9, 10, 11, 12, 3, 3, 3, 16, 1, 18,
861 122, 3, 5, 6, 7, 8, 9, 10, 11, 12,
862 3, 4, 31, 16, 46, 18, 46, 49, 93, 49,
863 95, 55, 41, 90, 48, 55, 56, 57, 31, 96,
864 101, 50, 51, 104, 55, 45, 45, 58, 41, 58,
865 48, 48, 93, 45, 95, 45, 3, 50, 3, 45,
866 4, 4, 3, 120, 45, 58, 45, 3, 3, 49,
867 55, 128, 45, 3, 3, 132, 3, 54, 54, 45,
868 137, 5, 6, 7, 8, 9, 10, 11, 12, 47,
869 3, 55, 16, 17, 18, 19, 20, 21, 22, 23,
870 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
871 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
872 44, 3, 2, 4, 83, 90, 54, 51, 51, 53,
873 54, 13, 14, 15, 58, 130, -1, -1, -1, -1,
874 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
875 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
876 -1, -1, -1, 45, 46, -1, -1, 49
877 };
878
879 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
880 symbol of state STATE-NUM. */
881 static const yytype_uint8 yystos[] =
882 {
883 0, 60, 61, 0, 5, 6, 7, 8, 9, 10,
884 11, 12, 16, 17, 18, 19, 20, 21, 22, 23,
885 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
886 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
887 44, 51, 53, 54, 58, 62, 63, 65, 68, 69,
888 67, 66, 55, 45, 45, 3, 45, 84, 3, 3,
889 4, 4, 3, 48, 45, 3, 45, 3, 48, 3,
890 48, 45, 3, 3, 3, 46, 49, 85, 87, 88,
891 1, 50, 63, 76, 77, 78, 86, 49, 64, 55,
892 70, 55, 74, 75, 85, 75, 71, 87, 55, 56,
893 57, 72, 73, 87, 72, 84, 3, 82, 83, 84,
894 3, 3, 3, 54, 54, 51, 77, 89, 79, 45,
895 71, 74, 4, 88, 87, 73, 47, 80, 81, 88,
896 52, 54, 13, 14, 15, 45, 87, 81, 87, 4,
897 55
898 };
899
900 #define yyerrok (yyerrstatus = 0)
901 #define yyclearin (yychar = YYEMPTY)
902 #define YYEMPTY (-2)
903 #define YYEOF 0
904
905 #define YYACCEPT goto yyacceptlab
906 #define YYABORT goto yyabortlab
907 #define YYERROR goto yyerrorlab
908
909
910 /* Like YYERROR except do call yyerror. This remains here temporarily
911 to ease the transition to the new meaning of YYERROR, for GCC.
912 Once GCC version 2 has supplanted version 1, this can go. */
913
914 #define YYFAIL goto yyerrlab
915
916 #define YYRECOVERING() (!!yyerrstatus)
917
918 #define YYBACKUP(Token, Value) \
919 do \
920 if (yychar == YYEMPTY && yylen == 1) \
921 { \
922 yychar = (Token); \
923 yylval = (Value); \
924 yytoken = YYTRANSLATE (yychar); \
925 YYPOPSTACK (1); \
926 goto yybackup; \
927 } \
928 else \
929 { \
930 yyerror (YY_("syntax error: cannot back up")); \
931 YYERROR; \
932 } \
933 while (YYID (0))
934
935
936 #define YYTERROR 1
937 #define YYERRCODE 256
938
939
940 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
941 If N is 0, then set CURRENT to the empty location which ends
942 the previous symbol: RHS[0] (always defined). */
943
944 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
945 #ifndef YYLLOC_DEFAULT
946 # define YYLLOC_DEFAULT(Current, Rhs, N) \
947 do \
948 if (YYID (N)) \
949 { \
950 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
951 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
952 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
953 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
954 } \
955 else \
956 { \
957 (Current).first_line = (Current).last_line = \
958 YYRHSLOC (Rhs, 0).last_line; \
959 (Current).first_column = (Current).last_column = \
960 YYRHSLOC (Rhs, 0).last_column; \
961 } \
962 while (YYID (0))
963 #endif
964
965
966 /* YY_LOCATION_PRINT -- Print the location on the stream.
967 This macro was not mandated originally: define only if we know
968 we won't break user code: when these are the locations we know. */
969
970 #ifndef YY_LOCATION_PRINT
971 # if YYLTYPE_IS_TRIVIAL
972 # define YY_LOCATION_PRINT(File, Loc) \
973 fprintf (File, "%d.%d-%d.%d", \
974 (Loc).first_line, (Loc).first_column, \
975 (Loc).last_line, (Loc).last_column)
976 # else
977 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
978 # endif
979 #endif
980
981
982 /* YYLEX -- calling `yylex' with the right arguments. */
983
984 #ifdef YYLEX_PARAM
985 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
986 #else
987 # define YYLEX yylex (&yylval, &yylloc)
988 #endif
989
990 /* Enable debugging if requested. */
991 #if YYDEBUG
992
993 # ifndef YYFPRINTF
994 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
995 # define YYFPRINTF fprintf
996 # endif
997
998 # define YYDPRINTF(Args) \
999 do { \
1000 if (yydebug) \
1001 YYFPRINTF Args; \
1002 } while (YYID (0))
1003
1004 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
1005 do { \
1006 if (yydebug) \
1007 { \
1008 YYFPRINTF (stderr, "%s ", Title); \
1009 yy_symbol_print (stderr, \
1010 Type, Value, Location); \
1011 YYFPRINTF (stderr, "\n"); \
1012 } \
1013 } while (YYID (0))
1014
1015
1016 /*--------------------------------.
1017 | Print this symbol on YYOUTPUT. |
1018 `--------------------------------*/
1019
1020 /*ARGSUSED*/
1021 #if (defined __STDC__ || defined __C99__FUNC__ \
1022 || defined __cplusplus || defined _MSC_VER)
1023 static void
1024 yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp)
1025 #else
1026 static void
1027 yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp)
1028 FILE *yyoutput;
1029 int yytype;
1030 YYSTYPE const * const yyvaluep;
1031 YYLTYPE const * const yylocationp;
1032 #endif
1033 {
1034 if (!yyvaluep)
1035 return;
1036 YYUSE (yylocationp);
1037 # ifdef YYPRINT
1038 if (yytype < YYNTOKENS)
1039 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
1040 # else
1041 YYUSE (yyoutput);
1042 # endif
1043 switch (yytype)
1044 {
1045 case 3: /* "\"string\"" */
1046
1047 /* Line 686 of yacc.c */
1048 #line 188 "parse-gram.y"
1049 { fputs (quotearg_style (c_quoting_style, (yyvaluep->chars)), stderr); };
1050
1051 /* Line 686 of yacc.c */
1052 #line 1053 "parse-gram.c"
1053 break;
1054 case 4: /* "\"integer\"" */
1055
1056 /* Line 686 of yacc.c */
1057 #line 199 "parse-gram.y"
1058 { fprintf (stderr, "%d", (yyvaluep->integer)); };
1059
1060 /* Line 686 of yacc.c */
1061 #line 1062 "parse-gram.c"
1062 break;
1063 case 45: /* "\"{...}\"" */
1064
1065 /* Line 686 of yacc.c */
1066 #line 190 "parse-gram.y"
1067 { fprintf (stderr, "{\n%s\n}", (yyvaluep->code)); };
1068
1069 /* Line 686 of yacc.c */
1070 #line 1071 "parse-gram.c"
1071 break;
1072 case 46: /* "\"char\"" */
1073
1074 /* Line 686 of yacc.c */
1075 #line 182 "parse-gram.y"
1076 { fputs (char_name ((yyvaluep->character)), stderr); };
1077
1078 /* Line 686 of yacc.c */
1079 #line 1080 "parse-gram.c"
1080 break;
1081 case 47: /* "\"epilogue\"" */
1082
1083 /* Line 686 of yacc.c */
1084 #line 190 "parse-gram.y"
1085 { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
1086
1087 /* Line 686 of yacc.c */
1088 #line 1089 "parse-gram.c"
1089 break;
1090 case 49: /* "\"identifier\"" */
1091
1092 /* Line 686 of yacc.c */
1093 #line 195 "parse-gram.y"
1094 { fputs ((yyvaluep->uniqstr), stderr); };
1095
1096 /* Line 686 of yacc.c */
1097 #line 1098 "parse-gram.c"
1098 break;
1099 case 50: /* "\"identifier:\"" */
1100
1101 /* Line 686 of yacc.c */
1102 #line 196 "parse-gram.y"
1103 { fprintf (stderr, "%s:", (yyvaluep->uniqstr)); };
1104
1105 /* Line 686 of yacc.c */
1106 #line 1107 "parse-gram.c"
1107 break;
1108 case 53: /* "\"%{...%}\"" */
1109
1110 /* Line 686 of yacc.c */
1111 #line 190 "parse-gram.y"
1112 { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
1113
1114 /* Line 686 of yacc.c */
1115 #line 1116 "parse-gram.c"
1116 break;
1117 case 55: /* "\"type\"" */
1118
1119 /* Line 686 of yacc.c */
1120 #line 194 "parse-gram.y"
1121 { fprintf (stderr, "<%s>", (yyvaluep->uniqstr)); };
1122
1123 /* Line 686 of yacc.c */
1124 #line 1125 "parse-gram.c"
1125 break;
1126 case 82: /* "content" */
1127
1128 /* Line 686 of yacc.c */
1129 #line 190 "parse-gram.y"
1130 { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
1131
1132 /* Line 686 of yacc.c */
1133 #line 1134 "parse-gram.c"
1134 break;
1135 case 83: /* "content.opt" */
1136
1137 /* Line 686 of yacc.c */
1138 #line 190 "parse-gram.y"
1139 { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
1140
1141 /* Line 686 of yacc.c */
1142 #line 1143 "parse-gram.c"
1143 break;
1144 case 84: /* "braceless" */
1145
1146 /* Line 686 of yacc.c */
1147 #line 190 "parse-gram.y"
1148 { fprintf (stderr, "{\n%s\n}", (yyvaluep->chars)); };
1149
1150 /* Line 686 of yacc.c */
1151 #line 1152 "parse-gram.c"
1152 break;
1153 case 85: /* "id" */
1154
1155 /* Line 686 of yacc.c */
1156 #line 202 "parse-gram.y"
1157 { fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
1158
1159 /* Line 686 of yacc.c */
1160 #line 1161 "parse-gram.c"
1161 break;
1162 case 86: /* "id_colon" */
1163
1164 /* Line 686 of yacc.c */
1165 #line 203 "parse-gram.y"
1166 { fprintf (stderr, "%s:", (yyvaluep->symbol)->tag); };
1167
1168 /* Line 686 of yacc.c */
1169 #line 1170 "parse-gram.c"
1170 break;
1171 case 87: /* "symbol" */
1172
1173 /* Line 686 of yacc.c */
1174 #line 202 "parse-gram.y"
1175 { fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
1176
1177 /* Line 686 of yacc.c */
1178 #line 1179 "parse-gram.c"
1179 break;
1180 case 88: /* "string_as_id" */
1181
1182 /* Line 686 of yacc.c */
1183 #line 202 "parse-gram.y"
1184 { fprintf (stderr, "%s", (yyvaluep->symbol)->tag); };
1185
1186 /* Line 686 of yacc.c */
1187 #line 1188 "parse-gram.c"
1188 break;
1189 default:
1190 break;
1191 }
1192 }
1193
1194
1195 /*--------------------------------.
1196 | Print this symbol on YYOUTPUT. |
1197 `--------------------------------*/
1198
1199 #if (defined __STDC__ || defined __C99__FUNC__ \
1200 || defined __cplusplus || defined _MSC_VER)
1201 static void
1202 yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp)
1203 #else
1204 static void
1205 yy_symbol_print (yyoutput, yytype, yyvaluep, yylocationp)
1206 FILE *yyoutput;
1207 int yytype;
1208 YYSTYPE const * const yyvaluep;
1209 YYLTYPE const * const yylocationp;
1210 #endif
1211 {
1212 if (yytype < YYNTOKENS)
1213 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
1214 else
1215 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
1216
1217 YY_LOCATION_PRINT (yyoutput, *yylocationp);
1218 YYFPRINTF (yyoutput, ": ");
1219 yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp);
1220 YYFPRINTF (yyoutput, ")");
1221 }
1222
1223 /*------------------------------------------------------------------.
1224 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
1225 | TOP (included). |
1226 `------------------------------------------------------------------*/
1227
1228 #if (defined __STDC__ || defined __C99__FUNC__ \
1229 || defined __cplusplus || defined _MSC_VER)
1230 static void
1231 yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
1232 #else
1233 static void
1234 yy_stack_print (yybottom, yytop)
1235 yytype_int16 *yybottom;
1236 yytype_int16 *yytop;
1237 #endif
1238 {
1239 YYFPRINTF (stderr, "Stack now");
1240 for (; yybottom <= yytop; yybottom++)
1241 {
1242 int yybot = *yybottom;
1243 YYFPRINTF (stderr, " %d", yybot);
1244 }
1245 YYFPRINTF (stderr, "\n");
1246 }
1247
1248 # define YY_STACK_PRINT(Bottom, Top) \
1249 do { \
1250 if (yydebug) \
1251 yy_stack_print ((Bottom), (Top)); \
1252 } while (YYID (0))
1253
1254
1255 /*------------------------------------------------.
1256 | Report that the YYRULE is going to be reduced. |
1257 `------------------------------------------------*/
1258
1259 #if (defined __STDC__ || defined __C99__FUNC__ \
1260 || defined __cplusplus || defined _MSC_VER)
1261 static void
1262 yy_reduce_print (YYSTYPE *yyvsp, YYLTYPE *yylsp, int yyrule)
1263 #else
1264 static void
1265 yy_reduce_print (yyvsp, yylsp, yyrule)
1266 YYSTYPE *yyvsp;
1267 YYLTYPE *yylsp;
1268 int yyrule;
1269 #endif
1270 {
1271 int yynrhs = yyr2[yyrule];
1272 int yyi;
1273 unsigned long int yylno = yyrline[yyrule];
1274 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
1275 yyrule - 1, yylno);
1276 /* The symbols being reduced. */
1277 for (yyi = 0; yyi < yynrhs; yyi++)
1278 {
1279 fprintf (stderr, " $%d = ", yyi + 1);
1280 yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
1281 &(yyvsp[(yyi + 1) - (yynrhs)])
1282 , &(yylsp[(yyi + 1) - (yynrhs)]) );
1283 fprintf (stderr, "\n");
1284 }
1285 }
1286
1287 # define YY_REDUCE_PRINT(Rule) \
1288 do { \
1289 if (yydebug) \
1290 yy_reduce_print (yyvsp, yylsp, Rule); \
1291 } while (YYID (0))
1292
1293 /* Nonzero means print parse trace. It is left uninitialized so that
1294 multiple parsers can coexist. */
1295 int yydebug;
1296 #else /* !YYDEBUG */
1297 # define YYDPRINTF(Args)
1298 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
1299 # define YY_STACK_PRINT(Bottom, Top)
1300 # define YY_REDUCE_PRINT(Rule)
1301 #endif /* !YYDEBUG */
1302
1303
1304 /* YYINITDEPTH -- initial size of the parser's stacks. */
1305 #ifndef YYINITDEPTH
1306 # define YYINITDEPTH 200
1307 #endif
1308
1309 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
1310 if the built-in stack extension method is used).
1311
1312 Do not make this value too large; the results are undefined if
1313 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
1314 evaluated with infinite-precision integer arithmetic. */
1315
1316 #ifndef YYMAXDEPTH
1317 # define YYMAXDEPTH 10000
1318 #endif
1319
1320 \f
1321
1322 #if YYERROR_VERBOSE
1323
1324 # ifndef yystrlen
1325 # if defined __GLIBC__ && defined _STRING_H
1326 # define yystrlen strlen
1327 # else
1328 /* Return the length of YYSTR. */
1329 #if (defined __STDC__ || defined __C99__FUNC__ \
1330 || defined __cplusplus || defined _MSC_VER)
1331 static YYSIZE_T
1332 yystrlen (const char *yystr)
1333 #else
1334 static YYSIZE_T
1335 yystrlen (yystr)
1336 const char *yystr;
1337 #endif
1338 {
1339 YYSIZE_T yylen;
1340 for (yylen = 0; yystr[yylen]; yylen++)
1341 continue;
1342 return yylen;
1343 }
1344 # endif
1345 # endif
1346
1347 # ifndef yystpcpy
1348 # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
1349 # define yystpcpy stpcpy
1350 # else
1351 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
1352 YYDEST. */
1353 #if (defined __STDC__ || defined __C99__FUNC__ \
1354 || defined __cplusplus || defined _MSC_VER)
1355 static char *
1356 yystpcpy (char *yydest, const char *yysrc)
1357 #else
1358 static char *
1359 yystpcpy (yydest, yysrc)
1360 char *yydest;
1361 const char *yysrc;
1362 #endif
1363 {
1364 char *yyd = yydest;
1365 const char *yys = yysrc;
1366
1367 while ((*yyd++ = *yys++) != '\0')
1368 continue;
1369
1370 return yyd - 1;
1371 }
1372 # endif
1373 # endif
1374
1375 # ifndef yytnamerr
1376 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
1377 quotes and backslashes, so that it's suitable for yyerror. The
1378 heuristic is that double-quoting is unnecessary unless the string
1379 contains an apostrophe, a comma, or backslash (other than
1380 backslash-backslash). YYSTR is taken from yytname. If YYRES is
1381 null, do not copy; instead, return the length of what the result
1382 would have been. */
1383 static YYSIZE_T
1384 yytnamerr (char *yyres, const char *yystr)
1385 {
1386 if (*yystr == '"')
1387 {
1388 YYSIZE_T yyn = 0;
1389 char const *yyp = yystr;
1390
1391 for (;;)
1392 switch (*++yyp)
1393 {
1394 case '\'':
1395 case ',':
1396 goto do_not_strip_quotes;
1397
1398 case '\\':
1399 if (*++yyp != '\\')
1400 goto do_not_strip_quotes;
1401 /* Fall through. */
1402 default:
1403 if (yyres)
1404 yyres[yyn] = *yyp;
1405 yyn++;
1406 break;
1407
1408 case '"':
1409 if (yyres)
1410 yyres[yyn] = '\0';
1411 return yyn;
1412 }
1413 do_not_strip_quotes: ;
1414 }
1415
1416 if (! yyres)
1417 return yystrlen (yystr);
1418
1419 return yystpcpy (yyres, yystr) - yyres;
1420 }
1421 # endif
1422
1423 /* Copy into YYRESULT an error message about the unexpected token
1424 YYCHAR while in state YYSTATE. Return the number of bytes copied,
1425 including the terminating null byte. If YYRESULT is null, do not
1426 copy anything; just return the number of bytes that would be
1427 copied. As a special case, return 0 if an ordinary "syntax error"
1428 message will do. Return YYSIZE_MAXIMUM if overflow occurs during
1429 size calculation. */
1430 static YYSIZE_T
1431 yysyntax_error (char *yyresult, int yystate, int yychar)
1432 {
1433 int yyn = yypact[yystate];
1434
1435 if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
1436 return 0;
1437 else
1438 {
1439 int yytype = YYTRANSLATE (yychar);
1440 YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
1441 YYSIZE_T yysize = yysize0;
1442 YYSIZE_T yysize1;
1443 int yysize_overflow = 0;
1444 enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
1445 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
1446 int yyx;
1447
1448 # if 0
1449 /* This is so xgettext sees the translatable formats that are
1450 constructed on the fly. */
1451 YY_("syntax error, unexpected %s");
1452 YY_("syntax error, unexpected %s, expecting %s");
1453 YY_("syntax error, unexpected %s, expecting %s or %s");
1454 YY_("syntax error, unexpected %s, expecting %s or %s or %s");
1455 YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
1456 # endif
1457 char *yyfmt;
1458 char const *yyf;
1459 static char const yyunexpected[] = "syntax error, unexpected %s";
1460 static char const yyexpecting[] = ", expecting %s";
1461 static char const yyor[] = " or %s";
1462 char yyformat[sizeof yyunexpected
1463 + sizeof yyexpecting - 1
1464 + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
1465 * (sizeof yyor - 1))];
1466 char const *yyprefix = yyexpecting;
1467
1468 /* Start YYX at -YYN if negative to avoid negative indexes in
1469 YYCHECK. */
1470 int yyxbegin = yyn < 0 ? -yyn : 0;
1471
1472 /* Stay within bounds of both yycheck and yytname. */
1473 int yychecklim = YYLAST - yyn + 1;
1474 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
1475 int yycount = 1;
1476
1477 yyarg[0] = yytname[yytype];
1478 yyfmt = yystpcpy (yyformat, yyunexpected);
1479
1480 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
1481 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
1482 {
1483 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
1484 {
1485 yycount = 1;
1486 yysize = yysize0;
1487 yyformat[sizeof yyunexpected - 1] = '\0';
1488 break;
1489 }
1490 yyarg[yycount++] = yytname[yyx];
1491 yysize1 = yysize + yytnamerr (0, yytname[yyx]);
1492 yysize_overflow |= (yysize1 < yysize);
1493 yysize = yysize1;
1494 yyfmt = yystpcpy (yyfmt, yyprefix);
1495 yyprefix = yyor;
1496 }
1497
1498 yyf = YY_(yyformat);
1499 yysize1 = yysize + yystrlen (yyf);
1500 yysize_overflow |= (yysize1 < yysize);
1501 yysize = yysize1;
1502
1503 if (yysize_overflow)
1504 return YYSIZE_MAXIMUM;
1505
1506 if (yyresult)
1507 {
1508 /* Avoid sprintf, as that infringes on the user's name space.
1509 Don't have undefined behavior even if the translation
1510 produced a string with the wrong number of "%s"s. */
1511 char *yyp = yyresult;
1512 int yyi = 0;
1513 while ((*yyp = *yyf) != '\0')
1514 {
1515 if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
1516 {
1517 yyp += yytnamerr (yyp, yyarg[yyi++]);
1518 yyf += 2;
1519 }
1520 else
1521 {
1522 yyp++;
1523 yyf++;
1524 }
1525 }
1526 }
1527 return yysize;
1528 }
1529 }
1530 #endif /* YYERROR_VERBOSE */
1531 \f
1532
1533 /*-----------------------------------------------.
1534 | Release the memory associated to this symbol. |
1535 `-----------------------------------------------*/
1536
1537 /*ARGSUSED*/
1538 #if (defined __STDC__ || defined __C99__FUNC__ \
1539 || defined __cplusplus || defined _MSC_VER)
1540 static void
1541 yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)
1542 #else
1543 static void
1544 yydestruct (yymsg, yytype, yyvaluep, yylocationp)
1545 const char *yymsg;
1546 int yytype;
1547 YYSTYPE *yyvaluep;
1548 YYLTYPE *yylocationp;
1549 #endif
1550 {
1551 YYUSE (yyvaluep);
1552 YYUSE (yylocationp);
1553
1554 if (!yymsg)
1555 yymsg = "Deleting";
1556 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
1557
1558 switch (yytype)
1559 {
1560
1561 default:
1562 break;
1563 }
1564 }
1565 \f
1566
1567 /* Prevent warnings from -Wmissing-prototypes. */
1568
1569 #ifdef YYPARSE_PARAM
1570 #if defined __STDC__ || defined __cplusplus
1571 int yyparse (void *YYPARSE_PARAM);
1572 #else
1573 int yyparse ();
1574 #endif
1575 #else /* ! YYPARSE_PARAM */
1576 #if defined __STDC__ || defined __cplusplus
1577 int yyparse (void);
1578 #else
1579 int yyparse ();
1580 #endif
1581 #endif /* ! YYPARSE_PARAM */
1582
1583
1584
1585
1586
1587
1588 /*----------.
1589 | yyparse. |
1590 `----------*/
1591
1592 #ifdef YYPARSE_PARAM
1593 #if (defined __STDC__ || defined __C99__FUNC__ \
1594 || defined __cplusplus || defined _MSC_VER)
1595 int
1596 yyparse (void *YYPARSE_PARAM)
1597 #else
1598 int
1599 yyparse (YYPARSE_PARAM)
1600 void *YYPARSE_PARAM;
1601 #endif
1602 #else /* ! YYPARSE_PARAM */
1603 #if (defined __STDC__ || defined __C99__FUNC__ \
1604 || defined __cplusplus || defined _MSC_VER)
1605 int
1606 yyparse (void)
1607 #else
1608 int
1609 yyparse ()
1610
1611 #endif
1612 #endif
1613 {
1614 /* The lookahead symbol. */
1615 int yychar;
1616
1617 /* The semantic value of the lookahead symbol. */
1618 YYSTYPE yylval;
1619
1620 /* Number of syntax errors so far. */
1621 int yynerrs;
1622 /* Location data for the lookahead symbol. */
1623 YYLTYPE yylloc;
1624
1625 int yystate;
1626 int yyn;
1627 int yyresult;
1628 /* Number of tokens to shift before error messages enabled. */
1629 int yyerrstatus;
1630 /* Lookahead token as an internal (translated) token number. */
1631 int yytoken = 0;
1632 #if YYERROR_VERBOSE
1633 /* Buffer for error messages, and its allocated size. */
1634 char yymsgbuf[128];
1635 char *yymsg = yymsgbuf;
1636 YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
1637 #endif
1638
1639 /* Three stacks and their tools:
1640 `yyss': related to states,
1641 `yyvs': related to semantic values,
1642 `yyls': related to locations.
1643
1644 Refer to the stacks thru separate pointers, to allow yyoverflow
1645 to reallocate them elsewhere. */
1646
1647 /* The state stack. */
1648 yytype_int16 yyssa[YYINITDEPTH];
1649 yytype_int16 *yyss = yyssa;
1650 yytype_int16 *yyssp;
1651
1652 /* The semantic value stack. */
1653 YYSTYPE yyvsa[YYINITDEPTH];
1654 YYSTYPE *yyvs = yyvsa;
1655 YYSTYPE *yyvsp;
1656
1657 /* The location stack. */
1658 YYLTYPE yylsa[YYINITDEPTH];
1659 YYLTYPE *yyls = yylsa;
1660 YYLTYPE *yylsp;
1661 /* The locations where the error started and ended. */
1662 YYLTYPE yyerror_range[2];
1663
1664 #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
1665
1666 YYSIZE_T yystacksize = YYINITDEPTH;
1667
1668 /* The variables used to return semantic value and location from the
1669 action routines. */
1670 YYSTYPE yyval;
1671 YYLTYPE yyloc;
1672
1673 /* The number of symbols on the RHS of the reduced rule.
1674 Keep to zero when no symbol should be popped. */
1675 int yylen = 0;
1676
1677 YYDPRINTF ((stderr, "Starting parse\n"));
1678
1679 yystate = 0;
1680 yyerrstatus = 0;
1681 yynerrs = 0;
1682 yychar = YYEMPTY; /* Cause a token to be read. */
1683
1684 /* Initialize stack pointers.
1685 Waste one element of value and location stack
1686 so that they stay on the same level as the state stack.
1687 The wasted elements are never initialized. */
1688
1689 yyssp = yyss;
1690 yyvsp = yyvs;
1691 yylsp = yyls;
1692 #if YYLTYPE_IS_TRIVIAL
1693 /* Initialize the default location before parsing starts. */
1694 yylloc.first_line = yylloc.last_line = 1;
1695 yylloc.first_column = yylloc.last_column = 1;
1696 #endif
1697
1698
1699 /* User initialization code. */
1700
1701 /* Line 1098 of yacc.c */
1702 #line 89 "parse-gram.y"
1703 {
1704 /* Bison's grammar can initial empty locations, hence a default
1705 location is needed. */
1706 boundary_set (&yylloc.start, current_file, 1, 1);
1707 boundary_set (&yylloc.end, current_file, 1, 1);
1708 }
1709
1710 /* Line 1098 of yacc.c */
1711 #line 1712 "parse-gram.c"
1712 yylsp[0] = yylloc;
1713 goto yysetstate;
1714
1715 /*------------------------------------------------------------.
1716 | yynewstate -- Push a new state, which is found in yystate. |
1717 `------------------------------------------------------------*/
1718 yynewstate:
1719 /* In all cases, when you get here, the value and location stacks
1720 have just been pushed. So pushing a state here evens the stacks. */
1721 yyssp++;
1722
1723 yysetstate:
1724 *yyssp = yystate;
1725
1726 if (yyss + yystacksize - 1 <= yyssp)
1727 {
1728 /* Get the current used size of the three stacks, in elements. */
1729 YYSIZE_T yysize = yyssp - yyss + 1;
1730
1731 #ifdef yyoverflow
1732 {
1733 /* Give user a chance to reallocate the stack. Use copies of
1734 these so that the &'s don't force the real ones into
1735 memory. */
1736 YYSTYPE *yyvs1 = yyvs;
1737 yytype_int16 *yyss1 = yyss;
1738 YYLTYPE *yyls1 = yyls;
1739
1740 /* Each stack pointer address is followed by the size of the
1741 data in use in that stack, in bytes. This used to be a
1742 conditional around just the two extra args, but that might
1743 be undefined if yyoverflow is a macro. */
1744 yyoverflow (YY_("memory exhausted"),
1745 &yyss1, yysize * sizeof (*yyssp),
1746 &yyvs1, yysize * sizeof (*yyvsp),
1747 &yyls1, yysize * sizeof (*yylsp),
1748 &yystacksize);
1749 yyls = yyls1;
1750 yyss = yyss1;
1751 yyvs = yyvs1;
1752 }
1753 #else /* no yyoverflow */
1754 # ifndef YYSTACK_RELOCATE
1755 goto yyexhaustedlab;
1756 # else
1757 /* Extend the stack our own way. */
1758 if (YYMAXDEPTH <= yystacksize)
1759 goto yyexhaustedlab;
1760 yystacksize *= 2;
1761 if (YYMAXDEPTH < yystacksize)
1762 yystacksize = YYMAXDEPTH;
1763
1764 {
1765 yytype_int16 *yyss1 = yyss;
1766 union yyalloc *yyptr =
1767 (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
1768 if (! yyptr)
1769 goto yyexhaustedlab;
1770 YYSTACK_RELOCATE (yyss);
1771 YYSTACK_RELOCATE (yyvs);
1772 YYSTACK_RELOCATE (yyls);
1773 # undef YYSTACK_RELOCATE
1774 if (yyss1 != yyssa)
1775 YYSTACK_FREE (yyss1);
1776 }
1777 # endif
1778 #endif /* no yyoverflow */
1779
1780 yyssp = yyss + yysize - 1;
1781 yyvsp = yyvs + yysize - 1;
1782 yylsp = yyls + yysize - 1;
1783
1784 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
1785 (unsigned long int) yystacksize));
1786
1787 if (yyss + yystacksize - 1 <= yyssp)
1788 YYABORT;
1789 }
1790
1791 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
1792
1793 if (yystate == YYFINAL)
1794 YYACCEPT;
1795
1796 goto yybackup;
1797
1798 /*-----------.
1799 | yybackup. |
1800 `-----------*/
1801 yybackup:
1802
1803 /* Do appropriate processing given the current state. Read a
1804 lookahead token if we need one and don't already have one. */
1805
1806 /* First try to decide what to do without reference to lookahead token. */
1807 yyn = yypact[yystate];
1808 if (yyn == YYPACT_NINF)
1809 goto yydefault;
1810
1811 /* Not known => get a lookahead token if don't already have one. */
1812
1813 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1814 if (yychar == YYEMPTY)
1815 {
1816 YYDPRINTF ((stderr, "Reading a token: "));
1817 yychar = YYLEX;
1818 }
1819
1820 if (yychar <= YYEOF)
1821 {
1822 yychar = yytoken = YYEOF;
1823 YYDPRINTF ((stderr, "Now at end of input.\n"));
1824 }
1825 else
1826 {
1827 yytoken = YYTRANSLATE (yychar);
1828 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
1829 }
1830
1831 /* If the proper action on seeing token YYTOKEN is to reduce or to
1832 detect an error, take that action. */
1833 yyn += yytoken;
1834 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
1835 goto yydefault;
1836 yyn = yytable[yyn];
1837 if (yyn <= 0)
1838 {
1839 if (yyn == 0 || yyn == YYTABLE_NINF)
1840 goto yyerrlab;
1841 yyn = -yyn;
1842 goto yyreduce;
1843 }
1844
1845 /* Count tokens shifted since error; after three, turn off error
1846 status. */
1847 if (yyerrstatus)
1848 yyerrstatus--;
1849
1850 /* Shift the lookahead token. */
1851 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
1852
1853 /* Discard the shifted token. */
1854 yychar = YYEMPTY;
1855
1856 yystate = yyn;
1857 *++yyvsp = yylval;
1858 *++yylsp = yylloc;
1859 goto yynewstate;
1860
1861
1862 /*-----------------------------------------------------------.
1863 | yydefault -- do the default action for the current state. |
1864 `-----------------------------------------------------------*/
1865 yydefault:
1866 yyn = yydefact[yystate];
1867 if (yyn == 0)
1868 goto yyerrlab;
1869 goto yyreduce;
1870
1871
1872 /*-----------------------------.
1873 | yyreduce -- Do a reduction. |
1874 `-----------------------------*/
1875 yyreduce:
1876 /* yyn is the number of a rule to reduce with. */
1877 yylen = yyr2[yyn];
1878
1879 /* If YYLEN is nonzero, implement the default value of the action:
1880 `$$ = $1'.
1881
1882 Otherwise, the following line sets YYVAL to garbage.
1883 This behavior is undocumented and Bison
1884 users should not rely upon it. Assigning to YYVAL
1885 unconditionally makes the parser a bit smaller, and it avoids a
1886 GCC warning that YYVAL may be used uninitialized. */
1887 yyval = yyvsp[1-yylen];
1888
1889 /* Default location. */
1890 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);
1891 YY_REDUCE_PRINT (yyn);
1892 switch (yyn)
1893 {
1894 case 6:
1895
1896 /* Line 1285 of yacc.c */
1897 #line 226 "parse-gram.y"
1898 {
1899 code_props plain_code;
1900 code_props_plain_init (&plain_code, (yyvsp[(1) - (1)].chars), (yylsp[(1) - (1)]));
1901 code_props_translate_code (&plain_code);
1902 gram_scanner_last_string_free ();
1903 prologue_augment (plain_code.code, (yylsp[(1) - (1)]), union_seen);
1904 code_scanner_last_string_free ();
1905 }
1906 break;
1907
1908 case 7:
1909
1910 /* Line 1285 of yacc.c */
1911 #line 234 "parse-gram.y"
1912 { debug_flag = true; }
1913 break;
1914
1915 case 8:
1916
1917 /* Line 1285 of yacc.c */
1918 #line 236 "parse-gram.y"
1919 {
1920 /* FIXME: Special characters in $2 may break %define.
1921 For example: `['. */
1922 if (muscle_find_const ((yyvsp[(2) - (3)].chars)))
1923 warn_at ((yylsp[(2) - (3)]), _("%s: `%s' redefined"), "%define", (yyvsp[(2) - (3)].chars));
1924 muscle_insert ((yyvsp[(2) - (3)].chars), (yyvsp[(3) - (3)].chars));
1925 muscle_grow_used_name_list ("used_percent_define_variables", (yyvsp[(2) - (3)].chars), (yylsp[(2) - (3)]));
1926 }
1927 break;
1928
1929 case 9:
1930
1931 /* Line 1285 of yacc.c */
1932 #line 244 "parse-gram.y"
1933 { defines_flag = true; }
1934 break;
1935
1936 case 10:
1937
1938 /* Line 1285 of yacc.c */
1939 #line 246 "parse-gram.y"
1940 {
1941 defines_flag = true;
1942 spec_defines_file = xstrdup ((yyvsp[(2) - (2)].chars));
1943 }
1944 break;
1945
1946 case 11:
1947
1948 /* Line 1285 of yacc.c */
1949 #line 250 "parse-gram.y"
1950 { error_verbose = true; }
1951 break;
1952
1953 case 12:
1954
1955 /* Line 1285 of yacc.c */
1956 #line 251 "parse-gram.y"
1957 { expected_sr_conflicts = (yyvsp[(2) - (2)].integer); }
1958 break;
1959
1960 case 13:
1961
1962 /* Line 1285 of yacc.c */
1963 #line 252 "parse-gram.y"
1964 { expected_rr_conflicts = (yyvsp[(2) - (2)].integer); }
1965 break;
1966
1967 case 14:
1968
1969 /* Line 1285 of yacc.c */
1970 #line 253 "parse-gram.y"
1971 { spec_file_prefix = (yyvsp[(2) - (2)].chars); }
1972 break;
1973
1974 case 15:
1975
1976 /* Line 1285 of yacc.c */
1977 #line 254 "parse-gram.y"
1978 { spec_file_prefix = (yyvsp[(3) - (3)].chars); }
1979 break;
1980
1981 case 16:
1982
1983 /* Line 1285 of yacc.c */
1984 #line 256 "parse-gram.y"
1985 {
1986 nondeterministic_parser = true;
1987 glr_parser = true;
1988 }
1989 break;
1990
1991 case 17:
1992
1993 /* Line 1285 of yacc.c */
1994 #line 261 "parse-gram.y"
1995 {
1996 code_props action;
1997 code_props_symbol_action_init (&action, (yyvsp[(2) - (2)].code), (yylsp[(2) - (2)]));
1998 code_props_translate_code (&action);
1999 gram_scanner_last_string_free ();
2000 muscle_code_grow ("initial_action", action.code, (yylsp[(2) - (2)]));
2001 code_scanner_last_string_free ();
2002 }
2003 break;
2004
2005 case 18:
2006
2007 /* Line 1285 of yacc.c */
2008 #line 269 "parse-gram.y"
2009 { language_argmatch ((yyvsp[(2) - (2)].chars), 1, &(yylsp[(1) - (2)])); }
2010 break;
2011
2012 case 19:
2013
2014 /* Line 1285 of yacc.c */
2015 #line 270 "parse-gram.y"
2016 { add_param ("lex_param", (yyvsp[(2) - (2)].code), (yylsp[(2) - (2)])); }
2017 break;
2018
2019 case 20:
2020
2021 /* Line 1285 of yacc.c */
2022 #line 271 "parse-gram.y"
2023 { locations_flag = true; }
2024 break;
2025
2026 case 21:
2027
2028 /* Line 1285 of yacc.c */
2029 #line 272 "parse-gram.y"
2030 { spec_name_prefix = (yyvsp[(2) - (2)].chars); }
2031 break;
2032
2033 case 22:
2034
2035 /* Line 1285 of yacc.c */
2036 #line 273 "parse-gram.y"
2037 { spec_name_prefix = (yyvsp[(3) - (3)].chars); }
2038 break;
2039
2040 case 23:
2041
2042 /* Line 1285 of yacc.c */
2043 #line 274 "parse-gram.y"
2044 { no_lines_flag = true; }
2045 break;
2046
2047 case 24:
2048
2049 /* Line 1285 of yacc.c */
2050 #line 275 "parse-gram.y"
2051 { nondeterministic_parser = true; }
2052 break;
2053
2054 case 25:
2055
2056 /* Line 1285 of yacc.c */
2057 #line 276 "parse-gram.y"
2058 { spec_outfile = (yyvsp[(2) - (2)].chars); }
2059 break;
2060
2061 case 26:
2062
2063 /* Line 1285 of yacc.c */
2064 #line 277 "parse-gram.y"
2065 { spec_outfile = (yyvsp[(3) - (3)].chars); }
2066 break;
2067
2068 case 27:
2069
2070 /* Line 1285 of yacc.c */
2071 #line 278 "parse-gram.y"
2072 { add_param ("parse_param", (yyvsp[(2) - (2)].code), (yylsp[(2) - (2)])); }
2073 break;
2074
2075 case 28:
2076
2077 /* Line 1285 of yacc.c */
2078 #line 279 "parse-gram.y"
2079 { pure_parser = true; }
2080 break;
2081
2082 case 29:
2083
2084 /* Line 1285 of yacc.c */
2085 #line 280 "parse-gram.y"
2086 { push_parser = true; pull_parser = false; }
2087 break;
2088
2089 case 30:
2090
2091 /* Line 1285 of yacc.c */
2092 #line 281 "parse-gram.y"
2093 { push_parser = true; pull_parser = true; }
2094 break;
2095
2096 case 31:
2097
2098 /* Line 1285 of yacc.c */
2099 #line 282 "parse-gram.y"
2100 { version_check (&(yylsp[(2) - (2)]), (yyvsp[(2) - (2)].chars)); }
2101 break;
2102
2103 case 32:
2104
2105 /* Line 1285 of yacc.c */
2106 #line 283 "parse-gram.y"
2107 { skeleton_arg ((yyvsp[(2) - (2)].chars), 1, &(yylsp[(1) - (2)])); }
2108 break;
2109
2110 case 33:
2111
2112 /* Line 1285 of yacc.c */
2113 #line 284 "parse-gram.y"
2114 { token_table_flag = true; }
2115 break;
2116
2117 case 34:
2118
2119 /* Line 1285 of yacc.c */
2120 #line 285 "parse-gram.y"
2121 { report_flag = report_states; }
2122 break;
2123
2124 case 35:
2125
2126 /* Line 1285 of yacc.c */
2127 #line 286 "parse-gram.y"
2128 { yacc_flag = true; }
2129 break;
2130
2131 case 39:
2132
2133 /* Line 1285 of yacc.c */
2134 #line 294 "parse-gram.y"
2135 {
2136 grammar_start_symbol_set ((yyvsp[(2) - (2)].symbol), (yylsp[(2) - (2)]));
2137 }
2138 break;
2139
2140 case 40:
2141
2142 /* Line 1285 of yacc.c */
2143 #line 298 "parse-gram.y"
2144 {
2145 symbol_list *list;
2146 for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
2147 symbol_list_destructor_set (list, (yyvsp[(2) - (3)].code), (yylsp[(2) - (3)]));
2148 symbol_list_free ((yyvsp[(3) - (3)].list));
2149 }
2150 break;
2151
2152 case 41:
2153
2154 /* Line 1285 of yacc.c */
2155 #line 305 "parse-gram.y"
2156 {
2157 symbol_list *list;
2158 for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
2159 symbol_list_printer_set (list, (yyvsp[(2) - (3)].code), (yylsp[(2) - (3)]));
2160 symbol_list_free ((yyvsp[(3) - (3)].list));
2161 }
2162 break;
2163
2164 case 42:
2165
2166 /* Line 1285 of yacc.c */
2167 #line 312 "parse-gram.y"
2168 {
2169 default_prec = true;
2170 }
2171 break;
2172
2173 case 43:
2174
2175 /* Line 1285 of yacc.c */
2176 #line 316 "parse-gram.y"
2177 {
2178 default_prec = false;
2179 }
2180 break;
2181
2182 case 44:
2183
2184 /* Line 1285 of yacc.c */
2185 #line 320 "parse-gram.y"
2186 {
2187 muscle_code_grow ("percent_code", (yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)]));
2188 code_scanner_last_string_free ();
2189 }
2190 break;
2191
2192 case 45:
2193
2194 /* Line 1285 of yacc.c */
2195 #line 325 "parse-gram.y"
2196 {
2197 /* FIXME: Special characters in $2 may break %code.
2198 For example: `['. */
2199 char const name_prefix[] = "percent_code_";
2200 char *name = xmalloc (sizeof name_prefix + strlen ((yyvsp[(2) - (3)].chars)));
2201 strcpy (name, name_prefix);
2202 strcpy (name + sizeof name_prefix - 1, (yyvsp[(2) - (3)].chars));
2203 muscle_code_grow (uniqstr_new (name), (yyvsp[(3) - (3)].chars), (yylsp[(3) - (3)]));
2204 free (name);
2205 code_scanner_last_string_free ();
2206 muscle_grow_used_name_list ("used_percent_code_qualifiers", (yyvsp[(2) - (3)].chars), (yylsp[(2) - (3)]));
2207 }
2208 break;
2209
2210 case 46:
2211
2212 /* Line 1285 of yacc.c */
2213 #line 347 "parse-gram.y"
2214 {}
2215 break;
2216
2217 case 47:
2218
2219 /* Line 1285 of yacc.c */
2220 #line 348 "parse-gram.y"
2221 { muscle_code_grow ("union_name", (yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
2222 break;
2223
2224 case 48:
2225
2226 /* Line 1285 of yacc.c */
2227 #line 353 "parse-gram.y"
2228 {
2229 char const *body = (yyvsp[(3) - (3)].code);
2230
2231 /* Concatenate the %union bodies. If this is the first %union, make sure
2232 the synchronization line appears after the opening '{' so as not to
2233 confuse Doxygen. Otherwise, turn the previous %union's trailing '}'
2234 into '\n', and omit the new %union's leading '{'. */
2235 if (!union_seen)
2236 {
2237 muscle_grow ("stype", "{", "");
2238 }
2239 else
2240 {
2241 char *code = muscle_find ("stype");
2242 code[strlen (code) - 1] = '\n';
2243 }
2244 body++;
2245
2246 union_seen = true;
2247 muscle_code_grow ("stype", body, (yylsp[(3) - (3)]));
2248 gram_scanner_last_string_free ();
2249 }
2250 break;
2251
2252 case 49:
2253
2254 /* Line 1285 of yacc.c */
2255 #line 381 "parse-gram.y"
2256 { current_class = nterm_sym; }
2257 break;
2258
2259 case 50:
2260
2261 /* Line 1285 of yacc.c */
2262 #line 382 "parse-gram.y"
2263 {
2264 current_class = unknown_sym;
2265 current_type = NULL;
2266 }
2267 break;
2268
2269 case 51:
2270
2271 /* Line 1285 of yacc.c */
2272 #line 386 "parse-gram.y"
2273 { current_class = token_sym; }
2274 break;
2275
2276 case 52:
2277
2278 /* Line 1285 of yacc.c */
2279 #line 387 "parse-gram.y"
2280 {
2281 current_class = unknown_sym;
2282 current_type = NULL;
2283 }
2284 break;
2285
2286 case 53:
2287
2288 /* Line 1285 of yacc.c */
2289 #line 392 "parse-gram.y"
2290 {
2291 symbol_list *list;
2292 tag_seen = true;
2293 for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
2294 symbol_type_set (list->content.sym, (yyvsp[(2) - (3)].uniqstr), (yylsp[(2) - (3)]));
2295 symbol_list_free ((yyvsp[(3) - (3)].list));
2296 }
2297 break;
2298
2299 case 54:
2300
2301 /* Line 1285 of yacc.c */
2302 #line 403 "parse-gram.y"
2303 {
2304 symbol_list *list;
2305 ++current_prec;
2306 for (list = (yyvsp[(3) - (3)].list); list; list = list->next)
2307 {
2308 symbol_type_set (list->content.sym, current_type, (yylsp[(2) - (3)]));
2309 symbol_precedence_set (list->content.sym, current_prec, (yyvsp[(1) - (3)].assoc), (yylsp[(1) - (3)]));
2310 }
2311 symbol_list_free ((yyvsp[(3) - (3)].list));
2312 current_type = NULL;
2313 }
2314 break;
2315
2316 case 55:
2317
2318 /* Line 1285 of yacc.c */
2319 #line 417 "parse-gram.y"
2320 { (yyval.assoc) = left_assoc; }
2321 break;
2322
2323 case 56:
2324
2325 /* Line 1285 of yacc.c */
2326 #line 418 "parse-gram.y"
2327 { (yyval.assoc) = right_assoc; }
2328 break;
2329
2330 case 57:
2331
2332 /* Line 1285 of yacc.c */
2333 #line 419 "parse-gram.y"
2334 { (yyval.assoc) = non_assoc; }
2335 break;
2336
2337 case 58:
2338
2339 /* Line 1285 of yacc.c */
2340 #line 423 "parse-gram.y"
2341 { current_type = NULL; }
2342 break;
2343
2344 case 59:
2345
2346 /* Line 1285 of yacc.c */
2347 #line 424 "parse-gram.y"
2348 { current_type = (yyvsp[(1) - (1)].uniqstr); tag_seen = true; }
2349 break;
2350
2351 case 60:
2352
2353 /* Line 1285 of yacc.c */
2354 #line 430 "parse-gram.y"
2355 { (yyval.list) = symbol_list_sym_new ((yyvsp[(1) - (1)].symbol), (yylsp[(1) - (1)])); }
2356 break;
2357
2358 case 61:
2359
2360 /* Line 1285 of yacc.c */
2361 #line 432 "parse-gram.y"
2362 { (yyval.list) = symbol_list_prepend ((yyvsp[(1) - (2)].list), symbol_list_sym_new ((yyvsp[(2) - (2)].symbol), (yylsp[(2) - (2)]))); }
2363 break;
2364
2365 case 62:
2366
2367 /* Line 1285 of yacc.c */
2368 #line 436 "parse-gram.y"
2369 { (yyval.list) = (yyvsp[(1) - (1)].list); }
2370 break;
2371
2372 case 63:
2373
2374 /* Line 1285 of yacc.c */
2375 #line 437 "parse-gram.y"
2376 { (yyval.list) = symbol_list_prepend ((yyvsp[(1) - (2)].list), (yyvsp[(2) - (2)].list)); }
2377 break;
2378
2379 case 64:
2380
2381 /* Line 1285 of yacc.c */
2382 #line 441 "parse-gram.y"
2383 { (yyval.list) = symbol_list_sym_new ((yyvsp[(1) - (1)].symbol), (yylsp[(1) - (1)])); }
2384 break;
2385
2386 case 65:
2387
2388 /* Line 1285 of yacc.c */
2389 #line 442 "parse-gram.y"
2390 { (yyval.list) = symbol_list_type_new ((yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
2391 break;
2392
2393 case 66:
2394
2395 /* Line 1285 of yacc.c */
2396 #line 443 "parse-gram.y"
2397 { (yyval.list) = symbol_list_default_tagged_new ((yylsp[(1) - (1)])); }
2398 break;
2399
2400 case 67:
2401
2402 /* Line 1285 of yacc.c */
2403 #line 444 "parse-gram.y"
2404 { (yyval.list) = symbol_list_default_tagless_new ((yylsp[(1) - (1)])); }
2405 break;
2406
2407 case 68:
2408
2409 /* Line 1285 of yacc.c */
2410 #line 450 "parse-gram.y"
2411 {
2412 current_type = (yyvsp[(1) - (1)].uniqstr);
2413 tag_seen = true;
2414 }
2415 break;
2416
2417 case 69:
2418
2419 /* Line 1285 of yacc.c */
2420 #line 455 "parse-gram.y"
2421 {
2422 symbol_class_set ((yyvsp[(1) - (1)].symbol), current_class, (yylsp[(1) - (1)]), true);
2423 symbol_type_set ((yyvsp[(1) - (1)].symbol), current_type, (yylsp[(1) - (1)]));
2424 }
2425 break;
2426
2427 case 70:
2428
2429 /* Line 1285 of yacc.c */
2430 #line 460 "parse-gram.y"
2431 {
2432 symbol_class_set ((yyvsp[(1) - (2)].symbol), current_class, (yylsp[(1) - (2)]), true);
2433 symbol_type_set ((yyvsp[(1) - (2)].symbol), current_type, (yylsp[(1) - (2)]));
2434 symbol_user_token_number_set ((yyvsp[(1) - (2)].symbol), (yyvsp[(2) - (2)].integer), (yylsp[(2) - (2)]));
2435 }
2436 break;
2437
2438 case 71:
2439
2440 /* Line 1285 of yacc.c */
2441 #line 466 "parse-gram.y"
2442 {
2443 symbol_class_set ((yyvsp[(1) - (2)].symbol), current_class, (yylsp[(1) - (2)]), true);
2444 symbol_type_set ((yyvsp[(1) - (2)].symbol), current_type, (yylsp[(1) - (2)]));
2445 symbol_make_alias ((yyvsp[(1) - (2)].symbol), (yyvsp[(2) - (2)].symbol), (yyloc));
2446 }
2447 break;
2448
2449 case 72:
2450
2451 /* Line 1285 of yacc.c */
2452 #line 472 "parse-gram.y"
2453 {
2454 symbol_class_set ((yyvsp[(1) - (3)].symbol), current_class, (yylsp[(1) - (3)]), true);
2455 symbol_type_set ((yyvsp[(1) - (3)].symbol), current_type, (yylsp[(1) - (3)]));
2456 symbol_user_token_number_set ((yyvsp[(1) - (3)].symbol), (yyvsp[(2) - (3)].integer), (yylsp[(2) - (3)]));
2457 symbol_make_alias ((yyvsp[(1) - (3)].symbol), (yyvsp[(3) - (3)].symbol), (yyloc));
2458 }
2459 break;
2460
2461 case 79:
2462
2463 /* Line 1285 of yacc.c */
2464 #line 502 "parse-gram.y"
2465 {
2466 yyerrok;
2467 }
2468 break;
2469
2470 case 80:
2471
2472 /* Line 1285 of yacc.c */
2473 #line 508 "parse-gram.y"
2474 { current_lhs = (yyvsp[(1) - (1)].symbol); current_lhs_location = (yylsp[(1) - (1)]); }
2475 break;
2476
2477 case 82:
2478
2479 /* Line 1285 of yacc.c */
2480 #line 512 "parse-gram.y"
2481 { grammar_current_rule_end ((yylsp[(1) - (1)])); }
2482 break;
2483
2484 case 83:
2485
2486 /* Line 1285 of yacc.c */
2487 #line 513 "parse-gram.y"
2488 { grammar_current_rule_end ((yylsp[(3) - (3)])); }
2489 break;
2490
2491 case 85:
2492
2493 /* Line 1285 of yacc.c */
2494 #line 519 "parse-gram.y"
2495 { grammar_current_rule_begin (current_lhs, current_lhs_location); }
2496 break;
2497
2498 case 86:
2499
2500 /* Line 1285 of yacc.c */
2501 #line 521 "parse-gram.y"
2502 { grammar_current_rule_symbol_append ((yyvsp[(2) - (2)].symbol), (yylsp[(2) - (2)])); }
2503 break;
2504
2505 case 87:
2506
2507 /* Line 1285 of yacc.c */
2508 #line 523 "parse-gram.y"
2509 { grammar_current_rule_action_append ((yyvsp[(2) - (2)].code), (yylsp[(2) - (2)])); }
2510 break;
2511
2512 case 88:
2513
2514 /* Line 1285 of yacc.c */
2515 #line 525 "parse-gram.y"
2516 { grammar_current_rule_prec_set ((yyvsp[(3) - (3)].symbol), (yylsp[(3) - (3)])); }
2517 break;
2518
2519 case 89:
2520
2521 /* Line 1285 of yacc.c */
2522 #line 527 "parse-gram.y"
2523 { grammar_current_rule_dprec_set ((yyvsp[(3) - (3)].integer), (yylsp[(3) - (3)])); }
2524 break;
2525
2526 case 90:
2527
2528 /* Line 1285 of yacc.c */
2529 #line 529 "parse-gram.y"
2530 { grammar_current_rule_merge_set ((yyvsp[(3) - (3)].uniqstr), (yylsp[(3) - (3)])); }
2531 break;
2532
2533 case 93:
2534
2535 /* Line 1285 of yacc.c */
2536 #line 545 "parse-gram.y"
2537 {
2538 static char one[] = "1";
2539 (yyval.chars) = one;
2540 }
2541 break;
2542
2543 case 95:
2544
2545 /* Line 1285 of yacc.c */
2546 #line 555 "parse-gram.y"
2547 {
2548 code_props plain_code;
2549 (yyvsp[(1) - (1)].code)[strlen ((yyvsp[(1) - (1)].code)) - 1] = '\n';
2550 code_props_plain_init (&plain_code, (yyvsp[(1) - (1)].code)+1, (yylsp[(1) - (1)]));
2551 code_props_translate_code (&plain_code);
2552 gram_scanner_last_string_free ();
2553 (yyval.chars) = plain_code.code;
2554 }
2555 break;
2556
2557 case 96:
2558
2559 /* Line 1285 of yacc.c */
2560 #line 575 "parse-gram.y"
2561 { (yyval.symbol) = symbol_from_uniqstr ((yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
2562 break;
2563
2564 case 97:
2565
2566 /* Line 1285 of yacc.c */
2567 #line 577 "parse-gram.y"
2568 {
2569 (yyval.symbol) = symbol_get (char_name ((yyvsp[(1) - (1)].character)), (yylsp[(1) - (1)]));
2570 symbol_class_set ((yyval.symbol), token_sym, (yylsp[(1) - (1)]), false);
2571 symbol_user_token_number_set ((yyval.symbol), (yyvsp[(1) - (1)].character), (yylsp[(1) - (1)]));
2572 }
2573 break;
2574
2575 case 98:
2576
2577 /* Line 1285 of yacc.c */
2578 #line 585 "parse-gram.y"
2579 { (yyval.symbol) = symbol_from_uniqstr ((yyvsp[(1) - (1)].uniqstr), (yylsp[(1) - (1)])); }
2580 break;
2581
2582 case 101:
2583
2584 /* Line 1285 of yacc.c */
2585 #line 597 "parse-gram.y"
2586 {
2587 (yyval.symbol) = symbol_get (quotearg_style (c_quoting_style, (yyvsp[(1) - (1)].chars)), (yylsp[(1) - (1)]));
2588 symbol_class_set ((yyval.symbol), token_sym, (yylsp[(1) - (1)]), false);
2589 }
2590 break;
2591
2592 case 103:
2593
2594 /* Line 1285 of yacc.c */
2595 #line 606 "parse-gram.y"
2596 {
2597 code_props plain_code;
2598 code_props_plain_init (&plain_code, (yyvsp[(2) - (2)].chars), (yylsp[(2) - (2)]));
2599 code_props_translate_code (&plain_code);
2600 gram_scanner_last_string_free ();
2601 muscle_code_grow ("epilogue", plain_code.code, (yylsp[(2) - (2)]));
2602 code_scanner_last_string_free ();
2603 }
2604 break;
2605
2606
2607
2608 /* Line 1285 of yacc.c */
2609 #line 2610 "parse-gram.c"
2610 default: break;
2611 }
2612 YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
2613
2614 YYPOPSTACK (yylen);
2615 yylen = 0;
2616 YY_STACK_PRINT (yyss, yyssp);
2617
2618 *++yyvsp = yyval;
2619 *++yylsp = yyloc;
2620
2621 /* Now `shift' the result of the reduction. Determine what state
2622 that goes to, based on the state we popped back to and the rule
2623 number reduced by. */
2624
2625 yyn = yyr1[yyn];
2626
2627 yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
2628 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
2629 yystate = yytable[yystate];
2630 else
2631 yystate = yydefgoto[yyn - YYNTOKENS];
2632
2633 goto yynewstate;
2634
2635
2636 /*------------------------------------.
2637 | yyerrlab -- here on detecting error |
2638 `------------------------------------*/
2639 yyerrlab:
2640 /* If not already recovering from an error, report this error. */
2641 if (!yyerrstatus)
2642 {
2643 ++yynerrs;
2644 #if ! YYERROR_VERBOSE
2645 yyerror (YY_("syntax error"));
2646 #else
2647 {
2648 YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
2649 if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
2650 {
2651 YYSIZE_T yyalloc = 2 * yysize;
2652 if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
2653 yyalloc = YYSTACK_ALLOC_MAXIMUM;
2654 if (yymsg != yymsgbuf)
2655 YYSTACK_FREE (yymsg);
2656 yymsg = (char *) YYSTACK_ALLOC (yyalloc);
2657 if (yymsg)
2658 yymsg_alloc = yyalloc;
2659 else
2660 {
2661 yymsg = yymsgbuf;
2662 yymsg_alloc = sizeof yymsgbuf;
2663 }
2664 }
2665
2666 if (0 < yysize && yysize <= yymsg_alloc)
2667 {
2668 (void) yysyntax_error (yymsg, yystate, yychar);
2669 yyerror (yymsg);
2670 }
2671 else
2672 {
2673 yyerror (YY_("syntax error"));
2674 if (yysize != 0)
2675 goto yyexhaustedlab;
2676 }
2677 }
2678 #endif
2679 }
2680
2681 yyerror_range[0] = yylloc;
2682
2683 if (yyerrstatus == 3)
2684 {
2685 /* If just tried and failed to reuse lookahead token after an
2686 error, discard it. */
2687
2688 if (yychar <= YYEOF)
2689 {
2690 /* Return failure if at end of input. */
2691 if (yychar == YYEOF)
2692 YYABORT;
2693 }
2694 else
2695 {
2696 yydestruct ("Error: discarding",
2697 yytoken, &yylval, &yylloc);
2698 yychar = YYEMPTY;
2699 }
2700 }
2701
2702 /* Else will try to reuse lookahead token after shifting the error
2703 token. */
2704 goto yyerrlab1;
2705
2706
2707 /*---------------------------------------------------.
2708 | yyerrorlab -- error raised explicitly by YYERROR. |
2709 `---------------------------------------------------*/
2710 yyerrorlab:
2711
2712 /* Pacify compilers like GCC when the user code never invokes
2713 YYERROR and the label yyerrorlab therefore never appears in user
2714 code. */
2715 if (/*CONSTCOND*/ 0)
2716 goto yyerrorlab;
2717
2718 yyerror_range[0] = yylsp[1-yylen];
2719 /* Do not reclaim the symbols of the rule which action triggered
2720 this YYERROR. */
2721 YYPOPSTACK (yylen);
2722 yylen = 0;
2723 YY_STACK_PRINT (yyss, yyssp);
2724 yystate = *yyssp;
2725 goto yyerrlab1;
2726
2727
2728 /*-------------------------------------------------------------.
2729 | yyerrlab1 -- common code for both syntax error and YYERROR. |
2730 `-------------------------------------------------------------*/
2731 yyerrlab1:
2732 yyerrstatus = 3; /* Each real token shifted decrements this. */
2733
2734 for (;;)
2735 {
2736 yyn = yypact[yystate];
2737 if (yyn != YYPACT_NINF)
2738 {
2739 yyn += YYTERROR;
2740 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
2741 {
2742 yyn = yytable[yyn];
2743 if (0 < yyn)
2744 break;
2745 }
2746 }
2747
2748 /* Pop the current state because it cannot handle the error token. */
2749 if (yyssp == yyss)
2750 YYABORT;
2751
2752 yyerror_range[0] = *yylsp;
2753 yydestruct ("Error: popping",
2754 yystos[yystate], yyvsp, yylsp);
2755 YYPOPSTACK (1);
2756 yystate = *yyssp;
2757 YY_STACK_PRINT (yyss, yyssp);
2758 }
2759
2760 *++yyvsp = yylval;
2761
2762 yyerror_range[1] = yylloc;
2763 /* Using YYLLOC is tempting, but would change the location of
2764 the lookahead. YYLOC is available though. */
2765 YYLLOC_DEFAULT (yyloc, (yyerror_range - 1), 2);
2766 *++yylsp = yyloc;
2767
2768 /* Shift the error token. */
2769 YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
2770
2771 yystate = yyn;
2772 goto yynewstate;
2773
2774
2775 /*-------------------------------------.
2776 | yyacceptlab -- YYACCEPT comes here. |
2777 `-------------------------------------*/
2778 yyacceptlab:
2779 yyresult = 0;
2780 goto yyreturn;
2781
2782 /*-----------------------------------.
2783 | yyabortlab -- YYABORT comes here. |
2784 `-----------------------------------*/
2785 yyabortlab:
2786 yyresult = 1;
2787 goto yyreturn;
2788
2789 #ifndef yyoverflow
2790 /*-------------------------------------------------.
2791 | yyexhaustedlab -- memory exhaustion comes here. |
2792 `-------------------------------------------------*/
2793 yyexhaustedlab:
2794 yyerror (YY_("memory exhausted"));
2795 yyresult = 2;
2796 /* Fall through. */
2797 #endif
2798
2799 yyreturn:
2800 if (yychar != YYEMPTY)
2801 yydestruct ("Cleanup: discarding lookahead",
2802 yytoken, &yylval, &yylloc);
2803 /* Do not reclaim the symbols of the rule which action triggered
2804 this YYABORT or YYACCEPT. */
2805 YYPOPSTACK (yylen);
2806 YY_STACK_PRINT (yyss, yyssp);
2807 while (yyssp != yyss)
2808 {
2809 yydestruct ("Cleanup: popping",
2810 yystos[*yyssp], yyvsp, yylsp);
2811 YYPOPSTACK (1);
2812 }
2813 #ifndef yyoverflow
2814 if (yyss != yyssa)
2815 YYSTACK_FREE (yyss);
2816 #endif
2817 #if YYERROR_VERBOSE
2818 if (yymsg != yymsgbuf)
2819 YYSTACK_FREE (yymsg);
2820 #endif
2821 /* Make sure YYID is used. */
2822 return YYID (yyresult);
2823 }
2824
2825
2826
2827 /* Line 1502 of yacc.c */
2828 #line 616 "parse-gram.y"
2829
2830
2831
2832 /* Return the location of the left-hand side of a rule whose
2833 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
2834 the right-hand side, and return an empty location equal to the end
2835 boundary of RHS[0] if the right-hand side is empty. */
2836
2837 static YYLTYPE
2838 lloc_default (YYLTYPE const *rhs, int n)
2839 {
2840 int i;
2841 YYLTYPE loc;
2842
2843 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
2844 The bug is fixed in 7.4.2m, but play it safe for now. */
2845 loc.start = rhs[n].end;
2846 loc.end = rhs[n].end;
2847
2848 /* Ignore empty nonterminals the start of the the right-hand side.
2849 Do not bother to ignore them at the end of the right-hand side,
2850 since empty nonterminals have the same end as their predecessors. */
2851 for (i = 1; i <= n; i++)
2852 if (! equal_boundaries (rhs[i].start, rhs[i].end))
2853 {
2854 loc.start = rhs[i].start;
2855 break;
2856 }
2857
2858 return loc;
2859 }
2860
2861
2862 /* Add a lex-param or a parse-param (depending on TYPE) with
2863 declaration DECL and location LOC. */
2864
2865 static void
2866 add_param (char const *type, char *decl, location loc)
2867 {
2868 static char const alphanum[26 + 26 + 1 + 10] =
2869 "abcdefghijklmnopqrstuvwxyz"
2870 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
2871 "_"
2872 "0123456789";
2873 char const *name_start = NULL;
2874 char *p;
2875
2876 /* Stop on last actual character. */
2877 for (p = decl; p[1]; p++)
2878 if ((p == decl
2879 || ! memchr (alphanum, p[-1], sizeof alphanum))
2880 && memchr (alphanum, p[0], sizeof alphanum - 10))
2881 name_start = p;
2882
2883 /* Strip the surrounding '{' and '}', and any blanks just inside
2884 the braces. */
2885 while (*--p == ' ' || *p == '\t')
2886 continue;
2887 p[1] = '\0';
2888 while (*++decl == ' ' || *decl == '\t')
2889 continue;
2890
2891 if (! name_start)
2892 complain_at (loc, _("missing identifier in parameter declaration"));
2893 else
2894 {
2895 char *name;
2896 size_t name_len;
2897
2898 for (name_len = 1;
2899 memchr (alphanum, name_start[name_len], sizeof alphanum);
2900 name_len++)
2901 continue;
2902
2903 name = xmalloc (name_len + 1);
2904 memcpy (name, name_start, name_len);
2905 name[name_len] = '\0';
2906 muscle_pair_list_grow (type, decl, name);
2907 free (name);
2908 }
2909
2910 gram_scanner_last_string_free ();
2911 }
2912
2913
2914 static void
2915 version_check (location const *loc, char const *version)
2916 {
2917 if (strverscmp (version, PACKAGE_VERSION) > 0)
2918 {
2919 complain_at (*loc, "require bison %s, but have %s",
2920 version, PACKAGE_VERSION);
2921 exit (63);
2922 }
2923 }
2924
2925 static void
2926 gram_error (location const *loc, char const *msg)
2927 {
2928 complain_at (*loc, "%s", msg);
2929 }
2930
2931 char const *
2932 token_name (int type)
2933 {
2934 return yytname[YYTRANSLATE (type)];
2935 }
2936
2937 static char const *
2938 char_name (char c)
2939 {
2940 if (c == '\'')
2941 return "'\\''";
2942 else
2943 {
2944 char buf[4];
2945 buf[0] = '\''; buf[1] = c; buf[2] = '\''; buf[3] = '\0';
2946 return quotearg_style (escape_quoting_style, buf);
2947 }
2948 }
2949