1 /* A Bison parser, made by GNU Bison 2.4.336-b5c21. */
3 /* 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.336-b5c21"
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. */
76 /* Line 191 of yacc.c */
77 #line 1 "parse-gram.y"
78 /* Bison Grammar Parser -*- C -*-
80 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software
83 This file is part of Bison, the GNU Compiler Compiler.
85 This program is free software: you can redistribute it and/or modify
86 it under the terms of the GNU General Public License as published by
87 the Free Software Foundation, either version 3 of the License, or
88 (at your option) any later version.
90 This program is distributed in the hope that it will be useful,
91 but WITHOUT ANY WARRANTY; without even the implied warranty of
92 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
93 GNU General Public License for more details.
95 You should have received a copy of the GNU General Public License
96 along with this program. If not, see <http://www.gnu.org/licenses/>. */
101 #include "complain.h"
102 #include "conflicts.h"
106 #include "muscle-tab.h"
107 #include "quotearg.h"
110 #include "named-ref.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 named_ref
*current_lhs_named_ref
;
145 static int current_prec
= 0;
147 #define YYTYPE_INT16 int_fast16_t
148 #define YYTYPE_INT8 int_fast8_t
149 #define YYTYPE_UINT16 uint_fast16_t
150 #define YYTYPE_UINT8 uint_fast8_t
152 /* Line 191 of yacc.c */
153 #line 154 "/Users/akim/src/kernel/bison/src/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,
191 PERCENT_PRECEDENCE
= 268,
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,
203 PERCENT_FILE_PREFIX
= 280,
204 PERCENT_GLR_PARSER
= 281,
205 PERCENT_INITIAL_ACTION
= 282,
206 PERCENT_LANGUAGE
= 283,
207 PERCENT_LEX_PARAM
= 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_REQUIRE
= 291,
215 PERCENT_SKELETON
= 292,
217 PERCENT_TOKEN_TABLE
= 294,
218 PERCENT_VERBOSE
= 295,
226 PERCENT_PERCENT
= 303,
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_PRECEDENCE 268
250 #define PERCENT_PREC 269
251 #define PERCENT_DPREC 270
252 #define PERCENT_MERGE 271
253 #define PERCENT_CODE 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_FLAG 279
261 #define PERCENT_FILE_PREFIX 280
262 #define PERCENT_GLR_PARSER 281
263 #define PERCENT_INITIAL_ACTION 282
264 #define PERCENT_LANGUAGE 283
265 #define PERCENT_LEX_PARAM 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_REQUIRE 291
273 #define PERCENT_SKELETON 292
274 #define PERCENT_START 293
275 #define PERCENT_TOKEN_TABLE 294
276 #define PERCENT_VERBOSE 295
277 #define PERCENT_YACC 296
278 #define BRACED_CODE 297
284 #define PERCENT_PERCENT 303
287 #define SEMICOLON 306
291 #define BRACKETED_ID 310
292 #define PERCENT_UNION 311
297 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
298 typedef union YYSTYPE
300 /* Line 216 of yacc.c */
301 #line 94 "parse-gram.y"
310 unsigned char character
;
311 named_ref
*named_ref
;
314 /* Line 216 of yacc.c */
315 #line 316 "/Users/akim/src/kernel/bison/src/parse-gram.c"
317 # define YYSTYPE_IS_TRIVIAL 1
318 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
319 # define YYSTYPE_IS_DECLARED 1
322 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
323 typedef struct YYLTYPE
330 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
331 # define YYLTYPE_IS_DECLARED 1
332 # define YYLTYPE_IS_TRIVIAL 1
336 /* Copy the second part of user declarations. */
338 /* Line 266 of yacc.c */
339 #line 340 "/Users/akim/src/kernel/bison/src/parse-gram.c"
346 typedef YYTYPE_UINT8 yytype_uint8
;
348 typedef unsigned char yytype_uint8
;
352 typedef YYTYPE_INT8 yytype_int8
;
353 #elif (defined __STDC__ || defined __C99__FUNC__ \
354 || defined __cplusplus || defined _MSC_VER)
355 typedef signed char yytype_int8
;
357 typedef short int yytype_int8
;
361 typedef YYTYPE_UINT16 yytype_uint16
;
363 typedef unsigned short int yytype_uint16
;
367 typedef YYTYPE_INT16 yytype_int16
;
369 typedef short int yytype_int16
;
373 # ifdef __SIZE_TYPE__
374 # define YYSIZE_T __SIZE_TYPE__
375 # elif defined size_t
376 # define YYSIZE_T size_t
377 # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
378 || defined __cplusplus || defined _MSC_VER)
379 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
380 # define YYSIZE_T size_t
382 # define YYSIZE_T unsigned int
386 #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
391 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
392 # define YY_(msgid) dgettext ("bison-runtime", msgid)
396 # define YY_(msgid) msgid
400 /* Suppress unused-variable warnings by "using" E. */
401 #if ! defined lint || defined __GNUC__
402 # define YYUSE(e) ((void) (e))
404 # define YYUSE(e) /* empty */
407 /* Identity function, used to suppress warnings about constant conditions. */
411 #if (defined __STDC__ || defined __C99__FUNC__ \
412 || defined __cplusplus || defined _MSC_VER)
425 #if ! defined yyoverflow || YYERROR_VERBOSE
427 /* The parser invokes alloca or malloc; define the necessary symbols. */
429 # ifdef YYSTACK_USE_ALLOCA
430 # if YYSTACK_USE_ALLOCA
432 # define YYSTACK_ALLOC __builtin_alloca
433 # elif defined __BUILTIN_VA_ARG_INCR
434 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
436 # define YYSTACK_ALLOC __alloca
437 # elif defined _MSC_VER
438 # include <malloc.h> /* INFRINGES ON USER NAME SPACE */
439 # define alloca _alloca
441 # define YYSTACK_ALLOC alloca
442 # if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
443 || defined __cplusplus || defined _MSC_VER)
444 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
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 _STDLIB_H \
470 && ! ((defined YYMALLOC || defined malloc) \
471 && (defined YYFREE || defined free)))
472 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
478 # define YYMALLOC malloc
479 # if ! defined malloc && ! defined _STDLIB_H && (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 _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
487 || defined __cplusplus || defined _MSC_VER)
488 void free (void *); /* INFRINGES ON USER NAME SPACE */
492 #endif /* ! defined yyoverflow || YYERROR_VERBOSE */
495 #if (! defined yyoverflow \
496 && (! defined __cplusplus \
497 || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
498 && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
500 /* A type that is properly aligned for any stack member. */
503 yytype_int16 yyss_alloc
;
508 /* The size of the maximum gap between one aligned stack and the next. */
509 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
511 /* The size of an array large to enough to hold all stacks, each with
513 # define YYSTACK_BYTES(N) \
514 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
515 + 2 * YYSTACK_GAP_MAXIMUM)
517 /* Copy COUNT objects from FROM to TO. The source and destination do
520 # if defined __GNUC__ && 1 < __GNUC__
521 # define YYCOPY(To, From, Count) \
522 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
524 # define YYCOPY(To, From, Count) \
528 for (yyi = 0; yyi < (Count); yyi++) \
529 (To)[yyi] = (From)[yyi]; \
535 /* Relocate STACK from its old location to the new one. The
536 local variables YYSIZE and YYSTACKSIZE give the old and new number of
537 elements in the stack, and YYPTR gives the new location of the
538 stack. Advance YYPTR to a properly aligned location for the next
540 # define YYSTACK_RELOCATE(Stack_alloc, Stack) \
543 YYSIZE_T yynewbytes; \
544 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
545 Stack = &yyptr->Stack_alloc; \
546 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
547 yyptr += yynewbytes / sizeof (*yyptr); \
553 /* YYFINAL -- State number of the termination state. */
555 /* YYLAST -- Last index in YYTABLE. */
558 /* YYNTOKENS -- Number of terminals. */
560 /* YYNNTS -- Number of nonterminals. */
562 /* YYNRULES -- Number of rules. */
564 /* YYNSTATES -- Number of states. */
565 #define YYNSTATES 146
567 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
568 by yylex, with out-of-bounds checking. */
570 #define YYMAXUTOK 311
572 #define YYTRANSLATE(YYX) \
573 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
575 /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
576 as returned by yylex, without out-of-bounds checking. */
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 /* YYRLINEYYN -- Source line where rule number YYN was defined. */
615 static const yytype_uint16 yyrline
[] =
617 0, 207, 207, 215, 217, 221, 222, 232, 236, 241,
618 242, 247, 252, 253, 254, 255, 256, 261, 270, 271,
619 272, 273, 274, 275, 276, 277, 278, 279, 280, 304,
620 305, 306, 307, 311, 312, 313, 317, 324, 331, 335,
621 339, 346, 361, 362, 366, 378, 378, 383, 383, 388,
622 399, 414, 415, 416, 417, 421, 422, 427, 429, 434,
623 435, 440, 442, 447, 448, 452, 453, 454, 455, 460,
624 465, 470, 476, 482, 493, 494, 503, 504, 510, 511,
625 512, 519, 519, 524, 525, 526, 531, 533, 535, 537,
626 539, 541, 547, 549, 561, 562, 567, 568, 577, 597,
627 599, 608, 613, 614, 619, 626, 628
631 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
632 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
633 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
634 static const char *const yytname
[] =
636 "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"",
637 "\"%token\"", "\"%nterm\"", "\"%type\"", "\"%destructor\"",
638 "\"%printer\"", "\"%left\"", "\"%right\"", "\"%nonassoc\"",
639 "\"%precedence\"", "\"%prec\"", "\"%dprec\"", "\"%merge\"", "\"%code\"",
640 "\"%default-prec\"", "\"%define\"", "\"%defines\"", "\"%error-verbose\"",
641 "\"%expect\"", "\"%expect-rr\"", "\"%<flag>\"", "\"%file-prefix\"",
642 "\"%glr-parser\"", "\"%initial-action\"", "\"%language\"",
643 "\"%lex-param\"", "\"%name-prefix\"", "\"%no-default-prec\"",
644 "\"%no-lines\"", "\"%nondeterministic-parser\"", "\"%output\"",
645 "\"%parse-param\"", "\"%require\"", "\"%skeleton\"", "\"%start\"",
646 "\"%token-table\"", "\"%verbose\"", "\"%yacc\"", "\"{...}\"", "\"char\"",
647 "\"epilogue\"", "\"=\"", "\"identifier\"", "\"identifier:\"", "\"%%\"",
648 "\"|\"", "\"%{...%}\"", "\";\"", "\"<tag>\"", "\"<*>\"", "\"<>\"",
649 "\"[id]\"", "\"%union\"", "$accept", "input", "prologue_declarations",
650 "prologue_declaration", "grammar_declaration", "union_name",
651 "symbol_declaration", "$@1", "$@2", "precedence_declaration",
652 "precedence_declarator", "tag.opt", "symbols.prec", "symbol.prec",
653 "symbols.1", "generic_symlist", "generic_symlist_item", "symbol_def",
654 "symbol_defs.1", "grammar", "rules_or_grammar_declaration", "rules",
655 "$@3", "rhses.1", "rhs", "named_ref.opt", "variable", "content.opt",
656 "braceless", "id", "id_colon", "symbol", "string_as_id", "epilogue.opt", 0
661 /* YYTOKNUM[NUM] -- (External) token number corresponding to the
662 (internal) symbol number NUM (which must be that of a token). */
663 static const yytype_uint16 yytoknum
[] =
665 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
666 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
667 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
668 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
669 295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
670 305, 306, 307, 308, 309, 310, 311
674 #define YYPACT_NINF -53
676 #define YYTABLE_NINF -106
678 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
680 static const yytype_int16 yypact
[] =
682 -53, 5, 102, -53, -53, -53, -10, 8, 27, -53,
683 -53, -53, -53, 18, -53, 32, 55, -53, 70, 77,
684 -53, 17, -53, 43, 91, 53, 41, -53, -53, -53,
685 42, 54, 94, 96, 0, -53, -53, -53, 16, -53,
686 -53, 56, -53, -53, -53, -53, 48, 30, 30, 0,
687 13, 13, -53, 61, -53, -53, -53, 101, -53, -53,
688 -53, -53, 113, -53, -53, -53, -53, 114, -53, 115,
689 -53, -53, -53, -53, -53, -53, -53, -53, -53, 93,
690 -53, 95, 1, -53, -53, 50, -53, 61, -53, 0,
691 -53, -53, 30, 33, 30, 0, -53, -53, -53, -53,
692 13, -53, -53, 13, -53, -53, -53, -53, -53, -53,
693 -53, -53, 103, -53, -53, -53, -53, -53, 0, -53,
694 141, -53, 145, -53, -53, -53, -53, -53, -53, -53,
695 -53, 39, 37, -53, -53, 0, 147, 97, 50, 50,
696 37, -53, -53, -53, -53, -53
699 /* YYDEFACT[S] -- default reduction number in state S. Performed when
700 YYTABLE does not specify something else to do. Zero means the default
702 static const yytype_uint8 yydefact
[] =
704 3, 0, 0, 1, 47, 45, 0, 0, 0, 51,
705 52, 53, 54, 0, 38, 0, 9, 11, 0, 0,
706 7, 0, 16, 0, 0, 0, 0, 39, 22, 23,
707 0, 0, 0, 0, 0, 29, 30, 31, 0, 6,
708 32, 42, 4, 5, 34, 33, 55, 0, 0, 0,
709 0, 0, 98, 0, 40, 95, 94, 96, 10, 12,
710 13, 14, 0, 17, 18, 19, 20, 0, 24, 0,
711 26, 27, 28, 104, 100, 99, 102, 35, 103, 0,
712 101, 0, 0, 76, 78, 92, 43, 0, 56, 0,
713 69, 74, 48, 70, 46, 49, 61, 66, 67, 68,
714 36, 63, 65, 37, 41, 97, 8, 15, 21, 25,
715 80, 79, 0, 77, 2, 93, 81, 44, 50, 57,
716 59, 75, 71, 72, 62, 64, 106, 86, 58, 60,
717 73, 82, 83, 86, 85, 0, 0, 0, 92, 92,
718 84, 89, 90, 91, 88, 87
721 /* YYPGOTO[NTERM-NUM]. */
722 static const yytype_int16 yypgoto
[] =
724 -53, -53, -53, -53, 152, -53, -53, -53, -53, -53,
725 -53, -53, -53, 38, -53, 104, -32, -3, 109, -53,
726 78, -53, -53, -53, 26, -46, -53, -53, -49, -17,
730 /* YYDEFGOTO[NTERM-NUM]. */
731 static const yytype_int16 yydefgoto
[] =
733 -1, 1, 2, 42, 81, 87, 44, 48, 47, 45,
734 46, 89, 118, 119, 95, 100, 101, 91, 92, 82,
735 83, 84, 127, 131, 132, 116, 57, 106, 54, 76,
739 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
740 positive, shift that token. If negative, reduce the rule which
741 number is the opposite. If zero, do what YYDEFACT says.
742 If YYTABLE_NINF, syntax error. */
743 static const yytype_int16 yytable
[] =
745 77, -105, 79, 73, 104, 3, 4, 5, 6, 7,
746 8, 9, 10, 11, 12, 96, 73, 79, 13, 14,
747 61, 4, 5, 6, 7, 8, 9, 10, 11, 12,
748 93, 93, 27, 13, 14, 55, 73, 122, 117, 34,
749 73, 123, 49, 74, 66, 68, 75, 27, 80, 112,
750 50, 135, 136, 137, 34, 120, 74, 41, 58, 75,
751 52, 124, 62, 80, 53, 97, 98, 99, 125, 51,
752 130, 125, 41, 74, 59, 93, 75, 93, 56, 138,
753 74, 60, 90, 75, 120, 63, 67, 69, 133, 121,
754 134, 121, 144, 145, 64, 65, 70, 71, 139, 72,
755 88, 141, 86, 52, 105, 115, 139, 4, 5, 6,
756 7, 8, 9, 10, 11, 12, 107, 108, 109, 13,
757 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
758 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
759 34, 35, 36, 37, 110, 129, 111, 126, 73, 143,
760 38, 142, 39, 40, 43, 103, 128, 94, 41, 140,
764 static const yytype_uint8 yycheck
[] =
766 34, 0, 1, 3, 53, 0, 5, 6, 7, 8,
767 9, 10, 11, 12, 13, 49, 3, 1, 17, 18,
768 3, 5, 6, 7, 8, 9, 10, 11, 12, 13,
769 47, 48, 31, 17, 18, 3, 3, 4, 87, 38,
770 3, 93, 52, 43, 3, 3, 46, 31, 47, 48,
771 42, 14, 15, 16, 38, 89, 43, 56, 3, 46,
772 42, 95, 45, 47, 46, 52, 53, 54, 100, 42,
773 122, 103, 56, 43, 4, 92, 46, 94, 46, 42,
774 43, 4, 52, 46, 118, 42, 45, 45, 49, 92,
775 51, 94, 138, 139, 3, 42, 42, 3, 132, 3,
776 52, 135, 46, 42, 3, 55, 140, 5, 6, 7,
777 8, 9, 10, 11, 12, 13, 3, 3, 3, 17,
778 18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
779 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
780 38, 39, 40, 41, 51, 4, 51, 44, 3, 52,
781 48, 4, 50, 51, 2, 51, 118, 48, 56, 133,
785 /* STOS_[STATE-NUM] -- The (internal number of the) accessing
786 symbol of state STATE-NUM. */
787 static const yytype_uint8 yystos
[] =
789 0, 58, 59, 0, 5, 6, 7, 8, 9, 10,
790 11, 12, 13, 17, 18, 19, 20, 21, 22, 23,
791 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
792 34, 35, 36, 37, 38, 39, 40, 41, 48, 50,
793 51, 56, 60, 61, 63, 66, 67, 65, 64, 52,
794 42, 42, 42, 46, 85, 3, 46, 83, 3, 4,
795 4, 3, 45, 42, 3, 42, 3, 45, 3, 45,
796 42, 3, 3, 3, 43, 46, 86, 88, 89, 1,
797 47, 61, 76, 77, 78, 87, 46, 62, 52, 68,
798 52, 74, 75, 86, 75, 71, 88, 52, 53, 54,
799 72, 73, 88, 72, 85, 3, 84, 3, 3, 3,
800 51, 51, 48, 77, 90, 55, 82, 85, 69, 70,
801 88, 74, 4, 89, 88, 73, 44, 79, 70, 4,
802 89, 80, 81, 49, 51, 14, 15, 16, 42, 88,
803 81, 88, 4, 52, 82, 82
806 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
807 static const yytype_uint8 yyr1
[] =
809 0, 57, 58, 59, 59, 60, 60, 60, 60, 60,
810 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
811 60, 60, 60, 60, 60, 60, 60, 60, 60, 60,
812 60, 60, 60, 61, 61, 61, 61, 61, 61, 61,
813 61, 61, 62, 62, 61, 64, 63, 65, 63, 63,
814 66, 67, 67, 67, 67, 68, 68, 69, 69, 70,
815 70, 71, 71, 72, 72, 73, 73, 73, 73, 74,
816 74, 74, 74, 74, 75, 75, 76, 76, 77, 77,
817 77, 79, 78, 80, 80, 80, 81, 81, 81, 81,
818 81, 81, 82, 82, 83, 83, 84, 84, 85, 86,
819 86, 87, 88, 88, 89, 90, 90
822 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
823 static const yytype_uint8 yyr2
[] =
825 0, 2, 4, 0, 2, 1, 1, 1, 3, 1,
826 2, 1, 2, 2, 2, 3, 1, 2, 2, 2,
827 2, 3, 1, 1, 2, 3, 2, 2, 2, 1,
828 1, 1, 1, 1, 1, 2, 3, 3, 1, 1,
829 2, 3, 0, 1, 3, 0, 3, 0, 3, 3,
830 3, 1, 1, 1, 1, 0, 1, 1, 2, 1,
831 2, 1, 2, 1, 2, 1, 1, 1, 1, 1,
832 1, 2, 2, 3, 1, 2, 1, 2, 1, 2,
833 2, 0, 4, 1, 3, 2, 0, 3, 3, 3,
834 3, 3, 0, 1, 1, 1, 0, 1, 1, 1,
839 #define yyerrok (yyerrstatus = 0)
840 #define yyclearin (yychar = YYEMPTY)
844 #define YYACCEPT goto yyacceptlab
845 #define YYABORT goto yyabortlab
846 #define YYERROR goto yyerrorlab
849 /* Like YYERROR except do call yyerror. This remains here temporarily
850 to ease the transition to the new meaning of YYERROR, for GCC.
851 Once GCC version 2 has supplanted version 1, this can go. */
853 #define YYFAIL goto yyerrlab
855 #define YYRECOVERING() (!!yyerrstatus)
857 #define YYBACKUP(Token, Value) \
859 if (yychar == YYEMPTY && yylen == 1) \
863 yytoken = YYTRANSLATE (yychar); \
869 yyerror (YY_("syntax error: cannot back up")); \
876 #define YYERRCODE 256
879 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
880 If N is 0, then set CURRENT to the empty location which ends
881 the previous symbol: RHS[0] (always defined). */
883 #define YYRHSLOC(Rhs, K) ((Rhs)[K])
884 #ifndef YYLLOC_DEFAULT
885 # define YYLLOC_DEFAULT(Current, Rhs, N) \
889 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
890 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
891 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
892 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
896 (Current).first_line = (Current).last_line = \
897 YYRHSLOC (Rhs, 0).last_line; \
898 (Current).first_column = (Current).last_column = \
899 YYRHSLOC (Rhs, 0).last_column; \
905 /* YY_LOCATION_PRINT -- Print the location on the stream.
906 This macro was not mandated originally: define only if we know
907 we won't break user code: when these are the locations we know. */
909 #ifndef YY_LOCATION_PRINT
910 # if YYLTYPE_IS_TRIVIAL
911 # define YY_LOCATION_PRINT(File, Loc) \
912 fprintf (File, "%d.%d-%d.%d", \
913 (Loc).first_line, (Loc).first_column, \
914 (Loc).last_line, (Loc).last_column)
916 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
921 /* YYLEX -- calling `yylex' with the right arguments. */
924 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
926 # define YYLEX yylex (&yylval, &yylloc)
929 /* Enable debugging if requested. */
933 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
934 # define YYFPRINTF fprintf
937 # define YYDPRINTF(Args) \
943 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
947 YYFPRINTF (stderr, "%s ", Title); \
948 yy_symbol_print (stderr, \
949 Type, Value, Location); \
950 YYFPRINTF (stderr, "\n"); \
955 /*--------------------------------.
956 | Print this symbol on YYOUTPUT. |
957 `--------------------------------*/
960 #if (defined __STDC__ || defined __C99__FUNC__ \
961 || defined __cplusplus || defined _MSC_VER)
963 yy_symbol_value_print (FILE *yyoutput
, int yytype
, YYSTYPE
const * const yyvaluep
, YYLTYPE
const * const yylocationp
)
966 yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
)
969 YYSTYPE
const * const yyvaluep
;
970 YYLTYPE
const * const yylocationp
;
977 if (yytype
< YYNTOKENS
)
978 YYPRINT (yyoutput
, yytoknum
[yytype
], *yyvaluep
);
986 /* Line 647 of yacc.c */
987 #line 183 "parse-gram.y"
988 { fputs (quotearg_style (c_quoting_style
, ((*yyvaluep
).chars
)), stderr
); }
989 /* Line 647 of yacc.c */
990 #line 991 "/Users/akim/src/kernel/bison/src/parse-gram.c"
995 /* Line 647 of yacc.c */
996 #line 196 "parse-gram.y"
997 { fprintf (stderr
, "%d", ((*yyvaluep
).integer
)); }
998 /* Line 647 of yacc.c */
999 #line 1000 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1002 case 24: // "%<flag>"
1004 /* Line 647 of yacc.c */
1005 #line 192 "parse-gram.y"
1006 { fprintf (stderr
, "%%%s", ((*yyvaluep
).uniqstr
)); }
1007 /* Line 647 of yacc.c */
1008 #line 1009 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1013 /* Line 647 of yacc.c */
1014 #line 185 "parse-gram.y"
1015 { fprintf (stderr
, "{\n%s\n}", ((*yyvaluep
).code
)); }
1016 /* Line 647 of yacc.c */
1017 #line 1018 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1022 /* Line 647 of yacc.c */
1023 #line 177 "parse-gram.y"
1024 { fputs (char_name (((*yyvaluep
).character
)), stderr
); }
1025 /* Line 647 of yacc.c */
1026 #line 1027 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1029 case 44: // "epilogue"
1031 /* Line 647 of yacc.c */
1032 #line 185 "parse-gram.y"
1033 { fprintf (stderr
, "{\n%s\n}", ((*yyvaluep
).chars
)); }
1034 /* Line 647 of yacc.c */
1035 #line 1036 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1038 case 46: // "identifier"
1040 /* Line 647 of yacc.c */
1041 #line 190 "parse-gram.y"
1042 { fputs (((*yyvaluep
).uniqstr
), stderr
); }
1043 /* Line 647 of yacc.c */
1044 #line 1045 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1047 case 47: // "identifier:"
1049 /* Line 647 of yacc.c */
1050 #line 191 "parse-gram.y"
1051 { fprintf (stderr
, "%s:", ((*yyvaluep
).uniqstr
)); }
1052 /* Line 647 of yacc.c */
1053 #line 1054 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1056 case 50: // "%{...%}"
1058 /* Line 647 of yacc.c */
1059 #line 185 "parse-gram.y"
1060 { fprintf (stderr
, "{\n%s\n}", ((*yyvaluep
).chars
)); }
1061 /* Line 647 of yacc.c */
1062 #line 1063 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1067 /* Line 647 of yacc.c */
1068 #line 193 "parse-gram.y"
1069 { fprintf (stderr
, "<%s>", ((*yyvaluep
).uniqstr
)); }
1070 /* Line 647 of yacc.c */
1071 #line 1072 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1074 case 83: // variable
1076 /* Line 647 of yacc.c */
1077 #line 190 "parse-gram.y"
1078 { fputs (((*yyvaluep
).uniqstr
), stderr
); }
1079 /* Line 647 of yacc.c */
1080 #line 1081 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1083 case 84: // content.opt
1085 /* Line 647 of yacc.c */
1086 #line 185 "parse-gram.y"
1087 { fprintf (stderr
, "{\n%s\n}", ((*yyvaluep
).chars
)); }
1088 /* Line 647 of yacc.c */
1089 #line 1090 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1092 case 85: // braceless
1094 /* Line 647 of yacc.c */
1095 #line 185 "parse-gram.y"
1096 { fprintf (stderr
, "{\n%s\n}", ((*yyvaluep
).chars
)); }
1097 /* Line 647 of yacc.c */
1098 #line 1099 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1103 /* Line 647 of yacc.c */
1104 #line 199 "parse-gram.y"
1105 { fprintf (stderr
, "%s", ((*yyvaluep
).symbol
)->tag
); }
1106 /* Line 647 of yacc.c */
1107 #line 1108 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1110 case 87: // id_colon
1112 /* Line 647 of yacc.c */
1113 #line 200 "parse-gram.y"
1114 { fprintf (stderr
, "%s:", ((*yyvaluep
).symbol
)->tag
); }
1115 /* Line 647 of yacc.c */
1116 #line 1117 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1121 /* Line 647 of yacc.c */
1122 #line 199 "parse-gram.y"
1123 { fprintf (stderr
, "%s", ((*yyvaluep
).symbol
)->tag
); }
1124 /* Line 647 of yacc.c */
1125 #line 1126 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1128 case 89: // string_as_id
1130 /* Line 647 of yacc.c */
1131 #line 199 "parse-gram.y"
1132 { fprintf (stderr
, "%s", ((*yyvaluep
).symbol
)->tag
); }
1133 /* Line 647 of yacc.c */
1134 #line 1135 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1143 /*--------------------------------.
1144 | Print this symbol on YYOUTPUT. |
1145 `--------------------------------*/
1147 #if (defined __STDC__ || defined __C99__FUNC__ \
1148 || defined __cplusplus || defined _MSC_VER)
1150 yy_symbol_print (FILE *yyoutput
, int yytype
, YYSTYPE
const * const yyvaluep
, YYLTYPE
const * const yylocationp
)
1153 yy_symbol_print (yyoutput
, yytype
, yyvaluep
, yylocationp
)
1156 YYSTYPE
const * const yyvaluep
;
1157 YYLTYPE
const * const yylocationp
;
1160 if (yytype
< YYNTOKENS
)
1161 YYFPRINTF (yyoutput
, "token %s (", yytname
[yytype
]);
1163 YYFPRINTF (yyoutput
, "nterm %s (", yytname
[yytype
]);
1165 YY_LOCATION_PRINT (yyoutput
, *yylocationp
);
1166 YYFPRINTF (yyoutput
, ": ");
1167 yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
);
1168 YYFPRINTF (yyoutput
, ")");
1171 /*------------------------------------------------------------------.
1172 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
1174 `------------------------------------------------------------------*/
1176 #if (defined __STDC__ || defined __C99__FUNC__ \
1177 || defined __cplusplus || defined _MSC_VER)
1179 yy_stack_print (yytype_int16
*yybottom
, yytype_int16
*yytop
)
1182 yy_stack_print (yybottom
, yytop
)
1183 yytype_int16
*yybottom
;
1184 yytype_int16
*yytop
;
1187 YYFPRINTF (stderr
, "Stack now");
1188 for (; yybottom
<= yytop
; yybottom
++)
1190 int yybot
= *yybottom
;
1191 YYFPRINTF (stderr
, " %d", yybot
);
1193 YYFPRINTF (stderr
, "\n");
1196 # define YY_STACK_PRINT(Bottom, Top) \
1199 yy_stack_print ((Bottom), (Top)); \
1203 /*------------------------------------------------.
1204 | Report that the YYRULE is going to be reduced. |
1205 `------------------------------------------------*/
1207 #if (defined __STDC__ || defined __C99__FUNC__ \
1208 || defined __cplusplus || defined _MSC_VER)
1210 yy_reduce_print (yytype_int16
*yyssp
, YYSTYPE
*yyvsp
, YYLTYPE
*yylsp
, int yyrule
)
1213 yy_reduce_print (yyssp
, yyvsp
, yylsp
, yyrule
)
1214 yytype_int16
*yyssp
;
1220 unsigned long int yylno
= yyrline
[yyrule
];
1221 int yynrhs
= yyr2
[yyrule
];
1223 YYFPRINTF (stderr
, "Reducing stack by rule %d (line %lu):\n",
1225 /* The symbols being reduced. */
1226 for (yyi
= 0; yyi
< yynrhs
; yyi
++)
1228 YYFPRINTF (stderr
, " $%d = ", yyi
+ 1);
1229 yy_symbol_print (stderr
,
1230 yystos
[yyssp
[yyi
+ 1 - yynrhs
]],
1231 &(yyvsp
[(yyi
+ 1) - (yynrhs
)])
1232 , &(yylsp
[(yyi
+ 1) - (yynrhs
)]) );
1233 YYFPRINTF (stderr
, "\n");
1237 # define YY_REDUCE_PRINT(Rule) \
1240 yy_reduce_print (yyssp, yyvsp, yylsp, Rule); \
1243 /* Nonzero means print parse trace. It is left uninitialized so that
1244 multiple parsers can coexist. */
1246 #else /* !YYDEBUG */
1247 # define YYDPRINTF(Args)
1248 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
1249 # define YY_STACK_PRINT(Bottom, Top)
1250 # define YY_REDUCE_PRINT(Rule)
1251 #endif /* !YYDEBUG */
1254 /* YYINITDEPTH -- initial size of the parser's stacks. */
1256 # define YYINITDEPTH 200
1259 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
1260 if the built-in stack extension method is used).
1262 Do not make this value too large; the results are undefined if
1263 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
1264 evaluated with infinite-precision integer arithmetic. */
1267 # define YYMAXDEPTH 10000
1275 # if defined __GLIBC__ && defined _STRING_H
1276 # define yystrlen strlen
1278 /* Return the length of YYSTR. */
1279 #if (defined __STDC__ || defined __C99__FUNC__ \
1280 || defined __cplusplus || defined _MSC_VER)
1282 yystrlen (const char *yystr
)
1290 for (yylen
= 0; yystr
[yylen
]; yylen
++)
1298 # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
1299 # define yystpcpy stpcpy
1301 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
1303 #if (defined __STDC__ || defined __C99__FUNC__ \
1304 || defined __cplusplus || defined _MSC_VER)
1306 yystpcpy (char *yydest
, const char *yysrc
)
1309 yystpcpy (yydest
, yysrc
)
1315 const char *yys
= yysrc
;
1317 while ((*yyd
++ = *yys
++) != '\0')
1326 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
1327 quotes and backslashes, so that it's suitable for yyerror. The
1328 heuristic is that double-quoting is unnecessary unless the string
1329 contains an apostrophe, a comma, or backslash (other than
1330 backslash-backslash). YYSTR is taken from yytname. If YYRES is
1331 null, do not copy; instead, return the length of what the result
1334 yytnamerr (char *yyres
, const char *yystr
)
1339 char const *yyp
= yystr
;
1346 goto do_not_strip_quotes
;
1350 goto do_not_strip_quotes
;
1363 do_not_strip_quotes
: ;
1367 return yystrlen (yystr
);
1369 return yystpcpy (yyres
, yystr
) - yyres
;
1373 /* Copy into YYRESULT an error message about the unexpected token
1374 YYTOKEN while in state YYSTATE. Return the number of bytes copied,
1375 including the terminating null byte. If YYRESULT is null, do not
1376 copy anything; just return the number of bytes that would be
1377 copied. As a special case, return 0 if an ordinary "syntax error"
1378 message will do. Return YYSIZE_MAXIMUM if overflow occurs during
1379 size calculation. */
1381 yysyntax_error (char *yyresult
, int yystate
, int yytoken
)
1383 int yyn
= yypact
[yystate
];
1385 if (! (YYPACT_NINF
< yyn
&& yyn
<= YYLAST
))
1389 YYSIZE_T yysize0
= yytnamerr (0, yytname
[yytoken
]);
1390 YYSIZE_T yysize
= yysize0
;
1392 int yysize_overflow
= 0;
1393 enum { YYERROR_VERBOSE_ARGS_MAXIMUM
= 5 };
1394 /* Internationalized format string. */
1395 const char *yyformat
= 0;
1396 /* Arguments of yyformat. */
1397 char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
];
1399 /* Start YYX at -YYN if negative to avoid negative indexes in
1401 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
1403 /* Stay within bounds of both yycheck and yytname. */
1404 int yychecklim
= YYLAST
- yyn
+ 1;
1405 int yyxend
= yychecklim
< YYNTOKENS
? yychecklim
: YYNTOKENS
;
1406 /* Number of reported tokens (one for the "unexpected", one per
1411 yyarg
[yycount
++] = yytname
[yytoken
];
1413 for (yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
1414 if (yycheck
[yyx
+ yyn
] == yyx
&& yyx
!= YYTERROR
)
1416 if (yycount
== YYERROR_VERBOSE_ARGS_MAXIMUM
)
1422 yyarg
[yycount
++] = yytname
[yyx
];
1423 yysize1
= yysize
+ yytnamerr (0, yytname
[yyx
]);
1424 yysize_overflow
|= (yysize1
< yysize
);
1430 #define YYCASE_(N, S) \
1434 YYCASE_(1, YY_("syntax error, unexpected %s"));
1435 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
1436 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
1437 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
1438 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
1442 yysize1
= yysize
+ yystrlen (yyformat
);
1443 yysize_overflow
|= (yysize1
< yysize
);
1446 if (yysize_overflow
)
1447 return YYSIZE_MAXIMUM
;
1451 /* Avoid sprintf, as that infringes on the user's name space.
1452 Don't have undefined behavior even if the translation
1453 produced a string with the wrong number of "%s"s. */
1454 char *yyp
= yyresult
;
1456 while ((*yyp
= *yyformat
) != '\0')
1457 if (*yyp
== '%' && yyformat
[1] == 's' && yyi
< yycount
)
1459 yyp
+= yytnamerr (yyp
, yyarg
[yyi
++]);
1471 #endif /* YYERROR_VERBOSE */
1474 /*-----------------------------------------------.
1475 | Release the memory associated to this symbol. |
1476 `-----------------------------------------------*/
1479 #if (defined __STDC__ || defined __C99__FUNC__ \
1480 || defined __cplusplus || defined _MSC_VER)
1482 yydestruct (const char *yymsg
, int yytype
, YYSTYPE
*yyvaluep
, YYLTYPE
*yylocationp
)
1485 yydestruct (yymsg
, yytype
, yyvaluep
, yylocationp
)
1489 YYLTYPE
*yylocationp
;
1493 YYUSE (yylocationp
);
1497 YY_SYMBOL_PRINT (yymsg
, yytype
, yyvaluep
, yylocationp
);
1506 /* Prevent warnings from -Wmissing-prototypes. */
1507 #ifdef YYPARSE_PARAM
1508 #if (defined __STDC__ || defined __C99__FUNC__ \
1509 || defined __cplusplus || defined _MSC_VER)
1510 int yyparse (void *YYPARSE_PARAM
);
1514 #else /* ! YYPARSE_PARAM */
1515 #if (defined __STDC__ || defined __C99__FUNC__ \
1516 || defined __cplusplus || defined _MSC_VER)
1521 #endif /* ! YYPARSE_PARAM */
1527 /*-------------------------.
1528 | yyparse or yypush_parse. |
1529 `-------------------------*/
1531 #ifdef YYPARSE_PARAM
1532 #if (defined __STDC__ || defined __C99__FUNC__ \
1533 || defined __cplusplus || defined _MSC_VER)
1535 yyparse (void *YYPARSE_PARAM
)
1538 yyparse (YYPARSE_PARAM
)
1539 void *YYPARSE_PARAM
;
1541 #else /* ! YYPARSE_PARAM */
1542 #if (defined __STDC__ || defined __C99__FUNC__ \
1543 || defined __cplusplus || defined _MSC_VER)
1553 /* The lookahead symbol. */
1556 /* The semantic value of the lookahead symbol. */
1559 /* Location data for the lookahead symbol. */
1562 /* Number of syntax errors so far. */
1566 /* Number of tokens to shift before error messages enabled. */
1569 /* The stacks and their tools:
1570 `yyss': related to states.
1571 `yyvs': related to semantic values.
1572 `yyls': related to locations.
1574 Refer to the stacks thru separate pointers, to allow yyoverflow
1575 to reallocate them elsewhere. */
1577 /* The state stack. */
1578 yytype_int16 yyssa
[YYINITDEPTH
];
1580 yytype_int16
*yyssp
;
1582 /* The semantic value stack. */
1583 YYSTYPE yyvsa
[YYINITDEPTH
];
1587 /* The location stack. */
1588 YYLTYPE yylsa
[YYINITDEPTH
];
1592 /* The locations where the error started and ended. */
1593 YYLTYPE yyerror_range
[2];
1595 YYSIZE_T yystacksize
;
1599 /* Lookahead token as an internal (translated) token number. */
1601 /* The variables used to return semantic value and location from the
1607 /* Buffer for error messages, and its allocated size. */
1609 char *yymsg
= yymsgbuf
;
1610 YYSIZE_T yymsg_alloc
= sizeof yymsgbuf
;
1613 #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))
1615 /* The number of symbols on the RHS of the reduced rule.
1616 Keep to zero when no symbol should be popped. */
1623 yystacksize
= YYINITDEPTH
;
1625 YYDPRINTF ((stderr
, "Starting parse\n"));
1630 yychar
= YYEMPTY
; /* Cause a token to be read. */
1632 /* Initialize stack pointers.
1633 Waste one element of value and location stack
1634 so that they stay on the same level as the state stack.
1635 The wasted elements are never initialized. */
1640 #if YYLTYPE_IS_TRIVIAL
1641 /* Initialize the default location before parsing starts. */
1642 yylloc
.first_line
= yylloc
.last_line
= 1;
1643 yylloc
.first_column
= yylloc
.last_column
= 1;
1646 /* User initialization code. */
1647 /* Line 1167 of yacc.c */
1648 #line 86 "parse-gram.y"
1650 /* Bison's grammar can initial empty locations, hence a default
1651 location is needed. */
1652 boundary_set (&yylloc
.start
, current_file
, 1, 1);
1653 boundary_set (&yylloc
.end
, current_file
, 1, 1);
1655 /* Line 1167 of yacc.c */
1656 #line 1657 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1661 /*------------------------------------------------------------.
1662 | yynewstate -- Push a new state, which is found in yystate. |
1663 `------------------------------------------------------------*/
1665 /* In all cases, when you get here, the value and location stacks
1666 have just been pushed. So pushing a state here evens the stacks. */
1672 if (yyss
+ yystacksize
- 1 <= yyssp
)
1674 /* Get the current used size of the three stacks, in elements. */
1675 YYSIZE_T yysize
= yyssp
- yyss
+ 1;
1679 /* Give user a chance to reallocate the stack. Use copies of
1680 these so that the &'s don't force the real ones into
1682 YYSTYPE
*yyvs1
= yyvs
;
1683 yytype_int16
*yyss1
= yyss
;
1684 YYLTYPE
*yyls1
= yyls
;
1686 /* Each stack pointer address is followed by the size of the
1687 data in use in that stack, in bytes. This used to be a
1688 conditional around just the two extra args, but that might
1689 be undefined if yyoverflow is a macro. */
1690 yyoverflow (YY_("memory exhausted"),
1691 &yyss1
, yysize
* sizeof (*yyssp
),
1692 &yyvs1
, yysize
* sizeof (*yyvsp
),
1693 &yyls1
, yysize
* sizeof (*yylsp
),
1700 #else /* no yyoverflow */
1701 # ifndef YYSTACK_RELOCATE
1702 goto yyexhaustedlab
;
1704 /* Extend the stack our own way. */
1705 if (YYMAXDEPTH
<= yystacksize
)
1706 goto yyexhaustedlab
;
1708 if (YYMAXDEPTH
< yystacksize
)
1709 yystacksize
= YYMAXDEPTH
;
1712 yytype_int16
*yyss1
= yyss
;
1713 union yyalloc
*yyptr
=
1714 (union yyalloc
*) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize
));
1716 goto yyexhaustedlab
;
1717 YYSTACK_RELOCATE (yyss_alloc
, yyss
);
1718 YYSTACK_RELOCATE (yyvs_alloc
, yyvs
);
1719 YYSTACK_RELOCATE (yyls_alloc
, yyls
);
1720 # undef YYSTACK_RELOCATE
1722 YYSTACK_FREE (yyss1
);
1725 #endif /* no yyoverflow */
1727 yyssp
= yyss
+ yysize
- 1;
1728 yyvsp
= yyvs
+ yysize
- 1;
1729 yylsp
= yyls
+ yysize
- 1;
1731 YYDPRINTF ((stderr
, "Stack size increased to %lu\n",
1732 (unsigned long int) yystacksize
));
1734 if (yyss
+ yystacksize
- 1 <= yyssp
)
1738 YYDPRINTF ((stderr
, "Entering state %d\n", yystate
));
1740 if (yystate
== YYFINAL
)
1750 /* Do appropriate processing given the current state. Read a
1751 lookahead token if we need one and don't already have one. */
1753 /* First try to decide what to do without reference to lookahead token. */
1754 yyn
= yypact
[yystate
];
1755 if (yyn
== YYPACT_NINF
)
1758 /* Not known => get a lookahead token if don't already have one. */
1760 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1761 if (yychar
== YYEMPTY
)
1763 YYDPRINTF ((stderr
, "Reading a token: "));
1767 if (yychar
<= YYEOF
)
1769 yychar
= yytoken
= YYEOF
;
1770 YYDPRINTF ((stderr
, "Now at end of input.\n"));
1774 yytoken
= YYTRANSLATE (yychar
);
1775 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
1778 /* If the proper action on seeing token YYTOKEN is to reduce or to
1779 detect an error, take that action. */
1781 if (yyn
< 0 || YYLAST
< yyn
|| yycheck
[yyn
] != yytoken
)
1786 if (yyn
== 0 || yyn
== YYTABLE_NINF
)
1792 /* Count tokens shifted since error; after three, turn off error
1797 /* Shift the lookahead token. */
1798 YY_SYMBOL_PRINT ("Shifting", yytoken
, &yylval
, &yylloc
);
1800 /* Discard the shifted token. */
1809 /*-----------------------------------------------------------.
1810 | yydefault -- do the default action for the current state. |
1811 `-----------------------------------------------------------*/
1813 yyn
= yydefact
[yystate
];
1819 /*-----------------------------.
1820 | yyreduce -- Do a reduction. |
1821 `-----------------------------*/
1823 /* yyn is the number of a rule to reduce with. */
1826 /* If YYLEN is nonzero, implement the default value of the action:
1829 Otherwise, the following line sets YYVAL to garbage.
1830 This behavior is undocumented and Bison
1831 users should not rely upon it. Assigning to YYVAL
1832 unconditionally makes the parser a bit smaller, and it avoids a
1833 GCC warning that YYVAL may be used uninitialized. */
1834 yyval
= yyvsp
[1-yylen
];
1836 /* Default location. */
1837 YYLLOC_DEFAULT (yyloc
, (yylsp
- yylen
), yylen
);
1838 YY_REDUCE_PRINT (yyn
);
1842 /* Line 1380 of yacc.c */
1843 #line 223 "parse-gram.y"
1845 code_props plain_code
;
1846 code_props_plain_init (&plain_code
, (yyvsp
[0].chars
), (yylsp
[0]));
1847 code_props_translate_code (&plain_code
);
1848 gram_scanner_last_string_free ();
1849 muscle_code_grow (union_seen
? "post_prologue" : "pre_prologue",
1850 plain_code
.code
, (yylsp
[0]));
1851 code_scanner_last_string_free ();
1853 /* Line 1380 of yacc.c */
1854 #line 1855 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1858 /* Line 1380 of yacc.c */
1859 #line 233 "parse-gram.y"
1861 muscle_percent_define_ensure ((yyvsp
[0].uniqstr
), (yylsp
[0]), true);
1863 /* Line 1380 of yacc.c */
1864 #line 1865 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1868 /* Line 1380 of yacc.c */
1869 #line 237 "parse-gram.y"
1871 muscle_percent_define_insert ((yyvsp
[-1].uniqstr
), (yylsp
[-1]), (yyvsp
[0].chars
),
1872 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
);
1874 /* Line 1380 of yacc.c */
1875 #line 1876 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1879 /* Line 1380 of yacc.c */
1880 #line 241 "parse-gram.y"
1881 { defines_flag
= true; }
1882 /* Line 1380 of yacc.c */
1883 #line 1884 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1887 /* Line 1380 of yacc.c */
1888 #line 243 "parse-gram.y"
1890 defines_flag
= true;
1891 spec_defines_file
= xstrdup ((yyvsp
[0].chars
));
1893 /* Line 1380 of yacc.c */
1894 #line 1895 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1898 /* Line 1380 of yacc.c */
1899 #line 248 "parse-gram.y"
1901 muscle_percent_define_insert ("parse.error", (yylsp
[0]), "verbose",
1902 MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
);
1904 /* Line 1380 of yacc.c */
1905 #line 1906 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1909 /* Line 1380 of yacc.c */
1910 #line 252 "parse-gram.y"
1911 { expected_sr_conflicts
= (yyvsp
[0].integer
); }
1912 /* Line 1380 of yacc.c */
1913 #line 1914 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1917 /* Line 1380 of yacc.c */
1918 #line 253 "parse-gram.y"
1919 { expected_rr_conflicts
= (yyvsp
[0].integer
); }
1920 /* Line 1380 of yacc.c */
1921 #line 1922 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1925 /* Line 1380 of yacc.c */
1926 #line 254 "parse-gram.y"
1927 { spec_file_prefix
= (yyvsp
[0].chars
); }
1928 /* Line 1380 of yacc.c */
1929 #line 1930 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1933 /* Line 1380 of yacc.c */
1934 #line 255 "parse-gram.y"
1935 { spec_file_prefix
= (yyvsp
[0].chars
); }
1936 /* Line 1380 of yacc.c */
1937 #line 1938 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1941 /* Line 1380 of yacc.c */
1942 #line 257 "parse-gram.y"
1944 nondeterministic_parser
= true;
1947 /* Line 1380 of yacc.c */
1948 #line 1949 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1952 /* Line 1380 of yacc.c */
1953 #line 262 "parse-gram.y"
1956 code_props_symbol_action_init (&action
, (yyvsp
[0].code
), (yylsp
[0]));
1957 code_props_translate_code (&action
);
1958 gram_scanner_last_string_free ();
1959 muscle_code_grow ("initial_action", action
.code
, (yylsp
[0]));
1960 code_scanner_last_string_free ();
1962 /* Line 1380 of yacc.c */
1963 #line 1964 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1967 /* Line 1380 of yacc.c */
1968 #line 270 "parse-gram.y"
1969 { language_argmatch ((yyvsp
[0].chars
), grammar_prio
, (yylsp
[-1])); }
1970 /* Line 1380 of yacc.c */
1971 #line 1972 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1975 /* Line 1380 of yacc.c */
1976 #line 271 "parse-gram.y"
1977 { add_param ("lex_param", (yyvsp
[0].code
), (yylsp
[0])); }
1978 /* Line 1380 of yacc.c */
1979 #line 1980 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1983 /* Line 1380 of yacc.c */
1984 #line 272 "parse-gram.y"
1985 { spec_name_prefix
= (yyvsp
[0].chars
); }
1986 /* Line 1380 of yacc.c */
1987 #line 1988 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1991 /* Line 1380 of yacc.c */
1992 #line 273 "parse-gram.y"
1993 { spec_name_prefix
= (yyvsp
[0].chars
); }
1994 /* Line 1380 of yacc.c */
1995 #line 1996 "/Users/akim/src/kernel/bison/src/parse-gram.c"
1999 /* Line 1380 of yacc.c */
2000 #line 274 "parse-gram.y"
2001 { no_lines_flag
= true; }
2002 /* Line 1380 of yacc.c */
2003 #line 2004 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2007 /* Line 1380 of yacc.c */
2008 #line 275 "parse-gram.y"
2009 { nondeterministic_parser
= true; }
2010 /* Line 1380 of yacc.c */
2011 #line 2012 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2015 /* Line 1380 of yacc.c */
2016 #line 276 "parse-gram.y"
2017 { spec_outfile
= (yyvsp
[0].chars
); }
2018 /* Line 1380 of yacc.c */
2019 #line 2020 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2023 /* Line 1380 of yacc.c */
2024 #line 277 "parse-gram.y"
2025 { spec_outfile
= (yyvsp
[0].chars
); }
2026 /* Line 1380 of yacc.c */
2027 #line 2028 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2031 /* Line 1380 of yacc.c */
2032 #line 278 "parse-gram.y"
2033 { add_param ("parse_param", (yyvsp
[0].code
), (yylsp
[0])); }
2034 /* Line 1380 of yacc.c */
2035 #line 2036 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2039 /* Line 1380 of yacc.c */
2040 #line 279 "parse-gram.y"
2041 { version_check (&(yylsp
[0]), (yyvsp
[0].chars
)); }
2042 /* Line 1380 of yacc.c */
2043 #line 2044 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2047 /* Line 1380 of yacc.c */
2048 #line 281 "parse-gram.y"
2050 char const *skeleton_user
= (yyvsp
[0].chars
);
2051 if (strchr (skeleton_user
, '/'))
2053 size_t dir_length
= strlen (current_file
);
2054 char *skeleton_build
;
2055 while (dir_length
&& current_file
[dir_length
- 1] != '/')
2057 while (dir_length
&& current_file
[dir_length
- 1] == '/')
2060 xmalloc (dir_length
+ 1 + strlen (skeleton_user
) + 1);
2063 strncpy (skeleton_build
, current_file
, dir_length
);
2064 skeleton_build
[dir_length
++] = '/';
2066 strcpy (skeleton_build
+ dir_length
, skeleton_user
);
2067 skeleton_user
= uniqstr_new (skeleton_build
);
2068 free (skeleton_build
);
2070 skeleton_arg (skeleton_user
, grammar_prio
, (yylsp
[-1]));
2072 /* Line 1380 of yacc.c */
2073 #line 2074 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2077 /* Line 1380 of yacc.c */
2078 #line 304 "parse-gram.y"
2079 { token_table_flag
= true; }
2080 /* Line 1380 of yacc.c */
2081 #line 2082 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2085 /* Line 1380 of yacc.c */
2086 #line 305 "parse-gram.y"
2087 { report_flag
|= report_states
; }
2088 /* Line 1380 of yacc.c */
2089 #line 2090 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2093 /* Line 1380 of yacc.c */
2094 #line 306 "parse-gram.y"
2095 { yacc_flag
= true; }
2096 /* Line 1380 of yacc.c */
2097 #line 2098 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2101 /* Line 1380 of yacc.c */
2102 #line 314 "parse-gram.y"
2104 grammar_start_symbol_set ((yyvsp
[0].symbol
), (yylsp
[0]));
2106 /* Line 1380 of yacc.c */
2107 #line 2108 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2111 /* Line 1380 of yacc.c */
2112 #line 318 "parse-gram.y"
2115 for (list
= (yyvsp
[0].list
); list
; list
= list
->next
)
2116 symbol_list_destructor_set (list
, (yyvsp
[-1].code
), (yylsp
[-1]));
2117 symbol_list_free ((yyvsp
[0].list
));
2119 /* Line 1380 of yacc.c */
2120 #line 2121 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2124 /* Line 1380 of yacc.c */
2125 #line 325 "parse-gram.y"
2128 for (list
= (yyvsp
[0].list
); list
; list
= list
->next
)
2129 symbol_list_printer_set (list
, (yyvsp
[-1].code
), (yylsp
[-1]));
2130 symbol_list_free ((yyvsp
[0].list
));
2132 /* Line 1380 of yacc.c */
2133 #line 2134 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2137 /* Line 1380 of yacc.c */
2138 #line 332 "parse-gram.y"
2140 default_prec
= true;
2142 /* Line 1380 of yacc.c */
2143 #line 2144 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2147 /* Line 1380 of yacc.c */
2148 #line 336 "parse-gram.y"
2150 default_prec
= false;
2152 /* Line 1380 of yacc.c */
2153 #line 2154 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2157 /* Line 1380 of yacc.c */
2158 #line 340 "parse-gram.y"
2160 /* Do not invoke muscle_percent_code_grow here since it invokes
2161 muscle_user_name_list_grow. */
2162 muscle_code_grow ("percent_code()", (yyvsp
[0].chars
), (yylsp
[0]));
2163 code_scanner_last_string_free ();
2165 /* Line 1380 of yacc.c */
2166 #line 2167 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2170 /* Line 1380 of yacc.c */
2171 #line 347 "parse-gram.y"
2173 muscle_percent_code_grow ((yyvsp
[-1].uniqstr
), (yylsp
[-1]), (yyvsp
[0].chars
), (yylsp
[0]));
2174 code_scanner_last_string_free ();
2176 /* Line 1380 of yacc.c */
2177 #line 2178 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2181 /* Line 1380 of yacc.c */
2182 #line 361 "parse-gram.y"
2184 /* Line 1380 of yacc.c */
2185 #line 2186 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2189 /* Line 1380 of yacc.c */
2190 #line 362 "parse-gram.y"
2191 { muscle_code_grow ("union_name", (yyvsp
[0].uniqstr
), (yylsp
[0])); }
2192 /* Line 1380 of yacc.c */
2193 #line 2194 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2197 /* Line 1380 of yacc.c */
2198 #line 367 "parse-gram.y"
2201 muscle_code_grow ("stype", (yyvsp
[0].chars
), (yylsp
[0]));
2202 code_scanner_last_string_free ();
2204 /* Line 1380 of yacc.c */
2205 #line 2206 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2209 /* Line 1380 of yacc.c */
2210 #line 378 "parse-gram.y"
2211 { current_class
= nterm_sym
; }
2212 /* Line 1380 of yacc.c */
2213 #line 2214 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2217 /* Line 1380 of yacc.c */
2218 #line 379 "parse-gram.y"
2220 current_class
= unknown_sym
;
2221 current_type
= NULL
;
2223 /* Line 1380 of yacc.c */
2224 #line 2225 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2228 /* Line 1380 of yacc.c */
2229 #line 383 "parse-gram.y"
2230 { current_class
= token_sym
; }
2231 /* Line 1380 of yacc.c */
2232 #line 2233 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2236 /* Line 1380 of yacc.c */
2237 #line 384 "parse-gram.y"
2239 current_class
= unknown_sym
;
2240 current_type
= NULL
;
2242 /* Line 1380 of yacc.c */
2243 #line 2244 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2247 /* Line 1380 of yacc.c */
2248 #line 389 "parse-gram.y"
2252 for (list
= (yyvsp
[0].list
); list
; list
= list
->next
)
2253 symbol_type_set (list
->content
.sym
, (yyvsp
[-1].uniqstr
), (yylsp
[-1]));
2254 symbol_list_free ((yyvsp
[0].list
));
2256 /* Line 1380 of yacc.c */
2257 #line 2258 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2261 /* Line 1380 of yacc.c */
2262 #line 400 "parse-gram.y"
2266 for (list
= (yyvsp
[0].list
); list
; list
= list
->next
)
2268 symbol_type_set (list
->content
.sym
, current_type
, (yylsp
[-1]));
2269 symbol_precedence_set (list
->content
.sym
, current_prec
, (yyvsp
[-2].assoc
), (yylsp
[-2]));
2271 symbol_list_free ((yyvsp
[0].list
));
2272 current_type
= NULL
;
2274 /* Line 1380 of yacc.c */
2275 #line 2276 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2279 /* Line 1380 of yacc.c */
2280 #line 414 "parse-gram.y"
2281 { (yyval
.assoc
) = left_assoc
; }
2282 /* Line 1380 of yacc.c */
2283 #line 2284 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2287 /* Line 1380 of yacc.c */
2288 #line 415 "parse-gram.y"
2289 { (yyval
.assoc
) = right_assoc
; }
2290 /* Line 1380 of yacc.c */
2291 #line 2292 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2295 /* Line 1380 of yacc.c */
2296 #line 416 "parse-gram.y"
2297 { (yyval
.assoc
) = non_assoc
; }
2298 /* Line 1380 of yacc.c */
2299 #line 2300 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2303 /* Line 1380 of yacc.c */
2304 #line 417 "parse-gram.y"
2305 { (yyval
.assoc
) = precedence_assoc
; }
2306 /* Line 1380 of yacc.c */
2307 #line 2308 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2311 /* Line 1380 of yacc.c */
2312 #line 421 "parse-gram.y"
2313 { current_type
= NULL
; }
2314 /* Line 1380 of yacc.c */
2315 #line 2316 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2319 /* Line 1380 of yacc.c */
2320 #line 422 "parse-gram.y"
2321 { current_type
= (yyvsp
[0].uniqstr
); tag_seen
= true; }
2322 /* Line 1380 of yacc.c */
2323 #line 2324 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2327 /* Line 1380 of yacc.c */
2328 #line 428 "parse-gram.y"
2329 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[0].symbol
), (yylsp
[0])); }
2330 /* Line 1380 of yacc.c */
2331 #line 2332 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2335 /* Line 1380 of yacc.c */
2336 #line 430 "parse-gram.y"
2337 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[-1].list
), symbol_list_sym_new ((yyvsp
[0].symbol
), (yylsp
[0]))); }
2338 /* Line 1380 of yacc.c */
2339 #line 2340 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2343 /* Line 1380 of yacc.c */
2344 #line 434 "parse-gram.y"
2345 { (yyval
.symbol
) = (yyvsp
[0].symbol
); }
2346 /* Line 1380 of yacc.c */
2347 #line 2348 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2351 /* Line 1380 of yacc.c */
2352 #line 435 "parse-gram.y"
2353 { (yyval
.symbol
) = (yyvsp
[-1].symbol
); symbol_user_token_number_set ((yyvsp
[-1].symbol
), (yyvsp
[0].integer
), (yylsp
[0])); }
2354 /* Line 1380 of yacc.c */
2355 #line 2356 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2359 /* Line 1380 of yacc.c */
2360 #line 441 "parse-gram.y"
2361 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[0].symbol
), (yylsp
[0])); }
2362 /* Line 1380 of yacc.c */
2363 #line 2364 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2367 /* Line 1380 of yacc.c */
2368 #line 443 "parse-gram.y"
2369 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[-1].list
), symbol_list_sym_new ((yyvsp
[0].symbol
), (yylsp
[0]))); }
2370 /* Line 1380 of yacc.c */
2371 #line 2372 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2375 /* Line 1380 of yacc.c */
2376 #line 447 "parse-gram.y"
2377 { (yyval
.list
) = (yyvsp
[0].list
); }
2378 /* Line 1380 of yacc.c */
2379 #line 2380 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2383 /* Line 1380 of yacc.c */
2384 #line 448 "parse-gram.y"
2385 { (yyval
.list
) = symbol_list_prepend ((yyvsp
[-1].list
), (yyvsp
[0].list
)); }
2386 /* Line 1380 of yacc.c */
2387 #line 2388 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2391 /* Line 1380 of yacc.c */
2392 #line 452 "parse-gram.y"
2393 { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[0].symbol
), (yylsp
[0])); }
2394 /* Line 1380 of yacc.c */
2395 #line 2396 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2399 /* Line 1380 of yacc.c */
2400 #line 453 "parse-gram.y"
2401 { (yyval
.list
) = symbol_list_type_new ((yyvsp
[0].uniqstr
), (yylsp
[0])); }
2402 /* Line 1380 of yacc.c */
2403 #line 2404 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2407 /* Line 1380 of yacc.c */
2408 #line 454 "parse-gram.y"
2409 { (yyval
.list
) = symbol_list_default_tagged_new ((yylsp
[0])); }
2410 /* Line 1380 of yacc.c */
2411 #line 2412 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2415 /* Line 1380 of yacc.c */
2416 #line 455 "parse-gram.y"
2417 { (yyval
.list
) = symbol_list_default_tagless_new ((yylsp
[0])); }
2418 /* Line 1380 of yacc.c */
2419 #line 2420 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2423 /* Line 1380 of yacc.c */
2424 #line 461 "parse-gram.y"
2426 current_type
= (yyvsp
[0].uniqstr
);
2429 /* Line 1380 of yacc.c */
2430 #line 2431 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2434 /* Line 1380 of yacc.c */
2435 #line 466 "parse-gram.y"
2437 symbol_class_set ((yyvsp
[0].symbol
), current_class
, (yylsp
[0]), true);
2438 symbol_type_set ((yyvsp
[0].symbol
), current_type
, (yylsp
[0]));
2440 /* Line 1380 of yacc.c */
2441 #line 2442 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2445 /* Line 1380 of yacc.c */
2446 #line 471 "parse-gram.y"
2448 symbol_class_set ((yyvsp
[-1].symbol
), current_class
, (yylsp
[-1]), true);
2449 symbol_type_set ((yyvsp
[-1].symbol
), current_type
, (yylsp
[-1]));
2450 symbol_user_token_number_set ((yyvsp
[-1].symbol
), (yyvsp
[0].integer
), (yylsp
[0]));
2452 /* Line 1380 of yacc.c */
2453 #line 2454 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2457 /* Line 1380 of yacc.c */
2458 #line 477 "parse-gram.y"
2460 symbol_class_set ((yyvsp
[-1].symbol
), current_class
, (yylsp
[-1]), true);
2461 symbol_type_set ((yyvsp
[-1].symbol
), current_type
, (yylsp
[-1]));
2462 symbol_make_alias ((yyvsp
[-1].symbol
), (yyvsp
[0].symbol
), (yyloc
));
2464 /* Line 1380 of yacc.c */
2465 #line 2466 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2469 /* Line 1380 of yacc.c */
2470 #line 483 "parse-gram.y"
2472 symbol_class_set ((yyvsp
[-2].symbol
), current_class
, (yylsp
[-2]), true);
2473 symbol_type_set ((yyvsp
[-2].symbol
), current_type
, (yylsp
[-2]));
2474 symbol_user_token_number_set ((yyvsp
[-2].symbol
), (yyvsp
[-1].integer
), (yylsp
[-1]));
2475 symbol_make_alias ((yyvsp
[-2].symbol
), (yyvsp
[0].symbol
), (yyloc
));
2477 /* Line 1380 of yacc.c */
2478 #line 2479 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2482 /* Line 1380 of yacc.c */
2483 #line 513 "parse-gram.y"
2487 /* Line 1380 of yacc.c */
2488 #line 2489 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2492 /* Line 1380 of yacc.c */
2493 #line 519 "parse-gram.y"
2494 { current_lhs
= (yyvsp
[-1].symbol
); current_lhs_location
= (yylsp
[-1]);
2495 current_lhs_named_ref
= (yyvsp
[0].named_ref
); }
2496 /* Line 1380 of yacc.c */
2497 #line 2498 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2501 /* Line 1380 of yacc.c */
2502 #line 524 "parse-gram.y"
2503 { grammar_current_rule_end ((yylsp
[0])); }
2504 /* Line 1380 of yacc.c */
2505 #line 2506 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2509 /* Line 1380 of yacc.c */
2510 #line 525 "parse-gram.y"
2511 { grammar_current_rule_end ((yylsp
[0])); }
2512 /* Line 1380 of yacc.c */
2513 #line 2514 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2517 /* Line 1380 of yacc.c */
2518 #line 531 "parse-gram.y"
2519 { grammar_current_rule_begin (current_lhs
, current_lhs_location
,
2520 current_lhs_named_ref
); }
2521 /* Line 1380 of yacc.c */
2522 #line 2523 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2526 /* Line 1380 of yacc.c */
2527 #line 534 "parse-gram.y"
2528 { grammar_current_rule_symbol_append ((yyvsp
[-1].symbol
), (yylsp
[-1]), (yyvsp
[0].named_ref
)); }
2529 /* Line 1380 of yacc.c */
2530 #line 2531 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2534 /* Line 1380 of yacc.c */
2535 #line 536 "parse-gram.y"
2536 { grammar_current_rule_action_append ((yyvsp
[-1].code
), (yylsp
[-1]), (yyvsp
[0].named_ref
)); }
2537 /* Line 1380 of yacc.c */
2538 #line 2539 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2542 /* Line 1380 of yacc.c */
2543 #line 538 "parse-gram.y"
2544 { grammar_current_rule_prec_set ((yyvsp
[0].symbol
), (yylsp
[0])); }
2545 /* Line 1380 of yacc.c */
2546 #line 2547 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2550 /* Line 1380 of yacc.c */
2551 #line 540 "parse-gram.y"
2552 { grammar_current_rule_dprec_set ((yyvsp
[0].integer
), (yylsp
[0])); }
2553 /* Line 1380 of yacc.c */
2554 #line 2555 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2558 /* Line 1380 of yacc.c */
2559 #line 542 "parse-gram.y"
2560 { grammar_current_rule_merge_set ((yyvsp
[0].uniqstr
), (yylsp
[0])); }
2561 /* Line 1380 of yacc.c */
2562 #line 2563 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2566 /* Line 1380 of yacc.c */
2567 #line 547 "parse-gram.y"
2568 { (yyval
.named_ref
) = 0; }
2569 /* Line 1380 of yacc.c */
2570 #line 2571 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2574 /* Line 1380 of yacc.c */
2575 #line 550 "parse-gram.y"
2576 { (yyval
.named_ref
) = named_ref_new((yyvsp
[0].uniqstr
), (yylsp
[0])); }
2577 /* Line 1380 of yacc.c */
2578 #line 2579 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2582 /* Line 1380 of yacc.c */
2583 #line 562 "parse-gram.y"
2584 { (yyval
.uniqstr
) = uniqstr_new ((yyvsp
[0].chars
)); }
2585 /* Line 1380 of yacc.c */
2586 #line 2587 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2590 /* Line 1380 of yacc.c */
2591 #line 567 "parse-gram.y"
2592 { (yyval
.chars
) = ""; }
2593 /* Line 1380 of yacc.c */
2594 #line 2595 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2598 /* Line 1380 of yacc.c */
2599 #line 578 "parse-gram.y"
2601 code_props plain_code
;
2602 (yyvsp
[0].code
)[strlen ((yyvsp
[0].code
)) - 1] = '\n';
2603 code_props_plain_init (&plain_code
, (yyvsp
[0].code
)+1, (yylsp
[0]));
2604 code_props_translate_code (&plain_code
);
2605 gram_scanner_last_string_free ();
2606 (yyval
.chars
) = plain_code
.code
;
2608 /* Line 1380 of yacc.c */
2609 #line 2610 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2613 /* Line 1380 of yacc.c */
2614 #line 598 "parse-gram.y"
2615 { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[0].uniqstr
), (yylsp
[0])); }
2616 /* Line 1380 of yacc.c */
2617 #line 2618 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2621 /* Line 1380 of yacc.c */
2622 #line 600 "parse-gram.y"
2624 (yyval
.symbol
) = symbol_get (char_name ((yyvsp
[0].character
)), (yylsp
[0]));
2625 symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[0]), false);
2626 symbol_user_token_number_set ((yyval
.symbol
), (yyvsp
[0].character
), (yylsp
[0]));
2628 /* Line 1380 of yacc.c */
2629 #line 2630 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2633 /* Line 1380 of yacc.c */
2634 #line 608 "parse-gram.y"
2635 { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[0].uniqstr
), (yylsp
[0])); }
2636 /* Line 1380 of yacc.c */
2637 #line 2638 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2641 /* Line 1380 of yacc.c */
2642 #line 620 "parse-gram.y"
2644 (yyval
.symbol
) = symbol_get (quotearg_style (c_quoting_style
, (yyvsp
[0].chars
)), (yylsp
[0]));
2645 symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[0]), false);
2647 /* Line 1380 of yacc.c */
2648 #line 2649 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2652 /* Line 1380 of yacc.c */
2653 #line 629 "parse-gram.y"
2655 code_props plain_code
;
2656 code_props_plain_init (&plain_code
, (yyvsp
[0].chars
), (yylsp
[0]));
2657 code_props_translate_code (&plain_code
);
2658 gram_scanner_last_string_free ();
2659 muscle_code_grow ("epilogue", plain_code
.code
, (yylsp
[0]));
2660 code_scanner_last_string_free ();
2662 /* Line 1380 of yacc.c */
2663 #line 2664 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2667 /* Line 1380 of yacc.c */
2668 #line 2669 "/Users/akim/src/kernel/bison/src/parse-gram.c"
2671 YY_SYMBOL_PRINT ("-> $$ =", yyr1
[yyn
], &yyval
, &yyloc
);
2675 YY_STACK_PRINT (yyss
, yyssp
);
2680 /* Now `shift' the result of the reduction. Determine what state
2681 that goes to, based on the state we popped back to and the rule
2682 number reduced by. */
2686 yystate
= yypgoto
[yyn
- YYNTOKENS
] + *yyssp
;
2687 if (0 <= yystate
&& yystate
<= YYLAST
&& yycheck
[yystate
] == *yyssp
)
2688 yystate
= yytable
[yystate
];
2690 yystate
= yydefgoto
[yyn
- YYNTOKENS
];
2695 /*------------------------------------.
2696 | yyerrlab -- here on detecting error |
2697 `------------------------------------*/
2699 /* If not already recovering from an error, report this error. */
2703 #if ! YYERROR_VERBOSE
2704 yyerror (YY_("syntax error"));
2707 YYSIZE_T yysize
= yysyntax_error (0, yystate
, yytoken
);
2708 if (yymsg_alloc
< yysize
&& yymsg_alloc
< YYSTACK_ALLOC_MAXIMUM
)
2710 YYSIZE_T yyalloc
= 2 * yysize
;
2711 if (! (yysize
<= yyalloc
&& yyalloc
<= YYSTACK_ALLOC_MAXIMUM
))
2712 yyalloc
= YYSTACK_ALLOC_MAXIMUM
;
2713 if (yymsg
!= yymsgbuf
)
2714 YYSTACK_FREE (yymsg
);
2715 yymsg
= (char *) YYSTACK_ALLOC (yyalloc
);
2717 yymsg_alloc
= yyalloc
;
2721 yymsg_alloc
= sizeof yymsgbuf
;
2725 if (0 < yysize
&& yysize
<= yymsg_alloc
)
2727 (void) yysyntax_error (yymsg
, yystate
, yytoken
);
2732 yyerror (YY_("syntax error"));
2734 goto yyexhaustedlab
;
2740 yyerror_range
[0] = yylloc
;
2742 if (yyerrstatus
== 3)
2744 /* If just tried and failed to reuse lookahead token after an
2745 error, discard it. */
2747 if (yychar
<= YYEOF
)
2749 /* Return failure if at end of input. */
2750 if (yychar
== YYEOF
)
2755 yydestruct ("Error: discarding",
2756 yytoken
, &yylval
, &yylloc
);
2761 /* Else will try to reuse lookahead token after shifting the error
2766 /*---------------------------------------------------.
2767 | yyerrorlab -- error raised explicitly by YYERROR. |
2768 `---------------------------------------------------*/
2771 /* Pacify compilers like GCC when the user code never invokes
2772 YYERROR and the label yyerrorlab therefore never appears in user
2774 if (/*CONSTCOND*/ 0)
2777 yyerror_range
[0] = yylsp
[1-yylen
];
2778 /* Do not reclaim the symbols of the rule which action triggered
2782 YY_STACK_PRINT (yyss
, yyssp
);
2787 /*-------------------------------------------------------------.
2788 | yyerrlab1 -- common code for both syntax error and YYERROR. |
2789 `-------------------------------------------------------------*/
2791 yyerrstatus
= 3; /* Each real token shifted decrements this. */
2795 yyn
= yypact
[yystate
];
2796 if (yyn
!= YYPACT_NINF
)
2799 if (0 <= yyn
&& yyn
<= YYLAST
&& yycheck
[yyn
] == YYTERROR
)
2807 /* Pop the current state because it cannot handle the error token. */
2811 yyerror_range
[0] = *yylsp
;
2812 yydestruct ("Error: popping",
2813 yystos
[yystate
], yyvsp
, yylsp
);
2816 YY_STACK_PRINT (yyss
, yyssp
);
2821 yyerror_range
[1] = yylloc
;
2822 /* Using YYLLOC is tempting, but would change the location of
2823 the lookahead. YYLOC is available though. */
2824 YYLLOC_DEFAULT (yyloc
, (yyerror_range
- 1), 2);
2827 /* Shift the error token. */
2828 YY_SYMBOL_PRINT ("Shifting", yystos
[yyn
], yyvsp
, yylsp
);
2834 /*-------------------------------------.
2835 | yyacceptlab -- YYACCEPT comes here. |
2836 `-------------------------------------*/
2841 /*-----------------------------------.
2842 | yyabortlab -- YYABORT comes here. |
2843 `-----------------------------------*/
2848 #if !defined(yyoverflow) || YYERROR_VERBOSE
2849 /*-------------------------------------------------.
2850 | yyexhaustedlab -- memory exhaustion comes here. |
2851 `-------------------------------------------------*/
2853 yyerror (YY_("memory exhausted"));
2859 if (yychar
!= YYEMPTY
)
2860 yydestruct ("Cleanup: discarding lookahead",
2861 yytoken
, &yylval
, &yylloc
);
2862 /* Do not reclaim the symbols of the rule which action triggered
2863 this YYABORT or YYACCEPT. */
2865 YY_STACK_PRINT (yyss
, yyssp
);
2866 while (yyssp
!= yyss
)
2868 yydestruct ("Cleanup: popping",
2869 yystos
[*yyssp
], yyvsp
, yylsp
);
2874 YYSTACK_FREE (yyss
);
2877 if (yymsg
!= yymsgbuf
)
2878 YYSTACK_FREE (yymsg
);
2880 /* Make sure YYID is used. */
2881 return YYID (yyresult
);
2884 /* Line 1599 of yacc.c */
2885 #line 639 "parse-gram.y"
2889 /* Return the location of the left-hand side of a rule whose
2890 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
2891 the right-hand side, and return an empty location equal to the end
2892 boundary of RHS[0] if the right-hand side is empty. */
2895 lloc_default (YYLTYPE
const *rhs
, int n
)
2900 /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;".
2901 The bug is fixed in 7.4.2m, but play it safe for now. */
2902 loc
.start
= rhs
[n
].end
;
2903 loc
.end
= rhs
[n
].end
;
2905 /* Ignore empty nonterminals the start of the the right-hand side.
2906 Do not bother to ignore them at the end of the right-hand side,
2907 since empty nonterminals have the same end as their predecessors. */
2908 for (i
= 1; i
<= n
; i
++)
2909 if (! equal_boundaries (rhs
[i
].start
, rhs
[i
].end
))
2911 loc
.start
= rhs
[i
].start
;
2919 /* Add a lex-param or a parse-param (depending on TYPE) with
2920 declaration DECL and location LOC. */
2923 add_param (char const *type
, char *decl
, location loc
)
2925 static char const alphanum
[26 + 26 + 1 + 10] =
2926 "abcdefghijklmnopqrstuvwxyz"
2927 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
2930 char const *name_start
= NULL
;
2933 /* Stop on last actual character. */
2934 for (p
= decl
; p
[1]; p
++)
2936 || ! memchr (alphanum
, p
[-1], sizeof alphanum
))
2937 && memchr (alphanum
, p
[0], sizeof alphanum
- 10))
2940 /* Strip the surrounding '{' and '}', and any blanks just inside
2942 while (*--p
== ' ' || *p
== '\t')
2945 while (*++decl
== ' ' || *decl
== '\t')
2949 complain_at (loc
, _("missing identifier in parameter declaration"));
2956 memchr (alphanum
, name_start
[name_len
], sizeof alphanum
);
2960 name
= xmalloc (name_len
+ 1);
2961 memcpy (name
, name_start
, name_len
);
2962 name
[name_len
] = '\0';
2963 muscle_pair_list_grow (type
, decl
, name
);
2967 gram_scanner_last_string_free ();
2972 version_check (location
const *loc
, char const *version
)
2974 if (strverscmp (version
, PACKAGE_VERSION
) > 0)
2976 complain_at (*loc
, "require bison %s, but have %s",
2977 version
, PACKAGE_VERSION
);
2983 gram_error (location
const *loc
, char const *msg
)
2985 complain_at (*loc
, "%s", msg
);
2989 token_name (int type
)
2991 return yytname
[YYTRANSLATE (type
)];
3002 buf
[0] = '\''; buf
[1] = c
; buf
[2] = '\''; buf
[3] = '\0';
3003 return quotearg_style (escape_quoting_style
, buf
);