1 /* A Bison parser, made by GNU Bison 2.4.1.302-e8fa.  */ 
   3 /* Bison implementation for Yacc-like parsers in C 
   5       Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. 
   7    This program is free software: you can redistribute it and/or modify 
   8    it under the terms of the GNU General Public License as published by 
   9    the Free Software Foundation, either version 3 of the License, or 
  10    (at your option) any later version. 
  12    This program is distributed in the hope that it will be useful, 
  13    but WITHOUT ANY WARRANTY; without even the implied warranty of 
  14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
  15    GNU General Public License for more details. 
  17    You should have received a copy of the GNU General Public License 
  18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */ 
  20 /* As a special exception, you may create a larger work that contains 
  21    part or all of the Bison parser skeleton and distribute that work 
  22    under terms of your choice, so long as that work isn't itself a 
  23    parser generator using the skeleton or a modified version thereof 
  24    as a parser skeleton.  Alternatively, if you modify or redistribute 
  25    the parser skeleton itself, you may (at your option) remove this 
  26    special exception, which will cause the skeleton and the resulting 
  27    Bison output files to be licensed under the GNU General Public 
  28    License without this special exception. 
  30    This special exception was added by the Free Software Foundation in 
  31    version 2.2 of Bison.  */ 
  33 /* C LALR(1) parser skeleton written by Richard Stallman, by 
  34    simplifying the original so-called "semantic" parser.  */ 
  36 /* All symbols defined below should begin with yy or YY, to avoid 
  37    infringing on user name space.  This should be done even for local 
  38    variables, as they might otherwise be expanded by user macros. 
  39    There are some unavoidable exceptions within include files to 
  40    define necessary library symbols; they are noted "INFRINGES ON 
  41    USER NAME SPACE" below.  */ 
  43 /* Identify Bison output.  */ 
  47 #define YYBISON_VERSION "2.4.1.302-e8fa" 
  50 #define YYSKELETON_NAME "yacc.c" 
  61 /* Using locations.  */ 
  62 #define YYLSP_NEEDED 1 
  64 /* Substitute the variable and function names.  */ 
  65 #define yyparse         gram_parse 
  66 #define yylex           gram_lex 
  67 #define yyerror         gram_error 
  68 #define yylval          gram_lval 
  69 #define yychar          gram_char 
  70 #define yydebug         gram_debug 
  71 #define yynerrs         gram_nerrs 
  72 #define yylloc          gram_lloc 
  74 /* Copy the first part of user declarations.  */ 
  76 /* Line 268 of yacc.c  */ 
  77 #line 1 "parse-gram.y" 
  78 /* Bison Grammar Parser                             -*- C -*- 
  80    Copyright (C) 2002-2012 Free Software Foundation, Inc. 
  82    This file is part of Bison, the GNU Compiler Compiler. 
  84    This program is free software: you can redistribute it and/or modify 
  85    it under the terms of the GNU General Public License as published by 
  86    the Free Software Foundation, either version 3 of the License, or 
  87    (at your option) any later version. 
  89    This program is distributed in the hope that it will be useful, 
  90    but WITHOUT ANY WARRANTY; without even the implied warranty of 
  91    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
  92    GNU General Public License for more details. 
  94    You should have received a copy of the GNU General Public License 
  95    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */ 
 100 #include "complain.h" 
 101 #include "conflicts.h" 
 105 #include "muscle-tab.h" 
 106 #include "named-ref.h" 
 107 #include "quotearg.h" 
 110 #include "scan-gram.h" 
 111 #include "scan-code.h" 
 113 #define YYLLOC_DEFAULT(Current, Rhs, N)  (Current) = lloc_default (Rhs, N) 
 114 static YYLTYPE 
lloc_default (YYLTYPE 
const *, int); 
 116 #define YY_LOCATION_PRINT(File, Loc) \ 
 117           location_print (File, Loc) 
 119 static void version_check (location 
const *loc
, char const *version
); 
 121 /* Request detailed syntax error messages, and pass them to GRAM_ERROR. 
 122    FIXME: depends on the undocumented availability of YYLLOC.  */ 
 124 #define yyerror(Msg) \ 
 125         gram_error (&yylloc, Msg) 
 126 static void gram_error (location 
const *, char const *); 
 128 static char const *char_name (char); 
 130 /** Add a lex-param or a parse-param. 
 132  * \param type  \a lex_param or \a parse_param 
 133  * \param decl  the formal argument 
 134  * \param loc   the location in the source. 
 136 static void add_param (char const *type
, char *decl
, location loc
); 
 139 static symbol_class current_class 
= unknown_sym
; 
 140 static uniqstr current_type 
= NULL
; 
 141 static symbol 
*current_lhs_symbol
; 
 142 static location current_lhs_location
; 
 143 static named_ref 
*current_lhs_named_ref
; 
 144 static int current_prec 
= 0; 
 146 /** Set the new current left-hand side symbol, possibly common 
 147  * to several right-hand side parts of rule. 
 151 current_lhs(symbol 
*sym
, location loc
, named_ref 
*ref
) 
 153   current_lhs_symbol 
= sym
; 
 154   current_lhs_location 
= loc
; 
 155   /* In order to simplify memory management, named references for lhs 
 156      are always assigned by deep copy into the current symbol_list 
 157      node.  This is because a single named-ref in the grammar may 
 158      result in several uses when the user factors lhs between several 
 159      rules using "|".  Therefore free the parser's original copy.  */ 
 160   free (current_lhs_named_ref
); 
 161   current_lhs_named_ref 
= ref
; 
 165 #define YYTYPE_INT16 int_fast16_t 
 166 #define YYTYPE_INT8 int_fast8_t 
 167 #define YYTYPE_UINT16 uint_fast16_t 
 168 #define YYTYPE_UINT8 uint_fast8_t 
 171 /* Line 268 of yacc.c  */ 
 172 #line 173 "parse-gram.c" 
 174 /* Enabling traces.  */ 
 179 /* Enabling verbose error messages.  */ 
 180 #ifdef YYERROR_VERBOSE 
 181 # undef YYERROR_VERBOSE 
 182 # define YYERROR_VERBOSE 1 
 184 # define YYERROR_VERBOSE 1 
 187 /* Enabling the token table.  */ 
 188 #ifndef YYTOKEN_TABLE 
 189 # define YYTOKEN_TABLE 0 
 196    /* Put the tokens into the symbol table, so that GDB and other debuggers 
 205      PERCENT_DESTRUCTOR 
= 263, 
 206      PERCENT_PRINTER 
= 264, 
 209      PERCENT_NONASSOC 
= 267, 
 215      PERCENT_DEFAULT_PREC 
= 273, 
 216      PERCENT_DEFINE 
= 274, 
 217      PERCENT_DEFINES 
= 275, 
 218      PERCENT_ERROR_VERBOSE 
= 276, 
 219      PERCENT_EXPECT 
= 277, 
 220      PERCENT_EXPECT_RR 
= 278, 
 221      PERCENT_FILE_PREFIX 
= 279, 
 222      PERCENT_GLR_PARSER 
= 280, 
 223      PERCENT_INITIAL_ACTION 
= 281, 
 224      PERCENT_LANGUAGE 
= 282, 
 225      PERCENT_LEX_PARAM 
= 283, 
 226      PERCENT_LOCATIONS 
= 284, 
 227      PERCENT_NAME_PREFIX 
= 285, 
 228      PERCENT_NO_DEFAULT_PREC 
= 286, 
 229      PERCENT_NO_LINES 
= 287, 
 230      PERCENT_NONDETERMINISTIC_PARSER 
= 288, 
 231      PERCENT_OUTPUT 
= 289, 
 232      PERCENT_PARSE_PARAM 
= 290, 
 233      PERCENT_PURE_PARSER 
= 291, 
 234      PERCENT_REQUIRE 
= 292, 
 235      PERCENT_SKELETON 
= 293, 
 237      PERCENT_TOKEN_TABLE 
= 295, 
 238      PERCENT_VERBOSE 
= 296, 
 247      PERCENT_PERCENT 
= 305, 
 261 #define PERCENT_TOKEN 260 
 262 #define PERCENT_NTERM 261 
 263 #define PERCENT_TYPE 262 
 264 #define PERCENT_DESTRUCTOR 263 
 265 #define PERCENT_PRINTER 264 
 266 #define PERCENT_LEFT 265 
 267 #define PERCENT_RIGHT 266 
 268 #define PERCENT_NONASSOC 267 
 269 #define PERCENT_PREC 268 
 270 #define PERCENT_DPREC 269 
 271 #define PERCENT_MERGE 270 
 272 #define PERCENT_CODE 271 
 273 #define PERCENT_DEBUG 272 
 274 #define PERCENT_DEFAULT_PREC 273 
 275 #define PERCENT_DEFINE 274 
 276 #define PERCENT_DEFINES 275 
 277 #define PERCENT_ERROR_VERBOSE 276 
 278 #define PERCENT_EXPECT 277 
 279 #define PERCENT_EXPECT_RR 278 
 280 #define PERCENT_FILE_PREFIX 279 
 281 #define PERCENT_GLR_PARSER 280 
 282 #define PERCENT_INITIAL_ACTION 281 
 283 #define PERCENT_LANGUAGE 282 
 284 #define PERCENT_LEX_PARAM 283 
 285 #define PERCENT_LOCATIONS 284 
 286 #define PERCENT_NAME_PREFIX 285 
 287 #define PERCENT_NO_DEFAULT_PREC 286 
 288 #define PERCENT_NO_LINES 287 
 289 #define PERCENT_NONDETERMINISTIC_PARSER 288 
 290 #define PERCENT_OUTPUT 289 
 291 #define PERCENT_PARSE_PARAM 290 
 292 #define PERCENT_PURE_PARSER 291 
 293 #define PERCENT_REQUIRE 292 
 294 #define PERCENT_SKELETON 293 
 295 #define PERCENT_START 294 
 296 #define PERCENT_TOKEN_TABLE 295 
 297 #define PERCENT_VERBOSE 296 
 298 #define PERCENT_YACC 297 
 299 #define BRACED_CODE 298 
 300 #define BRACKETED_ID 299 
 306 #define PERCENT_PERCENT 305 
 309 #define SEMICOLON 308 
 311 #define TYPE_TAG_ANY 310 
 312 #define TYPE_TAG_NONE 311 
 313 #define PERCENT_UNION 312 
 318 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED 
 319 typedef union YYSTYPE
 
 322 /* Line 293 of yacc.c  */ 
 323 #line 113 "parse-gram.y" 
 332   unsigned char character
; 
 333   named_ref 
*named_ref
; 
 337 /* Line 293 of yacc.c  */ 
 338 #line 339 "parse-gram.c" 
 340 # define YYSTYPE_IS_TRIVIAL 1 
 341 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ 
 342 # define YYSTYPE_IS_DECLARED 1 
 345 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED 
 346 typedef struct YYLTYPE
 
 353 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */ 
 354 # define YYLTYPE_IS_DECLARED 1 
 355 # define YYLTYPE_IS_TRIVIAL 1 
 359 /* Copy the second part of user declarations.  */ 
 362 /* Line 343 of yacc.c  */ 
 363 #line 364 "parse-gram.c" 
 370 typedef YYTYPE_UINT8 yytype_uint8
; 
 372 typedef unsigned char yytype_uint8
; 
 376 typedef YYTYPE_INT8 yytype_int8
; 
 377 #elif (defined __STDC__ || defined __C99__FUNC__ \ 
 378      || defined __cplusplus || defined _MSC_VER) 
 379 typedef signed char yytype_int8
; 
 381 typedef short int yytype_int8
; 
 385 typedef YYTYPE_UINT16 yytype_uint16
; 
 387 typedef unsigned short int yytype_uint16
; 
 391 typedef YYTYPE_INT16 yytype_int16
; 
 393 typedef short int yytype_int16
