1 /* A Bison parser, made by GNU Bison 2.4.1.52-77be. */
3 /* Skeleton implementation for Bison's Yacc-like parsers in C
5 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
6 2007, 2008, 2009 Free Software Foundation, Inc.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 /* As a special exception, you may create a larger work that contains
22 part or all of the Bison parser skeleton and distribute that work
23 under terms of your choice, so long as that work isn't itself a
24 parser generator using the skeleton or a modified version thereof
25 as a parser skeleton. Alternatively, if you modify or redistribute
26 the parser skeleton itself, you may (at your option) remove this
27 special exception, which will cause the skeleton and the resulting
28 Bison output files to be licensed under the GNU General Public
29 License without this special exception.
31 This special exception was added by the Free Software Foundation in
32 version 2.2 of Bison. */
34 /* C LALR(1) parser skeleton written by Richard Stallman, by
35 simplifying the original so-called "semantic" parser. */
37 /* All symbols defined below should begin with yy or YY, to avoid
38 infringing on user name space. This should be done even for local
39 variables, as they might otherwise be expanded by user macros.
40 There are some unavoidable exceptions within include files to
41 define necessary library symbols; they are noted "INFRINGES ON
42 USER NAME SPACE" below. */
44 /* Identify Bison output. */
48 #define YYBISON_VERSION "2.4.1.52-77be"
51 #define YYSKELETON_NAME "yacc.c"
62 /* Using locations. */
63 #define YYLSP_NEEDED 1
65 /* Substitute the variable and function names. */
66 #define yyparse gram_parse
67 #define yylex gram_lex
68 #define yyerror gram_error
69 #define yylval gram_lval
70 #define yychar gram_char
71 #define yydebug gram_debug
72 #define yynerrs gram_nerrs
73 #define yylloc gram_lloc
75 /* Copy the first part of user declarations. */
77 /* Line 190 of yacc.c */
78 #line 1 "parse-gram.y"
79 /* Bison Grammar Parser -*- C -*-
81 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
82 Software Foundation, Inc.
84 This file is part of Bison, the GNU Compiler Compiler.
86 This program is free software: you can redistribute it and/or modify
87 it under the terms of the GNU General Public License as published by
88 the Free Software Foundation, either version 3 of the License, or
89 (at your option) any later version.
91 This program is distributed in the hope that it will be useful,
92 but WITHOUT ANY WARRANTY; without even the implied warranty of
93 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
94 GNU General Public License for more details.
96 You should have received a copy of the GNU General Public License
97 along with this program. If not, see <http://www.gnu.org/licenses/>. */
102 #include "complain.h"
103 #include "conflicts.h"
107 #include "muscle_tab.h"
108 #include "quotearg.h"
111 #include "scan-gram.h"
112 #include "scan-code.h"
114 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
115 static YYLTYPE
lloc_default (YYLTYPE
const *, int);
117 #define YY_LOCATION_PRINT(File, Loc) \
118 location_print (File, Loc)
120 static void version_check (location
const *loc
, char const *version
);
122 /* Request detailed syntax error messages, and pass them to GRAM_ERROR.
123 FIXME: depends on the undocumented availability of YYLLOC. */
125 #define yyerror(Msg) \
126 gram_error (&yylloc, Msg)
127 static void gram_error (location
const *, char const *);
129 static char const *char_name (char);
131 /** Add a lex-param or a parse-param.
133 * \param type \a lex_param or \a parse_param
134 * \param decl the formal argument
135 * \param loc the location in the source.
137 static void add_param (char const *type
, char *decl
, location loc
);
140 static symbol_class current_class
= unknown_sym
;
141 static uniqstr current_type
= NULL
;
142 static symbol
*current_lhs
;
143 static location current_lhs_location
;
144 static int current_prec
= 0;
146 #define YYTYPE_INT16 int_fast16_t
147 #define YYTYPE_INT8 int_fast8_t
148 #define YYTYPE_UINT16 uint_fast16_t
149 #define YYTYPE_UINT8 uint_fast8_t
152 /* Line 190 of yacc.c */
153 #line 154 "parse-gram.c"
155 /* Enabling traces. */
160 /* Enabling verbose error messages. */
161 #ifdef YYERROR_VERBOSE
162 # undef YYERROR_VERBOSE
163 # define YYERROR_VERBOSE 1
165 # define YYERROR_VERBOSE 1
168 /* Enabling the token table. */
169 #ifndef YYTOKEN_TABLE
170 # define YYTOKEN_TABLE 0
177 /* Put the tokens into the symbol table, so that GDB and other debuggers
186 PERCENT_DESTRUCTOR
= 263,
187 PERCENT_PRINTER
= 264,
190 PERCENT_NONASSOC
= 267,
196 PERCENT_DEFAULT_PREC
= 273,
197 PERCENT_DEFINE
= 274,
198 PERCENT_DEFINES
= 275,
199 PERCENT_ERROR_VERBOSE
= 276,
200 PERCENT_EXPECT
= 277,
201 PERCENT_EXPECT_RR
= 278,
202 PERCENT_FILE_PREFIX
= 279,
203 PERCENT_GLR_PARSER
= 280,
204 PERCENT_INITIAL_ACTION
= 281,
205 PERCENT_LANGUAGE
= 282,
206 PERCENT_LEX_PARAM
= 283,
207 PERCENT_LOCATIONS
= 284,
208 PERCENT_NAME_PREFIX
= 285,
209 PERCENT_NO_DEFAULT_PREC
= 286,
210 PERCENT_NO_LINES
= 287,
211 PERCENT_NONDETERMINISTIC_PARSER
= 288,
212 PERCENT_OUTPUT
= 289,
213 PERCENT_PARSE_PARAM
= 290,
214 PERCENT_PURE_PARSER
= 291,
215 PERCENT_REQUIRE
= 292,
216 PERCENT_SKELETON
= 293,
218 PERCENT_TOKEN_TABLE
= 295,
219 PERCENT_VERBOSE
= 296,
227 PERCENT_PERCENT
= 304,
241 #define PERCENT_TOKEN 260
242 #define PERCENT_NTERM 261
243 #define PERCENT_TYPE 262
244 #define PERCENT_DESTRUCTOR 263
245 #define PERCENT_PRINTER 264
246 #define PERCENT_LEFT 265
247 #define PERCENT_RIGHT 266
248 #define PERCENT_NONASSOC 267
249 #define PERCENT_PREC 268
250 #define PERCENT_DPREC 269
251 #define PERCENT_MERGE 270
252 #define PERCENT_CODE 271
253 #define PERCENT_DEBUG 272
254 #define PERCENT_DEFAULT_PREC 273
255 #define PERCENT_DEFINE 274
256 #define PERCENT_DEFINES 275
257 #define PERCENT_ERROR_VERBOSE 276
258 #define PERCENT_EXPECT 277
259 #define PERCENT_EXPECT_RR 278
260 #define PERCENT_FILE_PREFIX 279
261 #define PERCENT_GLR_PARSER 280
262 #define PERCENT_INITIAL_ACTION 281
263 #define PERCENT_LANGUAGE 282
264 #define PERCENT_LEX_PARAM 283
265 #define PERCENT_LOCATIONS 284
266 #define PERCENT_NAME_PREFIX 285
267 #define PERCENT_NO_DEFAULT_PREC 286
268 #define PERCENT_NO_LINES 287
269 #define PERCENT_NONDETERMINISTIC_PARSER 288
270 #define PERCENT_OUTPUT 289
271 #define PERCENT_PARSE_PARAM 290
272 #define PERCENT_PURE_PARSER 291
273 #define PERCENT_REQUIRE 292
274 #define PERCENT_SKELETON 293
275 #define PERCENT_START 294
276 #define PERCENT_TOKEN_TABLE 295
277 #define PERCENT_VERBOSE 296
278 #define PERCENT_YACC 297
279 #define BRACED_CODE 298
285 #define PERCENT_PERCENT 304
288 #define SEMICOLON 307
290 #define TYPE_TAG_ANY 309
291 #define TYPE_TAG_NONE 310
292 #define PERCENT_UNION 311
297 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
298 typedef union YYSTYPE
301 /* Line 223 of yacc.c */
302 #line 92 "parse-gram.y"
311 unsigned char character
;
315 /* Line 223 of yacc.c */
316 #line 317 "parse-gram.c"
318 # define YYSTYPE_IS_TRIVIAL 1
319 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
320 # define YYSTYPE_IS_DECLARED 1
323 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
324 typedef struct YYLTYPE
331 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
332 # define YYLTYPE_IS_DECLARED 1
333 # define YYLTYPE_IS_TRIVIAL 1
337 /* Copy the second part of user declarations. */
340 /* Line 265 of yacc.c */
341 #line 342 "parse-gram.c"
348 typedef YYTYPE_UINT8 yytype_uint8
;
350 typedef unsigned char yytype_uint8
;
354 typedef YYTYPE_INT8 yytype_int8
;
355 #elif (defined __STDC__ || defined __C99__FUNC__ \
356 || defined __cplusplus || defined _MSC_VER)
357 typedef signed char yytype_int8
;
359 typedef short int yytype_int8
;
363 typedef YYTYPE_UINT16 yytype_uint16
;
365 typedef unsigned short int yytype_uint16
;
369 typedef YYTYPE_INT16 yytype_int16
;
371 typedef short int yytype_int16
;
375 # ifdef __SIZE_TYPE__
376 # define YYSIZE_T __SIZE_TYPE__
377 # elif defined size_t
378 # define YYSIZE_T size_t
379 # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
380 || defined __cplusplus || defined _MSC_VER)
381 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
382 # define YYSIZE_T size_t
384 # define YYSIZE_T unsigned int
388 #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
393 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
394 # define YY_(msgid) dgettext ("bison-runtime", msgid)
398 # define YY_(msgid) msgid
402 /* Suppress unused-variable warnings by "using" E. */
403 #if ! defined lint || defined __GNUC__
404 # define YYUSE(e) ((void) (e))
406 # define YYUSE(e) /* empty */
409 /* Identity function, used to suppress warnings about constant conditions. */
413 #if (defined __STDC__ || defined __C99__FUNC__ \
414 || defined __cplusplus || defined _MSC_VER)
427 #if ! defined yyoverflow || YYERROR_VERBOSE
429 /* The parser invokes alloca or malloc; define the necessary symbols. */
431 # ifdef YYSTACK_USE_ALLOCA
432 # if YYSTACK_USE_ALLOCA
434 # define YYSTACK_ALLOC __builtin_alloca
435 # elif defined __BUILTIN_VA_ARG_INCR
436 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
438 # define YYSTACK_ALLOC __alloca
439 # elif defined _MSC_VER
440 # include <malloc.h> /* INFRINGES ON USER NAME SPACE */
441 # define alloca _alloca
443 # define YYSTACK_ALLOC alloca
444 # if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
445 || defined __cplusplus || defined _MSC_VER)
446 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
455 # ifdef YYSTACK_ALLOC
456 /* Pacify GCC's `empty if-body' warning. */
457 # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
458 # ifndef YYSTACK_ALLOC_MAXIMUM
459 /* The OS might guarantee only one guard page at the bottom of the stack,
460 and a page size can be as small as 4096 bytes. So we cannot safely
461 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
462 to allow for a few compiler-allocated temporary stack slots. */
463 # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
466 # define YYSTACK_ALLOC YYMALLOC
467 # define YYSTACK_FREE YYFREE
468 # ifndef YYSTACK_ALLOC_MAXIMUM
469 # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
471 # if (defined __cplusplus && ! defined _STDLIB_H \
472 && ! ((defined YYMALLOC || defined malloc) \
473 && (defined YYFREE || defined free)))
474 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
480 # define YYMALLOC malloc
481 # if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
482 || defined __cplusplus || defined _MSC_VER)
483 void *malloc (YYSIZE_T
); /* INFRINGES ON USER NAME SPACE */
488 # if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
489 || defined __cplusplus || defined _MSC_VER)
490 void free (void *); /* INFRINGES ON USER NAME SPACE */
494 #endif /* ! defined yyoverflow || YYERROR_VERBOSE */
497 #if (! defined yyoverflow \
498 && (! defined __cplusplus \
499 || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
500 && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
502 /* A type that is properly aligned for any stack member. */
505 yytype_int16 yyss_alloc
;
510 /* The size of the maximum gap between one aligned stack and the next. */
511 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
513 /* The size of an array large to enough to hold all stacks, each with
515 # define YYSTACK_BYTES(N) \
516 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
517 + 2 * YYSTACK_GAP_MAXIMUM)
519 /* Copy COUNT objects from FROM to TO. The source and destination do
522 # if defined __GNUC__ && 1 < __GNUC__
523 # define YYCOPY(To, From, Count) \
524 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
526 # define YYCOPY(To, From, Count) \
530 for (yyi = 0; yyi < (Count); yyi++) \
531 (To)[yyi] = (From)[yyi]; \
537 /* Relocate STACK from its old location to the new one. The
538 local variables YYSIZE and YYSTACKSIZE give the old and new number of
539 elements in the stack, and YYPTR gives the new location of the
540 stack. Advance YYPTR to a properly aligned location for the next
542 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
545 YYSIZE_T yynewbytes; \
546 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
547 Stack = &yyptr->Stack_alloc; \
548 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
549 yyptr += yynewbytes / sizeof (*yyptr); \
555 /* YYFINAL -- State number of the termination state. */
557 /* YYLAST -- Last index in YYTABLE. */
560 /* YYNTOKENS -- Number of terminals. */
562 /* YYNNTS -- Number of nonterminals. */
564 /* YYNRULES -- Number of rules. */
566 /* YYNRULES -- Number of states. */
567 #define YYNSTATES 143
569 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
571 #define YYMAXUTOK 311
573 #define YYTRANSLATE(YYX) \
574 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
576 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
577 static const yytype_uint8 yytranslate
[] =
579 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
580 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
581 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
582 2, 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, 1, 2, 3, 4,
605 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
606 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
607 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
608 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
609 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
614 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
616 static const yytype_uint16 yyprhs
[] =
618 0, 0, 3, 8, 9, 12, 14, 16, 18, 22,
619 24, 27, 29, 32, 35, 38, 42, 44, 47, 50,
620 53, 55, 58, 62, 64, 66, 69, 73, 76, 78,
621 81, 84, 86, 88, 90, 92, 94, 96, 99, 103,
622 107, 109, 111, 114, 118, 119, 121, 125, 126, 130,
623 131, 135, 139, 143, 145, 147, 149, 150, 152, 154,
624 157, 159, 162, 164, 167, 169, 172, 174, 176, 178,
625 180, 182, 184, 187, 190, 194, 196, 199, 201, 204,
626 206, 209, 212, 213, 217, 219, 223, 226, 227, 230,
627 233, 237, 241, 245, 247, 249, 250, 252, 254, 256,
628 258, 260, 262, 264, 266, 267
631 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
632 static const yytype_int8 yyrhs
[] =
634 58, 0, -1, 59, 49, 76, 89, -1, -1, 59,
635 60, -1, 61, -1, 51, -1, 17, -1, 19, 82,
636 83, -1, 20, -1, 20, 3, -1, 21, -1, 22,
637 4, -1, 23, 4, -1, 24, 3, -1, 24, 46,
638 3, -1, 25, -1, 26, 43, -1, 27, 3, -1,
639 28, 43, -1, 29, -1, 30, 3, -1, 30, 46,
640 3, -1, 32, -1, 33, -1, 34, 3, -1, 34,
641 46, 3, -1, 35, 43, -1, 36, -1, 37, 3,
642 -1, 38, 3, -1, 40, -1, 41, -1, 42, -1,
643 52, -1, 66, -1, 63, -1, 39, 87, -1, 8,
644 43, 72, -1, 9, 43, 72, -1, 18, -1, 31,
645 -1, 16, 84, -1, 16, 47, 84, -1, -1, 47,
646 -1, 56, 62, 84, -1, -1, 6, 64, 75, -1,
647 -1, 5, 65, 75, -1, 7, 53, 71, -1, 67,
648 68, 69, -1, 10, -1, 11, -1, 12, -1, -1,
649 53, -1, 70, -1, 69, 70, -1, 87, -1, 87,
650 4, -1, 87, -1, 71, 87, -1, 73, -1, 72,
651 73, -1, 87, -1, 53, -1, 54, -1, 55, -1,
652 53, -1, 85, -1, 85, 4, -1, 85, 88, -1,
653 85, 4, 88, -1, 74, -1, 75, 74, -1, 77,
654 -1, 76, 77, -1, 78, -1, 61, 52, -1, 1,
655 52, -1, -1, 86, 79, 80, -1, 81, -1, 80,
656 50, 81, -1, 80, 52, -1, -1, 81, 87, -1,
657 81, 43, -1, 81, 13, 87, -1, 81, 14, 4,
658 -1, 81, 15, 53, -1, 47, -1, 3, -1, -1,
659 3, -1, 43, -1, 47, -1, 44, -1, 48, -1,
660 85, -1, 88, -1, 3, -1, -1, 49, 45, -1
663 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
664 static const yytype_uint16 yyrline
[] =
666 0, 202, 202, 210, 212, 216, 217, 227, 228, 232,
667 233, 238, 239, 240, 241, 242, 243, 248, 257, 258,
668 259, 260, 261, 262, 263, 264, 265, 266, 267, 280,
669 281, 305, 306, 307, 308, 312, 313, 314, 318, 325,
670 332, 336, 340, 347, 362, 363, 367, 379, 379, 384,
671 384, 389, 400, 415, 416, 417, 421, 422, 427, 429,
672 434, 435, 440, 442, 447, 448, 452, 453, 454, 455,
673 460, 465, 470, 476, 482, 493, 494, 503, 504, 510,
674 511, 512, 519, 519, 523, 524, 525, 530, 531, 533,
675 535, 537, 539, 551, 552, 557, 558, 567, 587, 589,
676 598, 603, 604, 609, 616, 618
680 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
681 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
682 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
683 static const char *const yytname
[] =
685 "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"",
686 "\"%token\"", "\"%nterm\"", "\"%type\"", "\"%destructor\"",
687 "\"%printer\"", "\"%left\"", "\"%right\"", "\"%nonassoc\"", "\"%prec\"",
688 "\"%dprec\"", "\"%merge\"", "\"%code\"", "\"%debug\"",
689 "\"%default-prec\"", "\"%define\"", "\"%defines\"", "\"%error-verbose\"",
690 "\"%expect\"", "\"%expect-rr\"", "\"%file-prefix\"", "\"%glr-parser\"",
691 "\"%initial-action\"", "\"%language\"", "\"%lex-param\"",
692 "\"%locations\"", "\"%name-prefix\"", "\"%no-default-prec\"",
693 "\"%no-lines\"", "\"%nondeterministic-parser\"", "\"%output\"",
694 "\"%parse-param\"", "\"%pure-parser\"", "\"%require\"", "\"%skeleton\"",
695 "\"%start\"", "\"%token-table\"", "\"%verbose\"", "\"%yacc\"",
696 "\"{...}\"", "\"char\"", "\"epilogue\"", "\"=\"", "\"identifier\"",
697 "\"identifier:\"", "\"%%\"", "\"|\"", "\"%{...%}\"", "\";\"", "\"type\"",
698 "\"<*>\"", "\"<>\"", "\"%union\"", "$accept", "input",
699 "prologue_declarations", "prologue_declaration", "grammar_declaration",
700 "union_name", "symbol_declaration", "$@1", "$@2",
701 "precedence_declaration", "precedence_declarator", "type.opt",
702 "symbols.prec", "symbol.prec", "symbols.1", "generic_symlist",
703 "generic_symlist_item", "symbol_def", "symbol_defs.1", "grammar",
704 "rules_or_grammar_declaration", "rules", "$@3", "rhses.1", "rhs",
705 "variable", "content.opt", "braceless", "id", "id_colon", "symbol",
706 "string_as_id", "epilogue.opt", 0
711 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
713 static const yytype_uint16 yytoknum
[] =
715 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
716 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
717 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
718 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
719 295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
720 305, 306, 307, 308, 309, 310, 311
724 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
725 static const yytype_uint8 yyr1
[] =
727 0, 57, 58, 59, 59, 60, 60, 60, 60, 60,
728 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
729 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
730 60, 60, 60, 60, 60, 61, 61, 61, 61, 61,
731 61, 61, 61, 61, 62, 62, 61, 64, 63, 65,
732 63, 63, 66, 67, 67, 67, 68, 68, 69, 69,
733 70, 70, 71, 71, 72, 72, 73, 73, 73, 73,
734 74, 74, 74, 74, 74, 75, 75, 76, 76, 77,
735 77, 77, 79, 78, 80, 80, 80, 81, 81, 81,
736 81, 81, 81, 82, 82, 83, 83, 84, 85, 85,
737 86, 87, 87, 88, 89, 89
740 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
741 static const yytype_uint8 yyr2
[] =
743 0, 2, 4, 0, 2, 1, 1, 1, 3, 1,
744 2, 1, 2, 2, 2, 3, 1, 2, 2, 2,
745 1, 2, 3, 1, 1, 2, 3, 2, 1, 2,
746 2, 1, 1, 1, 1, 1, 1, 2, 3, 3,
747 1, 1, 2, 3, 0, 1, 3, 0, 3, 0,
748 3, 3, 3, 1, 1, 1, 0, 1, 1, 2,
749 1, 2, 1, 2, 1, 2, 1, 1, 1, 1,
750 1, 1, 2, 2, 3, 1, 2, 1, 2, 1,
751 2, 2, 0, 3, 1, 3, 2, 0, 2, 2,
752 3, 3, 3, 1, 1, 0, 1, 1, 1, 1,
756 /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
757 Performed when YYTABLE doesn't specify something else to do. Zero
758 means the default is an error. */
759 static const yytype_uint8 yydefact
[] =
761 3, 0, 0, 1, 49, 47, 0, 0, 0, 53,
762 54, 55, 0, 7, 40, 0, 9, 11, 0, 0,
763 0, 16, 0, 0, 0, 20, 0, 41, 23, 24,
764 0, 0, 28, 0, 0, 0, 31, 32, 33, 0,
765 6, 34, 44, 4, 5, 36, 35, 56, 0, 0,
766 0, 0, 0, 97, 0, 42, 94, 93, 95, 10,
767 12, 13, 14, 0, 17, 18, 19, 21, 0, 25,
768 0, 27, 29, 30, 103, 99, 98, 101, 37, 102,
769 0, 100, 0, 0, 77, 79, 82, 45, 0, 57,
770 0, 70, 75, 50, 71, 48, 51, 62, 67, 68,
771 69, 38, 64, 66, 39, 43, 96, 8, 15, 22,
772 26, 81, 80, 0, 78, 2, 87, 46, 52, 58,
773 60, 76, 72, 73, 63, 65, 105, 83, 84, 59,
774 61, 74, 87, 86, 0, 0, 0, 89, 88, 85,
778 /* YYDEFGOTO[NTERM-NUM]. */
779 static const yytype_int16 yydefgoto
[] =
781 -1, 1, 2, 43, 82, 88, 45, 49, 48, 46,
782 47, 90, 118, 119, 96, 101, 102, 92, 93, 83,
783 84, 85, 116, 127, 128, 58, 107, 55, 77, 86,
787 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
789 #define YYPACT_NINF -60
790 static const yytype_int16 yypact
[] =
792 -60, 18, 100, -60, -60, -60, -16, 24, 27, -60,
793 -60, -60, -8, -60, -60, 11, 70, -60, 71, 80,
794 2, -60, 46, 87, 48, -60, 31, -60, -60, -60,
795 40, 49, -60, 91, 92, 0, -60, -60, -60, 15,
796 -60, -60, 50, -60, -60, -60, -60, 43, 12, 12,
797 0, 25, 25, -60, 55, -60, -60, -60, 97, -60,
798 -60, -60, -60, 98, -60, -60, -60, -60, 99, -60,
799 110, -60, -60, -60, -60, -60, -60, -60, -60, -60,
800 51, -60, 62, 1, -60, -60, -60, -60, 55, -60,
801 0, -60, -60, 12, 84, 12, 0, -60, -60, -60,
802 -60, 25, -60, -60, 25, -60, -60, -60, -60, -60,
803 -60, -60, -60, 101, -60, -60, -60, -60, 0, -60,
804 111, -60, 140, -60, -60, -60, -60, 10, 38, -60,
805 -60, -60, -60, -60, 0, 141, 94, -60, -60, 38,
809 /* YYPGOTO[NTERM-NUM]. */
810 static const yytype_int16 yypgoto
[] =
812 -60, -60, -60, -60, 142, -60, -60, -60, -60, -60,
813 -60, -60, -60, 30, -60, 102, -59, -27, 104, -60,
814 67, -60, -60, -60, 23, -60, -60, -50, -19, -60,
818 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
819 positive, shift that token. If negative, reduce the rule which
820 number is the opposite. If zero, do what YYDEFACT says.
821 If YYTABLE_NINF, syntax error. */
822 #define YYTABLE_NINF -105
823 static const yytype_int16 yytable
[] =
825 78, -104, 80, 74, 105, 62, 4, 5, 6, 7,
826 8, 9, 10, 11, 56, 97, 80, 12, 3, 14,
827 4, 5, 6, 7, 8, 9, 10, 11, 74, 94,
828 94, 12, 27, 14, 67, 53, 123, 50, 117, 54,
829 35, 74, 125, 69, 75, 125, 27, 76, 63, 81,
830 113, 134, 135, 136, 35, 120, 75, 42, 57, 76,
831 132, 124, 133, 81, 131, 91, 121, 51, 121, 75,
832 52, 42, 76, 59, 94, 60, 94, 68, 98, 99,
833 100, 137, 75, 120, 61, 76, 70, 74, 122, 64,
834 65, 66, 71, 138, 72, 73, 89, 87, 53, 140,
835 106, 108, 109, 111, 138, 4, 5, 6, 7, 8,
836 9, 10, 11, 110, 112, 130, 12, 13, 14, 15,
837 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
838 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
839 36, 37, 38, 74, 44, 141, 126, 142, 129, 39,
840 114, 40, 41, 95, 104, 139, 42
843 static const yytype_uint8 yycheck
[] =
845 35, 0, 1, 3, 54, 3, 5, 6, 7, 8,
846 9, 10, 11, 12, 3, 50, 1, 16, 0, 18,
847 5, 6, 7, 8, 9, 10, 11, 12, 3, 48,
848 49, 16, 31, 18, 3, 43, 94, 53, 88, 47,
849 39, 3, 101, 3, 44, 104, 31, 47, 46, 48,
850 49, 13, 14, 15, 39, 90, 44, 56, 47, 47,
851 50, 96, 52, 48, 122, 53, 93, 43, 95, 44,
852 43, 56, 47, 3, 93, 4, 95, 46, 53, 54,
853 55, 43, 44, 118, 4, 47, 46, 3, 4, 43,
854 3, 43, 43, 128, 3, 3, 53, 47, 43, 134,
855 3, 3, 3, 52, 139, 5, 6, 7, 8, 9,
856 10, 11, 12, 3, 52, 4, 16, 17, 18, 19,
857 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
858 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
859 40, 41, 42, 3, 2, 4, 45, 53, 118, 49,
860 83, 51, 52, 49, 52, 132, 56
863 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
864 symbol of state STATE-NUM. */
865 static const yytype_uint8 yystos
[] =
867 0, 58, 59, 0, 5, 6, 7, 8, 9, 10,
868 11, 12, 16, 17, 18, 19, 20, 21, 22, 23,
869 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
870 34, 35, 36, 37, 38, 39, 40, 41, 42, 49,
871 51, 52, 56, 60, 61, 63, 66, 67, 65, 64,
872 53, 43, 43, 43, 47, 84, 3, 47, 82, 3,
873 4, 4, 3, 46, 43, 3, 43, 3, 46, 3,
874 46, 43, 3, 3, 3, 44, 47, 85, 87, 88,
875 1, 48, 61, 76, 77, 78, 86, 47, 62, 53,
876 68, 53, 74, 75, 85, 75, 71, 87, 53, 54,
877 55, 72, 73, 87, 72, 84, 3, 83, 3, 3,
878 3, 52, 52, 49, 77, 89, 79, 84, 69, 70,
879 87, 74, 4, 88, 87, 73, 45, 80, 81, 70,
880 4, 88, 50, 52, 13, 14, 15, 43, 87, 81,
884 #define yyerrok (yyerrstatus = 0)
885 #define yyclearin (yychar = YYEMPTY)
889 #define YYACCEPT goto yyacceptlab
890 #define YYABORT goto yyabortlab
891 #define YYERROR goto yyerrorlab
894 /* Like YYERROR except do call yyerror. This remains here temporarily
895 to ease the transition to the new meaning of YYERROR, for GCC.
896 Once GCC version 2 has supplanted version 1, this can go. */
898 #define YYFAIL goto yyerrlab
900 #define YYRECOVERING() (!!yyerrstatus)
902 #define YYBACKUP(Token, Value) \
904 if (yychar == YYEMPTY && yylen == 1) \
908 yytoken = YYTRANSLATE (yychar); \
914 yyerror (YY_("syntax error: cannot back up")); \
921 #define YYERRCODE 256
924 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
925 If N is 0, then set CURRENT to the empty location which ends
926 the previous symbol: RHS[0] (always defined). */
928 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
929 #ifndef YYLLOC_DEFAULT
930 # define YYLLOC_DEFAULT(Current, Rhs, N) \
934 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
935 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
936 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
937 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
941 (Current).first_line = (Current).last_line = \
942 YYRHSLOC (Rhs, 0).last_line; \
943 (Current).first_column = (Current).last_column = \
944 YYRHSLOC (Rhs, 0).last_column; \
950 /* YY_LOCATION_PRINT -- Print the location on the stream.
951 This macro was not mandated originally: define only if we know
952 we won't break user code: when these are the locations we know. */
954 #ifndef YY_LOCATION_PRINT
955 # if YYLTYPE_IS_TRIVIAL
956 # define YY_LOCATION_PRINT(File, Loc) \
957 fprintf (File, "%d.%d-%d.%d", \
958 (Loc).first_line, (Loc).first_column, \
959 (Loc).last_line, (Loc).last_column)
961 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
966 /* YYLEX -- calling `yylex' with the right arguments. */
969 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
971 # define YYLEX yylex (&yylval, &yylloc)
974 /* Enable debugging if requested. */
978 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
979 # define YYFPRINTF fprintf
982 # define YYDPRINTF(Args) \
988 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
992 YYFPRINTF (stderr, "%s ", Title); \
993 yy_symbol_print (stderr, \
994 Type, Value, Location); \
995 YYFPRINTF (stderr, "\n"); \
1000 /*--------------------------------.
1001 | Print this symbol on YYOUTPUT. |
1002 `--------------------------------*/
1005 #if (defined __STDC__ || defined __C99__FUNC__ \
1006 || defined __cplusplus || defined _MSC_VER)
1008 yy_symbol_value_print (FILE *yyoutput
, int yytype
, YYSTYPE
const * const yyvaluep
, YYLTYPE
const * const yylocationp
)
1011 yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
)
1014 YYSTYPE
const * const yyvaluep
;
1015 YYLTYPE
const * const yylocationp
;
1020 YYUSE (yylocationp
);
1022 if (yytype
< YYNTOKENS
)
1023 YYPRINT (yyoutput
, yytoknum
[yytype
], *yyvaluep
);
1029 case 3: /* "\"string\"" */
1031 /* Line 716 of yacc.c */
1032 #line 180 "parse-gram.y"
1033 { fputs (quotearg_style (c_quoting_style
, (yyvaluep
->chars
)), stderr
); };
1035 /* Line 716 of yacc.c */
1036 #line 1037 "parse-gram.c"
1038 case 4: /* "\"integer\"" */
1040 /* Line 716 of yacc.c */
1041 #line 191 "parse-gram.y"
1042 { fprintf (stderr
, "%d", (yyvaluep
->integer
)); };
1044 /* Line 716 of yacc.c */
1045 #line 1046 "parse-gram.c"
1047 case 43: /* "\"{...}\"" */
1049 /* Line 716 of yacc.c */
1050 #line 182 "parse-gram.y"
1051 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->code
)); };
1053 /* Line 716 of yacc.c */
1054 #line 1055 "parse-gram.c"
1056 case 44: /* "\"char\"" */
1058 /* Line 716 of yacc.c */
1059 #line 174 "parse-gram.y"
1060 { fputs (char_name ((yyvaluep
->character
)), stderr
); };
1062 /* Line 716 of yacc.c */
1063 #line 1064 "parse-gram.c"
1065 case 45: /* "\"epilogue\"" */
1067 /* Line 716 of yacc.c */
1068 #line 182 "parse-gram.y"
1069 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1071 /* Line 716 of yacc.c */
1072 #line 1073 "parse-gram.c"
1074 case 47: /* "\"identifier\"" */
1076 /* Line 716 of yacc.c */
1077 #line 187 "parse-gram.y"
1078 { fputs ((yyvaluep
->uniqstr
), stderr
); };
1080 /* Line 716 of yacc.c */
1081 #line 1082 "parse-gram.c"
1083 case 48: /* "\"identifier:\"" */
1085 /* Line 716 of yacc.c */
1086 #line 188 "parse-gram.y"
1087 { fprintf (stderr
, "%s:", (yyvaluep
->uniqstr
)); };
1089 /* Line 716 of yacc.c */
1090 #line 1091 "parse-gram.c"
1092 case 51: /* "\"%{...%}\"" */
1094 /* Line 716 of yacc.c */
1095 #line 182 "parse-gram.y"
1096 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1098 /* Line 716 of yacc.c */
1099 #line 1100 "parse-gram.c"
1101 case 53: /* "\"type\"" */
1103 /* Line 716 of yacc.c */
1104 #line 186 "parse-gram.y"
1105 { fprintf (stderr
, "<%s>", (yyvaluep
->uniqstr
)); };
1107 /* Line 716 of yacc.c */
1108 #line 1109 "parse-gram.c"
1110 case 82: /* "variable" */
1112 /* Line 716 of yacc.c */
1113 #line 187 "parse-gram.y"
1114 { fputs ((yyvaluep
->uniqstr
), stderr
); };
1116 /* Line 716 of yacc.c */
1117 #line 1118 "parse-gram.c"
1119 case 83: /* "content.opt" */
1121 /* Line 716 of yacc.c */
1122 #line 182 "parse-gram.y"
1123 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1125 /* Line 716 of yacc.c */
1126 #line 1127 "parse-gram.c"
1128 case 84: /* "braceless" */
1130 /* Line 716 of yacc.c */
1131 #line 182 "parse-gram.y"
1132 { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); };
1134 /* Line 716 of yacc.c */
1135 #line 1136 "parse-gram.c"
1139 /* Line 716 of yacc.c */
1140 #line 194 "parse-gram.y"
1141 { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); };
1143 /* Line 716 of yacc.c */
1144 #line 1145 "parse-gram.c"
1146 case 86: /* "id_colon" */
1148 /* Line 716 of yacc.c */
1149 #line 195 "parse-gram.y"
1150 { fprintf (stderr
, "%s:", (yyvaluep
->symbol
)->tag
); };
1152 /* Line 716 of yacc.c */
1153 #line 1154 "parse-gram.c"
1155 case 87: /* "symbol" */
1157 /* Line 716 of yacc.c */
1158 #line 194 "parse-gram.y"
1159 { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); };
1161 /* Line 716 of yacc.c */
1162 #line 1163 "parse-gram.c"
1164 case 88: /* "string_as_id" */
1166 /* Line 716 of yacc.c */
1167 #line 194 "parse-gram.y"
1168 { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); };
1170 /* Line 716 of yacc.c */
1171 #line 1172 "parse-gram.c"
1179 /*--------------------------------.
1180 | Print this symbol on YYOUTPUT. |
1181 `--------------------------------*/
1183 #if (defined __STDC__ || defined __C99__FUNC__ \
1184 || defined __cplusplus || defined _MSC_VER)
1186 yy_symbol_print (FILE *yyoutput
, int yytype
, YYSTYPE
const * const yyvaluep
, YYLTYPE
const * const yylocationp
)
1189 yy_symbol_print (yyoutput
, yytype
, yyvaluep
, yylocationp
)
1192 YYSTYPE
const * const yyvaluep
;
1193 YYLTYPE
const * const yylocationp
;
1196 if (yytype
< YYNTOKENS
)
1197 YYFPRINTF (yyoutput
, "token %s (", yytname
[yytype
]);
1199 YYFPRINTF (yyoutput
, "nterm %s (", yytname
[yytype
]);
1201 YY_LOCATION_PRINT (yyoutput
, *yylocationp
);
1202 YYFPRINTF (yyoutput
, ": ");
1203 yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
);
1204 YYFPRINTF (yyoutput
, ")");
1207 /*------------------------------------------------------------------.
1208 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
1210 `------------------------------------------------------------------*/
1212 #if (defined __STDC__ || defined __C99__FUNC__ \
1213 || defined __cplusplus || defined _MSC_VER)
1215 yy_stack_print (yytype_int16
*yybottom
, yytype_int16
*yytop
)
1218 yy_stack_print (yybottom
, yytop
)
1219 yytype_int16
*yybottom
;
1220 yytype_int16
*yytop
;
1223 YYFPRINTF (stderr
, "Stack now");
1224 for (; yybottom
<= yytop
; yybottom
++)
1226 int yybot
= *yybottom
;
1227 YYFPRINTF (stderr
, " %d", yybot
);
1229 YYFPRINTF (stderr
, "\n");
1232 # define YY_STACK_PRINT(Bottom, Top) \
1235 yy_stack_print ((Bottom), (Top)); \
1239 /*------------------------------------------------.
1240 | Report that the YYRULE is going to be reduced. |
1241 `------------------------------------------------*/
1243 #if (defined __STDC__ || defined __C99__FUNC__ \
1244 || defined __cplusplus || defined _MSC_VER)
1246 yy_reduce_print (YYSTYPE
*yyvsp
, YYLTYPE
*yylsp
, int yyrule
)
1249 yy_reduce_print (yyvsp
, yylsp
, yyrule
)
1255 int yynrhs
= yyr2
[yyrule
];
1257 unsigned long int yylno
= yyrline
[yyrule
];
1258 YYFPRINTF (stderr
, "Reducing stack by rule %d (line %lu):\n",
1260 /* The symbols being reduced. */
1261 for (yyi
= 0; yyi
< yynrhs
; yyi
++)
1263 YYFPRINTF (stderr
, " $%d = ", yyi
+ 1);
1264 yy_symbol_print (stderr
, yyrhs
[yyprhs
[yyrule
] + yyi
],
1265 &(yyvsp
[(yyi
+ 1) - (yynrhs
)])
1266 , &(yylsp
[(yyi
+ 1) - (yynrhs
)]) );
1267 YYFPRINTF (stderr
, "\n");
1271 # define YY_REDUCE_PRINT(Rule) \
1274 yy_reduce_print (yyvsp, yylsp, Rule); \
1277 /* Nonzero means print parse trace. It is left uninitialized so that
1278 multiple parsers can coexist. */
1280 #else /* !YYDEBUG */
1281 # define YYDPRINTF(Args)
1282 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
1283 # define YY_STACK_PRINT(Bottom, Top)
1284 # define YY_REDUCE_PRINT(Rule)
1285 #endif /* !YYDEBUG */
1288 /* YYINITDEPTH -- initial size of the parser's stacks. */
1290 # define YYINITDEPTH 200
1293 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
1294 if the built-in stack extension method is used).
1296 Do not make this value too large; the results are undefined if
1297 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
1298 evaluated with infinite-precision integer arithmetic. */
1301 # define YYMAXDEPTH 10000
1309 # if defined __GLIBC__ && defined _STRING_H
1310 # define yystrlen strlen
1312 /* Return the length of YYSTR. */
1313 #if (defined __STDC__ || defined __C99__FUNC__ \
1314 || defined __cplusplus || defined _MSC_VER)
1316 yystrlen (const char *yystr
)
1324 for (yylen
= 0; yystr
[yylen
]; yylen
++)
1332 # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
1333 # define yystpcpy stpcpy
1335 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
1337 #if (defined __STDC__ || defined __C99__FUNC__ \
1338 || defined __cplusplus || defined _MSC_VER)
1340 yystpcpy (char *yydest
, const char *yysrc
)
1343 yystpcpy (yydest
, yysrc
)
1349 const char *yys
= yysrc
;
1351 while ((*yyd
++ = *yys
++) != '\0')
1360 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
1361 quotes and backslashes, so that it's suitable for yyerror. The
1362 heuristic is that double-quoting is unnecessary unless the string
1363 contains an apostrophe, a comma, or backslash (other than
1364 backslash-backslash). YYSTR is taken from yytname. If YYRES is
1365 null, do not copy; instead, return the length of what the result
1368 yytnamerr (char *yyres
, const char *yystr
)
1373 char const *yyp
= yystr
;
1380 goto do_not_strip_quotes
;
1384 goto do_not_strip_quotes
;
1397 do_not_strip_quotes
: ;
1401 return yystrlen (yystr
);
1403 return yystpcpy (yyres
, yystr
) - yyres
;
1407 /* Copy into YYRESULT an error message about the unexpected token
1408 YYCHAR while in state YYSTATE. Return the number of bytes copied,
1409 including the terminating null byte. If YYRESULT is null, do not
1410 copy anything; just return the number of bytes that would be
1411 copied. As a special case, return 0 if an ordinary "syntax error"
1412 message will do. Return YYSIZE_MAXIMUM if overflow occurs during
1413 size calculation. */
1415 yysyntax_error (char *yyresult
, int yystate
, int yychar
)
1417 int yyn
= yypact
[yystate
];
1419 if (! (YYPACT_NINF
< yyn
&& yyn
<= YYLAST
))
1423 int yytype
= YYTRANSLATE (yychar
);
1424 YYSIZE_T yysize0
= yytnamerr (0, yytname
[yytype
]);
1425 YYSIZE_T yysize
= yysize0
;
1427 int yysize_overflow
= 0;
1428 enum { YYERROR_VERBOSE_ARGS_MAXIMUM
= 5 };
1429 char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
];
1433 /* This is so xgettext sees the translatable formats that are
1434 constructed on the fly. */
1435 YY_("syntax error, unexpected %s");
1436 YY_("syntax error, unexpected %s, expecting %s");
1437 YY_("syntax error, unexpected %s, expecting %s or %s");
1438 YY_("syntax error, unexpected %s, expecting %s or %s or %s");
1439 YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
1443 static char const yyunexpected
[] = "syntax error, unexpected %s";
1444 static char const yyexpecting
[] = ", expecting %s";
1445 static char const yyor
[] = " or %s";
1446 char yyformat
[sizeof yyunexpected
1447 + sizeof yyexpecting
- 1
1448 + ((YYERROR_VERBOSE_ARGS_MAXIMUM
- 2)
1449 * (sizeof yyor
- 1))];
1450 char const *yyprefix
= yyexpecting
;
1452 /* Start YYX at -YYN if negative to avoid negative indexes in
1454 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
1456 /* Stay within bounds of both yycheck and yytname. */
1457 int yychecklim
= YYLAST
- yyn
+ 1;
1458 int yyxend
= yychecklim
< YYNTOKENS
? yychecklim
: YYNTOKENS
;
1461 yyarg
[0] = yytname
[yytype
];
1462 yyfmt
= yystpcpy (yyformat
, yyunexpected
);
1464 for (yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
1465 if (yycheck
[yyx
+ yyn
] == yyx
&& yyx
!= YYTERROR
)
1467 if (yycount
== YYERROR_VERBOSE_ARGS_MAXIMUM
)
1471 yyformat
[sizeof yyunexpected
- 1] = '\0';
1474 yyarg
[yycount
++] = yytname
[yyx
];
1475 yysize1
= yysize
+ yytnamerr (0, yytname
[yyx
]);
1476 yysize_overflow
|= (yysize1
< yysize
);
1478 yyfmt
= yystpcpy (yyfmt
, yyprefix
);
1482 yyf
= YY_(yyformat
);
1483 yysize1
= yysize
+ yystrlen (yyf
);
1484 yysize_overflow
|= (yysize1
< yysize
);
1487 if (yysize_overflow
)
1488 return YYSIZE_MAXIMUM
;
1492 /* Avoid sprintf, as that infringes on the user's name space.
1493 Don't have undefined behavior even if the translation
1494 produced a string with the wrong number of "%s"s. */
1495 char *yyp
= yyresult
;
1497 while ((*yyp
= *yyf
) != '\0')
1499 if (*yyp
== '%' && yyf
[1] == 's' && yyi
< yycount
)
1501 yyp
+= yytnamerr (yyp
, yyarg
[yyi
++]);
1514 #endif /* YYERROR_VERBOSE */
1517 /*-----------------------------------------------.
1518 | Release the memory associated to this symbol. |
1519 `-----------------------------------------------*/
1522 #if (defined __STDC__ || defined __C99__FUNC__ \
1523 || defined __cplusplus || defined _MSC_VER)
1525 yydestruct (const char *yymsg
, int yytype
, YYSTYPE
*yyvaluep
, YYLTYPE
*yylocationp
)
1528 yydestruct (yymsg
, yytype
, yyvaluep
, yylocationp
)
1532 YYLTYPE
*yylocationp
;
1536 YYUSE (yylocationp
);
1540 YY_SYMBOL_PRINT (yymsg
, yytype
, yyvaluep
, yylocationp
);
1550 /* Prevent warnings from -Wmissing-prototypes. */
1551 #ifdef YYPARSE_PARAM
1552 #if defined __STDC__ || defined __cplusplus
1553 int yyparse (void *YYPARSE_PARAM
);
1557 #else /* ! YYPARSE_PARAM */
1558 #if defined __STDC__ || defined __cplusplus
1563 #endif /* ! YYPARSE_PARAM */
1569 /*-------------------------.
1570 | yyparse or yypush_parse. |
1571 `-------------------------*/
1573 #ifdef YYPARSE_PARAM
1574 #if (defined __STDC__ || defined __C99__FUNC__ \
1575 || defined __cplusplus || defined _MSC_VER)
1577 yyparse (void *YYPARSE_PARAM
)
1580 yyparse (YYPARSE_PARAM
)
1581 void *YYPARSE_PARAM
;
1583 #else /* ! YYPARSE_PARAM */
1584 #if (defined __STDC__ || defined __C99__FUNC__ \
1585 || defined __cplusplus || defined _MSC_VER)
1595 /* The lookahead symbol. */
1598 /* The semantic value of the lookahead symbol. */
1601 /* Location data for the lookahead symbol. */
1604 /* Number of syntax errors so far. */
1608 /* Number of tokens to shift before error messages enabled. */
1611 /* The stacks and their tools:
1612 `yyss': related to states.
1613 `yyvs': related to semantic values.
1614 `yyls': related to locations.
1616 Refer to the stacks thru separate pointers, to allow yyoverflow
1617 to reallocate them elsewhere. */
1619 /* The state stack. */
1620 yytype_int16 yyssa
[YYINITDEPTH
];
1622 yytype_int16
*yyssp
;
1624 /* The semantic value stack. */
1625 YYSTYPE yyvsa
[YYINITDEPTH
];
1629 /* The location stack. */
1630 YYLTYPE yylsa
[YYINITDEPTH
];
1634 /* The locations where the error started and ended. */
1635 YYLTYPE yyerror_range
[2];
1637 YYSIZE_T yystacksize
;
1641 /* Lookahead token as an internal (translated) token number. */
1643 /* The variables used to return semantic value and location from the
1649 /* Buffer for error messages, and its allocated size. */
1651 char *yymsg
= yymsgbuf
;
1652 YYSIZE_T yymsg_alloc
= sizeof yymsgbuf
;
1655 #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
1657 /* The number of symbols on the RHS of the reduced rule.
1658 Keep to zero when no symbol should be popped. */
1665 yystacksize
= YYINITDEPTH
;
1667 YYDPRINTF ((stderr
, "Starting parse\n"));
1672 yychar
= YYEMPTY
; /* Cause a token to be read. */
1674 /* Initialize stack pointers.
1675 Waste one element of value and location stack
1676 so that they stay on the same level as the state stack.
1677 The wasted elements are never initialized. */
1682 #if YYLTYPE_IS_TRIVIAL
1683 /* Initialize the default location before parsing starts. */
1684 yylloc
.first_line
= yylloc
.last_line
= 1;
1685 yylloc
.first_column
= yylloc
.last_column
= 1;
1688 /* User initialization code. */
1690 /* Line 1249 of yacc.c */
1691 #line 84 "parse-gram.y"
1693 /* Bison's grammar can initial empty locations, hence a default
1694 location is needed. */
1695 boundary_set (&yylloc
.start
, current_file
, 1, 1);
1696 boundary_set (&yylloc
.end
, current_file
, 1, 1);
1699 /* Line 1249 of yacc.c */
1700 #line 1701 "parse-gram.c"
1705 /*------------------------------------------------------------.
1706 | yynewstate -- Push a new state, which is found in yystate. |
1707 `------------------------------------------------------------*/
1709 /* In all cases, when you get here, the value and location stacks
1710 have just been pushed. So pushing a state here evens the stacks. */
1716 if (yyss
+ yystacksize
- 1 <= yyssp
)
1718 /* Get the current used size of the three stacks, in elements. */
1719 YYSIZE_T yysize
= yyssp
- yyss
+ 1;
1723 /* Give user a chance to reallocate the stack. Use copies of
1724 these so that the &'s don't force the real ones into
1726 YYSTYPE
*yyvs1
= yyvs
;
1727 yytype_int16
*yyss1
= yyss
;
1728 YYLTYPE
*yyls1
= yyls
;
1730 /* Each stack pointer address is followed by the size of the
1731 data in use in that stack, in bytes. This used to be a
1732 conditional around just the two extra args, but that might
1733 be undefined if yyoverflow is a macro. */
1734 yyoverflow (YY_("memory exhausted"),
1735 &yyss1
, yysize
* sizeof (*yyssp
),
1736 &yyvs1
, yysize
* sizeof (*yyvsp
),
1737 &yyls1
, yysize
* sizeof (*yylsp
),
1744 #else /* no yyoverflow */
1745 # ifndef YYSTACK_RELOCATE
1746 goto yyexhaustedlab
;
1748 /* Extend the stack our own way. */
1749 if (YYMAXDEPTH
<= yystacksize
)
1750 goto yyexhaustedlab
;
1752 if (YYMAXDEPTH
< yystacksize
)
1753 yystacksize
= YYMAXDEPTH
;
1756 yytype_int16
*yyss1
= yyss
;
1757 union yyalloc
*yyptr
=
1758 (union yyalloc
*) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize
));
1760 goto yyexhaustedlab
;
1761 YYSTACK_RELOCATE (yyss_alloc
, yyss
);
1762 YYSTACK_RELOCATE (yyvs_alloc
, yyvs
);
1763 YYSTACK_RELOCATE (yyls_alloc
, yyls
);
1764 # undef YYSTACK_RELOCATE
1766 YYSTACK_FREE (yyss1
);
1769 #endif /* no yyoverflow */
1771 yyssp
= yyss
+ yysize
- 1;
1772 yyvsp
= yyvs
+ yysize
- 1;
1773 yylsp
= yyls
+ yysize
- 1;
1775 YYDPRINTF ((stderr
, "Stack size increased to %lu\n",
1776 (unsigned long int) yystacksize
));
1778 if (yyss
+ yystacksize
- 1 <= yyssp
)
1782 YYDPRINTF ((stderr
, "Entering state %d\n", yystate
));
1784 if (yystate
== YYFINAL
)
1794 /* Do appropriate processing given the current state. Read a
1795 lookahead token if we need one and don't already have one. */
1797 /* First try to decide what to do without reference to lookahead token. */
1798 yyn
= yypact
[yystate
];
1799 if (yyn
== YYPACT_NINF
)
1802 /* Not known => get a lookahead token if don't already have one. */
1804 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1805 if (yychar
== YYEMPTY
)
1807 YYDPRINTF ((stderr
, "Reading a token: "));
1811 if (yychar
<= YYEOF
)
1813 yychar
= yytoken
= YYEOF
;
1814 YYDPRINTF ((stderr
, "Now at end of input.\n"));
1818 yytoken
= YYTRANSLATE (yychar
);
1819 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
1822 /* If the proper action on seeing token YYTOKEN is to reduce or to
1823 detect an error, take that action. */
1825 if (yyn
< 0 || YYLAST
< yyn
|| yycheck
[yyn
] != yytoken
)
1830 if (yyn
== 0 || yyn
== YYTABLE_NINF
)
1836 /* Count tokens shifted since error; after three, turn off error
1841 /* Shift the lookahead token. */
1842 YY_SYMBOL_PRINT ("Shifting", yytoken
, &yylval
, &yylloc
);
1844 /* Discard the shifted token. */
1853 /*-----------------------------------------------------------.
1854 | yydefault -- do the default action for the current state. |
1855 `-----------------------------------------------------------*/
1857 yyn
= yydefact
[yystate
];
1863 /*-----------------------------.
1864 | yyreduce -- Do a reduction. |
1865 `-----------------------------*/
1867 /* yyn is the number of a rule to reduce with. */
1870 /* If YYLEN is nonzero, implement the default value of the action:
1873 Otherwise, the following line sets YYVAL to garbage.
1874 This behavior is undocumented and Bison
1875 users should not rely upon it. Assigning to YYVAL
1876 unconditionally makes the parser a bit smaller, and it avoids a
1877 GCC warning that YYVAL may be used uninitialized. */
1878 yyval
= yyvsp
[1-yylen
];
1880 /* Default location. */
1881 YYLLOC_DEFAULT (yyloc
, (yylsp
- yylen
), yylen
);
1882 YY_REDUCE_PRINT (yyn
);
1887 /* Line 1456 of yacc.c */
1888 #line 218 "parse-gram.y"
1890 code_props plain_code
;
1891 code_props_plain_init (&plain_code
, (yyvsp
[(1) - (1)].chars
), (yylsp
[(1) - (1)]));
1892 code_props_translate_code (&plain_code
);
1893 gram_scanner_last_string_free ();
1894 muscle_code_grow (union_seen
? "post_prologue" : "pre_prologue",
1895 plain_code
.code
, (yylsp
[(1) - (1)]));
1896 code_scanner_last_string_free ();
1902 /* Line 1456 of yacc.c */
1903 #line 227 "parse-gram.y"
1904 { debug_flag
= true; }
1909 /* Line 1456 of yacc.c */
1910 #line 229 "parse-gram.y"
1912 muscle_percent_define_insert ((yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].chars
));
1918 /* Line 1456 of yacc.c */
1919 #line 232 "parse-gram.y"
1920 { defines_flag
= true; }
1925 /* Line 1456 of yacc.c */
1926 #line 234 "parse-gram.y"
1928 defines_flag
= true;
1929 spec_defines_file
= xstrdup ((yyvsp
[(2) - (2)].chars
));
1935 /* Line 1456 of yacc.c */
1936 #line 238 "parse-gram.y"
1937 { error_verbose
= true; }
1942 /* Line 1456 of yacc.c */
1943 #line 239 "parse-gram.y"
1944 { expected_sr_conflicts
= (yyvsp
[(2) - (2)].integer
); }
1949 /* Line 1456 of yacc.c */
1950 #line 240 "parse-gram.y"
1951 { expected_rr_conflicts
= (yyvsp
[(2) - (2)].integer
); }
1956 /* Line 1456 of yacc.c */
1957 #line 241 "parse-gram.y"
1958 { spec_file_prefix
= (yyvsp
[(2) - (2)].chars
); }
1963 /* Line 1456 of yacc.c */
1964 #line 242 "parse-gram.y"
1965 { spec_file_prefix
= (yyvsp
[(3) - (3)].chars
); }
1970 /* Line 1456 of yacc.c */
1971 #line 244 "parse-gram.y"
1973 nondeterministic_parser
= true;
1980 /* Line 1456 of yacc.c */
1981 #line 249 "parse-gram.y"
1984 code_props_symbol_action_init (&action
, (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)]));
1985 code_props_translate_code (&action
);
1986 gram_scanner_last_string_free ();
1987 muscle_code_grow ("initial_action", action
.code
, (yylsp
[(2) - (2)]));
1988 code_scanner_last_string_free ();
1994 /* Line 1456 of yacc.c */
1995 #line 257 "parse-gram.y"
1996 { language_argmatch ((yyvsp
[(2) - (2)].chars
), grammar_prio
, (yylsp
[(1) - (2)])); }
2001 /* Line 1456 of yacc.c */
2002 #line 258 "parse-gram.y"
2003 { add_param ("lex_param", (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); }
2008 /* Line 1456 of yacc.c */
2009 #line 259 "parse-gram.y"
2010 { locations_flag
= true; }
2015 /* Line 1456 of yacc.c */
2016 #line 260 "parse-gram.y"
2017 { spec_name_prefix
= (yyvsp
[(2) - (2)].chars
); }
2022 /* Line 1456 of yacc.c */
2023 #line 261 "parse-gram.y"
2024 { spec_name_prefix
= (yyvsp
[(3) - (3)].chars
); }
2029 /* Line 1456 of yacc.c */
2030 #line 262 "parse-gram.y"
2031 { no_lines_flag
= true; }
2036 /* Line 1456 of yacc.c */
2037 #line 263 "parse-gram.y"
2038 { nondeterministic_parser
= true; }
2043 /* Line 1456 of yacc.c */
2044 #line 264 "parse-gram.y"
2045 { spec_outfile
= (yyvsp
[(2) - (2)].chars
); }
2050 /* Line 1456 of yacc.c */
2051 #line 265 "parse-gram.y"
2052 { spec_outfile
= (yyvsp
[(3) - (3)].chars
); }
2057 /* Line 1456 of yacc.c */
2058 #line 266 "parse-gram.y"
2059 { add_param ("parse_param", (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); }
2064 /* Line 1456 of yacc.c */
2065 #line 268 "parse-gram.y"
2067 /* %pure-parser is deprecated in favor of `%define api.pure', so use
2068 `%define api.pure' in a backward-compatible manner here. First, don't
2069 complain if %pure-parser is specified multiple times. */
2070 if (!muscle_find_const ("percent_define(api.pure)"))
2071 muscle_percent_define_insert ("api.pure", (yylsp
[(1) - (1)]), "");
2072 /* In all cases, use api.pure now so that the backend doesn't complain if
2073 the skeleton ignores api.pure, but do warn now if there's a previous
2074 conflicting definition from an actual %define. */
2075 if (!muscle_percent_define_flag_if ("api.pure"))
2076 muscle_percent_define_insert ("api.pure", (yylsp
[(1) - (1)]), "");
2082 /* Line 1456 of yacc.c */
2083 #line 280 "parse-gram.y"
2084 { version_check (&(yylsp
[(2) - (2)]), (yyvsp
[(2) - (2)].chars
)); }
2089 /* Line 1456 of yacc.c */
2090 #line 282 "parse-gram.y"
2092 char const *skeleton_user
= (yyvsp
[(2) - (2)].chars
);
2093 if (strchr (skeleton_user
, '/'))
2095 size_t dir_length
= strlen (current_file
);
2096 char *skeleton_build
;
2097 while (dir_length
&& current_file
[dir_length
- 1] != '/')
2099 while (dir_length
&& current_file
[dir_length
- 1] == '/')
2102 xmalloc (dir_length
+ 1 + strlen (skeleton_user
) + 1);
2105 strncpy (skeleton_build
, current_file
, dir_length
);
2106 skeleton_build
[dir_length
++] = '/';
2108 strcpy (skeleton_build
+ dir_length
, skeleton_user
);
2109 skeleton_user
= uniqstr_new (skeleton_build
);
2110 free (skeleton_build
);
2112 skeleton_arg (skeleton_user
, grammar_prio
, (yylsp
[(1) - (2)]));
2118 /* Line 1456 of yacc.c */
2119 #line 305 "parse-gram.y"
2120 { token_table_flag
= true; }
2125 /* Line 1456 of yacc.c */
2126 #line 306 "parse-gram.y"
2127 { report_flag
|= report_states
; }
2132 /* Line 1456 of yacc.c */
2133 #line 307 "parse-gram.y"
2134 { yacc_flag
= true; }
2139 /* Line 1456 of yacc.c */
2140 #line 315 "parse-gram.y"
2142 grammar_start_symbol_set ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]));
2148 /* Line 1456 of yacc.c */
2149 #line 319 "parse-gram.y"
2152 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2153 symbol_list_destructor_set (list
, (yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)]));
2154 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2160 /* Line 1456 of yacc.c */
2161 #line 326 "parse-gram.y"
2164 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2165 symbol_list_printer_set (list
, (yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)]));
2166 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2172 /* Line 1456 of yacc.c */
2173 #line 333 "parse-gram.y"
2175 default_prec
= true;
2181 /* Line 1456 of yacc.c */
2182 #line 337 "parse-gram.y"
2184 default_prec
= false;
2190 /* Line 1456 of yacc.c */
2191 #line 341 "parse-gram.y"
2193 /* Do not invoke muscle_percent_code_grow here since it invokes
2194 muscle_user_name_list_grow. */
2195 muscle_code_grow ("percent_code()", (yyvsp
[(2) - (2)].chars
), (yylsp
[(2) - (2)]));
2196 code_scanner_last_string_free ();
2202 /* Line 1456 of yacc.c */
2203 #line 348 "parse-gram.y"
2205 muscle_percent_code_grow ((yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].chars
), (yylsp
[(3) - (3)]));
2206 code_scanner_last_string_free ();
2212 /* Line 1456 of yacc.c */
2213 #line 362 "parse-gram.y"
2219 /* Line 1456 of yacc.c */
2220 #line 363 "parse-gram.y"
2221 { muscle_code_grow ("union_name", (yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2226 /* Line 1456 of yacc.c */
2227 #line 368 "parse-gram.y"
2230 muscle_code_grow ("stype", (yyvsp
[(3) - (3)].chars
), (yylsp
[(3) - (3)]));
2231 code_scanner_last_string_free ();
2237 /* Line 1456 of yacc.c */
2238 #line 379 "parse-gram.y"
2239 { current_class
= nterm_sym
; }
2244 /* Line 1456 of yacc.c */
2245 #line 380 "parse-gram.y"
2247 current_class
= unknown_sym
;
2248 current_type
= NULL
;
2254 /* Line 1456 of yacc.c */
2255 #line 384 "parse-gram.y"
2256 { current_class
= token_sym
; }
2261 /* Line 1456 of yacc.c */
2262 #line 385 "parse-gram.y"
2264 current_class
= unknown_sym
;
2265 current_type
= NULL
;
2271 /* Line 1456 of yacc.c */
2272 #line 390 "parse-gram.y"
2276 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2277 symbol_type_set (list
->content
.sym
, (yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]));
2278 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2284 /* Line 1456 of yacc.c */
2285 #line 401 "parse-gram.y"
2289 for (list
= (yyvsp
[(3) - (3)].list
); list
; list
= list
->next
)
2291 symbol_type_set (list
->content
.sym
, current_type
, (yylsp
[(2) - (3)]));
2292 symbol_precedence_set (list
->content
.sym
, current_prec
, (yyvsp
[(1) - (3)].assoc
), (yylsp
[(1) - (3)]));
2294 symbol_list_free ((yyvsp
[(3) - (3)].list
));
2295 current_type
= NULL
;
2301 /* Line 1456 of yacc.c */
2302 #line 415 "parse-gram.y"
2303 { (yyval
.assoc
) = left_assoc
; }
2308 /* Line 1456 of yacc.c */
2309 #line 416 "parse-gram.y"
2310 { (yyval
.assoc
) = right_assoc
; }
2315 /* Line 1456 of yacc.c */
2316 #line 417 "parse-gram.y"
2317 { (yyval
.assoc
) = non_assoc
; }
2322 /* Line 1456 of yacc.c */
2323 #line 421 "parse-gram.y"
2324 { current_type
= NULL
; }
2329 /* Line 1456 of yacc.c */
2330 #line 422 "parse-gram.y"
2331 { current_type
= (yyvsp
[(1) - (1)].uniqstr
); tag_seen
= true; }
2336 /* Line 1456 of yacc.c */
2337 #line 428 "parse-gram.y"
2338 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); }
2343 /* Line 1456 of yacc.c */
2344 #line 430 "parse-gram.y"
2345 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), symbol_list_sym_new ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]))); }
2350 /* Line 1456 of yacc.c */
2351 #line 434 "parse-gram.y"
2352 { (yyval
.symbol
) = (yyvsp
[(1) - (1)].symbol
); }
2357 /* Line 1456 of yacc.c */
2358 #line 435 "parse-gram.y"
2359 { (yyval
.symbol
) = (yyvsp
[(1) - (2)].symbol
); symbol_user_token_number_set ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].integer
), (yylsp
[(2) - (2)])); }
2364 /* Line 1456 of yacc.c */
2365 #line 441 "parse-gram.y"
2366 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); }
2371 /* Line 1456 of yacc.c */
2372 #line 443 "parse-gram.y"
2373 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), symbol_list_sym_new ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]))); }
2378 /* Line 1456 of yacc.c */
2379 #line 447 "parse-gram.y"
2380 { (yyval
.list
) = (yyvsp
[(1) - (1)].list
); }
2385 /* Line 1456 of yacc.c */
2386 #line 448 "parse-gram.y"
2387 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), (yyvsp
[(2) - (2)].list
)); }
2392 /* Line 1456 of yacc.c */
2393 #line 452 "parse-gram.y"
2394 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); }
2399 /* Line 1456 of yacc.c */
2400 #line 453 "parse-gram.y"
2401 { (yyval
.list
) = symbol_list_type_new ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2406 /* Line 1456 of yacc.c */
2407 #line 454 "parse-gram.y"
2408 { (yyval
.list
) = symbol_list_default_tagged_new ((yylsp
[(1) - (1)])); }
2413 /* Line 1456 of yacc.c */
2414 #line 455 "parse-gram.y"
2415 { (yyval
.list
) = symbol_list_default_tagless_new ((yylsp
[(1) - (1)])); }
2420 /* Line 1456 of yacc.c */
2421 #line 461 "parse-gram.y"
2423 current_type
= (yyvsp
[(1) - (1)].uniqstr
);
2430 /* Line 1456 of yacc.c */
2431 #line 466 "parse-gram.y"
2433 symbol_class_set ((yyvsp
[(1) - (1)].symbol
), current_class
, (yylsp
[(1) - (1)]), true);
2434 symbol_type_set ((yyvsp
[(1) - (1)].symbol
), current_type
, (yylsp
[(1) - (1)]));
2440 /* Line 1456 of yacc.c */
2441 #line 471 "parse-gram.y"
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_user_token_number_set ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].integer
), (yylsp
[(2) - (2)]));
2451 /* Line 1456 of yacc.c */
2452 #line 477 "parse-gram.y"
2454 symbol_class_set ((yyvsp
[(1) - (2)].symbol
), current_class
, (yylsp
[(1) - (2)]), true);
2455 symbol_type_set ((yyvsp
[(1) - (2)].symbol
), current_type
, (yylsp
[(1) - (2)]));
2456 symbol_make_alias ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].symbol
), (yyloc
));
2462 /* Line 1456 of yacc.c */
2463 #line 483 "parse-gram.y"
2465 symbol_class_set ((yyvsp
[(1) - (3)].symbol
), current_class
, (yylsp
[(1) - (3)]), true);
2466 symbol_type_set ((yyvsp
[(1) - (3)].symbol
), current_type
, (yylsp
[(1) - (3)]));
2467 symbol_user_token_number_set ((yyvsp
[(1) - (3)].symbol
), (yyvsp
[(2) - (3)].integer
), (yylsp
[(2) - (3)]));
2468 symbol_make_alias ((yyvsp
[(1) - (3)].symbol
), (yyvsp
[(3) - (3)].symbol
), (yyloc
));
2474 /* Line 1456 of yacc.c */
2475 #line 513 "parse-gram.y"
2483 /* Line 1456 of yacc.c */
2484 #line 519 "parse-gram.y"
2485 { current_lhs
= (yyvsp
[(1) - (1)].symbol
); current_lhs_location
= (yylsp
[(1) - (1)]); }
2490 /* Line 1456 of yacc.c */
2491 #line 523 "parse-gram.y"
2492 { grammar_current_rule_end ((yylsp
[(1) - (1)])); }
2497 /* Line 1456 of yacc.c */
2498 #line 524 "parse-gram.y"
2499 { grammar_current_rule_end ((yylsp
[(3) - (3)])); }
2504 /* Line 1456 of yacc.c */
2505 #line 530 "parse-gram.y"
2506 { grammar_current_rule_begin (current_lhs
, current_lhs_location
); }
2511 /* Line 1456 of yacc.c */
2512 #line 532 "parse-gram.y"
2513 { grammar_current_rule_symbol_append ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)])); }
2518 /* Line 1456 of yacc.c */
2519 #line 534 "parse-gram.y"
2520 { grammar_current_rule_action_append ((yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); }
2525 /* Line 1456 of yacc.c */
2526 #line 536 "parse-gram.y"
2527 { grammar_current_rule_prec_set ((yyvsp
[(3) - (3)].symbol
), (yylsp
[(3) - (3)])); }
2532 /* Line 1456 of yacc.c */
2533 #line 538 "parse-gram.y"
2534 { grammar_current_rule_dprec_set ((yyvsp
[(3) - (3)].integer
), (yylsp
[(3) - (3)])); }
2539 /* Line 1456 of yacc.c */
2540 #line 540 "parse-gram.y"
2541 { grammar_current_rule_merge_set ((yyvsp
[(3) - (3)].uniqstr
), (yylsp
[(3) - (3)])); }
2546 /* Line 1456 of yacc.c */
2547 #line 552 "parse-gram.y"
2548 { (yyval
.uniqstr
) = uniqstr_new ((yyvsp
[(1) - (1)].chars
)); }
2553 /* Line 1456 of yacc.c */
2554 #line 557 "parse-gram.y"
2555 { (yyval
.chars
) = ""; }
2560 /* Line 1456 of yacc.c */
2561 #line 568 "parse-gram.y"
2563 code_props plain_code
;
2564 (yyvsp
[(1) - (1)].code
)[strlen ((yyvsp
[(1) - (1)].code
)) - 1] = '\n';
2565 code_props_plain_init (&plain_code
, (yyvsp
[(1) - (1)].code
)+1, (yylsp
[(1) - (1)]));
2566 code_props_translate_code (&plain_code
);
2567 gram_scanner_last_string_free ();
2568 (yyval
.chars
) = plain_code
.code
;
2574 /* Line 1456 of yacc.c */
2575 #line 588 "parse-gram.y"
2576 { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2581 /* Line 1456 of yacc.c */
2582 #line 590 "parse-gram.y"
2584 (yyval
.symbol
) = symbol_get (char_name ((yyvsp
[(1) - (1)].character
)), (yylsp
[(1) - (1)]));
2585 symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[(1) - (1)]), false);
2586 symbol_user_token_number_set ((yyval
.symbol
), (yyvsp
[(1) - (1)].character
), (yylsp
[(1) - (1)]));
2592 /* Line 1456 of yacc.c */
2593 #line 598 "parse-gram.y"
2594 { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); }
2599 /* Line 1456 of yacc.c */
2600 #line 610 "parse-gram.y"
2602 (yyval
.symbol
) = symbol_get (quotearg_style (c_quoting_style
, (yyvsp
[(1) - (1)].chars
)), (yylsp
[(1) - (1)]));
2603 symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[(1) - (1)]), false);
2609 /* Line 1456 of yacc.c */
2610 #line 619 "parse-gram.y"
2612 code_props plain_code
;
2613 code_props_plain_init (&plain_code
, (yyvsp
[(2) - (2)].chars
), (yylsp
[(2) - (2)]));
2614 code_props_translate_code (&plain_code
);
2615 gram_scanner_last_string_free ();
2616 muscle_code_grow ("epilogue", plain_code
.code
, (yylsp
[(2) - (2)]));
2617 code_scanner_last_string_free ();
2623 /* Line 1456 of yacc.c */
2624 #line 2625 "parse-gram.c"
2627 YY_SYMBOL_PRINT ("-> $$ =", yyr1
[yyn
], &yyval
, &yyloc
);
2631 YY_STACK_PRINT (yyss
, yyssp
);
2636 /* Now `shift' the result of the reduction. Determine what state
2637 that goes to, based on the state we popped back to and the rule
2638 number reduced by. */
2642 yystate
= yypgoto
[yyn
- YYNTOKENS
] + *yyssp
;
2643 if (0 <= yystate
&& yystate
<= YYLAST
&& yycheck
[yystate
] == *yyssp
)
2644 yystate
= yytable
[yystate
];
2646 yystate
= yydefgoto
[yyn
- YYNTOKENS
];
2651 /*------------------------------------.
2652 | yyerrlab -- here on detecting error |
2653 `------------------------------------*/
2655 /* If not already recovering from an error, report this error. */
2659 #if ! YYERROR_VERBOSE
2660 yyerror (YY_("syntax error"));
2663 YYSIZE_T yysize
= yysyntax_error (0, yystate
, yychar
);
2664 if (yymsg_alloc
< yysize
&& yymsg_alloc
< YYSTACK_ALLOC_MAXIMUM
)
2666 YYSIZE_T yyalloc
= 2 * yysize
;
2667 if (! (yysize
<= yyalloc
&& yyalloc
<= YYSTACK_ALLOC_MAXIMUM
))
2668 yyalloc
= YYSTACK_ALLOC_MAXIMUM
;
2669 if (yymsg
!= yymsgbuf
)
2670 YYSTACK_FREE (yymsg
);
2671 yymsg
= (char *) YYSTACK_ALLOC (yyalloc
);
2673 yymsg_alloc
= yyalloc
;
2677 yymsg_alloc
= sizeof yymsgbuf
;
2681 if (0 < yysize
&& yysize
<= yymsg_alloc
)
2683 (void) yysyntax_error (yymsg
, yystate
, yychar
);
2688 yyerror (YY_("syntax error"));
2690 goto yyexhaustedlab
;
2696 yyerror_range
[0] = yylloc
;
2698 if (yyerrstatus
== 3)
2700 /* If just tried and failed to reuse lookahead token after an
2701 error, discard it. */
2703 if (yychar
<= YYEOF
)
2705 /* Return failure if at end of input. */
2706 if (yychar
== YYEOF
)
2711 yydestruct ("Error: discarding",
2712 yytoken
, &yylval
, &yylloc
);
2717 /* Else will try to reuse lookahead token after shifting the error
2722 /*---------------------------------------------------.
2723 | yyerrorlab -- error raised explicitly by YYERROR. |
2724 `---------------------------------------------------*/
2727 /* Pacify compilers like GCC when the user code never invokes
2728 YYERROR and the label yyerrorlab therefore never appears in user
2730 if (/*CONSTCOND*/ 0)
2733 yyerror_range
[0] = yylsp
[1-yylen
];
2734 /* Do not reclaim the symbols of the rule which action triggered
2738 YY_STACK_PRINT (yyss
, yyssp
);
2743 /*-------------------------------------------------------------.
2744 | yyerrlab1 -- common code for both syntax error and YYERROR. |
2745 `-------------------------------------------------------------*/
2747 yyerrstatus
= 3; /* Each real token shifted decrements this. */
2751 yyn
= yypact
[yystate
];
2752 if (yyn
!= YYPACT_NINF
)
2755 if (0 <= yyn
&& yyn
<= YYLAST
&& yycheck
[yyn
] == YYTERROR
)
2763 /* Pop the current state because it cannot handle the error token. */
2767 yyerror_range
[0] = *yylsp
;
2768 yydestruct ("Error: popping",
2769 yystos
[yystate
], yyvsp
, yylsp
);
2772 YY_STACK_PRINT (yyss
, yyssp
);
2777 yyerror_range
[1] = yylloc
;
2778 /* Using YYLLOC is tempting, but would change the location of
2779 the lookahead. YYLOC is available though. */
2780 YYLLOC_DEFAULT (yyloc
, (yyerror_range
- 1), 2);
2783 /* Shift the error token. */
2784 YY_SYMBOL_PRINT ("Shifting", yystos
[yyn
], yyvsp
, yylsp
);
2790 /*-------------------------------------.
2791 | yyacceptlab -- YYACCEPT comes here. |
2792 `-------------------------------------*/
2797 /*-----------------------------------.
2798 | yyabortlab -- YYABORT comes here. |
2799 `-----------------------------------*/
2804 #if !defined(yyoverflow) || YYERROR_VERBOSE
2805 /*-------------------------------------------------.
2806 | yyexhaustedlab -- memory exhaustion comes here. |
2807 `-------------------------------------------------*/
2809 yyerror (YY_("memory exhausted"));
2815 if (yychar
!= YYEMPTY
)
2816 yydestruct ("Cleanup: discarding lookahead",
2817 yytoken
, &yylval
, &yylloc
);
2818 /* Do not reclaim the symbols of the rule which action triggered
2819 this YYABORT or YYACCEPT. */
2821 YY_STACK_PRINT (yyss
, yyssp
);
2822 while (yyssp
!= yyss
)
2824 yydestruct ("Cleanup: popping",
2825 yystos
[*yyssp
], yyvsp
, yylsp
);
2830 YYSTACK_FREE (yyss
);
2833 if (yymsg
!= yymsgbuf
)
2834 YYSTACK_FREE (yymsg
);
2836 /* Make sure YYID is used. */
2837 return YYID (yyresult
);
2842 /* Line 1676 of yacc.c */
2843 #line 629 "parse-gram.y"
2847 /* Return the location of the left-hand side of a rule whose
2848 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
2849 the right-hand side, and return an empty location equal to the end
2850 boundary of RHS[0] if the right-hand side is empty. */
2853 lloc_default (YYLTYPE
const *rhs
, int n
)
2858 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
2859 The bug is fixed in 7.4.2m, but play it safe for now. */
2860 loc
.start
= rhs
[n
].end
;
2861 loc
.end
= rhs
[n
].end
;
2863 /* Ignore empty nonterminals the start of the the right-hand side.
2864 Do not bother to ignore them at the end of the right-hand side,
2865 since empty nonterminals have the same end as their predecessors. */
2866 for (i
= 1; i
<= n
; i
++)
2867 if (! equal_boundaries (rhs
[i
].start
, rhs
[i
].end
))
2869 loc
.start
= rhs
[i
].start
;
2877 /* Add a lex-param or a parse-param (depending on TYPE) with
2878 declaration DECL and location LOC. */
2881 add_param (char const *type
, char *decl
, location loc
)
2883 static char const alphanum
[26 + 26 + 1 + 10] =
2884 "abcdefghijklmnopqrstuvwxyz"
2885 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
2888 char const *name_start
= NULL
;
2891 /* Stop on last actual character. */
2892 for (p
= decl
; p
[1]; p
++)
2894 || ! memchr (alphanum
, p
[-1], sizeof alphanum
))
2895 && memchr (alphanum
, p
[0], sizeof alphanum
- 10))
2898 /* Strip the surrounding '{' and '}', and any blanks just inside
2900 while (*--p
== ' ' || *p
== '\t')
2903 while (*++decl
== ' ' || *decl
== '\t')
2907 complain_at (loc
, _("missing identifier in parameter declaration"));
2914 memchr (alphanum
, name_start
[name_len
], sizeof alphanum
);
2918 name
= xmalloc (name_len
+ 1);
2919 memcpy (name
, name_start
, name_len
);
2920 name
[name_len
] = '\0';
2921 muscle_pair_list_grow (type
, decl
, name
);
2925 gram_scanner_last_string_free ();
2930 version_check (location
const *loc
, char const *version
)
2932 if (strverscmp (version
, PACKAGE_VERSION
) > 0)
2934 complain_at (*loc
, "require bison %s, but have %s",
2935 version
, PACKAGE_VERSION
);
2941 gram_error (location
const *loc
, char const *msg
)
2943 complain_at (*loc
, "%s", msg
);
2947 token_name (int type
)
2949 return yytname
[YYTRANSLATE (type
)];
2960 buf
[0] = '\''; buf
[1] = c
; buf
[2] = '\''; buf
[3] = '\0';
2961 return quotearg_style (escape_quoting_style
, buf
);