1 /* A Bison parser, made by GNU Bison 2.5.53-c925. */
3 /* Bison implementation for Yacc-like parsers in C
5 Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* As a special exception, you may create a larger work that contains
21 part or all of the Bison parser skeleton and distribute that work
22 under terms of your choice, so long as that work isn't itself a
23 parser generator using the skeleton or a modified version thereof
24 as a parser skeleton. Alternatively, if you modify or redistribute
25 the parser skeleton itself, you may (at your option) remove this
26 special exception, which will cause the skeleton and the resulting
27 Bison output files to be licensed under the GNU General Public
28 License without this special exception.
30 This special exception was added by the Free Software Foundation in
31 version 2.2 of Bison. */
33 /* C LALR(1) parser skeleton written by Richard Stallman, by
34 simplifying the original so-called "semantic" parser. */
36 /* All symbols defined below should begin with yy or YY, to avoid
37 infringing on user name space. This should be done even for local
38 variables, as they might otherwise be expanded by user macros.
39 There are some unavoidable exceptions within include files to
40 define necessary library symbols; they are noted "INFRINGES ON
41 USER NAME SPACE" below. */
43 /* Identify Bison output. */
47 #define YYBISON_VERSION "2.5.53-c925"
50 #define YYSKELETON_NAME "yacc.c"
61 /* Using locations. */
62 #define YYLSP_NEEDED 1
64 /* Substitute the variable and function names. */
65 #define yyparse gram_parse
66 #define yylex gram_lex
67 #define yyerror gram_error
68 #define yylval gram_lval
69 #define yychar gram_char
70 #define yydebug gram_debug
71 #define yynerrs gram_nerrs
72 #define yylloc gram_lloc
74 /* Copy the first part of user declarations. */
76 /* Line 268 of yacc.c */
77 #line 1 "parse-gram.y"
78 /* Bison Grammar Parser -*- C -*-
80 Copyright (C) 2002-2012 Free Software Foundation, Inc.
82 This file is part of Bison, the GNU Compiler Compiler.
84 This program is free software: you can redistribute it and/or modify
85 it under the terms of the GNU General Public License as published by
86 the Free Software Foundation, either version 3 of the License, or
87 (at your option) any later version.
89 This program is distributed in the hope that it will be useful,
90 but WITHOUT ANY WARRANTY; without even the implied warranty of
91 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
92 GNU General Public License for more details.
94 You should have received a copy of the GNU General Public License
95 along with this program. If not, see <http://www.gnu.org/licenses/>. */
100 #include "complain.h"
101 #include "conflicts.h"
105 #include "muscle-tab.h"
106 #include "named-ref.h"
107 #include "quotearg.h"
110 #include "scan-gram.h"
111 #include "scan-code.h"
113 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
114 static YYLTYPE
lloc_default (YYLTYPE
const *, int);
116 #define YY_LOCATION_PRINT(File, Loc) \
117 location_print (File, Loc)
119 static void version_check (location
const *loc
, char const *version
);
121 /* Request detailed syntax error messages, and pass them to GRAM_ERROR.
122 FIXME: depends on the undocumented availability of YYLLOC. */
124 #define yyerror(Msg) \
125 gram_error (&yylloc, Msg)
126 static void gram_error (location
const *, char const *);
128 static char const *char_name (char);
130 /** Add a lex-param or a parse-param.
132 * \param type \a lex_param or \a parse_param
133 * \param decl the formal argument
134 * \param loc the location in the source.
136 static void add_param (char const *type
, char *decl
, location loc
);
139 static symbol_class current_class
= unknown_sym
;
140 static uniqstr current_type
= NULL
;
141 static symbol
*current_lhs_symbol
;
142 static location current_lhs_location
;
143 static named_ref
*current_lhs_named_ref
;
144 static int current_prec
= 0;
146 /** Set the new current left-hand side symbol, possibly common
147 * to several right-hand side parts of rule.
151 current_lhs(symbol
*sym
, location loc
, named_ref
*ref
)
153 current_lhs_symbol
= sym
;
154 current_lhs_location
= loc
;
155 /* In order to simplify memory management, named references for lhs
156 are always assigned by deep copy into the current symbol_list
157 node. This is because a single named-ref in the grammar may
158 result in several uses when the user factors lhs between several
159 rules using "|". Therefore free the parser's original copy. */
160 free (current_lhs_named_ref
);
161 current_lhs_named_ref
= ref
;
165 #define YYTYPE_INT16 int_fast16_t
166 #define YYTYPE_INT8 int_fast8_t
167 #define YYTYPE_UINT16 uint_fast16_t
168 #define YYTYPE_UINT8 uint_fast8_t
171 /* Line 268 of yacc.c */
172 #line 173 "../../../src/parse-gram.c"
174 /* Enabling traces. */
179 /* Enabling verbose error messages. */
180 #ifdef YYERROR_VERBOSE
181 # undef YYERROR_VERBOSE
182 # define YYERROR_VERBOSE 1
184 # define YYERROR_VERBOSE 1
187 /* Enabling the token table. */
188 #ifndef YYTOKEN_TABLE
189 # define YYTOKEN_TABLE 0
196 /* Put the tokens into the symbol table, so that GDB and other debuggers
205 PERCENT_DESTRUCTOR
= 263,
206 PERCENT_PRINTER
= 264,
209 PERCENT_NONASSOC
= 267,
215 PERCENT_DEFAULT_PREC
= 273,
216 PERCENT_DEFINE
= 274,
217 PERCENT_DEFINES
= 275,
218 PERCENT_ERROR_VERBOSE
= 276,
219 PERCENT_EXPECT
= 277,
220 PERCENT_EXPECT_RR
= 278,
221 PERCENT_FILE_PREFIX
= 279,
222 PERCENT_GLR_PARSER
= 280,
223 PERCENT_INITIAL_ACTION
= 281,
224 PERCENT_LANGUAGE
= 282,
225 PERCENT_LEX_PARAM
= 283,
226 PERCENT_LOCATIONS
= 284,
227 PERCENT_NAME_PREFIX
= 285,
228 PERCENT_NO_DEFAULT_PREC
= 286,
229 PERCENT_NO_LINES
= 287,
230 PERCENT_NONDETERMINISTIC_PARSER
= 288,
231 PERCENT_OUTPUT
= 289,
232 PERCENT_PARSE_PARAM
= 290,
233 PERCENT_PURE_PARSER
= 291,
234 PERCENT_REQUIRE
= 292,
235 PERCENT_SKELETON
= 293,
237 PERCENT_TOKEN_TABLE
= 295,
238 PERCENT_VERBOSE
= 296,
247 PERCENT_PERCENT
= 305,
261 #define PERCENT_TOKEN 260
262 #define PERCENT_NTERM 261
263 #define PERCENT_TYPE 262
264 #define PERCENT_DESTRUCTOR 263
265 #define PERCENT_PRINTER 264
266 #define PERCENT_LEFT 265
267 #define PERCENT_RIGHT 266
268 #define PERCENT_NONASSOC 267
269 #define PERCENT_PREC 268
270 #define PERCENT_DPREC 269
271 #define PERCENT_MERGE 270
272 #define PERCENT_CODE 271
273 #define PERCENT_DEBUG 272
274 #define PERCENT_DEFAULT_PREC 273
275 #define PERCENT_DEFINE 274
276 #define PERCENT_DEFINES 275
277 #define PERCENT_ERROR_VERBOSE 276
278 #define PERCENT_EXPECT 277
279 #define PERCENT_EXPECT_RR 278
280 #define PERCENT_FILE_PREFIX 279
281 #define PERCENT_GLR_PARSER 280
282 #define PERCENT_INITIAL_ACTION 281
283 #define PERCENT_LANGUAGE 282
284 #define PERCENT_LEX_PARAM 283
285 #define PERCENT_LOCATIONS 284
286 #define PERCENT_NAME_PREFIX 285
287 #define PERCENT_NO_DEFAULT_PREC 286
288 #define PERCENT_NO_LINES 287
289 #define PERCENT_NONDETERMINISTIC_PARSER 288
290 #define PERCENT_OUTPUT 289
291 #define PERCENT_PARSE_PARAM 290
292 #define PERCENT_PURE_PARSER 291
293 #define PERCENT_REQUIRE 292
294 #define PERCENT_SKELETON 293
295 #define PERCENT_START 294
296 #define PERCENT_TOKEN_TABLE 295
297 #define PERCENT_VERBOSE 296
298 #define PERCENT_YACC 297
299 #define BRACED_CODE 298
300 #define BRACKETED_ID 299
306 #define PERCENT_PERCENT 305
309 #define SEMICOLON 308
311 #define TYPE_TAG_ANY 310
312 #define TYPE_TAG_NONE 311
313 #define PERCENT_UNION 312
318 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
319 typedef union YYSTYPE
322 /* Line 293 of yacc.c */
323 #line 113 "parse-gram.y"
332 unsigned char character
;
333 named_ref
*named_ref
;
337 /* Line 293 of yacc.c */
338 #line 339 "../../../src/parse-gram.c"
340 # define YYSTYPE_IS_TRIVIAL 1
341 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
342 # define YYSTYPE_IS_DECLARED 1
345 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
346 typedef struct YYLTYPE
353 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
354 # define YYLTYPE_IS_DECLARED 1
355 # define YYLTYPE_IS_TRIVIAL 1
359 /* Copy the second part of user declarations. */
362 /* Line 343 of yacc.c */
363 #line 364 "../../../src/parse-gram.c"
370 typedef YYTYPE_UINT8 yytype_uint8
;
372 typedef unsigned char yytype_uint8
;
376 typedef YYTYPE_INT8 yytype_int8
;
377 #elif (defined __STDC__ || defined __C99__FUNC__ \
378 || defined __cplusplus || defined _MSC_VER)
379 typedef signed char yytype_int8
;
381 typedef short int yytype_int8
;
385 typedef YYTYPE_UINT16 yytype_uint16
;
387 typedef unsigned short int yytype_uint16
;
391 typedef YYTYPE_INT16 yytype_int16
;
393 typedef short int yytype_int16
;
397 # ifdef __SIZE_TYPE__
398 # define YYSIZE_T __SIZE_TYPE__
399 # elif defined size_t
400 # define YYSIZE_T size_t
401 # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
402 || defined __cplusplus || defined _MSC_VER)
403 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
404 # define YYSIZE_T size_t
406 # define YYSIZE_T unsigned int
410 #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
413 # if defined YYENABLE_NLS && YYENABLE_NLS
415 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
416 # define YY_(msgid) dgettext ("bison-runtime", msgid)
420 # define YY_(msgid) msgid
424 /* Suppress unused-variable warnings by "using" E. */
425 #if ! defined lint || defined __GNUC__
426 # define YYUSE(e) ((void) (e))
428 # define YYUSE(e) /* empty */
431 /* Identity function, used to suppress warnings about constant conditions. */
435 #if (defined __STDC__ || defined __C99__FUNC__ \
436 || defined __cplusplus || defined _MSC_VER)
451 /* The parser invokes alloca or malloc; define the necessary symbols. */
453 # ifdef YYSTACK_ALLOC
454 /* Pacify GCC's `empty if-body' warning. */
455 # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
456 # ifndef YYSTACK_ALLOC_MAXIMUM
457 /* The OS might guarantee only one guard page at the bottom of the stack,
458 and a page size can be as small as 4096 bytes. So we cannot safely
459 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
460 to allow for a few compiler-allocated temporary stack slots. */
461 # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
464 # define YYSTACK_ALLOC YYMALLOC
465 # define YYSTACK_FREE YYFREE
466 # ifndef YYSTACK_ALLOC_MAXIMUM
467 # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
469 # if (defined __cplusplus && ! defined EXIT_SUCCESS \
470 && ! ((defined YYMALLOC || defined malloc) \
471 && (defined YYFREE || defined free)))
472 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
473 # ifndef EXIT_SUCCESS
474 # define EXIT_SUCCESS 0
478 # define YYMALLOC malloc
479 # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
480 || defined __cplusplus || defined _MSC_VER)
481 void *malloc (YYSIZE_T
); /* INFRINGES ON USER NAME SPACE */
486 # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
487 || defined __cplusplus || defined _MSC_VER)
488 void free (void *); /* INFRINGES ON USER NAME SPACE */
492 # define YYCOPY_NEEDED 1
496 #if (! defined yyoverflow \
497 && (! defined __cplusplus \
498 || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
499 && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
501 /* A type that is properly aligned for any stack member. */
504 yytype_int16 yyss_alloc
;
509 /* The size of the maximum gap between one aligned stack and the next. */
510 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
512 /* The size of an array large to enough to hold all stacks, each with
514 # define YYSTACK_BYTES(N) \
515 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
516 + 2 * YYSTACK_GAP_MAXIMUM)
518 # define YYCOPY_NEEDED 1
520 /* Relocate STACK from its old location to the new one. The
521 local variables YYSIZE and YYSTACKSIZE give the old and new number of
522 elements in the stack, and YYPTR gives the new location of the
523 stack. Advance YYPTR to a properly aligned location for the next
525 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
528 YYSIZE_T yynewbytes; \
529 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
530 Stack = &yyptr->Stack_alloc; \
531 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
532 yyptr += yynewbytes / sizeof (*yyptr); \
538 #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
539 /* Copy COUNT objects from FROM to TO. The source and destination do
542 # if defined __GNUC__ && 1 < __GNUC__
543 # define YYCOPY(To, From, Count) \
544 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
546 # define YYCOPY(To, From, Count) \
550 for (yyi = 0; yyi < (Count); yyi++) \
551 (To)[yyi] = (From)[yyi]; \
556 #endif /* !YYCOPY_NEEDED */
558 /* YYFINAL -- State number of the termination state. */
560 /* YYLAST -- Last index in YYTABLE. */
563 /* YYNTOKENS -- Number of terminals. */
565 /* YYNNTS -- Number of nonterminals. */
567 /* YYNRULES -- Number of rules. */
569 /* YYNRULES -- Number of states. */
570 #define YYNSTATES 148
572 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
574 #define YYMAXUTOK 312
576 #define YYTRANSLATE(YYX) \
577 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
579 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
580 static const yytype_uint8 yytranslate
[] =
582 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
583 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
584 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
585 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
586 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
587 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
588 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
589 2, 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, 1, 2, 3, 4,
608 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
609 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
610 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
611 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
612 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
617 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
619 static const yytype_uint16 yyprhs
[] =
621 0, 0, 3, 8, 9, 12, 14, 16, 18, 22,
622 24, 27, 29, 32, 35, 38, 42, 44, 47, 50,
623 53, 55, 58, 62, 64, 66, 69, 73, 76, 78,
624 81, 84, 86, 88, 90, 92, 94, 96, 99, 103,
625 107, 109, 111, 114, 118, 119, 121, 125, 126, 130,
626 131, 135, 139, 143, 145, 147, 149, 150, 152, 154,
627 157, 159, 162, 164, 167, 169, 172, 174, 176, 178,
628 180, 182, 184, 187, 190, 194, 196, 199, 201, 204,
629 206, 209, 212, 213, 218, 220, 224, 227, 228, 232,
630 236, 240, 244, 248, 249, 251, 253, 255, 256, 258,
631 260, 262, 264, 266, 268, 270, 272, 274, 275
634 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
635 static const yytype_int8 yyrhs
[] =
637 59, 0, -1, 60, 50, 77, 91, -1, -1, 60,
638 61, -1, 62, -1, 52, -1, 17, -1, 19, 84,
639 85, -1, 20, -1, 20, 3, -1, 21, -1, 22,
640 4, -1, 23, 4, -1, 24, 3, -1, 24, 47,
641 3, -1, 25, -1, 26, 43, -1, 27, 3, -1,
642 28, 43, -1, 29, -1, 30, 3, -1, 30, 47,
643 3, -1, 32, -1, 33, -1, 34, 3, -1, 34,
644 47, 3, -1, 35, 43, -1, 36, -1, 37, 3,
645 -1, 38, 3, -1, 40, -1, 41, -1, 42, -1,
646 53, -1, 67, -1, 64, -1, 39, 89, -1, 8,
647 43, 73, -1, 9, 43, 73, -1, 18, -1, 31,
648 -1, 16, 86, -1, 16, 48, 86, -1, -1, 48,
649 -1, 57, 63, 86, -1, -1, 6, 65, 76, -1,
650 -1, 5, 66, 76, -1, 7, 54, 72, -1, 68,
651 69, 70, -1, 10, -1, 11, -1, 12, -1, -1,
652 54, -1, 71, -1, 70, 71, -1, 89, -1, 89,
653 4, -1, 89, -1, 72, 89, -1, 74, -1, 73,
654 74, -1, 89, -1, 54, -1, 55, -1, 56, -1,
655 54, -1, 87, -1, 87, 4, -1, 87, 90, -1,
656 87, 4, 90, -1, 75, -1, 76, 75, -1, 78,
657 -1, 77, 78, -1, 79, -1, 62, 53, -1, 1,
658 53, -1, -1, 88, 83, 80, 81, -1, 82, -1,
659 81, 51, 82, -1, 81, 53, -1, -1, 82, 89,
660 83, -1, 82, 43, 83, -1, 82, 13, 89, -1,
661 82, 14, 4, -1, 82, 15, 54, -1, -1, 44,
662 -1, 48, -1, 3, -1, -1, 48, -1, 3, -1,
663 43, -1, 48, -1, 45, -1, 49, -1, 87, -1,
664 90, -1, 3, -1, -1, 50, 46, -1
667 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
668 static const yytype_uint16 yyrline
[] =
670 0, 228, 228, 236, 238, 242, 243, 253, 254, 259,
671 260, 265, 266, 267, 268, 269, 270, 275, 284, 285,
672 286, 287, 288, 289, 290, 291, 292, 293, 294, 309,
673 310, 334, 335, 336, 337, 341, 342, 343, 347, 354,
674 361, 365, 369, 376, 391, 392, 396, 408, 408, 413,
675 413, 418, 429, 444, 445, 446, 450, 451, 456, 458,
676 463, 464, 469, 471, 476, 477, 481, 482, 483, 484,
677 489, 494, 499, 505, 511, 522, 523, 532, 533, 539,
678 540, 541, 548, 548, 556, 557, 558, 563, 565, 567,
679 569, 571, 573, 578, 580, 591, 592, 597, 598, 599,
680 608, 628, 630, 639, 644, 645, 650, 657, 659
684 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
685 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
686 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
687 static const char *const yytname
[] =
689 "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"",
690 "\"%token\"", "\"%nterm\"", "\"%type\"", "\"%destructor\"",
691 "\"%printer\"", "\"%left\"", "\"%right\"", "\"%nonassoc\"", "\"%prec\"",
692 "\"%dprec\"", "\"%merge\"", "\"%code\"", "\"%debug\"",
693 "\"%default-prec\"", "\"%define\"", "\"%defines\"", "\"%error-verbose\"",
694 "\"%expect\"", "\"%expect-rr\"", "\"%file-prefix\"", "\"%glr-parser\"",
695 "\"%initial-action\"", "\"%language\"", "\"%lex-param\"",
696 "\"%locations\"", "\"%name-prefix\"", "\"%no-default-prec\"",
697 "\"%no-lines\"", "\"%nondeterministic-parser\"", "\"%output\"",
698 "\"%parse-param\"", "\"%pure-parser\"", "\"%require\"", "\"%skeleton\"",
699 "\"%start\"", "\"%token-table\"", "\"%verbose\"", "\"%yacc\"",
700 "\"{...}\"", "\"[identifier]\"", "\"char\"", "\"epilogue\"", "\"=\"",
701 "\"identifier\"", "\"identifier:\"", "\"%%\"", "\"|\"", "\"%{...%}\"",
702 "\";\"", "\"type\"", "\"<*>\"", "\"<>\"", "\"%union\"", "$accept",
703 "input", "prologue_declarations", "prologue_declaration",
704 "grammar_declaration", "union_name", "symbol_declaration", "$@1", "$@2",
705 "precedence_declaration", "precedence_declarator", "type.opt",
706 "symbols.prec", "symbol.prec", "symbols.1", "generic_symlist",
707 "generic_symlist_item", "symbol_def", "symbol_defs.1", "grammar",
708 "rules_or_grammar_declaration", "rules", "$@3", "rhses.1", "rhs",
709 "named_ref.opt", "variable", "content.opt", "braceless", "id",
710 "id_colon", "symbol", "string_as_id", "epilogue.opt", 0
715 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
717 static const yytype_uint16 yytoknum
[] =
719 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
720 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
721 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
722 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
723 295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
724 305, 306, 307, 308, 309, 310, 311, 312
728 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
729 static const yytype_uint8 yyr1
[] =
731 0, 58, 59, 60, 60, 61, 61, 61, 61, 61,
732 61, 61, 61, 61, 61, 61, 61, 61, 61, 61,
733 61, 61, 61, 61, 61, 61, 61, 61, 61, 61,
734 61, 61, 61, 61, 61, 62, 62, 62, 62, 62,
735 62, 62, 62, 62, 63, 63, 62, 65, 64, 66,
736 64, 64, 67, 68, 68, 68, 69, 69, 70, 70,
737 71, 71, 72, 72, 73, 73, 74, 74, 74, 74,
738 75, 75, 75, 75, 75, 76, 76, 77, 77, 78,
739 78, 78, 80, 79, 81, 81, 81, 82, 82, 82,
740 82, 82, 82, 83, 83, 84, 84, 85, 85, 85,
741 86, 87, 87, 88, 89, 89, 90, 91, 91
744 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
745 static const yytype_uint8 yyr2
[] =
747 0, 2, 4, 0, 2, 1, 1, 1, 3, 1,
748 2, 1, 2, 2, 2, 3, 1, 2, 2, 2,
749 1, 2, 3, 1, 1, 2, 3, 2, 1, 2,
750 2, 1, 1, 1, 1, 1, 1, 2, 3, 3,
751 1, 1, 2, 3, 0, 1, 3, 0, 3, 0,
752 3, 3, 3, 1, 1, 1, 0, 1, 1, 2,
753 1, 2, 1, 2, 1, 2, 1, 1, 1, 1,
754 1, 1, 2, 2, 3, 1, 2, 1, 2, 1,
755 2, 2, 0, 4, 1, 3, 2, 0, 3, 3,
756 3, 3, 3, 0, 1, 1, 1, 0, 1, 1,
757 1, 1, 1, 1, 1, 1, 1, 0, 2
760 /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
761 Performed when YYTABLE doesn't specify something else to do. Zero
762 means the default is an error. */
763 static const yytype_uint8 yydefact
[] =
765 3, 0, 0, 1, 49, 47, 0, 0, 0, 53,
766 54, 55, 0, 7, 40, 0, 9, 11, 0, 0,
767 0, 16, 0, 0, 0, 20, 0, 41, 23, 24,
768 0, 0, 28, 0, 0, 0, 31, 32, 33, 0,
769 6, 34, 44, 4, 5, 36, 35, 56, 0, 0,
770 0, 0, 0, 100, 0, 42, 96, 95, 97, 10,
771 12, 13, 14, 0, 17, 18, 19, 21, 0, 25,
772 0, 27, 29, 30, 106, 102, 101, 104, 37, 105,
773 0, 103, 0, 0, 77, 79, 93, 45, 0, 57,
774 0, 70, 75, 50, 71, 48, 51, 62, 67, 68,
775 69, 38, 64, 66, 39, 43, 99, 98, 8, 15,
776 22, 26, 81, 80, 0, 78, 2, 94, 82, 46,
777 52, 58, 60, 76, 72, 73, 63, 65, 108, 87,
778 59, 61, 74, 83, 84, 87, 86, 0, 0, 0,
779 93, 93, 85, 90, 91, 92, 89, 88
782 /* YYDEFGOTO[NTERM-NUM]. */
783 static const yytype_int16 yydefgoto
[] =
785 -1, 1, 2, 43, 82, 88, 45, 49, 48, 46,
786 47, 90, 120, 121, 96, 101, 102, 92, 93, 83,
787 84, 85, 129, 133, 134, 118, 58, 108, 55, 77,
791 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
793 #define YYPACT_NINF -91
794 static const yytype_int16 yypact
[] =
796 -91, 3, 103, -91, -91, -91, -36, 2, 10, -91,
797 -91, -91, 9, -91, -91, 32, 60, -91, 65, 67,
798 27, -91, 41, 73, 51, -91, 39, -91, -91, -91,
799 40, 52, -91, 93, 95, 33, -91, -91, -91, 15,
800 -91, -91, 53, -91, -91, -91, -91, 46, 43, 43,
801 33, 11, 11, -91, 61, -91, -91, -91, 35, -91,
802 -91, -91, -91, 100, -91, -91, -91, -91, 102, -91,
803 113, -91, -91, -91, -91, -91, -91, -91, -91, -91,
804 64, -91, 94, 1, -91, -91, 62, -91, 61, -91,
805 33, -91, -91, 43, 86, 43, 33, -91, -91, -91,
806 -91, 11, -91, -91, 11, -91, -91, -91, -91, -91,
807 -91, -91, -91, -91, 72, -91, -91, -91, -91, -91,
808 33, -91, 142, -91, 145, -91, -91, -91, -91, -91,
809 -91, -91, -91, 17, 34, -91, -91, 33, 146, 97,
810 62, 62, 34, -91, -91, -91, -91, -91
813 /* YYPGOTO[NTERM-NUM]. */
814 static const yytype_int16 yypgoto
[] =
816 -91, -91, -91, -91, 147, -91, -91, -91, -91, -91,
817 -91, -91, -91, 37, -91, 106, -60, -33, 105, -91,
818 69, -91, -91, -91, 24, -48, -91, -91, -49, -20,
822 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
823 positive, shift that token. If negative, reduce the rule which
824 number is the opposite. If YYTABLE_NINF, syntax error. */
825 #define YYTABLE_NINF -108
826 static const yytype_int16 yytable
[] =
828 78, -107, 80, 3, 125, 105, 4, 5, 6, 7,
829 8, 9, 10, 11, 74, 97, 80, 12, 50, 14,
830 4, 5, 6, 7, 8, 9, 10, 11, 94, 94,
831 62, 12, 27, 14, 132, 56, 74, 74, 106, 119,
832 35, 127, 67, 69, 127, 51, 27, 137, 138, 139,
833 81, 114, 53, 52, 35, 122, 75, 54, 42, 76,
834 123, 126, 123, 59, 81, 98, 99, 100, 135, 60,
835 136, 61, 42, 94, 63, 94, 65, 140, 75, 75,
836 57, 76, 76, 107, 64, 122, 68, 70, 75, 74,
837 124, 76, 146, 147, 66, 71, 72, 91, 73, 141,
838 89, 87, 143, 109, 53, 110, 117, 141, 4, 5,
839 6, 7, 8, 9, 10, 11, 111, 112, 128, 12,
840 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
841 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
842 33, 34, 35, 36, 37, 38, 131, 113, 74, 44,
843 144, 145, 115, 39, 95, 40, 41, 130, 104, 142,
847 #define yypact_value_is_default(yystate) \
850 #define yytable_value_is_error(yytable_value) \
853 static const yytype_uint8 yycheck
[] =
855 35, 0, 1, 0, 94, 54, 5, 6, 7, 8,
856 9, 10, 11, 12, 3, 50, 1, 16, 54, 18,
857 5, 6, 7, 8, 9, 10, 11, 12, 48, 49,
858 3, 16, 31, 18, 124, 3, 3, 3, 3, 88,
859 39, 101, 3, 3, 104, 43, 31, 13, 14, 15,
860 49, 50, 43, 43, 39, 90, 45, 48, 57, 48,
861 93, 96, 95, 3, 49, 54, 55, 56, 51, 4,
862 53, 4, 57, 93, 47, 95, 3, 43, 45, 45,
863 48, 48, 48, 48, 43, 120, 47, 47, 45, 3,
864 4, 48, 140, 141, 43, 43, 3, 54, 3, 134,
865 54, 48, 137, 3, 43, 3, 44, 142, 5, 6,
866 7, 8, 9, 10, 11, 12, 3, 53, 46, 16,
867 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
868 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
869 37, 38, 39, 40, 41, 42, 4, 53, 3, 2,
870 4, 54, 83, 50, 49, 52, 53, 120, 52, 135,
874 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
875 symbol of state STATE-NUM. */
876 static const yytype_uint8 yystos
[] =
878 0, 59, 60, 0, 5, 6, 7, 8, 9, 10,
879 11, 12, 16, 17, 18, 19, 20, 21, 22, 23,
880 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
881 34, 35, 36, 37, 38, 39, 40, 41, 42, 50,
882 52, 53, 57, 61, 62, 64, 67, 68, 66, 65,
883 54, 43, 43, 43, 48, 86, 3, 48, 84, 3,
884 4, 4, 3, 47, 43, 3, 43, 3, 47, 3,
885 47, 43, 3, 3, 3, 45, 48, 87, 89, 90,
886 1, 49, 62, 77, 78, 79, 88, 48, 63, 54,
887 69, 54, 75, 76, 87, 76, 72, 89, 54, 55,
888 56, 73, 74, 89, 73, 86, 3, 48, 85, 3,
889 3, 3, 53, 53, 50, 78, 91, 44, 83, 86,
890 70, 71, 89, 75, 4, 90, 89, 74, 46, 80,
891 71, 4, 90, 81, 82, 51, 53, 13, 14, 15,
892 43, 89, 82, 89, 4, 54, 83, 83
895 #define yyerrok (yyerrstatus = 0)
896 #define yyclearin (yychar = YYEMPTY)
900 #define YYACCEPT goto yyacceptlab
901 #define YYABORT goto yyabortlab
902 #define YYERROR goto yyerrorlab
905 /* Like YYERROR except do call yyerror. This remains here temporarily
906 to ease the transition to the new meaning of YYERROR, for GCC.
907 Once GCC version 2 has supplanted version 1, this can go. However,
908 YYFAIL appears to be in use. Nevertheless, it is formally deprecated
909 in Bison 2.4.2's NEWS entry, where a plan to phase it out is
912 #define YYFAIL goto yyerrlab
914 /* This is here to suppress warnings from the GCC cpp's
915 -Wunused-macros. Normally we don't worry about that warning, but
916 some users do, and we want to make it easy for users to remove
917 YYFAIL uses, which will produce warnings from Bison 2.5. */
920 #define YYRECOVERING() (!!yyerrstatus)
922 #define YYBACKUP(Token, Value) \
924 if (yychar == YYEMPTY) \
928 YYPOPSTACK (yylen); \
930 YY_LAC_DISCARD ("YYBACKUP"); \
935 yyerror (YY_("syntax error: cannot back up")); \
942 #define YYERRCODE 256
945 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
946 If N is 0, then set CURRENT to the empty location which ends
947 the previous symbol: RHS[0] (always defined). */
949 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
950 #ifndef YYLLOC_DEFAULT
951 # define YYLLOC_DEFAULT(Current, Rhs, N) \
955 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
956 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
957 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
958 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
962 (Current).first_line = (Current).last_line = \
963 YYRHSLOC (Rhs, 0).last_line; \
964 (Current).first_column = (Current).last_column = \
965 YYRHSLOC (Rhs, 0).last_column; \
971 /* YY_LOCATION_PRINT -- Print the location on the stream.
972 This macro was not mandated originally: define only if we know
973 we won't break user code: when these are the locations we know. */
975 #ifndef YY_LOCATION_PRINT
976 # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
977 # define YY_LOCATION_PRINT(File, Loc) \
978 fprintf (File, "%d.%d-%d.%d", \
979 (Loc).first_line, (Loc).first_column, \
980 (Loc).last_line, (Loc).last_column)
982 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
987 /* YYLEX -- calling `yylex' with the right arguments. */
990 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
992 # define YYLEX yylex (&yylval, &yylloc)
995 /* Enable debugging if requested. */
999 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
1000 # define YYFPRINTF fprintf
1003 # define YYDPRINTF(Args) \
1009 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
1013 YYFPRINTF (stderr, "%s ", Title); \
1014 yy_symbol_print (stderr, \
1015 Type, Value, Location); \
1016 YYFPRINTF (stderr, "\n"); \
1021 /*--------------------------------.
1022 | Print this symbol on YYOUTPUT. |
1023 `--------------------------------*/
1026 #if (defined __STDC__ || defined __C99__FUNC__ \
1027 || defined __cplusplus || defined _MSC_VER)
1029 yy_symbol_value_print (FILE *yyoutput
, int yytype
, YYSTYPE
const * const yyvaluep
, YYLTYPE
const * const yylocationp
)
1032 yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
)
1035 YYSTYPE
const * const yyvaluep
;
1036 YYLTYPE
const * const yylocationp
;
1041 YYUSE (yylocationp
);
1043 if (yytype
< YYNTOKENS
)
1044 YYPRINT (yyoutput
, yytoknum
[yytype
], *yyvaluep
);
1050 case 3: /* "\"string\"" */
1052 /* Line 820 of yacc.c */
1053 #line 203 "parse-gram.y"
1054 { fputs (quotearg_style (c_quoting_style
, (yyvaluep
->chars
)), stderr
); };
1056 /* Line 820 of yacc.c */
1057 #line 1058 "../../../src/parse-gram.c"
1059 case 4: /* "\"integer\"" */
1061 /* Line 820 of yacc.c */
1062 #line 215 "parse-gram.y"
1063 { fprintf (stderr
, "%d", (yyvaluep
->integer
)); };
1065 /* Line 820 of yacc.c */
1066 #line 1067 "../../../src/parse-gram.c"
1068 case 43: /* "\"{...}\"" */
1070 /* Line 820 of yacc.c */
1071 #line 205 "parse-gram.y"
1072 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->code
)); };
1074 /* Line 820 of yacc.c */
1075 #line 1076 "../../../src/parse-gram.c"
1077 case 44: /* "\"[identifier]\"" */
1079 /* Line 820 of yacc.c */
1080 #line 210 "parse-gram.y"
1081 { fprintf (stderr
, "[%s]", (yyvaluep
->uniqstr
)); };
1083 /* Line 820 of yacc.c */
1084 #line 1085 "../../../src/parse-gram.c"
1086 case 45: /* "\"char\"" */
1088 /* Line 820 of yacc.c */
1089 #line 197 "parse-gram.y"
1090 { fputs (char_name ((yyvaluep
->character
)), stderr
); };
1092 /* Line 820 of yacc.c */
1093 #line 1094 "../../../src/parse-gram.c"
1095 case 46: /* "\"epilogue\"" */
1097 /* Line 820 of yacc.c */
1098 #line 205 "parse-gram.y"
1099 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1101 /* Line 820 of yacc.c */
1102 #line 1103 "../../../src/parse-gram.c"
1104 case 48: /* "\"identifier\"" */
1106 /* Line 820 of yacc.c */
1107 #line 209 "parse-gram.y"
1108 { fputs ((yyvaluep
->uniqstr
), stderr
); };
1110 /* Line 820 of yacc.c */
1111 #line 1112 "../../../src/parse-gram.c"
1113 case 49: /* "\"identifier:\"" */
1115 /* Line 820 of yacc.c */
1116 #line 211 "parse-gram.y"
1117 { fprintf (stderr
, "%s:", (yyvaluep
->uniqstr
)); };
1119 /* Line 820 of yacc.c */
1120 #line 1121 "../../../src/parse-gram.c"
1122 case 52: /* "\"%{...%}\"" */
1124 /* Line 820 of yacc.c */
1125 #line 205 "parse-gram.y"
1126 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1128 /* Line 820 of yacc.c */
1129 #line 1130 "../../../src/parse-gram.c"
1131 case 54: /* "\"type\"" */
1133 /* Line 820 of yacc.c */
1134 #line 212 "parse-gram.y"
1135 { fprintf (stderr
, "<%s>", (yyvaluep
->uniqstr
)); };
1137 /* Line 820 of yacc.c */
1138 #line 1139 "../../../src/parse-gram.c"
1140 case 71: /* "symbol.prec" */
1142 /* Line 820 of yacc.c */
1143 #line 218 "parse-gram.y"
1144 { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); };
1146 /* Line 820 of yacc.c */
1147 #line 1148 "../../../src/parse-gram.c"
1149 case 84: /* "variable" */
1151 /* Line 820 of yacc.c */
1152 #line 209 "parse-gram.y"
1153 { fputs ((yyvaluep
->uniqstr
), stderr
); };
1155 /* Line 820 of yacc.c */
1156 #line 1157 "../../../src/parse-gram.c"
1158 case 85: /* "content.opt" */
1160 /* Line 820 of yacc.c */
1161 #line 205 "parse-gram.y"
1162 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1164 /* Line 820 of yacc.c */
1165 #line 1166 "../../../src/parse-gram.c"
1167 case 86: /* "braceless" */
1169 /* Line 820 of yacc.c */
1170 #line 205 "parse-gram.y"
1171 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1173 /* Line 820 of yacc.c */
1174 #line 1175 "../../../src/parse-gram.c"
1178 /* Line 820 of yacc.c */
1179 #line 218 "parse-gram.y"
1180 { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); };
1182 /* Line 820 of yacc.c */
1183 #line 1184 "../../../src/parse-gram.c"
1185 case 88: /* "id_colon" */
1187 /* Line 820 of yacc.c */
1188 #line 219 "parse-gram.y"
1189 { fprintf (stderr
, "%s:", (yyvaluep
->symbol
)->tag
); };
1191 /* Line 820 of yacc.c */
1192 #line 1193 "../../../src/parse-gram.c"
1194 case 89: /* "symbol" */
1196 /* Line 820 of yacc.c */
1197 #line 218 "parse-gram.y"
1198 { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); };
1200 /* Line 820 of yacc.c */
1201 #line 1202 "../../../src/parse-gram.c"
1203 case 90: /* "string_as_id" */
1205 /* Line 820 of yacc.c */
1206 #line 218 "parse-gram.y"
1207 { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); };
1209 /* Line 820 of yacc.c */
1210 #line 1211 "../../../src/parse-gram.c"
1218 /*--------------------------------.
1219 | Print this symbol on YYOUTPUT. |
1220 `--------------------------------*/
1222 #if (defined __STDC__ || defined __C99__FUNC__ \
1223 || defined __cplusplus || defined _MSC_VER)
1225 yy_symbol_print (FILE *yyoutput
, int yytype
, YYSTYPE
const * const yyvaluep
, YYLTYPE
const * const yylocationp
)
1228 yy_symbol_print (yyoutput
, yytype
, yyvaluep
, yylocationp
)
1231 YYSTYPE
const * const yyvaluep
;
1232 YYLTYPE
const * const yylocationp
;
1235 if (yytype
< YYNTOKENS
)
1236 YYFPRINTF (yyoutput
, "token %s (", yytname
[yytype
]);
1238 YYFPRINTF (yyoutput
, "nterm %s (", yytname
[yytype
]);
1240 YY_LOCATION_PRINT (yyoutput
, *yylocationp
);
1241 YYFPRINTF (yyoutput
, ": ");
1242 yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
);
1243 YYFPRINTF (yyoutput
, ")");
1246 /*------------------------------------------------------------------.
1247 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
1249 `------------------------------------------------------------------*/
1251 #if (defined __STDC__ || defined __C99__FUNC__ \
1252 || defined __cplusplus || defined _MSC_VER)
1254 yy_stack_print (yytype_int16
*yybottom
, yytype_int16
*yytop
)
1257 yy_stack_print (yybottom
, yytop
)
1258 yytype_int16
*yybottom
;
1259 yytype_int16
*yytop
;
1262 YYFPRINTF (stderr
, "Stack now");
1263 for (; yybottom
<= yytop
; yybottom
++)
1265 int yybot
= *yybottom
;
1266 YYFPRINTF (stderr
, " %d", yybot
);
1268 YYFPRINTF (stderr
, "\n");
1271 # define YY_STACK_PRINT(Bottom, Top) \
1274 yy_stack_print ((Bottom), (Top)); \
1278 /*------------------------------------------------.
1279 | Report that the YYRULE is going to be reduced. |
1280 `------------------------------------------------*/
1282 #if (defined __STDC__ || defined __C99__FUNC__ \
1283 || defined __cplusplus || defined _MSC_VER)
1285 yy_reduce_print (YYSTYPE
*yyvsp
, YYLTYPE
*yylsp
, int yyrule
)
1288 yy_reduce_print (yyvsp
, yylsp
, yyrule
)
1294 int yynrhs
= yyr2
[yyrule
];
1296 unsigned long int yylno
= yyrline
[yyrule
];
1297 YYFPRINTF (stderr
, "Reducing stack by rule %d (line %lu):\n",
1299 /* The symbols being reduced. */
1300 for (yyi
= 0; yyi
< yynrhs
; yyi
++)
1302 YYFPRINTF (stderr
, " $%d = ", yyi
+ 1);
1303 yy_symbol_print (stderr
, yyrhs
[yyprhs
[yyrule
] + yyi
],
1304 &(yyvsp
[(yyi
+ 1) - (yynrhs
)])
1305 , &(yylsp
[(yyi
+ 1) - (yynrhs
)]) );
1306 YYFPRINTF (stderr
, "\n");
1310 # define YY_REDUCE_PRINT(Rule) \
1313 yy_reduce_print (yyvsp, yylsp, Rule); \
1316 /* Nonzero means print parse trace. It is left uninitialized so that
1317 multiple parsers can coexist. */
1319 #else /* !YYDEBUG */
1320 # define YYDPRINTF(Args)
1321 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
1322 # define YY_STACK_PRINT(Bottom, Top)
1323 # define YY_REDUCE_PRINT(Rule)
1324 #endif /* !YYDEBUG */
1327 /* YYINITDEPTH -- initial size of the parser's stacks. */
1329 # define YYINITDEPTH 200
1332 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
1333 if the built-in stack extension method is used).
1335 Do not make this value too large; the results are undefined if
1336 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
1337 evaluated with infinite-precision integer arithmetic. */
1340 # define YYMAXDEPTH 10000
1343 /* Given a state stack such that *YYBOTTOM is its bottom, such that
1344 *YYTOP is either its top or is YYTOP_EMPTY to indicate an empty
1345 stack, and such that *YYCAPACITY is the maximum number of elements it
1346 can hold without a reallocation, make sure there is enough room to
1347 store YYADD more elements. If not, allocate a new stack using
1348 YYSTACK_ALLOC, copy the existing elements, and adjust *YYBOTTOM,
1349 *YYTOP, and *YYCAPACITY to reflect the new capacity and memory
1350 location. If *YYBOTTOM != YYBOTTOM_NO_FREE, then free the old stack
1351 using YYSTACK_FREE. Return 0 if successful or if no reallocation is
1352 required. Return 1 if memory is exhausted. */
1354 yy_lac_stack_realloc (YYSIZE_T
*yycapacity
, YYSIZE_T yyadd
,
1356 char const *yydebug_prefix
,
1357 char const *yydebug_suffix
,
1359 yytype_int16
**yybottom
,
1360 yytype_int16
*yybottom_no_free
,
1361 yytype_int16
**yytop
, yytype_int16
*yytop_empty
)
1363 YYSIZE_T yysize_old
=
1364 *yytop
== yytop_empty
? 0 : *yytop
- *yybottom
+ 1;
1365 YYSIZE_T yysize_new
= yysize_old
+ yyadd
;
1366 if (*yycapacity
< yysize_new
)
1368 YYSIZE_T yyalloc
= 2 * yysize_new
;
1369 yytype_int16
*yybottom_new
;
1370 /* Use YYMAXDEPTH for maximum stack size given that the stack
1371 should never need to grow larger than the main state stack
1372 needs to grow without LAC. */
1373 if (YYMAXDEPTH
< yysize_new
)
1375 YYDPRINTF ((stderr
, "%smax size exceeded%s", yydebug_prefix
,
1379 if (YYMAXDEPTH
< yyalloc
)
1380 yyalloc
= YYMAXDEPTH
;
1382 (yytype_int16
*) YYSTACK_ALLOC (yyalloc
* sizeof *yybottom_new
);
1385 YYDPRINTF ((stderr
, "%srealloc failed%s", yydebug_prefix
,
1389 if (*yytop
!= yytop_empty
)
1391 YYCOPY (yybottom_new
, *yybottom
, yysize_old
);
1392 *yytop
= yybottom_new
+ (yysize_old
- 1);
1394 if (*yybottom
!= yybottom_no_free
)
1395 YYSTACK_FREE (*yybottom
);
1396 *yybottom
= yybottom_new
;
1397 *yycapacity
= yyalloc
;
1402 /* Establish the initial context for the current lookahead if no initial
1403 context is currently established.
1405 We define a context as a snapshot of the parser stacks. We define
1406 the initial context for a lookahead as the context in which the
1407 parser initially examines that lookahead in order to select a
1408 syntactic action. Thus, if the lookahead eventually proves
1409 syntactically unacceptable (possibly in a later context reached via a
1410 series of reductions), the initial context can be used to determine
1411 the exact set of tokens that would be syntactically acceptable in the
1412 lookahead's place. Moreover, it is the context after which any
1413 further semantic actions would be erroneous because they would be
1414 determined by a syntactically unacceptable token.
1416 YY_LAC_ESTABLISH should be invoked when a reduction is about to be
1417 performed in an inconsistent state (which, for the purposes of LAC,
1418 includes consistent states that don't know they're consistent because
1419 their default reductions have been disabled). Iff there is a
1420 lookahead token, it should also be invoked before reporting a syntax
1421 error. This latter case is for the sake of the debugging output.
1423 For parse.lac=full, the implementation of YY_LAC_ESTABLISH is as
1424 follows. If no initial context is currently established for the
1425 current lookahead, then check if that lookahead can eventually be
1426 shifted if syntactic actions continue from the current context.
1427 Report a syntax error if it cannot. */
1428 #define YY_LAC_ESTABLISH \
1430 if (!yy_lac_established) \
1432 YYDPRINTF ((stderr, \
1433 "LAC: initial context established for %s\n", \
1434 yytname[yytoken])); \
1435 yy_lac_established = 1; \
1437 int yy_lac_status = \
1438 yy_lac (yyesa, &yyes, &yyes_capacity, yyssp, yytoken); \
1439 if (yy_lac_status == 2) \
1440 goto yyexhaustedlab; \
1441 if (yy_lac_status == 1) \
1447 /* Discard any previous initial lookahead context because of Event,
1448 which may be a lookahead change or an invalidation of the currently
1449 established initial context for the current lookahead.
1451 The most common example of a lookahead change is a shift. An example
1452 of both cases is syntax error recovery. That is, a syntax error
1453 occurs when the lookahead is syntactically erroneous for the
1454 currently established initial context, so error recovery manipulates
1455 the parser stacks to try to find a new initial context in which the
1456 current lookahead is syntactically acceptable. If it fails to find
1457 such a context, it discards the lookahead. */
1459 # define YY_LAC_DISCARD(Event) \
1461 if (yy_lac_established) \
1464 YYFPRINTF (stderr, "LAC: initial context discarded due to " \
1466 yy_lac_established = 0; \
1470 # define YY_LAC_DISCARD(Event) yy_lac_established = 0
1473 /* Given the stack whose top is *YYSSP, return 0 iff YYTOKEN can
1474 eventually (after perhaps some reductions) be shifted, return 1 if
1475 not, or return 2 if memory is exhausted. As preconditions and
1476 postconditions: *YYES_CAPACITY is the allocated size of the array to
1477 which *YYES points, and either *YYES = YYESA or *YYES points to an
1478 array allocated with YYSTACK_ALLOC. yy_lac may overwrite the
1479 contents of either array, alter *YYES and *YYES_CAPACITY, and free
1480 any old *YYES other than YYESA. */
1482 yy_lac (yytype_int16
*yyesa
, yytype_int16
**yyes
,
1483 YYSIZE_T
*yyes_capacity
, yytype_int16
*yyssp
, int yytoken
)
1485 yytype_int16
*yyes_prev
= yyssp
;
1486 yytype_int16
*yyesp
= yyes_prev
;
1487 YYDPRINTF ((stderr
, "LAC: checking lookahead %s:", yytname
[yytoken
]));
1488 if (yytoken
== YYUNDEFTOK
)
1490 YYDPRINTF ((stderr
, " Always Err\n"));
1495 int yyrule
= yypact
[*yyesp
];
1496 if (yypact_value_is_default (yyrule
)
1497 || (yyrule
+= yytoken
) < 0 || YYLAST
< yyrule
1498 || yycheck
[yyrule
] != yytoken
)
1500 yyrule
= yydefact
[*yyesp
];
1503 YYDPRINTF ((stderr
, " Err\n"));
1509 yyrule
= yytable
[yyrule
];
1510 if (yytable_value_is_error (yyrule
))
1512 YYDPRINTF ((stderr
, " Err\n"));
1517 YYDPRINTF ((stderr
, " S%d\n", yyrule
));
1523 YYSIZE_T yylen
= yyr2
[yyrule
];
1524 YYDPRINTF ((stderr
, " R%d", yyrule
- 1));
1525 if (yyesp
!= yyes_prev
)
1527 YYSIZE_T yysize
= yyesp
- *yyes
+ 1;
1540 yyesp
= yyes_prev
-= yylen
;
1545 int yylhs
= yyr1
[yyrule
] - YYNTOKENS
;
1546 yystate
= yypgoto
[yylhs
] + *yyesp
;
1547 if (yystate
< 0 || YYLAST
< yystate
1548 || yycheck
[yystate
] != *yyesp
)
1549 yystate
= yydefgoto
[yylhs
];
1551 yystate
= yytable
[yystate
];
1553 if (yyesp
== yyes_prev
)
1560 if (yy_lac_stack_realloc (yyes_capacity
, 1,
1564 yyes
, yyesa
, &yyesp
, yyes_prev
))
1566 YYDPRINTF ((stderr
, "\n"));
1571 YYDPRINTF ((stderr
, " G%d", yystate
));
1580 # if defined __GLIBC__ && defined _STRING_H
1581 # define yystrlen strlen
1583 /* Return the length of YYSTR. */
1584 #if (defined __STDC__ || defined __C99__FUNC__ \
1585 || defined __cplusplus || defined _MSC_VER)
1587 yystrlen (const char *yystr
)
1595 for (yylen
= 0; yystr
[yylen
]; yylen
++)
1603 # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
1604 # define yystpcpy stpcpy
1606 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
1608 #if (defined __STDC__ || defined __C99__FUNC__ \
1609 || defined __cplusplus || defined _MSC_VER)
1611 yystpcpy (char *yydest
, const char *yysrc
)
1614 yystpcpy (yydest
, yysrc
)
1620 const char *yys
= yysrc
;
1622 while ((*yyd
++ = *yys
++) != '\0')
1631 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
1632 quotes and backslashes, so that it's suitable for yyerror. The
1633 heuristic is that double-quoting is unnecessary unless the string
1634 contains an apostrophe, a comma, or backslash (other than
1635 backslash-backslash). YYSTR is taken from yytname. If YYRES is
1636 null, do not copy; instead, return the length of what the result
1639 yytnamerr (char *yyres
, const char *yystr
)
1644 char const *yyp
= yystr
;
1651 goto do_not_strip_quotes
;
1655 goto do_not_strip_quotes
;
1668 do_not_strip_quotes
: ;
1672 return yystrlen (yystr
);
1674 return yystpcpy (yyres
, yystr
) - yyres
;
1678 /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
1679 about the unexpected token YYTOKEN for the state stack whose top is
1680 YYSSP. In order to see if a particular token T is a
1681 valid looakhead, invoke yy_lac (YYESA, YYES, YYES_CAPACITY, YYSSP, T).
1683 Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
1684 not large enough to hold the message. In that case, also set
1685 *YYMSG_ALLOC to the required number of bytes. Return 2 if the
1686 required number of bytes is too large to store or if
1687 yy_lac returned 2. */
1689 yysyntax_error (YYSIZE_T
*yymsg_alloc
, char **yymsg
,
1690 yytype_int16
*yyesa
, yytype_int16
**yyes
,
1691 YYSIZE_T
*yyes_capacity
, yytype_int16
*yyssp
, int yytoken
)
1693 YYSIZE_T yysize0
= yytnamerr (0, yytname
[yytoken
]);
1694 YYSIZE_T yysize
= yysize0
;
1696 enum { YYERROR_VERBOSE_ARGS_MAXIMUM
= 5 };
1697 /* Internationalized format string. */
1698 const char *yyformat
= 0;
1699 /* Arguments of yyformat. */
1700 char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
];
1701 /* Number of reported tokens (one for the "unexpected", one per
1705 /* There are many possibilities here to consider:
1706 - Assume YYFAIL is not used. It's too flawed to consider. See
1707 <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
1708 for details. YYERROR is fine as it does not invoke this
1710 - If this state is a consistent state with a default action, then
1711 the only way this function was invoked is if the default action
1712 is an error action. In that case, don't check for expected
1713 tokens because there are none.
1714 - The only way there can be no lookahead present (in yychar) is if
1715 this state is a consistent state with a default action. Thus,
1716 detecting the absence of a lookahead is sufficient to determine
1717 that there is no unexpected or expected token to report. In that
1718 case, just report a simple "syntax error".
1719 - Don't assume there isn't a lookahead just because this state is a
1720 consistent state with a default action. There might have been a
1721 previous inconsistent state, consistent state with a non-default
1722 action, or user semantic action that manipulated yychar.
1723 In the first two cases, it might appear that the current syntax
1724 error should have been detected in the previous state when yy_lac
1725 was invoked. However, at that time, there might have been a
1726 different syntax error that discarded a different initial context
1727 during error recovery, leaving behind the current lookahead.
1729 if (yytoken
!= YYEMPTY
)
1731 int yyn
= yypact
[*yyssp
];
1732 YYDPRINTF ((stderr
, "Constructing syntax error message\n"));
1733 yyarg
[yycount
++] = yytname
[yytoken
];
1734 if (!yypact_value_is_default (yyn
))
1738 for (yyx
= 0; yyx
< YYNTOKENS
; ++yyx
)
1739 if (yyx
!= YYTERROR
&& yyx
!= YYUNDEFTOK
)
1742 int yy_lac_status
= yy_lac (yyesa
, yyes
, yyes_capacity
,
1744 if (yy_lac_status
== 2)
1746 if (yy_lac_status
== 1)
1749 if (yycount
== YYERROR_VERBOSE_ARGS_MAXIMUM
)
1755 yyarg
[yycount
++] = yytname
[yyx
];
1756 yysize1
= yysize
+ yytnamerr (0, yytname
[yyx
]);
1757 if (! (yysize
<= yysize1
1758 && yysize1
<= YYSTACK_ALLOC_MAXIMUM
))
1765 YYFPRINTF (stderr
, "No expected tokens.\n");
1771 # define YYCASE_(N, S) \
1775 YYCASE_(0, YY_("syntax error"));
1776 YYCASE_(1, YY_("syntax error, unexpected %s"));
1777 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1778 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1779 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1780 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
1784 yysize1
= yysize
+ yystrlen (yyformat
);
1785 if (! (yysize
<= yysize1
&& yysize1
<= YYSTACK_ALLOC_MAXIMUM
))
1789 if (*yymsg_alloc
< yysize
)
1791 *yymsg_alloc
= 2 * yysize
;
1792 if (! (yysize
<= *yymsg_alloc
1793 && *yymsg_alloc
<= YYSTACK_ALLOC_MAXIMUM
))
1794 *yymsg_alloc
= YYSTACK_ALLOC_MAXIMUM
;
1798 /* Avoid sprintf, as that infringes on the user's name space.
1799 Don't have undefined behavior even if the translation
1800 produced a string with the wrong number of "%s"s. */
1804 while ((*yyp
= *yyformat
) != '\0')
1805 if (*yyp
== '%' && yyformat
[1] == 's' && yyi
< yycount
)
1807 yyp
+= yytnamerr (yyp
, yyarg
[yyi
++]);
1818 #endif /* YYERROR_VERBOSE */
1820 /*-----------------------------------------------.
1821 | Release the memory associated to this symbol. |
1822 `-----------------------------------------------*/
1825 #if (defined __STDC__ || defined __C99__FUNC__ \
1826 || defined __cplusplus || defined _MSC_VER)
1828 yydestruct (const char *yymsg
, int yytype
, YYSTYPE
*yyvaluep
, YYLTYPE
*yylocationp
)
1831 yydestruct (yymsg
, yytype
, yyvaluep
, yylocationp
)
1835 YYLTYPE
*yylocationp
;
1839 YYUSE (yylocationp
);
1843 YY_SYMBOL_PRINT (yymsg
, yytype
, yyvaluep
, yylocationp
);
1854 /* Prevent warnings from -Wmissing-prototypes. */
1855 #ifdef YYPARSE_PARAM
1856 #if defined __STDC__ || defined __cplusplus
1857 int yyparse (void *YYPARSE_PARAM
);
1861 #else /* ! YYPARSE_PARAM */
1862 #if defined __STDC__ || defined __cplusplus
1867 #endif /* ! YYPARSE_PARAM */
1874 #ifdef YYPARSE_PARAM
1875 #if (defined __STDC__ || defined __C99__FUNC__ \
1876 || defined __cplusplus || defined _MSC_VER)
1878 yyparse (void *YYPARSE_PARAM
)
1881 yyparse (YYPARSE_PARAM
)
1882 void *YYPARSE_PARAM
;
1884 #else /* ! YYPARSE_PARAM */
1885 #if (defined __STDC__ || defined __C99__FUNC__ \
1886 || defined __cplusplus || defined _MSC_VER)
1896 /* The lookahead symbol. */
1899 /* The semantic value of the lookahead symbol. */
1902 /* Location data for the lookahead symbol. */
1905 /* Number of syntax errors so far. */
1909 /* Number of tokens to shift before error messages enabled. */
1912 /* The stacks and their tools:
1913 `yyss': related to states.
1914 `yyvs': related to semantic values.
1915 `yyls': related to locations.
1917 Refer to the stacks thru separate pointers, to allow yyoverflow
1918 to reallocate them elsewhere. */
1920 /* The state stack. */
1921 yytype_int16 yyssa
[YYINITDEPTH
];
1923 yytype_int16
*yyssp
;
1925 /* The semantic value stack. */
1926 YYSTYPE yyvsa
[YYINITDEPTH
];
1930 /* The location stack. */
1931 YYLTYPE yylsa
[YYINITDEPTH
];
1935 /* The locations where the error started and ended. */
1936 YYLTYPE yyerror_range
[3];
1938 YYSIZE_T yystacksize
;
1940 yytype_int16 yyesa
[20];
1942 YYSIZE_T yyes_capacity
;
1944 int yy_lac_established
= 0;
1947 /* Lookahead token as an internal (translated) token number. */
1949 /* The variables used to return semantic value and location from the
1955 /* Buffer for error messages, and its allocated size. */
1957 char *yymsg
= yymsgbuf
;
1958 YYSIZE_T yymsg_alloc
= sizeof yymsgbuf
;
1961 #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
1963 /* The number of symbols on the RHS of the reduced rule.
1964 Keep to zero when no symbol should be popped. */
1971 yystacksize
= YYINITDEPTH
;
1974 yyes_capacity
= sizeof yyesa
/ sizeof *yyes
;
1975 if (YYMAXDEPTH
< yyes_capacity
)
1976 yyes_capacity
= YYMAXDEPTH
;
1978 YYDPRINTF ((stderr
, "Starting parse\n"));
1983 yychar
= YYEMPTY
; /* Cause a token to be read. */
1985 /* Initialize stack pointers.
1986 Waste one element of value and location stack
1987 so that they stay on the same level as the state stack.
1988 The wasted elements are never initialized. */
1993 #if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
1994 /* Initialize the default location before parsing starts. */
1995 yylloc
.first_line
= yylloc
.last_line
= 1;
1996 yylloc
.first_column
= yylloc
.last_column
= 1;
1999 /* User initialization code. */
2001 /* Line 1591 of yacc.c */
2002 #line 105 "parse-gram.y"
2004 /* Bison's grammar can initial empty locations, hence a default
2005 location is needed. */
2006 boundary_set (&yylloc
.start
, current_file
, 1, 1);
2007 boundary_set (&yylloc
.end
, current_file
, 1, 1);
2010 /* Line 1591 of yacc.c */
2011 #line 2012 "../../../src/parse-gram.c"
2016 /*------------------------------------------------------------.
2017 | yynewstate -- Push a new state, which is found in yystate. |
2018 `------------------------------------------------------------*/
2020 /* In all cases, when you get here, the value and location stacks
2021 have just been pushed. So pushing a state here evens the stacks. */
2027 if (yyss
+ yystacksize
- 1 <= yyssp
)
2029 /* Get the current used size of the three stacks, in elements. */
2030 YYSIZE_T yysize
= yyssp
- yyss
+ 1;
2034 /* Give user a chance to reallocate the stack. Use copies of
2035 these so that the &'s don't force the real ones into
2037 YYSTYPE
*yyvs1
= yyvs
;
2038 yytype_int16
*yyss1
= yyss
;
2039 YYLTYPE
*yyls1
= yyls
;
2041 /* Each stack pointer address is followed by the size of the
2042 data in use in that stack, in bytes. This used to be a
2043 conditional around just the two extra args, but that might
2044 be undefined if yyoverflow is a macro. */
2045 yyoverflow (YY_("memory exhausted"),
2046 &yyss1
, yysize
* sizeof (*yyssp
),
2047 &yyvs1
, yysize
* sizeof (*yyvsp
),
2048 &yyls1
, yysize
* sizeof (*yylsp
),
2055 #else /* no yyoverflow */
2056 # ifndef YYSTACK_RELOCATE
2057 goto yyexhaustedlab
;
2059 /* Extend the stack our own way. */
2060 if (YYMAXDEPTH
<= yystacksize
)
2061 goto yyexhaustedlab
;
2063 if (YYMAXDEPTH
< yystacksize
)
2064 yystacksize
= YYMAXDEPTH
;
2067 yytype_int16
*yyss1
= yyss
;
2068 union yyalloc
*yyptr
=
2069 (union yyalloc
*) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize
));
2071 goto yyexhaustedlab
;
2072 YYSTACK_RELOCATE (yyss_alloc
, yyss
);
2073 YYSTACK_RELOCATE (yyvs_alloc
, yyvs
);
2074 YYSTACK_RELOCATE (yyls_alloc
, yyls
);
2075 # undef YYSTACK_RELOCATE
2077 YYSTACK_FREE (yyss1
);
2080 #endif /* no yyoverflow */
2082 yyssp
= yyss
+ yysize
- 1;
2083 yyvsp
= yyvs
+ yysize
- 1;
2084 yylsp
= yyls
+ yysize
- 1;
2086 YYDPRINTF ((stderr
, "Stack size increased to %lu\n",
2087 (unsigned long int) yystacksize
));
2089 if (yyss
+ yystacksize
- 1 <= yyssp
)
2093 YYDPRINTF ((stderr
, "Entering state %d\n", yystate
));
2095 if (yystate
== YYFINAL
)
2105 /* Do appropriate processing given the current state. Read a
2106 lookahead token if we need one and don't already have one. */
2108 /* First try to decide what to do without reference to lookahead token. */
2109 yyn
= yypact
[yystate
];
2110 if (yypact_value_is_default (yyn
))
2113 /* Not known => get a lookahead token if don't already have one. */
2115 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
2116 if (yychar
== YYEMPTY
)
2118 YYDPRINTF ((stderr
, "Reading a token: "));
2122 if (yychar
<= YYEOF
)
2124 yychar
= yytoken
= YYEOF
;
2125 YYDPRINTF ((stderr
, "Now at end of input.\n"));
2129 yytoken
= YYTRANSLATE (yychar
);
2130 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
2133 /* If the proper action on seeing token YYTOKEN is to reduce or to
2134 detect an error, take that action. */
2136 if (yyn
< 0 || YYLAST
< yyn
|| yycheck
[yyn
] != yytoken
)
2144 if (yytable_value_is_error (yyn
))
2151 /* Count tokens shifted since error; after three, turn off error
2156 /* Shift the lookahead token. */
2157 YY_SYMBOL_PRINT ("Shifting", yytoken
, &yylval
, &yylloc
);
2159 /* Discard the shifted token. */
2161 YY_LAC_DISCARD ("shift");
2169 /*-----------------------------------------------------------.
2170 | yydefault -- do the default action for the current state. |
2171 `-----------------------------------------------------------*/
2173 yyn
= yydefact
[yystate
];
2179 /*-----------------------------.
2180 | yyreduce -- Do a reduction. |
2181 `-----------------------------*/
2183 /* yyn is the number of a rule to reduce with. */
2186 /* If YYLEN is nonzero, implement the default value of the action:
2189 Otherwise, the following line sets YYVAL to garbage.
2190 This behavior is undocumented and Bison
2191 users should not rely upon it. Assigning to YYVAL
2192 unconditionally makes the parser a bit smaller, and it avoids a
2193 GCC warning that YYVAL may be used uninitialized. */
2194 yyval
= yyvsp
[1-yylen
];
2196 /* Default location. */
2197 YYLLOC_DEFAULT (yyloc
, (yylsp
- yylen
), yylen
);
2198 YY_REDUCE_PRINT (yyn
);
2200 int yychar_backup
= yychar
;
2205 /* Line 1807 of yacc.c */
2206 #line 244 "parse-gram.y"
2208 code_props plain_code
;
2209 code_props_plain_init (&plain_code
, (yyvsp
[(1) - (1)].chars
), (yylsp
[(1) - (1)]));
2210 code_props_translate_code (&plain_code
);
2211 gram_scanner_last_string_free ();
2212 muscle_code_grow (union_seen
? "post_prologue" : "pre_prologue",
2213 plain_code
.code
, (yylsp
[(1) - (1)]));
2214 code_scanner_last_string_free ();
2220 /* Line 1807 of yacc.c */
2221 #line 253 "parse-gram.y"
2222 { debug_flag
= true; }
2227 /* Line 1807 of yacc.c */
2228 #line 255 "parse-gram.y"
2230 muscle_percent_define_insert ((yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].chars
),
2231 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
);
2237 /* Line 1807 of yacc.c */
2238 #line 259 "parse-gram.y"
2239 { defines_flag
= true; }
2244 /* Line 1807 of yacc.c */
2245 #line 261 "parse-gram.y"
2247 defines_flag
= true;
2248 spec_defines_file
= xstrdup ((yyvsp
[(2) - (2)].chars
));
2254 /* Line 1807 of yacc.c */
2255 #line 265 "parse-gram.y"
2256 { error_verbose
= true; }
2261 /* Line 1807 of yacc.c */
2262 #line 266 "parse-gram.y"
2263 { expected_sr_conflicts
= (yyvsp
[(2) - (2)].integer
); }
2268 /* Line 1807 of yacc.c */
2269 #line 267 "parse-gram.y"
2270 { expected_rr_conflicts
= (yyvsp
[(2) - (2)].integer
); }
2275 /* Line 1807 of yacc.c */
2276 #line 268 "parse-gram.y"
2277 { spec_file_prefix
= (yyvsp
[(2) - (2)].chars
); }
2282 /* Line 1807 of yacc.c */
2283 #line 269 "parse-gram.y"
2284 { spec_file_prefix
= (yyvsp
[(3) - (3)].chars
); }
2289 /* Line 1807 of yacc.c */
2290 #line 271 "parse-gram.y"
2292 nondeterministic_parser
= true;
2299 /* Line 1807 of yacc.c */
2300 #line 276 "parse-gram.y"
2303 code_props_symbol_action_init (&action
, (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)]));
2304 code_props_translate_code (&action
);
2305 gram_scanner_last_string_free ();
2306 muscle_code_grow ("initial_action", action
.code
, (yylsp
[(2) - (2)]));
2307 code_scanner_last_string_free ();
2313 /* Line 1807 of yacc.c */
2314 #line 284 "parse-gram.y"
2315 { language_argmatch ((yyvsp
[(2) - (2)].chars
), grammar_prio
, (yylsp
[(1) - (2)])); }
2320 /* Line 1807 of yacc.c */
2321 #line 285 "parse-gram.y"
2322 { add_param ("lex_param", (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); }
2327 /* Line 1807 of yacc.c */
2328 #line 286 "parse-gram.y"
2329 { locations_flag
= true; }
2334 /* Line 1807 of yacc.c */
2335 #line 287 "parse-gram.y"
2336 { spec_name_prefix
= (yyvsp
[(2) - (2)].chars
); }
2341 /* Line 1807 of yacc.c */
2342 #line 288 "parse-gram.y"
2343 { spec_name_prefix
= (yyvsp
[(3) - (3)].chars
); }
2348 /* Line 1807 of yacc.c */
2349 #line 289 "parse-gram.y"
2350 { no_lines_flag
= true; }
2355 /* Line 1807 of yacc.c */
2356 #line 290 "parse-gram.y"
2357 { nondeterministic_parser
= true; }
2362 /* Line 1807 of yacc.c */
2363 #line 291 "parse-gram.y"
2364 { spec_outfile
= (yyvsp
[(2) - (2)].chars
); }
2369 /* Line 1807 of yacc.c */
2370 #line 292 "parse-gram.y"
2371 { spec_outfile
= (yyvsp
[(3) - (3)].chars
); }
2376 /* Line 1807 of yacc.c */
2377 #line 293 "parse-gram.y"
2378 { add_param ("parse_param", (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); }
2383 /* Line 1807 of yacc.c */
2384 #line 295 "parse-gram.y"
2386 /* %pure-parser is deprecated in favor of `%define api.pure', so use
2387 `%define api.pure' in a backward-compatible manner here. First, don't
2388 complain if %pure-parser is specified multiple times. */
2389 if (!muscle_find_const ("percent_define(api.pure)"))
2390 muscle_percent_define_insert ("api.pure", (yylsp
[(1) - (1)]), "",
2391 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
);
2392 /* In all cases, use api.pure now so that the backend doesn't complain if
2393 the skeleton ignores api.pure, but do warn now if there's a previous
2394 conflicting definition from an actual %define. */
2395 if (!muscle_percent_define_flag_if ("api.pure"))
2396 muscle_percent_define_insert ("api.pure", (yylsp
[(1) - (1)]), "",
2397 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
);
2403 /* Line 1807 of yacc.c */
2404 #line 309 "parse-gram.y"
2405 { version_check (&(yylsp
[(2) - (2)]), (yyvsp
[(2) - (2)].chars
)); }
2410 /* Line 1807 of yacc.c */
2411 #line 311 "parse-gram.y"
2413 char const *skeleton_user
= (yyvsp
[(2) - (2)].chars
);
2414 if (mbschr (skeleton_user
, '/'))
2416 size_t dir_length
= strlen (current_file
);
2417 char *skeleton_build
;
2418 while (dir_length
&& current_file
[dir_length
- 1] != '/')
2420 while (dir_length
&& current_file
[dir_length
- 1] == '/')
2423 xmalloc (dir_length
+ 1 + strlen (skeleton_user
) + 1);
2426 strncpy (skeleton_build
, current_file
, dir_length
);
2427 skeleton_build
[dir_length
++] = '/';
2429 strcpy (skeleton_build
+ dir_length
, skeleton_user
);
2430 skeleton_user
= uniqstr_new (skeleton_build
);
2431 free (skeleton_build
);
2433 skeleton_arg (skeleton_user
, grammar_prio
, (yylsp
[(1) - (2)]));
2439 /* Line 1807 of yacc.c */
2440 #line 334 "parse-gram.y"
2441 { token_table_flag
= true; }
2446 /* Line 1807 of yacc.c */
2447 #line 335 "parse-gram.y"
2448 { report_flag
|= report_states
; }
2453 /* Line 1807 of yacc.c */
2454 #line 336 "parse-gram.y"
2455 { yacc_flag
= true; }
2460 /* Line 1807 of yacc.c */
2461 #line 344 "parse-gram.y"
2463 grammar_start_symbol_set ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]));
2469 /* Line 1807 of yacc.c */
2470 #line 348 "parse-gram.y"
2473 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2474 symbol_list_destructor_set (list
, (yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)]));
2475 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2481 /* Line 1807 of yacc.c */
2482 #line 355 "parse-gram.y"
2485 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2486 symbol_list_printer_set (list
, (yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)]));
2487 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2493 /* Line 1807 of yacc.c */
2494 #line 362 "parse-gram.y"
2496 default_prec
= true;
2502 /* Line 1807 of yacc.c */
2503 #line 366 "parse-gram.y"
2505 default_prec
= false;
2511 /* Line 1807 of yacc.c */
2512 #line 370 "parse-gram.y"
2514 /* Do not invoke muscle_percent_code_grow here since it invokes
2515 muscle_user_name_list_grow. */
2516 muscle_code_grow ("percent_code()", (yyvsp
[(2) - (2)].chars
), (yylsp
[(2) - (2)]));
2517 code_scanner_last_string_free ();
2523 /* Line 1807 of yacc.c */
2524 #line 377 "parse-gram.y"
2526 muscle_percent_code_grow ((yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].chars
), (yylsp
[(3) - (3)]));
2527 code_scanner_last_string_free ();
2533 /* Line 1807 of yacc.c */
2534 #line 391 "parse-gram.y"
2540 /* Line 1807 of yacc.c */
2541 #line 392 "parse-gram.y"
2542 { muscle_code_grow ("union_name", (yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2547 /* Line 1807 of yacc.c */
2548 #line 397 "parse-gram.y"
2551 muscle_code_grow ("stype", (yyvsp
[(3) - (3)].chars
), (yylsp
[(3) - (3)]));
2552 code_scanner_last_string_free ();
2558 /* Line 1807 of yacc.c */
2559 #line 408 "parse-gram.y"
2560 { current_class
= nterm_sym
; }
2565 /* Line 1807 of yacc.c */
2566 #line 409 "parse-gram.y"
2568 current_class
= unknown_sym
;
2569 current_type
= NULL
;
2575 /* Line 1807 of yacc.c */
2576 #line 413 "parse-gram.y"
2577 { current_class
= token_sym
; }
2582 /* Line 1807 of yacc.c */
2583 #line 414 "parse-gram.y"
2585 current_class
= unknown_sym
;
2586 current_type
= NULL
;
2592 /* Line 1807 of yacc.c */
2593 #line 419 "parse-gram.y"
2597 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2598 symbol_type_set (list
->content
.sym
, (yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]));
2599 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2605 /* Line 1807 of yacc.c */
2606 #line 430 "parse-gram.y"
2610 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2612 symbol_type_set (list
->content
.sym
, current_type
, (yylsp
[(2) - (3)]));
2613 symbol_precedence_set (list
->content
.sym
, current_prec
, (yyvsp
[(1) - (3)].assoc
), (yylsp
[(1) - (3)]));
2615 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2616 current_type
= NULL
;
2622 /* Line 1807 of yacc.c */
2623 #line 444 "parse-gram.y"
2624 { (yyval
.assoc
) = left_assoc
; }
2629 /* Line 1807 of yacc.c */
2630 #line 445 "parse-gram.y"
2631 { (yyval
.assoc
) = right_assoc
; }
2636 /* Line 1807 of yacc.c */
2637 #line 446 "parse-gram.y"
2638 { (yyval
.assoc
) = non_assoc
; }
2643 /* Line 1807 of yacc.c */
2644 #line 450 "parse-gram.y"
2645 { current_type
= NULL
; }
2650 /* Line 1807 of yacc.c */
2651 #line 451 "parse-gram.y"
2652 { current_type
= (yyvsp
[(1) - (1)].uniqstr
); tag_seen
= true; }
2657 /* Line 1807 of yacc.c */
2658 #line 457 "parse-gram.y"
2659 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); }
2664 /* Line 1807 of yacc.c */
2665 #line 459 "parse-gram.y"
2666 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), symbol_list_sym_new ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]))); }
2671 /* Line 1807 of yacc.c */
2672 #line 463 "parse-gram.y"
2673 { (yyval
.symbol
) = (yyvsp
[(1) - (1)].symbol
); }
2678 /* Line 1807 of yacc.c */
2679 #line 464 "parse-gram.y"
2680 { (yyval
.symbol
) = (yyvsp
[(1) - (2)].symbol
); symbol_user_token_number_set ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].integer
), (yylsp
[(2) - (2)])); }
2685 /* Line 1807 of yacc.c */
2686 #line 470 "parse-gram.y"
2687 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); }
2692 /* Line 1807 of yacc.c */
2693 #line 472 "parse-gram.y"
2694 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), symbol_list_sym_new ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]))); }
2699 /* Line 1807 of yacc.c */
2700 #line 476 "parse-gram.y"
2701 { (yyval
.list
) = (yyvsp
[(1) - (1)].list
); }
2706 /* Line 1807 of yacc.c */
2707 #line 477 "parse-gram.y"
2708 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), (yyvsp
[(2) - (2)].list
)); }
2713 /* Line 1807 of yacc.c */
2714 #line 481 "parse-gram.y"
2715 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); }
2720 /* Line 1807 of yacc.c */
2721 #line 482 "parse-gram.y"
2722 { (yyval
.list
) = symbol_list_type_new ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2727 /* Line 1807 of yacc.c */
2728 #line 483 "parse-gram.y"
2729 { (yyval
.list
) = symbol_list_default_tagged_new ((yylsp
[(1) - (1)])); }
2734 /* Line 1807 of yacc.c */
2735 #line 484 "parse-gram.y"
2736 { (yyval
.list
) = symbol_list_default_tagless_new ((yylsp
[(1) - (1)])); }
2741 /* Line 1807 of yacc.c */
2742 #line 490 "parse-gram.y"
2744 current_type
= (yyvsp
[(1) - (1)].uniqstr
);
2751 /* Line 1807 of yacc.c */
2752 #line 495 "parse-gram.y"
2754 symbol_class_set ((yyvsp
[(1) - (1)].symbol
), current_class
, (yylsp
[(1) - (1)]), true);
2755 symbol_type_set ((yyvsp
[(1) - (1)].symbol
), current_type
, (yylsp
[(1) - (1)]));
2761 /* Line 1807 of yacc.c */
2762 #line 500 "parse-gram.y"
2764 symbol_class_set ((yyvsp
[(1) - (2)].symbol
), current_class
, (yylsp
[(1) - (2)]), true);
2765 symbol_type_set ((yyvsp
[(1) - (2)].symbol
), current_type
, (yylsp
[(1) - (2)]));
2766 symbol_user_token_number_set ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].integer
), (yylsp
[(2) - (2)]));
2772 /* Line 1807 of yacc.c */
2773 #line 506 "parse-gram.y"
2775 symbol_class_set ((yyvsp
[(1) - (2)].symbol
), current_class
, (yylsp
[(1) - (2)]), true);
2776 symbol_type_set ((yyvsp
[(1) - (2)].symbol
), current_type
, (yylsp
[(1) - (2)]));
2777 symbol_make_alias ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].symbol
), (yyloc
));
2783 /* Line 1807 of yacc.c */
2784 #line 512 "parse-gram.y"
2786 symbol_class_set ((yyvsp
[(1) - (3)].symbol
), current_class
, (yylsp
[(1) - (3)]), true);
2787 symbol_type_set ((yyvsp
[(1) - (3)].symbol
), current_type
, (yylsp
[(1) - (3)]));
2788 symbol_user_token_number_set ((yyvsp
[(1) - (3)].symbol
), (yyvsp
[(2) - (3)].integer
), (yylsp
[(2) - (3)]));
2789 symbol_make_alias ((yyvsp
[(1) - (3)].symbol
), (yyvsp
[(3) - (3)].symbol
), (yyloc
));
2795 /* Line 1807 of yacc.c */
2796 #line 542 "parse-gram.y"
2804 /* Line 1807 of yacc.c */
2805 #line 548 "parse-gram.y"
2806 { current_lhs ((yyvsp
[(1) - (2)].symbol
), (yylsp
[(1) - (2)]), (yyvsp
[(2) - (2)].named_ref
)); }
2811 /* Line 1807 of yacc.c */
2812 #line 549 "parse-gram.y"
2814 /* Free the current lhs. */
2815 current_lhs (0, (yylsp
[(1) - (4)]), 0);
2821 /* Line 1807 of yacc.c */
2822 #line 556 "parse-gram.y"
2823 { grammar_current_rule_end ((yylsp
[(1) - (1)])); }
2828 /* Line 1807 of yacc.c */
2829 #line 557 "parse-gram.y"
2830 { grammar_current_rule_end ((yylsp
[(3) - (3)])); }
2835 /* Line 1807 of yacc.c */
2836 #line 563 "parse-gram.y"
2837 { grammar_current_rule_begin (current_lhs_symbol
, current_lhs_location
,
2838 current_lhs_named_ref
); }
2843 /* Line 1807 of yacc.c */
2844 #line 566 "parse-gram.y"
2845 { grammar_current_rule_symbol_append ((yyvsp
[(2) - (3)].symbol
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].named_ref
)); }
2850 /* Line 1807 of yacc.c */
2851 #line 568 "parse-gram.y"
2852 { grammar_current_rule_action_append ((yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].named_ref
)); }
2857 /* Line 1807 of yacc.c */
2858 #line 570 "parse-gram.y"
2859 { grammar_current_rule_prec_set ((yyvsp
[(3) - (3)].symbol
), (yylsp
[(3) - (3)])); }
2864 /* Line 1807 of yacc.c */
2865 #line 572 "parse-gram.y"
2866 { grammar_current_rule_dprec_set ((yyvsp
[(3) - (3)].integer
), (yylsp
[(3) - (3)])); }
2871 /* Line 1807 of yacc.c */
2872 #line 574 "parse-gram.y"
2873 { grammar_current_rule_merge_set ((yyvsp
[(3) - (3)].uniqstr
), (yylsp
[(3) - (3)])); }
2878 /* Line 1807 of yacc.c */
2879 #line 578 "parse-gram.y"
2880 { (yyval
.named_ref
) = 0; }
2885 /* Line 1807 of yacc.c */
2886 #line 580 "parse-gram.y"
2887 { (yyval
.named_ref
) = named_ref_new((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2892 /* Line 1807 of yacc.c */
2893 #line 592 "parse-gram.y"
2894 { (yyval
.uniqstr
) = uniqstr_new ((yyvsp
[(1) - (1)].chars
)); }
2899 /* Line 1807 of yacc.c */
2900 #line 597 "parse-gram.y"
2901 { (yyval
.chars
) = ""; }
2906 /* Line 1807 of yacc.c */
2907 #line 598 "parse-gram.y"
2908 { (yyval
.chars
) = (yyvsp
[(1) - (1)].uniqstr
); }
2913 /* Line 1807 of yacc.c */
2914 #line 609 "parse-gram.y"
2916 code_props plain_code
;
2917 (yyvsp
[(1) - (1)].code
)[strlen ((yyvsp
[(1) - (1)].code
)) - 1] = '\n';
2918 code_props_plain_init (&plain_code
, (yyvsp
[(1) - (1)].code
)+1, (yylsp
[(1) - (1)]));
2919 code_props_translate_code (&plain_code
);
2920 gram_scanner_last_string_free ();
2921 (yyval
.chars
) = plain_code
.code
;
2927 /* Line 1807 of yacc.c */
2928 #line 629 "parse-gram.y"
2929 { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2934 /* Line 1807 of yacc.c */
2935 #line 631 "parse-gram.y"
2937 (yyval
.symbol
) = symbol_get (char_name ((yyvsp
[(1) - (1)].character
)), (yylsp
[(1) - (1)]));
2938 symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[(1) - (1)]), false);
2939 symbol_user_token_number_set ((yyval
.symbol
), (yyvsp
[(1) - (1)].character
), (yylsp
[(1) - (1)]));
2945 /* Line 1807 of yacc.c */
2946 #line 639 "parse-gram.y"
2947 { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2952 /* Line 1807 of yacc.c */
2953 #line 651 "parse-gram.y"
2955 (yyval
.symbol
) = symbol_get (quotearg_style (c_quoting_style
, (yyvsp
[(1) - (1)].chars
)), (yylsp
[(1) - (1)]));
2956 symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[(1) - (1)]), false);
2962 /* Line 1807 of yacc.c */
2963 #line 660 "parse-gram.y"
2965 code_props plain_code
;
2966 code_props_plain_init (&plain_code
, (yyvsp
[(2) - (2)].chars
), (yylsp
[(2) - (2)]));
2967 code_props_translate_code (&plain_code
);
2968 gram_scanner_last_string_free ();
2969 muscle_code_grow ("epilogue", plain_code
.code
, (yylsp
[(2) - (2)]));
2970 code_scanner_last_string_free ();
2976 /* Line 1807 of yacc.c */
2977 #line 2978 "../../../src/parse-gram.c"
2980 if (yychar_backup
!= yychar
)
2981 YY_LAC_DISCARD ("yychar change");
2983 /* User semantic actions sometimes alter yychar, and that requires
2984 that yytoken be updated with the new translation. We take the
2985 approach of translating immediately before every use of yytoken.
2986 One alternative is translating here after every semantic action,
2987 but that translation would be missed if the semantic action invokes
2988 YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
2989 if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
2990 incorrect destructor might then be invoked immediately. In the
2991 case of YYERROR or YYBACKUP, subsequent parser actions might lead
2992 to an incorrect destructor call or verbose syntax error message
2993 before the lookahead is translated. */
2994 YY_SYMBOL_PRINT ("-> $$ =", yyr1
[yyn
], &yyval
, &yyloc
);
2998 YY_STACK_PRINT (yyss
, yyssp
);
3003 /* Now `shift' the result of the reduction. Determine what state
3004 that goes to, based on the state we popped back to and the rule
3005 number reduced by. */
3009 yystate
= yypgoto
[yyn
- YYNTOKENS
] + *yyssp
;
3010 if (0 <= yystate
&& yystate
<= YYLAST
&& yycheck
[yystate
] == *yyssp
)
3011 yystate
= yytable
[yystate
];
3013 yystate
= yydefgoto
[yyn
- YYNTOKENS
];
3018 /*------------------------------------.
3019 | yyerrlab -- here on detecting error |
3020 `------------------------------------*/
3022 /* Make sure we have latest lookahead translation. See comments at
3023 user semantic actions for why this is necessary. */
3024 yytoken
= yychar
== YYEMPTY
? YYEMPTY
: YYTRANSLATE (yychar
);
3026 /* If not already recovering from an error, report this error. */
3030 #if ! YYERROR_VERBOSE
3031 yyerror (YY_("syntax error"));
3033 # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
3034 yyesa, &yyes, &yyes_capacity, \
3037 char const *yymsgp
= YY_("syntax error");
3038 int yysyntax_error_status
;
3039 if (yychar
!= YYEMPTY
)
3041 yysyntax_error_status
= YYSYNTAX_ERROR
;
3042 if (yysyntax_error_status
== 0)
3044 else if (yysyntax_error_status
== 1)
3046 if (yymsg
!= yymsgbuf
)
3047 YYSTACK_FREE (yymsg
);
3048 yymsg
= (char *) YYSTACK_ALLOC (yymsg_alloc
);
3052 yymsg_alloc
= sizeof yymsgbuf
;
3053 yysyntax_error_status
= 2;
3057 yysyntax_error_status
= YYSYNTAX_ERROR
;
3062 if (yysyntax_error_status
== 2)
3063 goto yyexhaustedlab
;
3065 # undef YYSYNTAX_ERROR
3069 yyerror_range
[1] = yylloc
;
3071 if (yyerrstatus
== 3)
3073 /* If just tried and failed to reuse lookahead token after an
3074 error, discard it. */
3076 if (yychar
<= YYEOF
)
3078 /* Return failure if at end of input. */
3079 if (yychar
== YYEOF
)
3084 yydestruct ("Error: discarding",
3085 yytoken
, &yylval
, &yylloc
);
3090 /* Else will try to reuse lookahead token after shifting the error
3095 /*---------------------------------------------------.
3096 | yyerrorlab -- error raised explicitly by YYERROR. |
3097 `---------------------------------------------------*/
3100 /* Pacify compilers like GCC when the user code never invokes
3101 YYERROR and the label yyerrorlab therefore never appears in user
3103 if (/*CONSTCOND*/ 0)
3106 yyerror_range
[1] = yylsp
[1-yylen
];
3107 /* Do not reclaim the symbols of the rule which action triggered
3111 YY_STACK_PRINT (yyss
, yyssp
);
3116 /*-------------------------------------------------------------.
3117 | yyerrlab1 -- common code for both syntax error and YYERROR. |
3118 `-------------------------------------------------------------*/
3120 yyerrstatus
= 3; /* Each real token shifted decrements this. */
3124 yyn
= yypact
[yystate
];
3125 if (!yypact_value_is_default (yyn
))
3128 if (0 <= yyn
&& yyn
<= YYLAST
&& yycheck
[yyn
] == YYTERROR
)
3136 /* Pop the current state because it cannot handle the error token. */
3140 yyerror_range
[1] = *yylsp
;
3141 yydestruct ("Error: popping",
3142 yystos
[yystate
], yyvsp
, yylsp
);
3145 YY_STACK_PRINT (yyss
, yyssp
);
3148 /* If the stack popping above didn't lose the initial context for the
3149 current lookahead token, the shift below will for sure. */
3150 YY_LAC_DISCARD ("error recovery");
3154 yyerror_range
[2] = yylloc
;
3155 /* Using YYLLOC is tempting, but would change the location of
3156 the lookahead. YYLOC is available though. */
3157 YYLLOC_DEFAULT (yyloc
, yyerror_range
, 2);
3160 /* Shift the error token. */
3161 YY_SYMBOL_PRINT ("Shifting", yystos
[yyn
], yyvsp
, yylsp
);
3167 /*-------------------------------------.
3168 | yyacceptlab -- YYACCEPT comes here. |
3169 `-------------------------------------*/
3174 /*-----------------------------------.
3175 | yyabortlab -- YYABORT comes here. |
3176 `-----------------------------------*/
3182 /*-------------------------------------------------.
3183 | yyexhaustedlab -- memory exhaustion comes here. |
3184 `-------------------------------------------------*/
3186 yyerror (YY_("memory exhausted"));
3192 if (yychar
!= YYEMPTY
)
3194 /* Make sure we have latest lookahead translation. See comments at
3195 user semantic actions for why this is necessary. */
3196 yytoken
= YYTRANSLATE (yychar
);
3197 yydestruct ("Cleanup: discarding lookahead",
3198 yytoken
, &yylval
, &yylloc
);
3200 /* Do not reclaim the symbols of the rule which action triggered
3201 this YYABORT or YYACCEPT. */
3203 YY_STACK_PRINT (yyss
, yyssp
);
3204 while (yyssp
!= yyss
)
3206 yydestruct ("Cleanup: popping",
3207 yystos
[*yyssp
], yyvsp
, yylsp
);
3212 YYSTACK_FREE (yyss
);
3215 YYSTACK_FREE (yyes
);
3217 if (yymsg
!= yymsgbuf
)
3218 YYSTACK_FREE (yymsg
);
3220 /* Make sure YYID is used. */
3221 return YYID (yyresult
);
3226 /* Line 2068 of yacc.c */
3227 #line 670 "parse-gram.y"
3231 /* Return the location of the left-hand side of a rule whose
3232 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
3233 the right-hand side, and return an empty location equal to the end
3234 boundary of RHS[0] if the right-hand side is empty. */
3237 lloc_default (YYLTYPE
const *rhs
, int n
)
3242 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
3243 The bug is fixed in 7.4.2m, but play it safe for now. */
3244 loc
.start
= rhs
[n
].end
;
3245 loc
.end
= rhs
[n
].end
;
3247 /* Ignore empty nonterminals the start of the right-hand side.
3248 Do not bother to ignore them at the end of the right-hand side,
3249 since empty nonterminals have the same end as their predecessors. */
3250 for (i
= 1; i
<= n
; i
++)
3251 if (! equal_boundaries (rhs
[i
].start
, rhs
[i
].end
))
3253 loc
.start
= rhs
[i
].start
;
3261 /* Add a lex-param or a parse-param (depending on TYPE) with
3262 declaration DECL and location LOC. */
3265 add_param (char const *type
, char *decl
, location loc
)
3267 static char const alphanum
[26 + 26 + 1 + 10] =
3268 "abcdefghijklmnopqrstuvwxyz"
3269 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
3272 char const *name_start
= NULL
;
3275 /* Stop on last actual character. */
3276 for (p
= decl
; p
[1]; p
++)
3278 || ! memchr (alphanum
, p
[-1], sizeof alphanum
))
3279 && memchr (alphanum
, p
[0], sizeof alphanum
- 10))
3282 /* Strip the surrounding '{' and '}', and any blanks just inside
3284 while (*--p
== ' ' || *p
== '\t')
3287 while (*++decl
== ' ' || *decl
== '\t')
3291 complain_at (loc
, _("missing identifier in parameter declaration"));
3298 memchr (alphanum
, name_start
[name_len
], sizeof alphanum
);
3302 name
= xmalloc (name_len
+ 1);
3303 memcpy (name
, name_start
, name_len
);
3304 name
[name_len
] = '\0';
3305 muscle_pair_list_grow (type
, decl
, name
);
3309 gram_scanner_last_string_free ();
3314 version_check (location
const *loc
, char const *version
)
3316 if (strverscmp (version
, PACKAGE_VERSION
) > 0)
3318 complain_at (*loc
, "require bison %s, but have %s",
3319 version
, PACKAGE_VERSION
);
3325 gram_error (location
const *loc
, char const *msg
)
3327 complain_at (*loc
, "%s", msg
);
3331 token_name (int type
)
3333 return yytname
[YYTRANSLATE (type
)];
3344 buf
[0] = '\''; buf
[1] = c
; buf
[2] = '\''; buf
[3] = '\0';
3345 return quotearg_style (escape_quoting_style
, buf
);