; 
 397 # ifdef __SIZE_TYPE__ 
 398 #  define YYSIZE_T __SIZE_TYPE__ 
 399 # elif defined size_t 
 400 #  define YYSIZE_T size_t 
 401 # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ 
 402      || defined __cplusplus || defined _MSC_VER) 
 403 #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */ 
 404 #  define YYSIZE_T size_t 
 406 #  define YYSIZE_T unsigned int 
 410 #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) 
 413 # if defined YYENABLE_NLS && YYENABLE_NLS 
 415 #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */ 
 416 #   define YY_(msgid) dgettext ("bison-runtime", msgid) 
 420 #  define YY_(msgid) msgid 
 424 /* Suppress unused-variable warnings by "using" E.  */ 
 425 #if ! defined lint || defined __GNUC__ 
 426 # define YYUSE(e) ((void) (e)) 
 428 # define YYUSE(e) /* empty */ 
 431 /* Identity function, used to suppress warnings about constant conditions.  */ 
 435 #if (defined __STDC__ || defined __C99__FUNC__ \ 
 436      || defined __cplusplus || defined _MSC_VER) 
 451 /* The parser invokes alloca or malloc; define the necessary symbols.  */ 
 453 # ifdef YYSTACK_ALLOC 
 454    /* Pacify GCC's `empty if-body' warning.  */ 
 455 #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) 
 456 #  ifndef YYSTACK_ALLOC_MAXIMUM 
 457     /* The OS might guarantee only one guard page at the bottom of the stack, 
 458        and a page size can be as small as 4096 bytes.  So we cannot safely 
 459        invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number 
 460        to allow for a few compiler-allocated temporary stack slots.  */ 
 461 #   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ 
 464 #  define YYSTACK_ALLOC YYMALLOC 
 465 #  define YYSTACK_FREE YYFREE 
 466 #  ifndef YYSTACK_ALLOC_MAXIMUM 
 467 #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM 
 469 #  if (defined __cplusplus && ! defined EXIT_SUCCESS \ 
 470        && ! ((defined YYMALLOC || defined malloc) \ 
 471              && (defined YYFREE || defined free))) 
 472 #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ 
 473 #   ifndef EXIT_SUCCESS 
 474 #    define EXIT_SUCCESS 0 
 478 #   define YYMALLOC malloc 
 479 #   if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ 
 480      || defined __cplusplus || defined _MSC_VER) 
 481 void *malloc (YYSIZE_T
); /* INFRINGES ON USER NAME SPACE */ 
 486 #   if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ 
 487      || defined __cplusplus || defined _MSC_VER) 
 488 void free (void *); /* INFRINGES ON USER NAME SPACE */ 
 492 # define YYCOPY_NEEDED 1 
 496 #if (! defined yyoverflow \ 
 497      && (! defined __cplusplus \ 
 498          || (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \ 
 499              && defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) 
 501 /* A type that is properly aligned for any stack member.  */ 
 504   yytype_int16 yyss_alloc
; 
 509 /* The size of the maximum gap between one aligned stack and the next.  */ 
 510 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) 
 512 /* The size of an array large to enough to hold all stacks, each with 
 514 # define YYSTACK_BYTES(N) \ 
 515      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \ 
 516       + 2 * YYSTACK_GAP_MAXIMUM) 
 518 # define YYCOPY_NEEDED 1 
 520 /* Relocate STACK from its old location to the new one.  The 
 521    local variables YYSIZE and YYSTACKSIZE give the old and new number of 
 522    elements in the stack, and YYPTR gives the new location of the 
 523    stack.  Advance YYPTR to a properly aligned location for the next 
 525 # define YYSTACK_RELOCATE(Stack_alloc, Stack)                           \ 
 528         YYSIZE_T yynewbytes;                                            \ 
 529         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                    \ 
 530         Stack = &yyptr->Stack_alloc;                                    \ 
 531         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ 
 532         yyptr += yynewbytes / sizeof (*yyptr);                          \ 
 538 #if defined YYCOPY_NEEDED && YYCOPY_NEEDED 
 539 /* Copy COUNT objects from FROM to TO.  The source and destination do 
 542 #  if defined __GNUC__ && 1 < __GNUC__ 
 543 #   define YYCOPY(To, From, Count) \ 
 544       __builtin_memcpy (To, From, (Count) * sizeof (*(From))) 
 546 #   define YYCOPY(To, From, Count)              \ 
 550           for (yyi = 0; yyi < (Count); yyi++)   \ 
 551             (To)[yyi] = (From)[yyi];            \ 
 556 #endif /* !YYCOPY_NEEDED */ 
 558 /* YYFINAL -- State number of the termination state.  */ 
 560 /* YYLAST -- Last index in YYTABLE.  */ 
 563 /* YYNTOKENS -- Number of terminals.  */ 
 565 /* YYNNTS -- Number of nonterminals.  */ 
 567 /* YYNRULES -- Number of rules.  */ 
 569 /* YYNRULES -- Number of states.  */ 
 570 #define YYNSTATES  148 
 572 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */ 
 574 #define YYMAXUTOK   312 
 576 #define YYTRANSLATE(YYX)                                                \ 
 577   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) 
 579 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */ 
 580 static const yytype_uint8 yytranslate
[] = 
 582        0,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 583        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 584        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 585        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 586        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 587        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 588        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 589        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 590        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 591        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 592        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 593        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 594        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 595        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 596        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 597        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 598        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 599        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 600        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 601        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 602        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 603        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 604        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 605        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 606        2,     2,     2,     2,     2,     2,     2,     2,     2,     2, 
 607        2,     2,     2,     2,     2,     2,     1,     2,     3,     4, 
 608        5,     6,     7,     8,     9,    10,    11,    12,    13,    14, 
 609       15,    16,    17,    18,    19,    20,    21,    22,    23,    24, 
 610       25,    26,    27,    28,    29,    30,    31,    32,    33,    34, 
 611       35,    36,    37,    38,    39,    40,    41,    42,    43,    44, 
 612       45,    46,    47,    48,    49,    50,    51,    52,    53,    54, 
 617 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in 
 619 static const yytype_uint16 yyprhs
[] = 
 621        0,     0,     3,     8,     9,    12,    14,    16,    18,    22, 
 622       24,    27,    29,    32,    35,    38,    42,    44,    47,    50, 
 623       53,    55,    58,    62,    64,    66,    69,    73,    76,    78, 
 624       81,    84,    86,    88,    90,    92,    94,    96,    99,   103, 
 625      107,   109,   111,   114,   118,   119,   121,   125,   126,   130, 
 626      131,   135,   139,   143,   145,   147,   149,   150,   152,   154, 
 627      157,   159,   162,   164,   167,   169,   172,   174,   176,   178, 
 628      180,   182,   184,   187,   190,   194,   196,   199,   201,   204, 
 629      206,   209,   212,   213,   218,   220,   224,   227,   228,   232, 
 630      236,   240,   244,   248,   249,   251,   253,   255,   256,   258, 
 631      260,   262,   264,   266,   268,   270,   272,   274,   275 
 634 /* YYRHS -- A `-1'-separated list of the rules' RHS.  */ 
 635 static const yytype_int8 yyrhs
[] = 
 637       59,     0,    -1,    60,    50,    77,    91,    -1,    -1,    60, 
 638       61,    -1,    62,    -1,    52,    -1,    17,    -1,    19,    84, 
 639       85,    -1,    20,    -1,    20,     3,    -1,    21,    -1,    22, 
 640        4,    -1,    23,     4,    -1,    24,     3,    -1,    24,    47, 
 641        3,    -1,    25,    -1,    26,    43,    -1,    27,     3,    -1, 
 642       28,    43,    -1,    29,    -1,    30,     3,    -1,    30,    47, 
 643        3,    -1,    32,    -1,    33,    -1,    34,     3,    -1,    34, 
 644       47,     3,    -1,    35,    43,    -1,    36,    -1,    37,     3, 
 645       -1,    38,     3,    -1,    40,    -1,    41,    -1,    42,    -1, 
 646       53,    -1,    67,    -1,    64,    -1,    39,    89,    -1,     8, 
 647       43,    73,    -1,     9,    43,    73,    -1,    18,    -1,    31, 
 648       -1,    16,    86,    -1,    16,    48,    86,    -1,    -1,    48, 
 649       -1,    57,    63,    86,    -1,    -1,     6,    65,    76,    -1, 
 650       -1,     5,    66,    76,    -1,     7,    54,    72,    -1,    68, 
 651       69,    70,    -1,    10,    -1,    11,    -1,    12,    -1,    -1, 
 652       54,    -1,    71,    -1,    70,    71,    -1,    89,    -1,    89, 
 653        4,    -1,    89,    -1,    72,    89,    -1,    74,    -1,    73, 
 654       74,    -1,    89,    -1,    54,    -1,    55,    -1,    56,    -1, 
 655       54,    -1,    87,    -1,    87,     4,    -1,    87,    90,    -1, 
 656       87,     4,    90,    -1,    75,    -1,    76,    75,    -1,    78, 
 657       -1,    77,    78,    -1,    79,    -1,    62,    53,    -1,     1, 
 658       53,    -1,    -1,    88,    83,    80,    81,    -1,    82,    -1, 
 659       81,    51,    82,    -1,    81,    53,    -1,    -1,    82,    89, 
 660       83,    -1,    82,    43,    83,    -1,    82,    13,    89,    -1, 
 661       82,    14,     4,    -1,    82,    15,    54,    -1,    -1,    44, 
 662       -1,    48,    -1,     3,    -1,    -1,    48,    -1,     3,    -1, 
 663       43,    -1,    48,    -1,    45,    -1,    49,    -1,    87,    -1, 
 664       90,    -1,     3,    -1,    -1,    50,    46,    -1 
 667 /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */ 
 668 static const yytype_uint16 yyrline
[] = 
 670        0,   228,   228,   236,   238,   242,   243,   253,   254,   259, 
 671      260,   265,   266,   267,   268,   269,   270,   275,   284,   285, 
 672      286,   287,   288,   289,   290,   291,   292,   293,   294,   309, 
 673      310,   334,   335,   336,   337,   341,   342,   343,   347,   354, 
 674      361,   365,   369,   376,   391,   392,   396,   408,   408,   413, 
 675      413,   418,   429,   444,   445,   446,   450,   451,   456,   458, 
 676      463,   464,   469,   471,   476,   477,   481,   482,   483,   484, 
 677      489,   494,   499,   505,   511,   522,   523,   532,   533,   539, 
 678      540,   541,   548,   548,   556,   557,   558,   563,   565,   567, 
 679      569,   571,   573,   578,   580,   591,   592,   597,   598,   599, 
 680      608,   628,   630,   639,   644,   645,   650,   657,   659 
 684 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE 
 685 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. 
 686    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */ 
 687 static const char *const yytname
[] = 
 689   "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"", 
 690   "\"%token\"", "\"%nterm\"", "\"%type\"", "\"%destructor\"", 
 691   "\"%printer\"", "\"%left\"", "\"%right\"", "\"%nonassoc\"", "\"%prec\"", 
 692   "\"%dprec\"", "\"%merge\"", "\"%code\"", "\"%debug\"", 
 693   "\"%default-prec\"", "\"%define\"", "\"%defines\"", "\"%error-verbose\"", 
 694   "\"%expect\"", "\"%expect-rr\"", "\"%file-prefix\"", "\"%glr-parser\"", 
 695   "\"%initial-action\"", "\"%language\"", "\"%lex-param\"", 
 696   "\"%locations\"", "\"%name-prefix\"", "\"%no-default-prec\"", 
 697   "\"%no-lines\"", "\"%nondeterministic-parser\"", "\"%output\"", 
 698   "\"%parse-param\"", "\"%pure-parser\"", "\"%require\"", "\"%skeleton\"", 
 699   "\"%start\"", "\"%token-table\"", "\"%verbose\"", "\"%yacc\"", 
 700   "\"{...}\"", "\"[identifier]\"", "\"char\"", "\"epilogue\"", "\"=\"", 
 701   "\"identifier\"", "\"identifier:\"", "\"%%\"", "\"|\"", "\"%{...%}\"", 
 702   "\";\"", "\"type\"", "\"<*>\"", "\"<>\"", "\"%union\"", "$accept", 
 703   "input", "prologue_declarations", "prologue_declaration", 
 704   "grammar_declaration", "union_name", "symbol_declaration", "$@1", "$@2", 
 705   "precedence_declaration", "precedence_declarator", "type.opt", 
 706   "symbols.prec", "symbol.prec", "symbols.1", "generic_symlist", 
 707   "generic_symlist_item", "symbol_def", "symbol_defs.1", "grammar", 
 708   "rules_or_grammar_declaration", "rules", "$@3", "rhses.1", "rhs", 
 709   "named_ref.opt", "variable", "content.opt", "braceless", "id", 
 710   "id_colon", "symbol", "string_as_id", "epilogue.opt", 0 
 715 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to 
 717 static const yytype_uint16 yytoknum
[] = 
 719        0,   256,   257,   258,   259,   260,   261,   262,   263,   264, 
 720      265,   266,   267,   268,   269,   270,   271,   272,   273,   274, 
 721      275,   276,   277,   278,   279,   280,   281,   282,   283,   284, 
 722      285,   286,   287,   288,   289,   290,   291,   292,   293,   294, 
 723      295,   296,   297,   298,   299,   300,   301,   302,   303,   304, 
 724      305,   306,   307,   308,   309,   310,   311,   312 
 728 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */ 
 729 static const yytype_uint8 yyr1
[] = 
 731        0,    58,    59,    60,    60,    61,    61,    61,    61,    61, 
 732       61,    61,    61,    61,    61,    61,    61,    61,    61,    61, 
 733       61,    61,    61,    61,    61,    61,    61,    61,    61,    61, 
 734       61,    61,    61,    61,    61,    62,    62,    62,    62,    62, 
 735       62,    62,    62,    62,    63,    63,    62,    65,    64,    66, 
 736       64,    64,    67,    68,    68,    68,    69,    69,    70,    70, 
 737       71,    71,    72,    72,    73,    73,    74,    74,    74,    74, 
 738       75,    75,    75,    75,    75,    76,    76,    77,    77,    78, 
 739       78,    78,    80,    79,    81,    81,    81,    82,    82,    82, 
 740       82,    82,    82,    83,    83,    84,    84,    85,    85,    85, 
 741       86,    87,    87,    88,    89,    89,    90,    91,    91 
 744 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */ 
 745 static const yytype_uint8 yyr2
[] = 
 747        0,     2,     4,     0,     2,     1,     1,     1,     3,     1, 
 748        2,     1,     2,     2,     2,     3,     1,     2,     2,     2, 
 749        1,     2,     3,     1,     1,     2,     3,     2,     1,     2, 
 750        2,     1,     1,     1,     1,     1,     1,     2,     3,     3, 
 751        1,     1,     2,     3,     0,     1,     3,     0,     3,     0, 
 752        3,     3,     3,     1,     1,     1,     0,     1,     1,     2, 
 753        1,     2,     1,     2,     1,     2,     1,     1,     1,     1, 
 754        1,     1,     2,     2,     3,     1,     2,     1,     2,     1, 
 755        2,     2,     0,     4,     1,     3,     2,     0,     3,     3, 
 756        3,     3,     3,     0,     1,     1,     1,     0,     1,     1, 
 757        1,     1,     1,     1,     1,     1,     1,     0,     2 
 760 /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. 
 761    Performed when YYTABLE doesn't specify something else to do.  Zero 
 762    means the default is an error.  */ 
 763 static const yytype_uint8 yydefact
[] = 
 765        3,     0,     0,     1,    49,    47,     0,     0,     0,    53, 
 766       54,    55,     0,     7,    40,     0,     9,    11,     0,     0, 
 767        0,    16,     0,     0,     0,    20,     0,    41,    23,    24, 
 768        0,     0,    28,     0,     0,     0,    31,    32,    33,     0, 
 769        6,    34,    44,     4,     5,    36,    35,    56,     0,     0, 
 770        0,     0,     0,   100,     0,    42,    96,    95,    97,    10, 
 771       12,    13,    14,     0,    17,    18,    19,    21,     0,    25, 
 772        0,    27,    29,    30,   106,   102,   101,   104,    37,   105, 
 773        0,   103,     0,     0,    77,    79,    93,    45,     0,    57, 
 774        0,    70,    75,    50,    71,    48,    51,    62,    67,    68, 
 775       69,    38,    64,    66,    39,    43,    99,    98,     8,    15, 
 776       22,    26,    81,    80,     0,    78,     2,    94,    82,    46, 
 777       52,    58,    60,    76,    72,    73,    63,    65,   108,    87, 
 778       59,    61,    74,    83,    84,    87,    86,     0,     0,     0, 
 779       93,    93,    85,    90,    91,    92,    89,    88 
 782 /* YYDEFGOTO[NTERM-NUM].  */ 
 783 static const yytype_int16 yydefgoto
[] = 
 785       -1,     1,     2,    43,    82,    88,    45,    49,    48,    46, 
 786       47,    90,   120,   121,    96,   101,   102,    92,    93,    83, 
 787       84,    85,   129,   133,   134,   118,    58,   108,    55,    77, 
 791 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing 
 793 #define YYPACT_NINF -91 
 794 static const yytype_int16 yypact
[] = 
 796      -91,     3,   103,   -91,   -91,   -91,   -36,     2,    10,   -91, 
 797      -91,   -91,     9,   -91,   -91,    32,    60,   -91,    65,    67, 
 798       27,   -91,    41,    73,    51,   -91,    39,   -91,   -91,   -91, 
 799       40,    52,   -91,    93,    95,    33,   -91,   -91,   -91,    15, 
 800      -91,   -91,    53,   -91,   -91,   -91,   -91,    46,    43,    43, 
 801       33,    11,    11,   -91,    61,   -91,   -91,   -91,    35,   -91, 
 802      -91,   -91,   -91,   100,   -91,   -91,   -91,   -91,   102,   -91, 
 803      113,   -91,   -91,   -91,   -91,   -91,   -91,   -91,   -91,   -91, 
 804       64,   -91,    94,     1,   -91,   -91,    62,   -91,    61,   -91, 
 805       33,   -91,   -91,    43,    86,    43,    33,   -91,   -91,   -91, 
 806      -91,    11,   -91,   -91,    11,   -91,   -91,   -91,   -91,   -91, 
 807      -91,   -91,   -91,   -91,    72,   -91,   -91,   -91,   -91,   -91, 
 808       33,   -91,   142,   -91,   145,   -91,   -91,   -91,   -91,   -91, 
 809      -91,   -91,   -91,    17,    34,   -91,   -91,    33,   146,    97, 
 810       62,    62,    34,   -91,   -91,   -91,   -91,   -91 
 813 /* YYPGOTO[NTERM-NUM].  */ 
 814 static const yytype_int16 yypgoto
[] = 
 816      -91,   -91,   -91,   -91,   147,   -91,   -91,   -91,   -91,   -91, 
 817      -91,   -91,   -91,    37,   -91,   106,   -60,   -33,   105,   -91, 
 818       69,   -91,   -91,   -91,    24,   -48,   -91,   -91,   -49,   -20, 
 822 /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If 
 823    positive, shift that token.  If negative, reduce the rule which 
 824    number is the opposite.  If YYTABLE_NINF, syntax error.  */ 
 825 #define YYTABLE_NINF -108 
 826 static const yytype_int16 yytable
[] = 
 828       78,  -107,    80,     3,   125,   105,     4,     5,     6,     7, 
 829        8,     9,    10,    11,    74,    97,    80,    12,    50,    14, 
 830        4,     5,     6,     7,     8,     9,    10,    11,    94,    94, 
 831       62,    12,    27,    14,   132,    56,    74,    74,   106,   119, 
 832       35,   127,    67,    69,   127,    51,    27,   137,   138,   139, 
 833       81,   114,    53,    52,    35,   122,    75,    54,    42,    76, 
 834      123,   126,   123,    59,    81,    98,    99,   100,   135,    60, 
 835      136,    61,    42,    94,    63,    94,    65,   140,    75,    75, 
 836       57,    76,    76,   107,    64,   122,    68,    70,    75,    74, 
 837      124,    76,   146,   147,    66,    71,    72,    91,    73,   141, 
 838       89,    87,   143,   109,    53,   110,   117,   141,     4,     5, 
 839        6,     7,     8,     9,    10,    11,   111,   112,   128,    12, 
 840       13,    14,    15,    16,    17,    18,    19,    20,    21,    22, 
 841       23,    24,    25,    26,    27,    28,    29,    30,    31,    32, 
 842       33,    34,    35,    36,    37,    38,   131,   113,    74,    44, 
 843      144,   145,   115,    39,    95,    40,    41,   130,   104,   142, 
 847 #define yypact_value_is_default(yystate) \ 
 850 #define yytable_value_is_error(yytable_value) \ 
 853 static const yytype_uint8 yycheck
[] = 
 855       35,     0,     1,     0,    94,    54,     5,     6,     7,     8, 
 856        9,    10,    11,    12,     3,    50,     1,    16,    54,    18, 
 857        5,     6,     7,     8,     9,    10,    11,    12,    48,    49, 
 858        3,    16,    31,    18,   124,     3,     3,     3,     3,    88, 
 859       39,   101,     3,     3,   104,    43,    31,    13,    14,    15, 
 860       49,    50,    43,    43,    39,    90,    45,    48,    57,    48, 
 861       93,    96,    95,     3,    49,    54,    55,    56,    51,     4, 
 862       53,     4,    57,    93,    47,    95,     3,    43,    45,    45, 
 863       48,    48,    48,    48,    43,   120,    47,    47,    45,     3, 
 864        4,    48,   140,   141,    43,    43,     3,    54,     3,   134, 
 865       54,    48,   137,     3,    43,     3,    44,   142,     5,     6, 
 866        7,     8,     9,    10,    11,    12,     3,    53,    46,    16, 
 867       17,    18,    19,    20,    21,    22,    23,    24,    25,    26, 
 868       27,    28,    29,    30,    31,    32,    33,    34,    35,    36, 
 869       37,    38,    39,    40,    41,    42,     4,    53,     3,     2, 
 870        4,    54,    83,    50,    49,    52,    53,   120,    52,   135, 
 874 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing 
 875    symbol of state STATE-NUM.  */ 
 876 static const yytype_uint8 yystos
[] = 
 878        0,    59,    60,     0,     5,     6,     7,     8,     9,    10, 
 879       11,    12,    16,    17,    18,    19,    20,    21,    22,    23, 
 880       24,    25,    26,    27,    28,    29,    30,    31,    32,    33, 
 881       34,    35,    36,    37,    38,    39,    40,    41,    42,    50, 
 882       52,    53,    57,    61,    62,    64,    67,    68,    66,    65, 
 883       54,    43,    43,    43,    48,    86,     3,    48,    84,     3, 
 884        4,     4,     3,    47,    43,     3,    43,     3,    47,     3, 
 885       47,    43,     3,     3,     3,    45,    48,    87,    89,    90, 
 886        1,    49,    62,    77,    78,    79,    88,    48,    63,    54, 
 887       69,    54,    75,    76,    87,    76,    72,    89,    54,    55, 
 888       56,    73,    74,    89,    73,    86,     3,    48,    85,     3, 
 889        3,     3,    53,    53,    50,    78,    91,    44,    83,    86, 
 890       70,    71,    89,    75,     4,    90,    89,    74,    46,    80, 
 891       71,     4,    90,    81,    82,    51,    53,    13,    14,    15, 
 892       43,    89,    82,    89,     4,    54,    83,    83 
 895 #define yyerrok         (yyerrstatus = 0) 
 896 #define yyclearin       (yychar = YYEMPTY) 
 900 #define YYACCEPT        goto yyacceptlab 
 901 #define YYABORT         goto yyabortlab 
 902 #define YYERROR         goto yyerrorlab 
 905 /* Like YYERROR except do call yyerror.  This remains here temporarily 
 906    to ease the transition to the new meaning of YYERROR, for GCC. 
 907    Once GCC version 2 has supplanted version 1, this can go.  However, 
 908    YYFAIL appears to be in use.  Nevertheless, it is formally deprecated 
 909    in Bison 2.4.2's NEWS entry, where a plan to phase it out is 
 912 #define YYFAIL          goto yyerrlab 
 914   /* This is here to suppress warnings from the GCC cpp's 
 915      -Wunused-macros.  Normally we don't worry about that warning, but 
 916      some users do, and we want to make it easy for users to remove 
 917      YYFAIL uses, which will produce warnings from Bison 2.5.  */ 
 920 #define YYRECOVERING()  (!!yyerrstatus) 
 922 #define YYBACKUP(Token, Value)                                  \ 
 924   if (yychar == YYEMPTY && yylen == 1)                          \ 
 929       YY_LAC_DISCARD ("YYBACKUP");                              \ 
 934       yyerror (YY_("syntax error: cannot back up")); \ 
 941 #define YYERRCODE       256 
 944 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. 
 945    If N is 0, then set CURRENT to the empty location which ends 
 946    the previous symbol: RHS[0] (always defined).  */ 
 948 #define YYRHSLOC(Rhs, K) ((Rhs)[K]) 
 949 #ifndef YYLLOC_DEFAULT 
 950 # define YYLLOC_DEFAULT(Current, Rhs, N)                                \ 
 954           (Current).first_line   = YYRHSLOC (Rhs, 1).first_line;        \ 
 955           (Current).first_column = YYRHSLOC (Rhs, 1).first_column;      \ 
 956           (Current).last_line    = YYRHSLOC (Rhs, N).last_line;         \ 
 957           (Current).last_column  = YYRHSLOC (Rhs, N).last_column;       \ 
 961           (Current).first_line   = (Current).last_line   =              \ 
 962             YYRHSLOC (Rhs, 0).last_line;                                \ 
 963           (Current).first_column = (Current).last_column =              \ 
 964             YYRHSLOC (Rhs, 0).last_column;                              \ 
 970 /* YY_LOCATION_PRINT -- Print the location on the stream. 
 971    This macro was not mandated originally: define only if we know 
 972    we won't break user code: when these are the locations we know.  */ 
 974 #ifndef YY_LOCATION_PRINT 
 975 # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL 
 976 #  define YY_LOCATION_PRINT(File, Loc)                  \ 
 977      fprintf (File, "%d.%d-%d.%d",                      \ 
 978               (Loc).first_line, (Loc).first_column,     \ 
 979               (Loc).last_line,  (Loc).last_column) 
 981 #  define YY_LOCATION_PRINT(File, Loc) ((void) 0) 
 986 /* YYLEX -- calling `yylex' with the right arguments.  */ 
 989 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM) 
 991 # define YYLEX yylex (&yylval, &yylloc) 
 994 /* Enable debugging if requested.  */ 
 998 #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */ 
 999 #  define YYFPRINTF fprintf 
1002 # define YYDPRINTF(Args)                        \ 
1008 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                    \ 
1012       YYFPRINTF (stderr, "%s ", Title);                                   \ 
1013       yy_symbol_print (stderr,                                            \ 
1014                   Type, Value, Location); \ 
1015       YYFPRINTF (stderr, "\n");                                           \ 
1020 /*--------------------------------. 
1021 | Print this symbol on YYOUTPUT.  | 
1022 `--------------------------------*/ 
1025 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1026      || defined __cplusplus || defined _MSC_VER) 
1028 yy_symbol_value_print (FILE *yyoutput
, int yytype
, YYSTYPE 
const * const yyvaluep
, YYLTYPE 
const * const yylocationp
) 
1031 yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
) 
1034     YYSTYPE 
const * const yyvaluep
; 
1035     YYLTYPE 
const * const yylocationp
; 
1040   YYUSE (yylocationp
); 
1042   if (yytype 
< YYNTOKENS
) 
1043     YYPRINT (yyoutput
, yytoknum
[yytype
], *yyvaluep
); 
1049       case 3: /* "\"string\"" */ 
1051 /* Line 819 of yacc.c  */ 
1052 #line 203 "parse-gram.y" 
1053         { fputs (quotearg_style (c_quoting_style
, (yyvaluep
->chars
)), stderr
); }; 
1055 /* Line 819 of yacc.c  */ 
1056 #line 1057 "parse-gram.c" 
1058       case 4: /* "\"integer\"" */ 
1060 /* Line 819 of yacc.c  */ 
1061 #line 215 "parse-gram.y" 
1062         { fprintf (stderr
, "%d", (yyvaluep
->integer
)); }; 
1064 /* Line 819 of yacc.c  */ 
1065 #line 1066 "parse-gram.c" 
1067       case 43: /* "\"{...}\"" */ 
1069 /* Line 819 of yacc.c  */ 
1070 #line 205 "parse-gram.y" 
1071         { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->code
)); }; 
1073 /* Line 819 of yacc.c  */ 
1074 #line 1075 "parse-gram.c" 
1076       case 44: /* "\"[identifier]\"" */ 
1078 /* Line 819 of yacc.c  */ 
1079 #line 210 "parse-gram.y" 
1080         { fprintf (stderr
, "[%s]", (yyvaluep
->uniqstr
)); }; 
1082 /* Line 819 of yacc.c  */ 
1083 #line 1084 "parse-gram.c" 
1085       case 45: /* "\"char\"" */ 
1087 /* Line 819 of yacc.c  */ 
1088 #line 197 "parse-gram.y" 
1089         { fputs (char_name ((yyvaluep
->character
)), stderr
); }; 
1091 /* Line 819 of yacc.c  */ 
1092 #line 1093 "parse-gram.c" 
1094       case 46: /* "\"epilogue\"" */ 
1096 /* Line 819 of yacc.c  */ 
1097 #line 205 "parse-gram.y" 
1098         { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); }; 
1100 /* Line 819 of yacc.c  */ 
1101 #line 1102 "parse-gram.c" 
1103       case 48: /* "\"identifier\"" */ 
1105 /* Line 819 of yacc.c  */ 
1106 #line 209 "parse-gram.y" 
1107         { fputs ((yyvaluep
->uniqstr
), stderr
); }; 
1109 /* Line 819 of yacc.c  */ 
1110 #line 1111 "parse-gram.c" 
1112       case 49: /* "\"identifier:\"" */ 
1114 /* Line 819 of yacc.c  */ 
1115 #line 211 "parse-gram.y" 
1116         { fprintf (stderr
, "%s:", (yyvaluep
->uniqstr
)); }; 
1118 /* Line 819 of yacc.c  */ 
1119 #line 1120 "parse-gram.c" 
1121       case 52: /* "\"%{...%}\"" */ 
1123 /* Line 819 of yacc.c  */ 
1124 #line 205 "parse-gram.y" 
1125         { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); }; 
1127 /* Line 819 of yacc.c  */ 
1128 #line 1129 "parse-gram.c" 
1130       case 54: /* "\"type\"" */ 
1132 /* Line 819 of yacc.c  */ 
1133 #line 212 "parse-gram.y" 
1134         { fprintf (stderr
, "<%s>", (yyvaluep
->uniqstr
)); }; 
1136 /* Line 819 of yacc.c  */ 
1137 #line 1138 "parse-gram.c" 
1139       case 71: /* "symbol.prec" */ 
1141 /* Line 819 of yacc.c  */ 
1142 #line 218 "parse-gram.y" 
1143         { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); }; 
1145 /* Line 819 of yacc.c  */ 
1146 #line 1147 "parse-gram.c" 
1148       case 84: /* "variable" */ 
1150 /* Line 819 of yacc.c  */ 
1151 #line 209 "parse-gram.y" 
1152         { fputs ((yyvaluep
->uniqstr
), stderr
); }; 
1154 /* Line 819 of yacc.c  */ 
1155 #line 1156 "parse-gram.c" 
1157       case 85: /* "content.opt" */ 
1159 /* Line 819 of yacc.c  */ 
1160 #line 205 "parse-gram.y" 
1161         { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); }; 
1163 /* Line 819 of yacc.c  */ 
1164 #line 1165 "parse-gram.c" 
1166       case 86: /* "braceless" */ 
1168 /* Line 819 of yacc.c  */ 
1169 #line 205 "parse-gram.y" 
1170         { fprintf (stderr
, "{\n%s\n}", (yyvaluep
->chars
)); }; 
1172 /* Line 819 of yacc.c  */ 
1173 #line 1174 "parse-gram.c" 
1177 /* Line 819 of yacc.c  */ 
1178 #line 218 "parse-gram.y" 
1179         { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); }; 
1181 /* Line 819 of yacc.c  */ 
1182 #line 1183 "parse-gram.c" 
1184       case 88: /* "id_colon" */ 
1186 /* Line 819 of yacc.c  */ 
1187 #line 219 "parse-gram.y" 
1188         { fprintf (stderr
, "%s:", (yyvaluep
->symbol
)->tag
); }; 
1190 /* Line 819 of yacc.c  */ 
1191 #line 1192 "parse-gram.c" 
1193       case 89: /* "symbol" */ 
1195 /* Line 819 of yacc.c  */ 
1196 #line 218 "parse-gram.y" 
1197         { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); }; 
1199 /* Line 819 of yacc.c  */ 
1200 #line 1201 "parse-gram.c" 
1202       case 90: /* "string_as_id" */ 
1204 /* Line 819 of yacc.c  */ 
1205 #line 218 "parse-gram.y" 
1206         { fprintf (stderr
, "%s", (yyvaluep
->symbol
)->tag
); }; 
1208 /* Line 819 of yacc.c  */ 
1209 #line 1210 "parse-gram.c" 
1217 /*--------------------------------. 
1218 | Print this symbol on YYOUTPUT.  | 
1219 `--------------------------------*/ 
1221 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1222      || defined __cplusplus || defined _MSC_VER) 
1224 yy_symbol_print (FILE *yyoutput
, int yytype
, YYSTYPE 
const * const yyvaluep
, YYLTYPE 
const * const yylocationp
) 
1227 yy_symbol_print (yyoutput
, yytype
, yyvaluep
, yylocationp
) 
1230     YYSTYPE 
const * const yyvaluep
; 
1231     YYLTYPE 
const * const yylocationp
; 
1234   if (yytype 
< YYNTOKENS
) 
1235     YYFPRINTF (yyoutput
, "token %s (", yytname
[yytype
]); 
1237     YYFPRINTF (yyoutput
, "nterm %s (", yytname
[yytype
]); 
1239   YY_LOCATION_PRINT (yyoutput
, *yylocationp
); 
1240   YYFPRINTF (yyoutput
, ": "); 
1241   yy_symbol_value_print (yyoutput
, yytype
, yyvaluep
, yylocationp
); 
1242   YYFPRINTF (yyoutput
, ")"); 
1245 /*------------------------------------------------------------------. 
1246 | yy_stack_print -- Print the state stack from its BOTTOM up to its | 
1248 `------------------------------------------------------------------*/ 
1250 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1251      || defined __cplusplus || defined _MSC_VER) 
1253 yy_stack_print (yytype_int16 
*yybottom
, yytype_int16 
*yytop
) 
1256 yy_stack_print (yybottom
, yytop
) 
1257     yytype_int16 
*yybottom
; 
1258     yytype_int16 
*yytop
; 
1261   YYFPRINTF (stderr
, "Stack now"); 
1262   for (; yybottom 
<= yytop
; yybottom
++) 
1264       int yybot 
= *yybottom
; 
1265       YYFPRINTF (stderr
, " %d", yybot
); 
1267   YYFPRINTF (stderr
, "\n"); 
1270 # define YY_STACK_PRINT(Bottom, Top)                            \ 
1273     yy_stack_print ((Bottom), (Top));                           \ 
1277 /*------------------------------------------------. 
1278 | Report that the YYRULE is going to be reduced.  | 
1279 `------------------------------------------------*/ 
1281 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1282      || defined __cplusplus || defined _MSC_VER) 
1284 yy_reduce_print (YYSTYPE 
*yyvsp
, YYLTYPE 
*yylsp
, int yyrule
) 
1287 yy_reduce_print (yyvsp
, yylsp
, yyrule
) 
1293   int yynrhs 
= yyr2
[yyrule
]; 
1295   unsigned long int yylno 
= yyrline
[yyrule
]; 
1296   YYFPRINTF (stderr
, "Reducing stack by rule %d (line %lu):\n", 
1298   /* The symbols being reduced.  */ 
1299   for (yyi 
= 0; yyi 
< yynrhs
; yyi
++) 
1301       YYFPRINTF (stderr
, "   $%d = ", yyi 
+ 1); 
1302       yy_symbol_print (stderr
, yyrhs
[yyprhs
[yyrule
] + yyi
], 
1303                        &(yyvsp
[(yyi 
+ 1) - (yynrhs
)]) 
1304                        , &(yylsp
[(yyi 
+ 1) - (yynrhs
)])                ); 
1305       YYFPRINTF (stderr
, "\n"); 
1309 # define YY_REDUCE_PRINT(Rule)          \ 
1312     yy_reduce_print (yyvsp, yylsp, Rule); \ 
1315 /* Nonzero means print parse trace.  It is left uninitialized so that 
1316    multiple parsers can coexist.  */ 
1318 #else /* !YYDEBUG */ 
1319 # define YYDPRINTF(Args) 
1320 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) 
1321 # define YY_STACK_PRINT(Bottom, Top) 
1322 # define YY_REDUCE_PRINT(Rule) 
1323 #endif /* !YYDEBUG */ 
1326 /* YYINITDEPTH -- initial size of the parser's stacks.  */ 
1328 # define YYINITDEPTH 200 
1331 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only 
1332    if the built-in stack extension method is used). 
1334    Do not make this value too large; the results are undefined if 
1335    YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) 
1336    evaluated with infinite-precision integer arithmetic.  */ 
1339 # define YYMAXDEPTH 10000 
1342 /* Given a state stack such that *YYBOTTOM is its bottom, such that 
1343    *YYTOP is either its top or is YYTOP_EMPTY to indicate an empty 
1344    stack, and such that *YYCAPACITY is the maximum number of elements it 
1345    can hold without a reallocation, make sure there is enough room to 
1346    store YYADD more elements.  If not, allocate a new stack using 
1347    YYSTACK_ALLOC, copy the existing elements, and adjust *YYBOTTOM, 
1348    *YYTOP, and *YYCAPACITY to reflect the new capacity and memory 
1349    location.  If *YYBOTTOM != YYBOTTOM_NO_FREE, then free the old stack 
1350    using YYSTACK_FREE.  Return 0 if successful or if no reallocation is 
1351    required.  Return 1 if memory is exhausted.  */ 
1353 yy_lac_stack_realloc (YYSIZE_T 
*yycapacity
, YYSIZE_T yyadd
, 
1355                       char const *yydebug_prefix
, 
1356                       char const *yydebug_suffix
, 
1358                       yytype_int16 
**yybottom
, 
1359                       yytype_int16 
*yybottom_no_free
, 
1360                       yytype_int16 
**yytop
, yytype_int16 
*yytop_empty
) 
1362   YYSIZE_T yysize_old 
= 
1363     *yytop 
== yytop_empty 
? 0 : *yytop 
- *yybottom 
+ 1; 
1364   YYSIZE_T yysize_new 
= yysize_old 
+ yyadd
; 
1365   if (*yycapacity 
< yysize_new
) 
1367       YYSIZE_T yyalloc 
= 2 * yysize_new
; 
1368       yytype_int16 
*yybottom_new
; 
1369       /* Use YYMAXDEPTH for maximum stack size given that the stack 
1370          should never need to grow larger than the main state stack 
1371          needs to grow without LAC.  */ 
1372       if (YYMAXDEPTH 
< yysize_new
) 
1374           YYDPRINTF ((stderr
, "%smax size exceeded%s", yydebug_prefix
, 
1378       if (YYMAXDEPTH 
< yyalloc
) 
1379         yyalloc 
= YYMAXDEPTH
; 
1381         (yytype_int16
*) YYSTACK_ALLOC (yyalloc 
* sizeof *yybottom_new
); 
1384           YYDPRINTF ((stderr
, "%srealloc failed%s", yydebug_prefix
, 
1388       if (*yytop 
!= yytop_empty
) 
1390           YYCOPY (yybottom_new
, *yybottom
, yysize_old
); 
1391           *yytop 
= yybottom_new 
+ (yysize_old 
- 1); 
1393       if (*yybottom 
!= yybottom_no_free
) 
1394         YYSTACK_FREE (*yybottom
); 
1395       *yybottom 
= yybottom_new
; 
1396       *yycapacity 
= yyalloc
; 
1401 /* Establish the initial context for the current lookahead if no initial 
1402    context is currently established. 
1404    We define a context as a snapshot of the parser stacks.  We define 
1405    the initial context for a lookahead as the context in which the 
1406    parser initially examines that lookahead in order to select a 
1407    syntactic action.  Thus, if the lookahead eventually proves 
1408    syntactically unacceptable (possibly in a later context reached via a 
1409    series of reductions), the initial context can be used to determine 
1410    the exact set of tokens that would be syntactically acceptable in the 
1411    lookahead's place.  Moreover, it is the context after which any 
1412    further semantic actions would be erroneous because they would be 
1413    determined by a syntactically unacceptable token. 
1415    YY_LAC_ESTABLISH should be invoked when a reduction is about to be 
1416    performed in an inconsistent state (which, for the purposes of LAC, 
1417    includes consistent states that don't know they're consistent because 
1418    their default reductions have been disabled).  Iff there is a 
1419    lookahead token, it should also be invoked before reporting a syntax 
1420    error.  This latter case is for the sake of the debugging output. 
1422    For parse.lac=full, the implementation of YY_LAC_ESTABLISH is as 
1423    follows.  If no initial context is currently established for the 
1424    current lookahead, then check if that lookahead can eventually be 
1425    shifted if syntactic actions continue from the current context. 
1426    Report a syntax error if it cannot.  */ 
1427 #define YY_LAC_ESTABLISH                                         \ 
1429   if (!yy_lac_established)                                       \ 
1431       YYDPRINTF ((stderr,                                        \ 
1432                   "LAC: initial context established for %s\n",   \ 
1433                   yytname[yytoken]));                            \ 
1434       yy_lac_established = 1;                                    \ 
1436         int yy_lac_status =                                      \ 
1437           yy_lac (yyesa, &yyes, &yyes_capacity, yyssp, yytoken); \ 
1438         if (yy_lac_status == 2)                                  \ 
1439           goto yyexhaustedlab;                                   \ 
1440         if (yy_lac_status == 1)                                  \ 
1446 /* Discard any previous initial lookahead context because of Event, 
1447    which may be a lookahead change or an invalidation of the currently 
1448    established initial context for the current lookahead. 
1450    The most common example of a lookahead change is a shift.  An example 
1451    of both cases is syntax error recovery.  That is, a syntax error 
1452    occurs when the lookahead is syntactically erroneous for the 
1453    currently established initial context, so error recovery manipulates 
1454    the parser stacks to try to find a new initial context in which the 
1455    current lookahead is syntactically acceptable.  If it fails to find 
1456    such a context, it discards the lookahead.  */ 
1458 # define YY_LAC_DISCARD(Event)                                           \ 
1460   if (yy_lac_established)                                                \ 
1463         YYFPRINTF (stderr, "LAC: initial context discarded due to "      \ 
1465       yy_lac_established = 0;                                            \ 
1469 # define YY_LAC_DISCARD(Event) yy_lac_established = 0 
1472 /* Given the stack whose top is *YYSSP, return 0 iff YYTOKEN can 
1473    eventually (after perhaps some reductions) be shifted, return 1 if 
1474    not, or return 2 if memory is exhausted.  As preconditions and 
1475    postconditions: *YYES_CAPACITY is the allocated size of the array to 
1476    which *YYES points, and either *YYES = YYESA or *YYES points to an 
1477    array allocated with YYSTACK_ALLOC.  yy_lac may overwrite the 
1478    contents of either array, alter *YYES and *YYES_CAPACITY, and free 
1479    any old *YYES other than YYESA.  */ 
1481 yy_lac (yytype_int16 
*yyesa
, yytype_int16 
**yyes
, 
1482         YYSIZE_T 
*yyes_capacity
, yytype_int16 
*yyssp
, int yytoken
) 
1484   yytype_int16 
*yyes_prev 
= yyssp
; 
1485   yytype_int16 
*yyesp 
= yyes_prev
; 
1486   YYDPRINTF ((stderr
, "LAC: checking lookahead %s:", yytname
[yytoken
])); 
1487   if (yytoken 
== YYUNDEFTOK
) 
1489       YYDPRINTF ((stderr
, " Always Err\n")); 
1494       int yyrule 
= yypact
[*yyesp
]; 
1495       if (yypact_value_is_default (yyrule
) 
1496           || (yyrule 
+= yytoken
) < 0 || YYLAST 
< yyrule
 
1497           || yycheck
[yyrule
] != yytoken
) 
1499           yyrule 
= yydefact
[*yyesp
]; 
1502               YYDPRINTF ((stderr
, " Err\n")); 
1508           yyrule 
= yytable
[yyrule
]; 
1509           if (yytable_value_is_error (yyrule
)) 
1511               YYDPRINTF ((stderr
, " Err\n")); 
1516               YYDPRINTF ((stderr
, " S%d\n", yyrule
)); 
1522         YYSIZE_T yylen 
= yyr2
[yyrule
]; 
1523         YYDPRINTF ((stderr
, " R%d", yyrule 
- 1)); 
1524         if (yyesp 
!= yyes_prev
) 
1526             YYSIZE_T yysize 
= yyesp 
- *yyes 
+ 1; 
1539           yyesp 
= yyes_prev 
-= yylen
; 
1544           int yylhs 
= yyr1
[yyrule
] - YYNTOKENS
; 
1545           yystate 
= yypgoto
[yylhs
] + *yyesp
; 
1546           if (yystate 
< 0 || YYLAST 
< yystate
 
1547               || yycheck
[yystate
] != *yyesp
) 
1548             yystate 
= yydefgoto
[yylhs
]; 
1550             yystate 
= yytable
[yystate
]; 
1552         if (yyesp 
== yyes_prev
) 
1559             if (yy_lac_stack_realloc (yyes_capacity
, 1, 
1563                                       yyes
, yyesa
, &yyesp
, yyes_prev
)) 
1565                 YYDPRINTF ((stderr
, "\n")); 
1570         YYDPRINTF ((stderr
, " G%d", yystate
)); 
1579 #  if defined __GLIBC__ && defined _STRING_H 
1580 #   define yystrlen strlen 
1582 /* Return the length of YYSTR.  */ 
1583 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1584      || defined __cplusplus || defined _MSC_VER) 
1586 yystrlen (const char *yystr
) 
1594   for (yylen 
= 0; yystr
[yylen
]; yylen
++) 
1602 #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE 
1603 #   define yystpcpy stpcpy 
1605 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in 
1607 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1608      || defined __cplusplus || defined _MSC_VER) 
1610 yystpcpy (char *yydest
, const char *yysrc
) 
1613 yystpcpy (yydest
, yysrc
) 
1619   const char *yys 
= yysrc
; 
1621   while ((*yyd
++ = *yys
++) != '\0') 
1630 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary 
1631    quotes and backslashes, so that it's suitable for yyerror.  The 
1632    heuristic is that double-quoting is unnecessary unless the string 
1633    contains an apostrophe, a comma, or backslash (other than 
1634    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is 
1635    null, do not copy; instead, return the length of what the result 
1638 yytnamerr (char *yyres
, const char *yystr
) 
1643       char const *yyp 
= yystr
; 
1650             goto do_not_strip_quotes
; 
1654               goto do_not_strip_quotes
; 
1667     do_not_strip_quotes
: ; 
1671     return yystrlen (yystr
); 
1673   return yystpcpy (yyres
, yystr
) - yyres
; 
1677 /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message 
1678    about the unexpected token YYTOKEN for the state stack whose top is 
1679    YYSSP.  In order to see if a particular token T is a 
1680    valid looakhead, invoke yy_lac (YYESA, YYES, YYES_CAPACITY, YYSSP, T). 
1682    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is 
1683    not large enough to hold the message.  In that case, also set 
1684    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the 
1685    required number of bytes is too large to store or if 
1686    yy_lac returned 2.  */ 
1688 yysyntax_error (YYSIZE_T 
*yymsg_alloc
, char **yymsg
, 
1689                 yytype_int16 
*yyesa
, yytype_int16 
**yyes
, 
1690                 YYSIZE_T 
*yyes_capacity
, yytype_int16 
*yyssp
, int yytoken
) 
1692   YYSIZE_T yysize0 
= yytnamerr (0, yytname
[yytoken
]); 
1693   YYSIZE_T yysize 
= yysize0
; 
1695   enum { YYERROR_VERBOSE_ARGS_MAXIMUM 
= 5 }; 
1696   /* Internationalized format string. */ 
1697   const char *yyformat 
= 0; 
1698   /* Arguments of yyformat. */ 
1699   char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
]; 
1700   /* Number of reported tokens (one for the "unexpected", one per 
1704   /* There are many possibilities here to consider: 
1705      - Assume YYFAIL is not used.  It's too flawed to consider.  See 
1706        <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html> 
1707        for details.  YYERROR is fine as it does not invoke this 
1709      - If this state is a consistent state with a default action, then 
1710        the only way this function was invoked is if the default action 
1711        is an error action.  In that case, don't check for expected 
1712        tokens because there are none. 
1713      - The only way there can be no lookahead present (in yychar) is if 
1714        this state is a consistent state with a default action.  Thus, 
1715        detecting the absence of a lookahead is sufficient to determine 
1716        that there is no unexpected or expected token to report.  In that 
1717        case, just report a simple "syntax error". 
1718      - Don't assume there isn't a lookahead just because this state is a 
1719        consistent state with a default action.  There might have been a 
1720        previous inconsistent state, consistent state with a non-default 
1721        action, or user semantic action that manipulated yychar. 
1722        In the first two cases, it might appear that the current syntax 
1723        error should have been detected in the previous state when yy_lac 
1724        was invoked.  However, at that time, there might have been a 
1725        different syntax error that discarded a different initial context 
1726        during error recovery, leaving behind the current lookahead. 
1728   if (yytoken 
!= YYEMPTY
) 
1730       int yyn 
= yypact
[*yyssp
]; 
1731       YYDPRINTF ((stderr
, "Constructing syntax error message\n")); 
1732       yyarg
[yycount
++] = yytname
[yytoken
]; 
1733       if (!yypact_value_is_default (yyn
)) 
1737           for (yyx 
= 0; yyx 
< YYNTOKENS
; ++yyx
) 
1738             if (yyx 
!= YYTERROR 
&& yyx 
!= YYUNDEFTOK
) 
1741                   int yy_lac_status 
= yy_lac (yyesa
, yyes
, yyes_capacity
, 
1743                   if (yy_lac_status 
== 2) 
1745                   if (yy_lac_status 
== 1) 
1748                 if (yycount 
== YYERROR_VERBOSE_ARGS_MAXIMUM
) 
1754                 yyarg
[yycount
++] = yytname
[yyx
]; 
1755                 yysize1 
= yysize 
+ yytnamerr (0, yytname
[yyx
]); 
1756                 if (! (yysize 
<= yysize1
 
1757                        && yysize1 
<= YYSTACK_ALLOC_MAXIMUM
)) 
1764         YYFPRINTF (stderr
, "No expected tokens.\n"); 
1770 # define YYCASE_(N, S)                      \ 
1774       YYCASE_(0, YY_("syntax error")); 
1775       YYCASE_(1, YY_("syntax error, unexpected %s")); 
1776       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); 
1777       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); 
1778       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); 
1779       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); 
1783   yysize1 
= yysize 
+ yystrlen (yyformat
); 
1784   if (! (yysize 
<= yysize1 
&& yysize1 
<= YYSTACK_ALLOC_MAXIMUM
)) 
1788   if (*yymsg_alloc 
< yysize
) 
1790       *yymsg_alloc 
= 2 * yysize
; 
1791       if (! (yysize 
<= *yymsg_alloc
 
1792              && *yymsg_alloc 
<= YYSTACK_ALLOC_MAXIMUM
)) 
1793         *yymsg_alloc 
= YYSTACK_ALLOC_MAXIMUM
; 
1797   /* Avoid sprintf, as that infringes on the user's name space. 
1798      Don't have undefined behavior even if the translation 
1799      produced a string with the wrong number of "%s"s.  */ 
1803     while ((*yyp 
= *yyformat
) != '\0') 
1804       if (*yyp 
== '%' && yyformat
[1] == 's' && yyi 
< yycount
) 
1806           yyp 
+= yytnamerr (yyp
, yyarg
[yyi
++]); 
1817 #endif /* YYERROR_VERBOSE */ 
1819 /*-----------------------------------------------. 
1820 | Release the memory associated to this symbol.  | 
1821 `-----------------------------------------------*/ 
1824 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1825      || defined __cplusplus || defined _MSC_VER) 
1827 yydestruct (const char *yymsg
, int yytype
, YYSTYPE 
*yyvaluep
, YYLTYPE 
*yylocationp
) 
1830 yydestruct (yymsg
, yytype
, yyvaluep
, yylocationp
) 
1834     YYLTYPE 
*yylocationp
; 
1838   YYUSE (yylocationp
); 
1842   YY_SYMBOL_PRINT (yymsg
, yytype
, yyvaluep
, yylocationp
); 
1853 /* Prevent warnings from -Wmissing-prototypes.  */ 
1854 #ifdef YYPARSE_PARAM 
1855 #if defined __STDC__ || defined __cplusplus 
1856 int yyparse (void *YYPARSE_PARAM
); 
1860 #else /* ! YYPARSE_PARAM */ 
1861 #if defined __STDC__ || defined __cplusplus 
1866 #endif /* ! YYPARSE_PARAM */ 
1873 #ifdef YYPARSE_PARAM 
1874 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1875      || defined __cplusplus || defined _MSC_VER) 
1877 yyparse (void *YYPARSE_PARAM
) 
1880 yyparse (YYPARSE_PARAM
) 
1881     void *YYPARSE_PARAM
; 
1883 #else /* ! YYPARSE_PARAM */ 
1884 #if (defined __STDC__ || defined __C99__FUNC__ \ 
1885      || defined __cplusplus || defined _MSC_VER) 
1895 /* The lookahead symbol.  */ 
1898 /* The semantic value of the lookahead symbol.  */ 
1901 /* Location data for the lookahead symbol.  */ 
1904     /* Number of syntax errors so far.  */ 
1908     /* Number of tokens to shift before error messages enabled.  */ 
1911     /* The stacks and their tools: 
1912        `yyss': related to states. 
1913        `yyvs': related to semantic values. 
1914        `yyls': related to locations. 
1916        Refer to the stacks thru separate pointers, to allow yyoverflow 
1917        to reallocate them elsewhere.  */ 
1919     /* The state stack.  */ 
1920     yytype_int16 yyssa
[YYINITDEPTH
]; 
1922     yytype_int16 
*yyssp
; 
1924     /* The semantic value stack.  */ 
1925     YYSTYPE yyvsa
[YYINITDEPTH
]; 
1929     /* The location stack.  */ 
1930     YYLTYPE yylsa
[YYINITDEPTH
]; 
1934     /* The locations where the error started and ended.  */ 
1935     YYLTYPE yyerror_range
[3]; 
1937     YYSIZE_T yystacksize
; 
1939     yytype_int16 yyesa
[20]; 
1941     YYSIZE_T yyes_capacity
; 
1943   int yy_lac_established 
= 0; 
1946   /* Lookahead token as an internal (translated) token number.  */ 
1948   /* The variables used to return semantic value and location from the 
1954   /* Buffer for error messages, and its allocated size.  */ 
1956   char *yymsg 
= yymsgbuf
; 
1957   YYSIZE_T yymsg_alloc 
= sizeof yymsgbuf
; 
1960 #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N), yylsp -= (N)) 
1962   /* The number of symbols on the RHS of the reduced rule. 
1963      Keep to zero when no symbol should be popped.  */ 
1970   yystacksize 
= YYINITDEPTH
; 
1973   yyes_capacity 
= sizeof yyesa 
/ sizeof *yyes
; 
1974   if (YYMAXDEPTH 
< yyes_capacity
) 
1975     yyes_capacity 
= YYMAXDEPTH
; 
1977   YYDPRINTF ((stderr
, "Starting parse\n")); 
1982   yychar 
= YYEMPTY
; /* Cause a token to be read.  */ 
1984   /* Initialize stack pointers. 
1985      Waste one element of value and location stack 
1986      so that they stay on the same level as the state stack. 
1987      The wasted elements are never initialized.  */ 
1992 #if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL 
1993   /* Initialize the default location before parsing starts.  */ 
1994   yylloc
.first_line   
= yylloc
.last_line   
= 1; 
1995   yylloc
.first_column 
= yylloc
.last_column 
= 1; 
1998 /* User initialization code.  */ 
2000 /* Line 1590 of yacc.c  */ 
2001 #line 105 "parse-gram.y" 
2003   /* Bison's grammar can initial empty locations, hence a default 
2004      location is needed. */ 
2005   boundary_set (&yylloc
.start
, current_file
, 1, 1); 
2006   boundary_set (&yylloc
.end
, current_file
, 1, 1); 
2009 /* Line 1590 of yacc.c  */ 
2010 #line 2011 "parse-gram.c" 
2015 /*------------------------------------------------------------. 
2016 | yynewstate -- Push a new state, which is found in yystate.  | 
2017 `------------------------------------------------------------*/ 
2019   /* In all cases, when you get here, the value and location stacks 
2020      have just been pushed.  So pushing a state here evens the stacks.  */ 
2026   if (yyss 
+ yystacksize 
- 1 <= yyssp
) 
2028       /* Get the current used size of the three stacks, in elements.  */ 
2029       YYSIZE_T yysize 
= yyssp 
- yyss 
+ 1; 
2033         /* Give user a chance to reallocate the stack.  Use copies of 
2034            these so that the &'s don't force the real ones into 
2036         YYSTYPE 
*yyvs1 
= yyvs
; 
2037         yytype_int16 
*yyss1 
= yyss
; 
2038         YYLTYPE 
*yyls1 
= yyls
; 
2040         /* Each stack pointer address is followed by the size of the 
2041            data in use in that stack, in bytes.  This used to be a 
2042            conditional around just the two extra args, but that might 
2043            be undefined if yyoverflow is a macro.  */ 
2044         yyoverflow (YY_("memory exhausted"), 
2045                     &yyss1
, yysize 
* sizeof (*yyssp
), 
2046                     &yyvs1
, yysize 
* sizeof (*yyvsp
), 
2047                     &yyls1
, yysize 
* sizeof (*yylsp
), 
2054 #else /* no yyoverflow */ 
2055 # ifndef YYSTACK_RELOCATE 
2056       goto yyexhaustedlab
; 
2058       /* Extend the stack our own way.  */ 
2059       if (YYMAXDEPTH 
<= yystacksize
) 
2060         goto yyexhaustedlab
; 
2062       if (YYMAXDEPTH 
< yystacksize
) 
2063         yystacksize 
= YYMAXDEPTH
; 
2066         yytype_int16 
*yyss1 
= yyss
; 
2067         union yyalloc 
*yyptr 
= 
2068           (union yyalloc 
*) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize
)); 
2070           goto yyexhaustedlab
; 
2071         YYSTACK_RELOCATE (yyss_alloc
, yyss
); 
2072         YYSTACK_RELOCATE (yyvs_alloc
, yyvs
); 
2073         YYSTACK_RELOCATE (yyls_alloc
, yyls
); 
2074 #  undef YYSTACK_RELOCATE 
2076           YYSTACK_FREE (yyss1
); 
2079 #endif /* no yyoverflow */ 
2081       yyssp 
= yyss 
+ yysize 
- 1; 
2082       yyvsp 
= yyvs 
+ yysize 
- 1; 
2083       yylsp 
= yyls 
+ yysize 
- 1; 
2085       YYDPRINTF ((stderr
, "Stack size increased to %lu\n", 
2086                   (unsigned long int) yystacksize
)); 
2088       if (yyss 
+ yystacksize 
- 1 <= yyssp
) 
2092   YYDPRINTF ((stderr
, "Entering state %d\n", yystate
)); 
2094   if (yystate 
== YYFINAL
) 
2104   /* Do appropriate processing given the current state.  Read a 
2105      lookahead token if we need one and don't already have one.  */ 
2107   /* First try to decide what to do without reference to lookahead token.  */ 
2108   yyn 
= yypact
[yystate
]; 
2109   if (yypact_value_is_default (yyn
)) 
2112   /* Not known => get a lookahead token if don't already have one.  */ 
2114   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */ 
2115   if (yychar 
== YYEMPTY
) 
2117       YYDPRINTF ((stderr
, "Reading a token: ")); 
2121   if (yychar 
<= YYEOF
) 
2123       yychar 
= yytoken 
= YYEOF
; 
2124       YYDPRINTF ((stderr
, "Now at end of input.\n")); 
2128       yytoken 
= YYTRANSLATE (yychar
); 
2129       YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
); 
2132   /* If the proper action on seeing token YYTOKEN is to reduce or to 
2133      detect an error, take that action.  */ 
2135   if (yyn 
< 0 || YYLAST 
< yyn 
|| yycheck
[yyn
] != yytoken
) 
2143       if (yytable_value_is_error (yyn
)) 
2150   /* Count tokens shifted since error; after three, turn off error 
2155   /* Shift the lookahead token.  */ 
2156   YY_SYMBOL_PRINT ("Shifting", yytoken
, &yylval
, &yylloc
); 
2158   /* Discard the shifted token.  */ 
2160   YY_LAC_DISCARD ("shift"); 
2168 /*-----------------------------------------------------------. 
2169 | yydefault -- do the default action for the current state.  | 
2170 `-----------------------------------------------------------*/ 
2172   yyn 
= yydefact
[yystate
]; 
2178 /*-----------------------------. 
2179 | yyreduce -- Do a reduction.  | 
2180 `-----------------------------*/ 
2182   /* yyn is the number of a rule to reduce with.  */ 
2185   /* If YYLEN is nonzero, implement the default value of the action: 
2188      Otherwise, the following line sets YYVAL to garbage. 
2189      This behavior is undocumented and Bison 
2190      users should not rely upon it.  Assigning to YYVAL 
2191      unconditionally makes the parser a bit smaller, and it avoids a 
2192      GCC warning that YYVAL may be used uninitialized.  */ 
2193   yyval 
= yyvsp
[1-yylen
]; 
2195   /* Default location.  */ 
2196   YYLLOC_DEFAULT (yyloc
, (yylsp 
- yylen
), yylen
); 
2197   YY_REDUCE_PRINT (yyn
); 
2199     int yychar_backup 
= yychar
; 
2204 /* Line 1806 of yacc.c  */ 
2205 #line 244 "parse-gram.y" 
2207       code_props plain_code
; 
2208       code_props_plain_init (&plain_code
, (yyvsp
[(1) - (1)].chars
), (yylsp
[(1) - (1)])); 
2209       code_props_translate_code (&plain_code
); 
2210       gram_scanner_last_string_free (); 
2211       muscle_code_grow (union_seen 
? "post_prologue" : "pre_prologue", 
2212                         plain_code
.code
, (yylsp
[(1) - (1)])); 
2213       code_scanner_last_string_free (); 
2219 /* Line 1806 of yacc.c  */ 
2220 #line 253 "parse-gram.y" 
2221     { debug_flag 
= true; } 
2226 /* Line 1806 of yacc.c  */ 
2227 #line 255 "parse-gram.y" 
2229       muscle_percent_define_insert ((yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].chars
), 
2230                                     MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
); 
2236 /* Line 1806 of yacc.c  */ 
2237 #line 259 "parse-gram.y" 
2238     { defines_flag 
= true; } 
2243 /* Line 1806 of yacc.c  */ 
2244 #line 261 "parse-gram.y" 
2246       defines_flag 
= true; 
2247       spec_defines_file 
= xstrdup ((yyvsp
[(2) - (2)].chars
)); 
2253 /* Line 1806 of yacc.c  */ 
2254 #line 265 "parse-gram.y" 
2255     { error_verbose 
= true; } 
2260 /* Line 1806 of yacc.c  */ 
2261 #line 266 "parse-gram.y" 
2262     { expected_sr_conflicts 
= (yyvsp
[(2) - (2)].integer
); } 
2267 /* Line 1806 of yacc.c  */ 
2268 #line 267 "parse-gram.y" 
2269     { expected_rr_conflicts 
= (yyvsp
[(2) - (2)].integer
); } 
2274 /* Line 1806 of yacc.c  */ 
2275 #line 268 "parse-gram.y" 
2276     { spec_file_prefix 
= (yyvsp
[(2) - (2)].chars
); } 
2281 /* Line 1806 of yacc.c  */ 
2282 #line 269 "parse-gram.y" 
2283     { spec_file_prefix 
= (yyvsp
[(3) - (3)].chars
); } 
2288 /* Line 1806 of yacc.c  */ 
2289 #line 271 "parse-gram.y" 
2291       nondeterministic_parser 
= true; 
2298 /* Line 1806 of yacc.c  */ 
2299 #line 276 "parse-gram.y" 
2302       code_props_symbol_action_init (&action
, (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); 
2303       code_props_translate_code (&action
); 
2304       gram_scanner_last_string_free (); 
2305       muscle_code_grow ("initial_action", action
.code
, (yylsp
[(2) - (2)])); 
2306       code_scanner_last_string_free (); 
2312 /* Line 1806 of yacc.c  */ 
2313 #line 284 "parse-gram.y" 
2314     { language_argmatch ((yyvsp
[(2) - (2)].chars
), grammar_prio
, (yylsp
[(1) - (2)])); } 
2319 /* Line 1806 of yacc.c  */ 
2320 #line 285 "parse-gram.y" 
2321     { add_param ("lex_param", (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); } 
2326 /* Line 1806 of yacc.c  */ 
2327 #line 286 "parse-gram.y" 
2328     { locations_flag 
= true; } 
2333 /* Line 1806 of yacc.c  */ 
2334 #line 287 "parse-gram.y" 
2335     { spec_name_prefix 
= (yyvsp
[(2) - (2)].chars
); } 
2340 /* Line 1806 of yacc.c  */ 
2341 #line 288 "parse-gram.y" 
2342     { spec_name_prefix 
= (yyvsp
[(3) - (3)].chars
); } 
2347 /* Line 1806 of yacc.c  */ 
2348 #line 289 "parse-gram.y" 
2349     { no_lines_flag 
= true; } 
2354 /* Line 1806 of yacc.c  */ 
2355 #line 290 "parse-gram.y" 
2356     { nondeterministic_parser 
= true; } 
2361 /* Line 1806 of yacc.c  */ 
2362 #line 291 "parse-gram.y" 
2363     { spec_outfile 
= (yyvsp
[(2) - (2)].chars
); } 
2368 /* Line 1806 of yacc.c  */ 
2369 #line 292 "parse-gram.y" 
2370     { spec_outfile 
= (yyvsp
[(3) - (3)].chars
); } 
2375 /* Line 1806 of yacc.c  */ 
2376 #line 293 "parse-gram.y" 
2377     { add_param ("parse_param", (yyvsp
[(2) - (2)].code
), (yylsp
[(2) - (2)])); } 
2382 /* Line 1806 of yacc.c  */ 
2383 #line 295 "parse-gram.y" 
2385       /* %pure-parser is deprecated in favor of `%define api.pure', so use 
2386          `%define api.pure' in a backward-compatible manner here.  First, don't 
2387          complain if %pure-parser is specified multiple times.  */ 
2388       if (!muscle_find_const ("percent_define(api.pure)")) 
2389         muscle_percent_define_insert ("api.pure", (yylsp
[(1) - (1)]), "", 
2390                                       MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
); 
2391       /* In all cases, use api.pure now so that the backend doesn't complain if 
2392          the skeleton ignores api.pure, but do warn now if there's a previous 
2393          conflicting definition from an actual %define.  */ 
2394       if (!muscle_percent_define_flag_if ("api.pure")) 
2395         muscle_percent_define_insert ("api.pure", (yylsp
[(1) - (1)]), "", 
2396                                       MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
); 
2402 /* Line 1806 of yacc.c  */ 
2403 #line 309 "parse-gram.y" 
2404     { version_check (&(yylsp
[(2) - (2)]), (yyvsp
[(2) - (2)].chars
)); } 
2409 /* Line 1806 of yacc.c  */ 
2410 #line 311 "parse-gram.y" 
2412       char const *skeleton_user 
= (yyvsp
[(2) - (2)].chars
); 
2413       if (mbschr (skeleton_user
, '/')) 
2415           size_t dir_length 
= strlen (current_file
); 
2416           char *skeleton_build
; 
2417           while (dir_length 
&& current_file
[dir_length 
- 1] != '/') 
2419           while (dir_length 
&& current_file
[dir_length 
- 1] == '/') 
2422             xmalloc (dir_length 
+ 1 + strlen (skeleton_user
) + 1); 
2425               strncpy (skeleton_build
, current_file
, dir_length
); 
2426               skeleton_build
[dir_length
++] = '/'; 
2428           strcpy (skeleton_build 
+ dir_length
, skeleton_user
); 
2429           skeleton_user 
= uniqstr_new (skeleton_build
); 
2430           free (skeleton_build
); 
2432       skeleton_arg (skeleton_user
, grammar_prio
, (yylsp
[(1) - (2)])); 
2438 /* Line 1806 of yacc.c  */ 
2439 #line 334 "parse-gram.y" 
2440     { token_table_flag 
= true; } 
2445 /* Line 1806 of yacc.c  */ 
2446 #line 335 "parse-gram.y" 
2447     { report_flag 
|= report_states
; } 
2452 /* Line 1806 of yacc.c  */ 
2453 #line 336 "parse-gram.y" 
2454     { yacc_flag 
= true; } 
2459 /* Line 1806 of yacc.c  */ 
2460 #line 344 "parse-gram.y" 
2462       grammar_start_symbol_set ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)])); 
2468 /* Line 1806 of yacc.c  */ 
2469 #line 348 "parse-gram.y" 
2472       for (list 
= (yyvsp
[(3) - (3)].list
); list
; list 
= list
->next
) 
2473         symbol_list_destructor_set (list
, (yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)])); 
2474       symbol_list_free ((yyvsp
[(3) - (3)].list
)); 
2480 /* Line 1806 of yacc.c  */ 
2481 #line 355 "parse-gram.y" 
2484       for (list 
= (yyvsp
[(3) - (3)].list
); list
; list 
= list
->next
) 
2485         symbol_list_printer_set (list
, (yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)])); 
2486       symbol_list_free ((yyvsp
[(3) - (3)].list
)); 
2492 /* Line 1806 of yacc.c  */ 
2493 #line 362 "parse-gram.y" 
2495       default_prec 
= true; 
2501 /* Line 1806 of yacc.c  */ 
2502 #line 366 "parse-gram.y" 
2504       default_prec 
= false; 
2510 /* Line 1806 of yacc.c  */ 
2511 #line 370 "parse-gram.y" 
2513       /* Do not invoke muscle_percent_code_grow here since it invokes 
2514          muscle_user_name_list_grow.  */ 
2515       muscle_code_grow ("percent_code()", (yyvsp
[(2) - (2)].chars
), (yylsp
[(2) - (2)])); 
2516       code_scanner_last_string_free (); 
2522 /* Line 1806 of yacc.c  */ 
2523 #line 377 "parse-gram.y" 
2525       muscle_percent_code_grow ((yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].chars
), (yylsp
[(3) - (3)])); 
2526       code_scanner_last_string_free (); 
2532 /* Line 1806 of yacc.c  */ 
2533 #line 391 "parse-gram.y" 
2539 /* Line 1806 of yacc.c  */ 
2540 #line 392 "parse-gram.y" 
2541     { muscle_code_grow ("union_name", (yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); } 
2546 /* Line 1806 of yacc.c  */ 
2547 #line 397 "parse-gram.y" 
2550       muscle_code_grow ("stype", (yyvsp
[(3) - (3)].chars
), (yylsp
[(3) - (3)])); 
2551       code_scanner_last_string_free (); 
2557 /* Line 1806 of yacc.c  */ 
2558 #line 408 "parse-gram.y" 
2559     { current_class 
= nterm_sym
; } 
2564 /* Line 1806 of yacc.c  */ 
2565 #line 409 "parse-gram.y" 
2567       current_class 
= unknown_sym
; 
2568       current_type 
= NULL
; 
2574 /* Line 1806 of yacc.c  */ 
2575 #line 413 "parse-gram.y" 
2576     { current_class 
= token_sym
; } 
2581 /* Line 1806 of yacc.c  */ 
2582 #line 414 "parse-gram.y" 
2584       current_class 
= unknown_sym
; 
2585       current_type 
= NULL
; 
2591 /* Line 1806 of yacc.c  */ 
2592 #line 419 "parse-gram.y" 
2596       for (list 
= (yyvsp
[(3) - (3)].list
); list
; list 
= list
->next
) 
2597         symbol_type_set (list
->content
.sym
, (yyvsp
[(2) - (3)].uniqstr
), (yylsp
[(2) - (3)])); 
2598       symbol_list_free ((yyvsp
[(3) - (3)].list
)); 
2604 /* Line 1806 of yacc.c  */ 
2605 #line 430 "parse-gram.y" 
2609       for (list 
= (yyvsp
[(3) - (3)].list
); list
; list 
= list
->next
) 
2611           symbol_type_set (list
->content
.sym
, current_type
, (yylsp
[(2) - (3)])); 
2612           symbol_precedence_set (list
->content
.sym
, current_prec
, (yyvsp
[(1) - (3)].assoc
), (yylsp
[(1) - (3)])); 
2614       symbol_list_free ((yyvsp
[(3) - (3)].list
)); 
2615       current_type 
= NULL
; 
2621 /* Line 1806 of yacc.c  */ 
2622 #line 444 "parse-gram.y" 
2623     { (yyval
.assoc
) = left_assoc
; } 
2628 /* Line 1806 of yacc.c  */ 
2629 #line 445 "parse-gram.y" 
2630     { (yyval
.assoc
) = right_assoc
; } 
2635 /* Line 1806 of yacc.c  */ 
2636 #line 446 "parse-gram.y" 
2637     { (yyval
.assoc
) = non_assoc
; } 
2642 /* Line 1806 of yacc.c  */ 
2643 #line 450 "parse-gram.y" 
2644     { current_type 
= NULL
; } 
2649 /* Line 1806 of yacc.c  */ 
2650 #line 451 "parse-gram.y" 
2651     { current_type 
= (yyvsp
[(1) - (1)].uniqstr
); tag_seen 
= true; } 
2656 /* Line 1806 of yacc.c  */ 
2657 #line 457 "parse-gram.y" 
2658     { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); } 
2663 /* Line 1806 of yacc.c  */ 
2664 #line 459 "parse-gram.y" 
2665     { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), symbol_list_sym_new ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]))); } 
2670 /* Line 1806 of yacc.c  */ 
2671 #line 463 "parse-gram.y" 
2672     { (yyval
.symbol
) = (yyvsp
[(1) - (1)].symbol
); } 
2677 /* Line 1806 of yacc.c  */ 
2678 #line 464 "parse-gram.y" 
2679     { (yyval
.symbol
) = (yyvsp
[(1) - (2)].symbol
); symbol_user_token_number_set ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].integer
), (yylsp
[(2) - (2)])); } 
2684 /* Line 1806 of yacc.c  */ 
2685 #line 470 "parse-gram.y" 
2686     { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); } 
2691 /* Line 1806 of yacc.c  */ 
2692 #line 472 "parse-gram.y" 
2693     { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), symbol_list_sym_new ((yyvsp
[(2) - (2)].symbol
), (yylsp
[(2) - (2)]))); } 
2698 /* Line 1806 of yacc.c  */ 
2699 #line 476 "parse-gram.y" 
2700     { (yyval
.list
) = (yyvsp
[(1) - (1)].list
); } 
2705 /* Line 1806 of yacc.c  */ 
2706 #line 477 "parse-gram.y" 
2707     { (yyval
.list
) = symbol_list_prepend ((yyvsp
[(1) - (2)].list
), (yyvsp
[(2) - (2)].list
)); } 
2712 /* Line 1806 of yacc.c  */ 
2713 #line 481 "parse-gram.y" 
2714     { (yyval
.list
) = symbol_list_sym_new ((yyvsp
[(1) - (1)].symbol
), (yylsp
[(1) - (1)])); } 
2719 /* Line 1806 of yacc.c  */ 
2720 #line 482 "parse-gram.y" 
2721     { (yyval
.list
) = symbol_list_type_new ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); } 
2726 /* Line 1806 of yacc.c  */ 
2727 #line 483 "parse-gram.y" 
2728     { (yyval
.list
) = symbol_list_default_tagged_new ((yylsp
[(1) - (1)])); } 
2733 /* Line 1806 of yacc.c  */ 
2734 #line 484 "parse-gram.y" 
2735     { (yyval
.list
) = symbol_list_default_tagless_new ((yylsp
[(1) - (1)])); } 
2740 /* Line 1806 of yacc.c  */ 
2741 #line 490 "parse-gram.y" 
2743        current_type 
= (yyvsp
[(1) - (1)].uniqstr
); 
2750 /* Line 1806 of yacc.c  */ 
2751 #line 495 "parse-gram.y" 
2753        symbol_class_set ((yyvsp
[(1) - (1)].symbol
), current_class
, (yylsp
[(1) - (1)]), true); 
2754        symbol_type_set ((yyvsp
[(1) - (1)].symbol
), current_type
, (yylsp
[(1) - (1)])); 
2760 /* Line 1806 of yacc.c  */ 
2761 #line 500 "parse-gram.y" 
2763       symbol_class_set ((yyvsp
[(1) - (2)].symbol
), current_class
, (yylsp
[(1) - (2)]), true); 
2764       symbol_type_set ((yyvsp
[(1) - (2)].symbol
), current_type
, (yylsp
[(1) - (2)])); 
2765       symbol_user_token_number_set ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].integer
), (yylsp
[(2) - (2)])); 
2771 /* Line 1806 of yacc.c  */ 
2772 #line 506 "parse-gram.y" 
2774       symbol_class_set ((yyvsp
[(1) - (2)].symbol
), current_class
, (yylsp
[(1) - (2)]), true); 
2775       symbol_type_set ((yyvsp
[(1) - (2)].symbol
), current_type
, (yylsp
[(1) - (2)])); 
2776       symbol_make_alias ((yyvsp
[(1) - (2)].symbol
), (yyvsp
[(2) - (2)].symbol
), (yyloc
)); 
2782 /* Line 1806 of yacc.c  */ 
2783 #line 512 "parse-gram.y" 
2785       symbol_class_set ((yyvsp
[(1) - (3)].symbol
), current_class
, (yylsp
[(1) - (3)]), true); 
2786       symbol_type_set ((yyvsp
[(1) - (3)].symbol
), current_type
, (yylsp
[(1) - (3)])); 
2787       symbol_user_token_number_set ((yyvsp
[(1) - (3)].symbol
), (yyvsp
[(2) - (3)].integer
), (yylsp
[(2) - (3)])); 
2788       symbol_make_alias ((yyvsp
[(1) - (3)].symbol
), (yyvsp
[(3) - (3)].symbol
), (yyloc
)); 
2794 /* Line 1806 of yacc.c  */ 
2795 #line 542 "parse-gram.y" 
2803 /* Line 1806 of yacc.c  */ 
2804 #line 548 "parse-gram.y" 
2805     { current_lhs ((yyvsp
[(1) - (2)].symbol
), (yylsp
[(1) - (2)]), (yyvsp
[(2) - (2)].named_ref
)); } 
2810 /* Line 1806 of yacc.c  */ 
2811 #line 549 "parse-gram.y" 
2813     /* Free the current lhs. */ 
2814     current_lhs (0, (yylsp
[(1) - (4)]), 0); 
2820 /* Line 1806 of yacc.c  */ 
2821 #line 556 "parse-gram.y" 
2822     { grammar_current_rule_end ((yylsp
[(1) - (1)])); } 
2827 /* Line 1806 of yacc.c  */ 
2828 #line 557 "parse-gram.y" 
2829     { grammar_current_rule_end ((yylsp
[(3) - (3)])); } 
2834 /* Line 1806 of yacc.c  */ 
2835 #line 563 "parse-gram.y" 
2836     { grammar_current_rule_begin (current_lhs_symbol
, current_lhs_location
, 
2837                                   current_lhs_named_ref
); } 
2842 /* Line 1806 of yacc.c  */ 
2843 #line 566 "parse-gram.y" 
2844     { grammar_current_rule_symbol_append ((yyvsp
[(2) - (3)].symbol
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].named_ref
)); } 
2849 /* Line 1806 of yacc.c  */ 
2850 #line 568 "parse-gram.y" 
2851     { grammar_current_rule_action_append ((yyvsp
[(2) - (3)].code
), (yylsp
[(2) - (3)]), (yyvsp
[(3) - (3)].named_ref
)); } 
2856 /* Line 1806 of yacc.c  */ 
2857 #line 570 "parse-gram.y" 
2858     { grammar_current_rule_prec_set ((yyvsp
[(3) - (3)].symbol
), (yylsp
[(3) - (3)])); } 
2863 /* Line 1806 of yacc.c  */ 
2864 #line 572 "parse-gram.y" 
2865     { grammar_current_rule_dprec_set ((yyvsp
[(3) - (3)].integer
), (yylsp
[(3) - (3)])); } 
2870 /* Line 1806 of yacc.c  */ 
2871 #line 574 "parse-gram.y" 
2872     { grammar_current_rule_merge_set ((yyvsp
[(3) - (3)].uniqstr
), (yylsp
[(3) - (3)])); } 
2877 /* Line 1806 of yacc.c  */ 
2878 #line 578 "parse-gram.y" 
2879     { (yyval
.named_ref
) = 0; } 
2884 /* Line 1806 of yacc.c  */ 
2885 #line 580 "parse-gram.y" 
2886     { (yyval
.named_ref
) = named_ref_new((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); } 
2891 /* Line 1806 of yacc.c  */ 
2892 #line 592 "parse-gram.y" 
2893     { (yyval
.uniqstr
) = uniqstr_new ((yyvsp
[(1) - (1)].chars
)); } 
2898 /* Line 1806 of yacc.c  */ 
2899 #line 597 "parse-gram.y" 
2900     { (yyval
.chars
) = ""; } 
2905 /* Line 1806 of yacc.c  */ 
2906 #line 598 "parse-gram.y" 
2907     { (yyval
.chars
) = (yyvsp
[(1) - (1)].uniqstr
); } 
2912 /* Line 1806 of yacc.c  */ 
2913 #line 609 "parse-gram.y" 
2915       code_props plain_code
; 
2916       (yyvsp
[(1) - (1)].code
)[strlen ((yyvsp
[(1) - (1)].code
)) - 1] = '\n'; 
2917       code_props_plain_init (&plain_code
, (yyvsp
[(1) - (1)].code
)+1, (yylsp
[(1) - (1)])); 
2918       code_props_translate_code (&plain_code
); 
2919       gram_scanner_last_string_free (); 
2920       (yyval
.chars
) = plain_code
.code
; 
2926 /* Line 1806 of yacc.c  */ 
2927 #line 629 "parse-gram.y" 
2928     { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); } 
2933 /* Line 1806 of yacc.c  */ 
2934 #line 631 "parse-gram.y" 
2936       (yyval
.symbol
) = symbol_get (char_name ((yyvsp
[(1) - (1)].character
)), (yylsp
[(1) - (1)])); 
2937       symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[(1) - (1)]), false); 
2938       symbol_user_token_number_set ((yyval
.symbol
), (yyvsp
[(1) - (1)].character
), (yylsp
[(1) - (1)])); 
2944 /* Line 1806 of yacc.c  */ 
2945 #line 639 "parse-gram.y" 
2946     { (yyval
.symbol
) = symbol_from_uniqstr ((yyvsp
[(1) - (1)].uniqstr
), (yylsp
[(1) - (1)])); } 
2951 /* Line 1806 of yacc.c  */ 
2952 #line 651 "parse-gram.y" 
2954       (yyval
.symbol
) = symbol_get (quotearg_style (c_quoting_style
, (yyvsp
[(1) - (1)].chars
)), (yylsp
[(1) - (1)])); 
2955       symbol_class_set ((yyval
.symbol
), token_sym
, (yylsp
[(1) - (1)]), false); 
2961 /* Line 1806 of yacc.c  */ 
2962 #line 660 "parse-gram.y" 
2964       code_props plain_code
; 
2965       code_props_plain_init (&plain_code
, (yyvsp
[(2) - (2)].chars
), (yylsp
[(2) - (2)])); 
2966       code_props_translate_code (&plain_code
); 
2967       gram_scanner_last_string_free (); 
2968       muscle_code_grow ("epilogue", plain_code
.code
, (yylsp
[(2) - (2)])); 
2969       code_scanner_last_string_free (); 
2975 /* Line 1806 of yacc.c  */ 
2976 #line 2977 "parse-gram.c" 
2979     if (yychar_backup 
!= yychar
) 
2980       YY_LAC_DISCARD ("yychar change"); 
2982   /* User semantic actions sometimes alter yychar, and that requires 
2983      that yytoken be updated with the new translation.  We take the 
2984      approach of translating immediately before every use of yytoken. 
2985      One alternative is translating here after every semantic action, 
2986      but that translation would be missed if the semantic action invokes 
2987      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or 
2988      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an 
2989      incorrect destructor might then be invoked immediately.  In the 
2990      case of YYERROR or YYBACKUP, subsequent parser actions might lead 
2991      to an incorrect destructor call or verbose syntax error message 
2992      before the lookahead is translated.  */ 
2993   YY_SYMBOL_PRINT ("-> $$ =", yyr1
[yyn
], &yyval
, &yyloc
); 
2997   YY_STACK_PRINT (yyss
, yyssp
); 
3002   /* Now `shift' the result of the reduction.  Determine what state 
3003      that goes to, based on the state we popped back to and the rule 
3004      number reduced by.  */ 
3008   yystate 
= yypgoto
[yyn 
- YYNTOKENS
] + *yyssp
; 
3009   if (0 <= yystate 
&& yystate 
<= YYLAST 
&& yycheck
[yystate
] == *yyssp
) 
3010     yystate 
= yytable
[yystate
]; 
3012     yystate 
= yydefgoto
[yyn 
- YYNTOKENS
]; 
3017 /*------------------------------------. 
3018 | yyerrlab -- here on detecting error | 
3019 `------------------------------------*/ 
3021   /* Make sure we have latest lookahead translation.  See comments at 
3022      user semantic actions for why this is necessary.  */ 
3023   yytoken 
= yychar 
== YYEMPTY 
? YYEMPTY 
: YYTRANSLATE (yychar
); 
3025   /* If not already recovering from an error, report this error.  */ 
3029 #if ! YYERROR_VERBOSE 
3030       yyerror (YY_("syntax error")); 
3032 # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ 
3033                                         yyesa, &yyes, &yyes_capacity, \ 
3036         char const *yymsgp 
= YY_("syntax error"); 
3037         int yysyntax_error_status
; 
3038         if (yychar 
!= YYEMPTY
) 
3040         yysyntax_error_status 
= YYSYNTAX_ERROR
; 
3041         if (yysyntax_error_status 
== 0) 
3043         else if (yysyntax_error_status 
== 1) 
3045             if (yymsg 
!= yymsgbuf
) 
3046               YYSTACK_FREE (yymsg
); 
3047             yymsg 
= (char *) YYSTACK_ALLOC (yymsg_alloc
); 
3051                 yymsg_alloc 
= sizeof yymsgbuf
; 
3052                 yysyntax_error_status 
= 2; 
3056                 yysyntax_error_status 
= YYSYNTAX_ERROR
; 
3061         if (yysyntax_error_status 
== 2) 
3062           goto yyexhaustedlab
; 
3064 # undef YYSYNTAX_ERROR 
3068   yyerror_range
[1] = yylloc
; 
3070   if (yyerrstatus 
== 3) 
3072       /* If just tried and failed to reuse lookahead token after an 
3073          error, discard it.  */ 
3075       if (yychar 
<= YYEOF
) 
3077           /* Return failure if at end of input.  */ 
3078           if (yychar 
== YYEOF
) 
3083           yydestruct ("Error: discarding", 
3084                       yytoken
, &yylval
, &yylloc
); 
3089   /* Else will try to reuse lookahead token after shifting the error 
3094 /*---------------------------------------------------. 
3095 | yyerrorlab -- error raised explicitly by YYERROR.  | 
3096 `---------------------------------------------------*/ 
3099   /* Pacify compilers like GCC when the user code never invokes 
3100      YYERROR and the label yyerrorlab therefore never appears in user 
3102   if (/*CONSTCOND*/ 0) 
3105   yyerror_range
[1] = yylsp
[1-yylen
]; 
3106   /* Do not reclaim the symbols of the rule which action triggered 
3110   YY_STACK_PRINT (yyss
, yyssp
); 
3115 /*-------------------------------------------------------------. 
3116 | yyerrlab1 -- common code for both syntax error and YYERROR.  | 
3117 `-------------------------------------------------------------*/ 
3119   yyerrstatus 
= 3;      /* Each real token shifted decrements this.  */ 
3123       yyn 
= yypact
[yystate
]; 
3124       if (!yypact_value_is_default (yyn
)) 
3127           if (0 <= yyn 
&& yyn 
<= YYLAST 
&& yycheck
[yyn
] == YYTERROR
) 
3135       /* Pop the current state because it cannot handle the error token.  */ 
3139       yyerror_range
[1] = *yylsp
; 
3140       yydestruct ("Error: popping", 
3141                   yystos
[yystate
], yyvsp
, yylsp
); 
3144       YY_STACK_PRINT (yyss
, yyssp
); 
3147   /* If the stack popping above didn't lose the initial context for the 
3148      current lookahead token, the shift below will for sure.  */ 
3149   YY_LAC_DISCARD ("error recovery"); 
3153   yyerror_range
[2] = yylloc
; 
3154   /* Using YYLLOC is tempting, but would change the location of 
3155      the lookahead.  YYLOC is available though.  */ 
3156   YYLLOC_DEFAULT (yyloc
, yyerror_range
, 2); 
3159   /* Shift the error token.  */ 
3160   YY_SYMBOL_PRINT ("Shifting", yystos
[yyn
], yyvsp
, yylsp
); 
3166 /*-------------------------------------. 
3167 | yyacceptlab -- YYACCEPT comes here.  | 
3168 `-------------------------------------*/ 
3173 /*-----------------------------------. 
3174 | yyabortlab -- YYABORT comes here.  | 
3175 `-----------------------------------*/ 
3181 /*-------------------------------------------------. 
3182 | yyexhaustedlab -- memory exhaustion comes here.  | 
3183 `-------------------------------------------------*/ 
3185   yyerror (YY_("memory exhausted")); 
3191   if (yychar 
!= YYEMPTY
) 
3193       /* Make sure we have latest lookahead translation.  See comments at 
3194          user semantic actions for why this is necessary.  */ 
3195       yytoken 
= YYTRANSLATE (yychar
); 
3196       yydestruct ("Cleanup: discarding lookahead", 
3197                   yytoken
, &yylval
, &yylloc
); 
3199   /* Do not reclaim the symbols of the rule which action triggered 
3200      this YYABORT or YYACCEPT.  */ 
3202   YY_STACK_PRINT (yyss
, yyssp
); 
3203   while (yyssp 
!= yyss
) 
3205       yydestruct ("Cleanup: popping", 
3206                   yystos
[*yyssp
], yyvsp
, yylsp
); 
3211     YYSTACK_FREE (yyss
); 
3214     YYSTACK_FREE (yyes
); 
3216   if (yymsg 
!= yymsgbuf
) 
3217     YYSTACK_FREE (yymsg
); 
3219   /* Make sure YYID is used.  */ 
3220   return YYID (yyresult
); 
3225 /* Line 2067 of yacc.c  */ 
3226 #line 670 "parse-gram.y" 
3230 /* Return the location of the left-hand side of a rule whose 
3231    right-hand side is RHS[1] ... RHS[N].  Ignore empty nonterminals in 
3232    the right-hand side, and return an empty location equal to the end 
3233    boundary of RHS[0] if the right-hand side is empty.  */ 
3236 lloc_default (YYLTYPE 
const *rhs
, int n
) 
3241   /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;". 
3242      The bug is fixed in 7.4.2m, but play it safe for now.  */ 
3243   loc
.start 
= rhs
[n
].end
; 
3244   loc
.end 
= rhs
[n
].end
; 
3246   /* Ignore empty nonterminals the start of the right-hand side. 
3247      Do not bother to ignore them at the end of the right-hand side, 
3248      since empty nonterminals have the same end as their predecessors.  */ 
3249   for (i 
= 1; i 
<= n
; i
++) 
3250     if (! equal_boundaries (rhs
[i
].start
, rhs
[i
].end
)) 
3252         loc
.start 
= rhs
[i
].start
; 
3260 /* Add a lex-param or a parse-param (depending on TYPE) with 
3261    declaration DECL and location LOC.  */ 
3264 add_param (char const *type
, char *decl
, location loc
) 
3266   static char const alphanum
[26 + 26 + 1 + 10] = 
3267     "abcdefghijklmnopqrstuvwxyz" 
3268     "ABCDEFGHIJKLMNOPQRSTUVWXYZ" 
3271   char const *name_start 
= NULL
; 
3274   /* Stop on last actual character.  */ 
3275   for (p 
= decl
; p
[1]; p
++) 
3277          || ! memchr (alphanum
, p
[-1], sizeof alphanum
)) 
3278         && memchr (alphanum
, p
[0], sizeof alphanum 
- 10)) 
3281   /* Strip the surrounding '{' and '}', and any blanks just inside 
3283   while (*--p 
== ' ' || *p 
== '\t') 
3286   while (*++decl 
== ' ' || *decl 
== '\t') 
3290     complain_at (loc
, _("missing identifier in parameter declaration")); 
3297            memchr (alphanum
, name_start
[name_len
], sizeof alphanum
); 
3301       name 
= xmalloc (name_len 
+ 1); 
3302       memcpy (name
, name_start
, name_len
); 
3303       name
[name_len
] = '\0'; 
3304       muscle_pair_list_grow (type
, decl
, name
); 
3308   gram_scanner_last_string_free (); 
3313 version_check (location 
const *loc
, char const *version
) 
3315   if (strverscmp (version
, PACKAGE_VERSION
) > 0) 
3317       complain_at (*loc
, "require bison %s, but have %s", 
3318                    version
, PACKAGE_VERSION
); 
3324 gram_error (location 
const *loc
, char const *msg
) 
3326   complain_at (*loc
, "%s", msg
); 
3330 token_name (int type
) 
3332   return yytname
[YYTRANSLATE (type
)]; 
3343       buf
[0] = '\''; buf
[1] = c
; buf
[2] = '\''; buf
[3] = '\0'; 
3344       return quotearg_style (escape_quoting_style
, buf
);