1 /* A Bison parser, made by GNU Bison 1.875b. */
3 /* Skeleton parser for Yacc-like parsing with Bison,
4 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* As a special exception, when this file is copied by Bison into a
22 Bison output file, you may use that output file without restriction.
23 This special exception was added by the Free Software Foundation
24 in version 1.24 of Bison. */
26 /* Written by Richard Stallman by simplifying the original so called
27 ``semantic'' parser. */
29 /* All symbols defined below should begin with yy or YY, to avoid
30 infringing on user name space. This should be done even for local
31 variables, as they might otherwise be expanded by user macros.
32 There are some unavoidable exceptions within include files to
33 define necessary library symbols; they are noted "INFRINGES ON
34 USER NAME SPACE" below. */
36 /* Identify Bison output. */
40 #define YYSKELETON_NAME "yacc.c"
45 /* Using locations. */
46 #define YYLSP_NEEDED 1
48 /* If NAME_PREFIX is specified substitute the variables and functions
50 #define yyparse gram_parse
51 #define yylex gram_lex
52 #define yyerror gram_error
53 #define yylval gram_lval
54 #define yychar gram_char
55 #define yydebug gram_debug
56 #define yynerrs gram_nerrs
57 #define yylloc gram_lloc
62 /* Put the tokens into the symbol table, so that GDB and other debuggers
71 PERCENT_DESTRUCTOR
= 263,
72 PERCENT_PRINTER
= 264,
76 PERCENT_NONASSOC
= 268,
82 PERCENT_DEFINES
= 274,
83 PERCENT_ERROR_VERBOSE
= 275,
85 PERCENT_FILE_PREFIX
= 277,
86 PERCENT_GLR_PARSER
= 278,
87 PERCENT_LEX_PARAM
= 279,
88 PERCENT_LOCATIONS
= 280,
89 PERCENT_NAME_PREFIX
= 281,
90 PERCENT_NO_LINES
= 282,
91 PERCENT_NONDETERMINISTIC_PARSER
= 283,
93 PERCENT_PARSE_PARAM
= 285,
94 PERCENT_PURE_PARSER
= 286,
95 PERCENT_SKELETON
= 287,
97 PERCENT_TOKEN_TABLE
= 289,
98 PERCENT_VERBOSE
= 290,
106 PERCENT_PERCENT
= 298,
115 #define PERCENT_TOKEN 260
116 #define PERCENT_NTERM 261
117 #define PERCENT_TYPE 262
118 #define PERCENT_DESTRUCTOR 263
119 #define PERCENT_PRINTER 264
120 #define PERCENT_UNION 265
121 #define PERCENT_LEFT 266
122 #define PERCENT_RIGHT 267
123 #define PERCENT_NONASSOC 268
124 #define PERCENT_PREC 269
125 #define PERCENT_DPREC 270
126 #define PERCENT_MERGE 271
127 #define PERCENT_DEBUG 272
128 #define PERCENT_DEFINE 273
129 #define PERCENT_DEFINES 274
130 #define PERCENT_ERROR_VERBOSE 275
131 #define PERCENT_EXPECT 276
132 #define PERCENT_FILE_PREFIX 277
133 #define PERCENT_GLR_PARSER 278
134 #define PERCENT_LEX_PARAM 279
135 #define PERCENT_LOCATIONS 280
136 #define PERCENT_NAME_PREFIX 281
137 #define PERCENT_NO_LINES 282
138 #define PERCENT_NONDETERMINISTIC_PARSER 283
139 #define PERCENT_OUTPUT 284
140 #define PERCENT_PARSE_PARAM 285
141 #define PERCENT_PURE_PARSER 286
142 #define PERCENT_SKELETON 287
143 #define PERCENT_START 288
144 #define PERCENT_TOKEN_TABLE 289
145 #define PERCENT_VERBOSE 290
146 #define PERCENT_YACC 291
149 #define SEMICOLON 294
153 #define PERCENT_PERCENT 298
156 #define BRACED_CODE 301
161 /* Copy the first part of user declarations. */
162 #line 32 "parse-gram.y"
166 #include "complain.h"
167 #include "conflicts.h"
171 #include "muscle_tab.h"
176 /* Produce verbose syntax errors. */
177 #define YYERROR_VERBOSE 1
179 #define YYLLOC_DEFAULT(Current, Rhs, N) (Current) = lloc_default (Rhs, N)
180 static YYLTYPE
lloc_default (YYLTYPE
const *, int);
182 /* Request detailed syntax error messages, and pass them to GRAM_ERROR.
183 FIXME: depends on the undocumented availability of YYLLOC. */
185 #define yyerror(Msg) \
186 gram_error (&yylloc, Msg)
187 static void gram_error (location
const *, char const *);
189 #define YYPRINT(File, Type, Value) \
190 print_token_value (File, Type, &Value)
191 static void print_token_value (FILE *, int, YYSTYPE
const *);
193 static void add_param (char const *, char *, location
);
195 symbol_class current_class
= unknown_sym
;
196 uniqstr current_type
= 0;
198 location current_lhs_location
;
200 int current_prec
= 0;
203 /* Enabling traces. */
208 /* Enabling verbose error messages. */
209 #ifdef YYERROR_VERBOSE
210 # undef YYERROR_VERBOSE
211 # define YYERROR_VERBOSE 1
213 # define YYERROR_VERBOSE 0
216 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
217 #line 75 "parse-gram.y"
218 typedef union YYSTYPE
{
226 /* Line 191 of yacc.c. */
227 #line 228 "parse-gram.c"
228 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
229 # define YYSTYPE_IS_DECLARED 1
230 # define YYSTYPE_IS_TRIVIAL 1
233 #if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
234 typedef struct YYLTYPE
241 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
242 # define YYLTYPE_IS_DECLARED 1
243 # define YYLTYPE_IS_TRIVIAL 1
247 /* Copy the second part of user declarations. */
250 /* Line 214 of yacc.c. */
251 #line 252 "parse-gram.c"
253 #if ! defined (yyoverflow) || YYERROR_VERBOSE
255 /* The parser invokes alloca or malloc; define the necessary symbols. */
257 # if YYSTACK_USE_ALLOCA
258 # define YYSTACK_ALLOC alloca
260 # ifndef YYSTACK_USE_ALLOCA
261 # if defined (alloca) || defined (_ALLOCA_H)
262 # define YYSTACK_ALLOC alloca
265 # define YYSTACK_ALLOC __builtin_alloca
271 # ifdef YYSTACK_ALLOC
272 /* Pacify GCC's `empty if-body' warning. */
273 # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
275 # if defined (__STDC__) || defined (__cplusplus)
276 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
277 # define YYSIZE_T size_t
279 # define YYSTACK_ALLOC malloc
280 # define YYSTACK_FREE free
282 #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
285 #if (! defined (yyoverflow) \
286 && (! defined (__cplusplus) \
287 || (YYLTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
289 /* A type that is properly aligned for any stack member. */
297 /* The size of the maximum gap between one aligned stack and the next. */
298 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
300 /* The size of an array large to enough to hold all stacks, each with
302 # define YYSTACK_BYTES(N) \
303 ((N) * (sizeof (short) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
304 + 2 * YYSTACK_GAP_MAXIMUM)
306 /* Copy COUNT objects from FROM to TO. The source and destination do
310 # define YYCOPY(To, From, Count) \
311 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
313 # define YYCOPY(To, From, Count) \
316 register YYSIZE_T yyi; \
317 for (yyi = 0; yyi < (Count); yyi++) \
318 (To)[yyi] = (From)[yyi]; \
324 /* Relocate STACK from its old location to the new one. The
325 local variables YYSIZE and YYSTACKSIZE give the old and new number of
326 elements in the stack, and YYPTR gives the new location of the
327 stack. Advance YYPTR to a properly aligned location for the next
329 # define YYSTACK_RELOCATE(Stack) \
332 YYSIZE_T yynewbytes; \
333 YYCOPY (&yyptr->Stack, Stack, yysize); \
334 Stack = &yyptr->Stack; \
335 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
336 yyptr += yynewbytes / sizeof (*yyptr); \
342 #if defined (__STDC__) || defined (__cplusplus)
343 typedef signed char yysigned_char
;
345 typedef short yysigned_char
;
348 /* YYFINAL -- State number of the termination state. */
350 /* YYLAST -- Last index in YYTABLE. */
353 /* YYNTOKENS -- Number of terminals. */
355 /* YYNNTS -- Number of nonterminals. */
357 /* YYNRULES -- Number of rules. */
359 /* YYNRULES -- Number of states. */
360 #define YYNSTATES 102
362 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
364 #define YYMAXUTOK 301
366 #define YYTRANSLATE(YYX) \
367 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
369 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
370 static const unsigned char yytranslate
[] =
372 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
373 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
374 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
375 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
376 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
377 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
378 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
379 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
380 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
381 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
382 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
383 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
384 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
385 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
386 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
387 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
388 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
389 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
390 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
391 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
392 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
393 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
394 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
395 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
396 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
397 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
398 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
399 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
400 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
401 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
406 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
408 static const unsigned char yyprhs
[] =
410 0, 0, 3, 8, 9, 12, 14, 16, 18, 22,
411 24, 26, 29, 33, 35, 37, 39, 43, 45, 47,
412 51, 53, 55, 58, 60, 62, 64, 66, 68, 70,
413 73, 75, 78, 81, 82, 86, 87, 91, 95, 99,
414 101, 103, 105, 106, 108, 110, 113, 115, 117, 120,
415 123, 127, 129, 132, 134, 137, 139, 141, 144, 146,
416 147, 151, 153, 157, 158, 161, 164, 168, 172, 176,
417 178, 180, 182, 184, 186, 187
420 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
421 static const yysigned_char yyrhs
[] =
423 48, 0, -1, 49, 43, 61, 71, -1, -1, 49,
424 50, -1, 51, -1, 44, -1, 17, -1, 18, 70,
425 70, -1, 19, -1, 20, -1, 21, 4, -1, 22,
426 38, 70, -1, 23, -1, 24, -1, 25, -1, 26,
427 38, 70, -1, 27, -1, 28, -1, 29, 38, 70,
428 -1, 30, -1, 31, -1, 32, 70, -1, 34, -1,
429 35, -1, 36, -1, 39, -1, 55, -1, 52, -1,
430 33, 67, -1, 10, -1, 8, 58, -1, 9, 58,
431 -1, -1, 6, 53, 60, -1, -1, 5, 54, 60,
432 -1, 7, 37, 58, -1, 56, 57, 58, -1, 11,
433 -1, 12, -1, 13, -1, -1, 37, -1, 67, -1,
434 58, 67, -1, 37, -1, 41, -1, 41, 4, -1,
435 41, 69, -1, 41, 4, 69, -1, 59, -1, 60,
436 59, -1, 62, -1, 61, 62, -1, 63, -1, 51,
437 -1, 1, 39, -1, 39, -1, -1, 42, 64, 65,
438 -1, 66, -1, 65, 40, 66, -1, -1, 66, 67,
439 -1, 66, 68, -1, 66, 14, 67, -1, 66, 15,
440 4, -1, 66, 16, 37, -1, 41, -1, 69, -1,
441 46, -1, 3, -1, 3, -1, -1, 43, 45, -1
444 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
445 static const unsigned short yyrline
[] =
447 0, 162, 162, 170, 172, 176, 177, 178, 179, 180,
448 181, 182, 183, 184, 186, 187, 188, 189, 190, 191,
449 192, 193, 194, 195, 196, 197, 198, 202, 203, 204,
450 208, 214, 221, 231, 231, 236, 236, 241, 251, 266,
451 267, 268, 272, 273, 279, 280, 285, 289, 294, 300,
452 306, 317, 318, 327, 328, 334, 335, 340, 344, 348,
453 348, 352, 353, 358, 359, 361, 363, 365, 367, 372,
454 373, 377, 383, 392, 399, 401
458 #if YYDEBUG || YYERROR_VERBOSE
459 /* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
460 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
461 static const char *const yytname
[] =
463 "\"end of file\"", "error", "$undefined", "\"string\"", "\"integer\"",
464 "\"%token\"", "\"%nterm\"", "\"%type\"", "\"%destructor {...}\"",
465 "\"%printer {...}\"", "\"%union {...}\"", "\"%left\"", "\"%right\"",
466 "\"%nonassoc\"", "\"%prec\"", "\"%dprec\"", "\"%merge\"", "\"%debug\"",
467 "\"%define\"", "\"%defines\"", "\"%error-verbose\"", "\"%expect\"",
468 "\"%file-prefix\"", "\"%glr-parser\"", "\"%lex-param {...}\"",
469 "\"%locations\"", "\"%name-prefix\"", "\"%no-lines\"",
470 "\"%nondeterministic-parser\"", "\"%output\"", "\"%parse-param {...}\"",
471 "\"%pure-parser\"", "\"%skeleton\"", "\"%start\"", "\"%token-table\"",
472 "\"%verbose\"", "\"%yacc\"", "\"type\"", "\"=\"", "\";\"", "\"|\"",
473 "\"identifier\"", "\"identifier:\"", "\"%%\"", "\"%{...%}\"",
474 "\"epilogue\"", "\"{...}\"", "$accept", "input", "declarations",
475 "declaration", "grammar_declaration", "symbol_declaration", "@1", "@2",
476 "precedence_declaration", "precedence_declarator", "type.opt",
477 "symbols.1", "symbol_def", "symbol_defs.1", "grammar",
478 "rules_or_grammar_declaration", "rules", "@3", "rhses.1", "rhs",
479 "symbol", "action", "string_as_id", "string_content", "epilogue.opt", 0
484 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
486 static const unsigned short yytoknum
[] =
488 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
489 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
490 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
491 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
492 295, 296, 297, 298, 299, 300, 301
496 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
497 static const unsigned char yyr1
[] =
499 0, 47, 48, 49, 49, 50, 50, 50, 50, 50,
500 50, 50, 50, 50, 50, 50, 50, 50, 50, 50,
501 50, 50, 50, 50, 50, 50, 50, 51, 51, 51,
502 51, 51, 51, 53, 52, 54, 52, 52, 55, 56,
503 56, 56, 57, 57, 58, 58, 59, 59, 59, 59,
504 59, 60, 60, 61, 61, 62, 62, 62, 62, 64,
505 63, 65, 65, 66, 66, 66, 66, 66, 66, 67,
506 67, 68, 69, 70, 71, 71
509 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
510 static const unsigned char yyr2
[] =
512 0, 2, 4, 0, 2, 1, 1, 1, 3, 1,
513 1, 2, 3, 1, 1, 1, 3, 1, 1, 3,
514 1, 1, 2, 1, 1, 1, 1, 1, 1, 2,
515 1, 2, 2, 0, 3, 0, 3, 3, 3, 1,
516 1, 1, 0, 1, 1, 2, 1, 1, 2, 2,
517 3, 1, 2, 1, 2, 1, 1, 2, 1, 0,
518 3, 1, 3, 0, 2, 2, 3, 3, 3, 1,
522 /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
523 STATE-NUM when YYTABLE doesn't specify something else to do. Zero
524 means the default is an error. */
525 static const unsigned char yydefact
[] =
527 3, 0, 0, 1, 35, 33, 0, 0, 0, 30,
528 39, 40, 41, 7, 0, 9, 10, 0, 0, 13,
529 14, 15, 0, 17, 18, 0, 20, 21, 0, 0,
530 23, 24, 25, 26, 0, 6, 4, 5, 28, 27,
531 42, 0, 0, 0, 72, 69, 31, 44, 70, 32,
532 73, 0, 11, 0, 0, 0, 22, 29, 0, 58,
533 59, 56, 0, 53, 55, 43, 0, 46, 47, 51,
534 36, 34, 37, 45, 8, 12, 16, 19, 57, 63,
535 0, 54, 2, 38, 48, 49, 52, 60, 61, 75,
536 50, 63, 0, 0, 0, 71, 64, 65, 62, 66,
540 /* YYDEFGOTO[NTERM-NUM]. */
541 static const yysigned_char yydefgoto
[] =
543 -1, 1, 2, 36, 61, 38, 42, 41, 39, 40,
544 66, 46, 69, 70, 62, 63, 64, 79, 87, 88,
548 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
550 #define YYPACT_NINF -65
551 static const yysigned_char yypact
[] =
553 -65, 27, 103, -65, -65, -65, -15, -2, -2, -65,
554 -65, -65, -65, -65, 25, -65, -65, 28, -5, -65,
555 -65, -65, -3, -65, -65, 0, -65, -65, 25, -2,
556 -65, -65, -65, -65, 65, -65, -65, -65, -65, -65,
557 4, -18, -18, -2, -65, -65, -2, -65, -65, -2,
558 -65, 25, -65, 25, 25, 25, -65, -65, 1, -65,
559 -65, -65, 3, -65, -65, -65, -2, -65, 22, -65,
560 -18, -18, -2, -65, -65, -65, -65, -65, -65, -65,
561 -11, -65, -65, -2, 41, -65, -65, 8, 15, -65,
562 -65, -65, -2, 48, 16, -65, -65, -65, 15, -65,
566 /* YYPGOTO[NTERM-NUM]. */
567 static const yysigned_char yypgoto
[] =
569 -65, -65, -65, -65, 53, -65, -65, -65, -65, -65,
570 -65, -6, -64, 20, -65, 2, -65, -65, -65, -34,
571 -29, -65, -63, -4, -65
574 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
575 positive, shift that token. If negative, reduce the rule which
576 number is the opposite. If zero, do what YYDEFACT says.
577 If YYTABLE_NINF, syntax error. */
578 #define YYTABLE_NINF -75
579 static const yysigned_char yytable
[] =
581 57, 44, 49, -74, 58, 85, 86, 86, 4, 5,
582 6, 7, 8, 9, 10, 11, 12, 73, 44, 67,
583 73, 90, 43, 68, 56, 44, 84, 3, 50, 92,
584 93, 94, 52, 53, 89, 54, 29, 72, 55, 45,
585 78, 65, 59, 73, 44, 60, 80, 74, 91, 75,
586 76, 77, 100, 101, 73, 37, 45, 98, 0, 96,
587 83, 95, 71, 99, 81, 0, 58, 0, 0, 96,
588 4, 5, 6, 7, 8, 9, 10, 11, 12, 0,
589 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
590 0, 0, 0, 0, 0, 0, 0, 0, 29, 0,
591 0, 0, 0, 0, 59, 0, 0, 60, 4, 5,
592 6, 7, 8, 9, 10, 11, 12, 0, 0, 0,
593 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
594 23, 24, 25, 26, 27, 28, 29, 30, 31, 32,
595 0, 0, 33, 0, 0, 0, 34, 35
598 static const yysigned_char yycheck
[] =
600 29, 3, 8, 0, 1, 68, 70, 71, 5, 6,
601 7, 8, 9, 10, 11, 12, 13, 46, 3, 37,
602 49, 84, 37, 41, 28, 3, 4, 0, 3, 14,
603 15, 16, 4, 38, 45, 38, 33, 43, 38, 41,
604 39, 37, 39, 72, 3, 42, 43, 51, 40, 53,
605 54, 55, 4, 37, 83, 2, 41, 91, -1, 88,
606 66, 46, 42, 92, 62, -1, 1, -1, -1, 98,
607 5, 6, 7, 8, 9, 10, 11, 12, 13, -1,
608 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
609 -1, -1, -1, -1, -1, -1, -1, -1, 33, -1,
610 -1, -1, -1, -1, 39, -1, -1, 42, 5, 6,
611 7, 8, 9, 10, 11, 12, 13, -1, -1, -1,
612 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
613 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
614 -1, -1, 39, -1, -1, -1, 43, 44
617 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
618 symbol of state STATE-NUM. */
619 static const unsigned char yystos
[] =
621 0, 48, 49, 0, 5, 6, 7, 8, 9, 10,
622 11, 12, 13, 17, 18, 19, 20, 21, 22, 23,
623 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
624 34, 35, 36, 39, 43, 44, 50, 51, 52, 55,
625 56, 54, 53, 37, 3, 41, 58, 67, 69, 58,
626 3, 70, 4, 38, 38, 38, 70, 67, 1, 39,
627 42, 51, 61, 62, 63, 37, 57, 37, 41, 59,
628 60, 60, 58, 67, 70, 70, 70, 70, 39, 64,
629 43, 62, 71, 58, 4, 69, 59, 65, 66, 45,
630 69, 40, 14, 15, 16, 46, 67, 68, 66, 67,
634 #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
635 # define YYSIZE_T __SIZE_TYPE__
637 #if ! defined (YYSIZE_T) && defined (size_t)
638 # define YYSIZE_T size_t
640 #if ! defined (YYSIZE_T)
641 # if defined (__STDC__) || defined (__cplusplus)
642 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
643 # define YYSIZE_T size_t
646 #if ! defined (YYSIZE_T)
647 # define YYSIZE_T unsigned int
650 #define yyerrok (yyerrstatus = 0)
651 #define yyclearin (yychar = YYEMPTY)
655 #define YYACCEPT goto yyacceptlab
656 #define YYABORT goto yyabortlab
660 *++yylerrsp = yyloc; \
666 /* Like YYERROR except do call yyerror. This remains here temporarily
667 to ease the transition to the new meaning of YYERROR, for GCC.
668 Once GCC version 2 has supplanted version 1, this can go. */
670 #define YYFAIL goto yyerrlab
672 #define YYRECOVERING() (!!yyerrstatus)
674 #define YYBACKUP(Token, Value) \
676 if (yychar == YYEMPTY && yylen == 1) \
680 yytoken = YYTRANSLATE (yychar); \
686 yyerror ("syntax error: cannot back up");\
692 #define YYERRCODE 256
694 /* YYLLOC_DEFAULT -- Compute the default location (before the actions
697 #ifndef YYLLOC_DEFAULT
698 # define YYLLOC_DEFAULT(Current, Rhs, N) \
699 Current.first_line = Rhs[1].first_line; \
700 Current.first_column = Rhs[1].first_column; \
701 Current.last_line = Rhs[N].last_line; \
702 Current.last_column = Rhs[N].last_column;
705 /* YYLEX -- calling `yylex' with the right arguments. */
708 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
710 # define YYLEX yylex (&yylval, &yylloc)
713 /* Enable debugging if requested. */
717 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
718 # define YYFPRINTF fprintf
721 # define YYDPRINTF(Args) \
727 # define YYDSYMPRINT(Args) \
733 # define YYDSYMPRINTF(Title, Token, Value, Location) \
737 YYFPRINTF (stderr, "%s ", Title); \
738 yysymprint (stderr, \
739 Token, Value, Location); \
740 YYFPRINTF (stderr, "\n"); \
744 /*------------------------------------------------------------------.
745 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
747 `------------------------------------------------------------------*/
749 #if defined (__STDC__) || defined (__cplusplus)
751 yy_stack_print (short *bottom
, short *top
)
754 yy_stack_print (bottom
, top
)
759 YYFPRINTF (stderr
, "Stack now");
760 for (/* Nothing. */; bottom
<= top
; ++bottom
)
761 YYFPRINTF (stderr
, " %d", *bottom
);
762 YYFPRINTF (stderr
, "\n");
765 # define YY_STACK_PRINT(Bottom, Top) \
768 yy_stack_print ((Bottom), (Top)); \
772 /*------------------------------------------------.
773 | Report that the YYRULE is going to be reduced. |
774 `------------------------------------------------*/
776 #if defined (__STDC__) || defined (__cplusplus)
778 yy_reduce_print (int yyrule
)
781 yy_reduce_print (yyrule
)
786 unsigned int yylno
= yyrline
[yyrule
];
787 YYFPRINTF (stderr
, "Reducing stack by rule %d (line %u), ",
789 /* Print the symbols being reduced, and their result. */
790 for (yyi
= yyprhs
[yyrule
]; 0 <= yyrhs
[yyi
]; yyi
++)
791 YYFPRINTF (stderr
, "%s ", yytname
[yyrhs
[yyi
]]);
792 YYFPRINTF (stderr
, "-> %s\n", yytname
[yyr1
[yyrule
]]);
795 # define YY_REDUCE_PRINT(Rule) \
798 yy_reduce_print (Rule); \
801 /* Nonzero means print parse trace. It is left uninitialized so that
802 multiple parsers can coexist. */
805 # define YYDPRINTF(Args)
806 # define YYDSYMPRINT(Args)
807 # define YYDSYMPRINTF(Title, Token, Value, Location)
808 # define YY_STACK_PRINT(Bottom, Top)
809 # define YY_REDUCE_PRINT(Rule)
810 #endif /* !YYDEBUG */
813 /* YYINITDEPTH -- initial size of the parser's stacks. */
815 # define YYINITDEPTH 200
818 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
819 if the built-in stack extension method is used).
821 Do not make this value too large; the results are undefined if
822 SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)
823 evaluated with infinite-precision integer arithmetic. */
830 # define YYMAXDEPTH 10000
838 # if defined (__GLIBC__) && defined (_STRING_H)
839 # define yystrlen strlen
841 /* Return the length of YYSTR. */
843 # if defined (__STDC__) || defined (__cplusplus)
844 yystrlen (const char *yystr
)
850 register const char *yys
= yystr
;
852 while (*yys
++ != '\0')
855 return yys
- yystr
- 1;
861 # if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
862 # define yystpcpy stpcpy
864 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
867 # if defined (__STDC__) || defined (__cplusplus)
868 yystpcpy (char *yydest
, const char *yysrc
)
870 yystpcpy (yydest
, yysrc
)
875 register char *yyd
= yydest
;
876 register const char *yys
= yysrc
;
878 while ((*yyd
++ = *yys
++) != '\0')
886 #endif /* !YYERROR_VERBOSE */
891 /*--------------------------------.
892 | Print this symbol on YYOUTPUT. |
893 `--------------------------------*/
895 #if defined (__STDC__) || defined (__cplusplus)
897 yysymprint (FILE *yyoutput
, int yytype
, YYSTYPE
*yyvaluep
, YYLTYPE
*yylocationp
)
900 yysymprint (yyoutput
, yytype
, yyvaluep
, yylocationp
)
904 YYLTYPE
*yylocationp
;
907 /* Pacify ``unused variable'' warnings. */
911 if (yytype
< YYNTOKENS
)
913 YYFPRINTF (yyoutput
, "token %s (", yytname
[yytype
]);
915 YYPRINT (yyoutput
, yytoknum
[yytype
], *yyvaluep
);
919 YYFPRINTF (yyoutput
, "nterm %s (", yytname
[yytype
]);
926 YYFPRINTF (yyoutput
, ")");
929 #endif /* ! YYDEBUG */
930 /*-----------------------------------------------.
931 | Release the memory associated to this symbol. |
932 `-----------------------------------------------*/
934 #if defined (__STDC__) || defined (__cplusplus)
936 yydestruct (int yytype
, YYSTYPE
*yyvaluep
, YYLTYPE
*yylocationp
)
939 yydestruct (yytype
, yyvaluep
, yylocationp
)
942 YYLTYPE
*yylocationp
;
945 /* Pacify ``unused variable'' warnings. */
958 /* Prevent warnings from -Wmissing-prototypes. */
961 # if defined (__STDC__) || defined (__cplusplus)
962 int yyparse (void *YYPARSE_PARAM
);
966 #else /* ! YYPARSE_PARAM */
967 #if defined (__STDC__) || defined (__cplusplus)
972 #endif /* ! YYPARSE_PARAM */
984 # if defined (__STDC__) || defined (__cplusplus)
985 int yyparse (void *YYPARSE_PARAM
)
987 int yyparse (YYPARSE_PARAM
)
990 #else /* ! YYPARSE_PARAM */
991 #if defined (__STDC__) || defined (__cplusplus)
1001 /* The lookahead symbol. */
1004 /* The semantic value of the lookahead symbol. */
1007 /* Number of syntax errors so far. */
1009 /* Location data for the lookahead symbol. */
1012 register int yystate
;
1015 /* Number of tokens to shift before error messages enabled. */
1017 /* Lookahead token as an internal (translated) token number. */
1020 /* Three stacks and their tools:
1021 `yyss': related to states,
1022 `yyvs': related to semantic values,
1023 `yyls': related to locations.
1025 Refer to the stacks thru separate pointers, to allow yyoverflow
1026 to reallocate them elsewhere. */
1028 /* The state stack. */
1029 short yyssa
[YYINITDEPTH
];
1030 short *yyss
= yyssa
;
1031 register short *yyssp
;
1033 /* The semantic value stack. */
1034 YYSTYPE yyvsa
[YYINITDEPTH
];
1035 YYSTYPE
*yyvs
= yyvsa
;
1036 register YYSTYPE
*yyvsp
;
1038 /* The location stack. */
1039 YYLTYPE yylsa
[YYINITDEPTH
];
1040 YYLTYPE
*yyls
= yylsa
;
1044 #define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
1046 YYSIZE_T yystacksize
= YYINITDEPTH
;
1048 /* The variables used to return semantic value and location from the
1053 /* When reducing, the number of symbols on the RHS of the reduced
1057 YYDPRINTF ((stderr
, "Starting parse\n"));
1062 yychar
= YYEMPTY
; /* Cause a token to be read. */
1064 /* Initialize stack pointers.
1065 Waste one element of value and location stack
1066 so that they stay on the same level as the state stack.
1067 The wasted elements are never initialized. */
1074 /*------------------------------------------------------------.
1075 | yynewstate -- Push a new state, which is found in yystate. |
1076 `------------------------------------------------------------*/
1078 /* In all cases, when you get here, the value and location stacks
1079 have just been pushed. so pushing a state here evens the stacks.
1086 if (yyss
+ yystacksize
- 1 <= yyssp
)
1088 /* Get the current used size of the three stacks, in elements. */
1089 YYSIZE_T yysize
= yyssp
- yyss
+ 1;
1093 /* Give user a chance to reallocate the stack. Use copies of
1094 these so that the &'s don't force the real ones into
1096 YYSTYPE
*yyvs1
= yyvs
;
1097 short *yyss1
= yyss
;
1098 YYLTYPE
*yyls1
= yyls
;
1100 /* Each stack pointer address is followed by the size of the
1101 data in use in that stack, in bytes. This used to be a
1102 conditional around just the two extra args, but that might
1103 be undefined if yyoverflow is a macro. */
1104 yyoverflow ("parser stack overflow",
1105 &yyss1
, yysize
* sizeof (*yyssp
),
1106 &yyvs1
, yysize
* sizeof (*yyvsp
),
1107 &yyls1
, yysize
* sizeof (*yylsp
),
1113 #else /* no yyoverflow */
1114 # ifndef YYSTACK_RELOCATE
1117 /* Extend the stack our own way. */
1118 if (YYMAXDEPTH
<= yystacksize
)
1121 if (YYMAXDEPTH
< yystacksize
)
1122 yystacksize
= YYMAXDEPTH
;
1125 short *yyss1
= yyss
;
1126 union yyalloc
*yyptr
=
1127 (union yyalloc
*) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize
));
1130 YYSTACK_RELOCATE (yyss
);
1131 YYSTACK_RELOCATE (yyvs
);
1132 YYSTACK_RELOCATE (yyls
);
1133 # undef YYSTACK_RELOCATE
1135 YYSTACK_FREE (yyss1
);
1138 #endif /* no yyoverflow */
1140 yyssp
= yyss
+ yysize
- 1;
1141 yyvsp
= yyvs
+ yysize
- 1;
1142 yylsp
= yyls
+ yysize
- 1;
1144 YYDPRINTF ((stderr
, "Stack size increased to %lu\n",
1145 (unsigned long int) yystacksize
));
1147 if (yyss
+ yystacksize
- 1 <= yyssp
)
1151 YYDPRINTF ((stderr
, "Entering state %d\n", yystate
));
1160 /* Do appropriate processing given the current state. */
1161 /* Read a lookahead token if we need one and don't already have one. */
1164 /* First try to decide what to do without reference to lookahead token. */
1166 yyn
= yypact
[yystate
];
1167 if (yyn
== YYPACT_NINF
)
1170 /* Not known => get a lookahead token if don't already have one. */
1172 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1173 if (yychar
== YYEMPTY
)
1175 YYDPRINTF ((stderr
, "Reading a token: "));
1179 if (yychar
<= YYEOF
)
1181 yychar
= yytoken
= YYEOF
;
1182 YYDPRINTF ((stderr
, "Now at end of input.\n"));
1186 yytoken
= YYTRANSLATE (yychar
);
1187 YYDSYMPRINTF ("Next token is", yytoken
, &yylval
, &yylloc
);
1190 /* If the proper action on seeing token YYTOKEN is to reduce or to
1191 detect an error, take that action. */
1193 if (yyn
< 0 || YYLAST
< yyn
|| yycheck
[yyn
] != yytoken
)
1198 if (yyn
== 0 || yyn
== YYTABLE_NINF
)
1207 /* Shift the lookahead token. */
1208 YYDPRINTF ((stderr
, "Shifting token %s, ", yytname
[yytoken
]));
1210 /* Discard the token being shifted unless it is eof. */
1211 if (yychar
!= YYEOF
)
1217 /* Count tokens shifted since error; after three, turn off error
1226 /*-----------------------------------------------------------.
1227 | yydefault -- do the default action for the current state. |
1228 `-----------------------------------------------------------*/
1230 yyn
= yydefact
[yystate
];
1236 /*-----------------------------.
1237 | yyreduce -- Do a reduction. |
1238 `-----------------------------*/
1240 /* yyn is the number of a rule to reduce with. */
1243 /* If YYLEN is nonzero, implement the default value of the action:
1246 Otherwise, the following line sets YYVAL to garbage.
1247 This behavior is undocumented and Bison
1248 users should not rely upon it. Assigning to YYVAL
1249 unconditionally makes the parser a bit smaller, and it avoids a
1250 GCC warning that YYVAL may be used uninitialized. */
1251 yyval
= yyvsp
[1-yylen
];
1253 /* Default location. */
1254 YYLLOC_DEFAULT (yyloc
, (yylsp
- yylen
), yylen
);
1255 YY_REDUCE_PRINT (yyn
);
1259 #line 177 "parse-gram.y"
1260 { prologue_augment (yyvsp
[0].chars
, yylsp
[0]); }
1264 #line 178 "parse-gram.y"
1269 #line 179 "parse-gram.y"
1270 { muscle_insert (yyvsp
[-1].chars
, yyvsp
[0].chars
); }
1274 #line 180 "parse-gram.y"
1275 { defines_flag
= 1; }
1279 #line 181 "parse-gram.y"
1280 { error_verbose
= 1; }
1284 #line 182 "parse-gram.y"
1285 { expected_conflicts
= yyvsp
[0].integer
; }
1289 #line 183 "parse-gram.y"
1290 { spec_file_prefix
= yyvsp
[0].chars
; }
1294 #line 184 "parse-gram.y"
1295 { nondeterministic_parser
= true;
1296 glr_parser
= true; }
1300 #line 186 "parse-gram.y"
1301 { add_param ("lex_param", yyvsp
[0].chars
, yylsp
[0]); }
1305 #line 187 "parse-gram.y"
1306 { locations_flag
= 1; }
1310 #line 188 "parse-gram.y"
1311 { spec_name_prefix
= yyvsp
[0].chars
; }
1315 #line 189 "parse-gram.y"
1316 { no_lines_flag
= 1; }
1320 #line 190 "parse-gram.y"
1321 { nondeterministic_parser
= true; }
1325 #line 191 "parse-gram.y"
1326 { spec_outfile
= yyvsp
[0].chars
; }
1330 #line 192 "parse-gram.y"
1331 { add_param ("parse_param", yyvsp
[0].chars
, yylsp
[0]); }
1335 #line 193 "parse-gram.y"
1336 { pure_parser
= true; }
1340 #line 194 "parse-gram.y"
1341 { skeleton
= yyvsp
[0].chars
; }
1345 #line 195 "parse-gram.y"
1346 { token_table_flag
= 1; }
1350 #line 196 "parse-gram.y"
1351 { report_flag
= report_states
; }
1355 #line 197 "parse-gram.y"
1360 #line 205 "parse-gram.y"
1362 grammar_start_symbol_set (yyvsp
[0].symbol
, yylsp
[0]);
1367 #line 209 "parse-gram.y"
1370 MUSCLE_INSERT_INT ("stype_line", yylsp
[0].start
.line
);
1371 muscle_insert ("stype", yyvsp
[0].chars
);
1376 #line 215 "parse-gram.y"
1379 for (list
= yyvsp
[0].list
; list
; list
= list
->next
)
1380 symbol_destructor_set (list
->sym
, yyvsp
[-1].chars
, yylsp
[-1]);
1381 symbol_list_free (yyvsp
[0].list
);
1386 #line 222 "parse-gram.y"
1389 for (list
= yyvsp
[0].list
; list
; list
= list
->next
)
1390 symbol_printer_set (list
->sym
, yyvsp
[-1].chars
, list
->location
);
1391 symbol_list_free (yyvsp
[0].list
);
1396 #line 231 "parse-gram.y"
1397 { current_class
= nterm_sym
; }
1401 #line 232 "parse-gram.y"
1403 current_class
= unknown_sym
;
1404 current_type
= NULL
;
1409 #line 236 "parse-gram.y"
1410 { current_class
= token_sym
; }
1414 #line 237 "parse-gram.y"
1416 current_class
= unknown_sym
;
1417 current_type
= NULL
;
1422 #line 242 "parse-gram.y"
1425 for (list
= yyvsp
[0].list
; list
; list
= list
->next
)
1426 symbol_type_set (list
->sym
, yyvsp
[-1].uniqstr
, yylsp
[-1]);
1427 symbol_list_free (yyvsp
[0].list
);
1432 #line 252 "parse-gram.y"
1436 for (list
= yyvsp
[0].list
; list
; list
= list
->next
)
1438 symbol_type_set (list
->sym
, current_type
, yylsp
[-1]);
1439 symbol_precedence_set (list
->sym
, current_prec
, yyvsp
[-2].assoc
, yylsp
[-2]);
1441 symbol_list_free (yyvsp
[0].list
);
1442 current_type
= NULL
;
1447 #line 266 "parse-gram.y"
1448 { yyval
.assoc
= left_assoc
; }
1452 #line 267 "parse-gram.y"
1453 { yyval
.assoc
= right_assoc
; }
1457 #line 268 "parse-gram.y"
1458 { yyval
.assoc
= non_assoc
; }
1462 #line 272 "parse-gram.y"
1463 { current_type
= NULL
; }
1467 #line 273 "parse-gram.y"
1468 { current_type
= yyvsp
[0].uniqstr
; }
1472 #line 279 "parse-gram.y"
1473 { yyval
.list
= symbol_list_new (yyvsp
[0].symbol
, yylsp
[0]); }
1477 #line 280 "parse-gram.y"
1478 { yyval
.list
= symbol_list_prepend (yyvsp
[-1].list
, yyvsp
[0].symbol
, yylsp
[0]); }
1482 #line 286 "parse-gram.y"
1484 current_type
= yyvsp
[0].uniqstr
;
1489 #line 290 "parse-gram.y"
1491 symbol_class_set (yyvsp
[0].symbol
, current_class
, yylsp
[0]);
1492 symbol_type_set (yyvsp
[0].symbol
, current_type
, yylsp
[0]);
1497 #line 295 "parse-gram.y"
1499 symbol_class_set (yyvsp
[-1].symbol
, current_class
, yylsp
[-1]);
1500 symbol_type_set (yyvsp
[-1].symbol
, current_type
, yylsp
[-1]);
1501 symbol_user_token_number_set (yyvsp
[-1].symbol
, yyvsp
[0].integer
, yylsp
[0]);
1506 #line 301 "parse-gram.y"
1508 symbol_class_set (yyvsp
[-1].symbol
, current_class
, yylsp
[-1]);
1509 symbol_type_set (yyvsp
[-1].symbol
, current_type
, yylsp
[-1]);
1510 symbol_make_alias (yyvsp
[-1].symbol
, yyvsp
[0].symbol
, yyloc
);
1515 #line 307 "parse-gram.y"
1517 symbol_class_set (yyvsp
[-2].symbol
, current_class
, yylsp
[-2]);
1518 symbol_type_set (yyvsp
[-2].symbol
, current_type
, yylsp
[-2]);
1519 symbol_user_token_number_set (yyvsp
[-2].symbol
, yyvsp
[-1].integer
, yylsp
[-1]);
1520 symbol_make_alias (yyvsp
[-2].symbol
, yyvsp
[0].symbol
, yyloc
);
1525 #line 336 "parse-gram.y"
1528 complain_at (yyloc
, _("POSIX forbids declarations in the grammar"));
1533 #line 341 "parse-gram.y"
1540 #line 348 "parse-gram.y"
1541 { current_lhs
= yyvsp
[0].symbol
; current_lhs_location
= yylsp
[0]; }
1545 #line 352 "parse-gram.y"
1546 { grammar_rule_end (yylsp
[0]); }
1550 #line 353 "parse-gram.y"
1551 { grammar_rule_end (yylsp
[0]); }
1555 #line 358 "parse-gram.y"
1556 { grammar_rule_begin (current_lhs
, current_lhs_location
); }
1560 #line 360 "parse-gram.y"
1561 { grammar_current_rule_symbol_append (yyvsp
[0].symbol
, yylsp
[0]); }
1565 #line 362 "parse-gram.y"
1566 { grammar_current_rule_action_append (yyvsp
[0].chars
, yylsp
[0]); }
1570 #line 364 "parse-gram.y"
1571 { grammar_current_rule_prec_set (yyvsp
[0].symbol
, yylsp
[0]); }
1575 #line 366 "parse-gram.y"
1576 { grammar_current_rule_dprec_set (yyvsp
[0].integer
, yylsp
[0]); }
1580 #line 368 "parse-gram.y"
1581 { grammar_current_rule_merge_set (yyvsp
[0].uniqstr
, yylsp
[0]); }
1585 #line 372 "parse-gram.y"
1586 { yyval
.symbol
= yyvsp
[0].symbol
; }
1590 #line 373 "parse-gram.y"
1591 { yyval
.symbol
= yyvsp
[0].symbol
; }
1595 #line 378 "parse-gram.y"
1596 { yyval
.chars
= yyvsp
[0].chars
; }
1600 #line 384 "parse-gram.y"
1602 yyval
.symbol
= symbol_get (yyvsp
[0].chars
, yylsp
[0]);
1603 symbol_class_set (yyval
.symbol
, token_sym
, yylsp
[0]);
1608 #line 393 "parse-gram.y"
1610 yyval
.chars
= yyvsp
[0].chars
+ 1;
1611 yyval
.chars
[strlen (yyval
.chars
) - 1] = '\0';
1616 #line 402 "parse-gram.y"
1618 epilogue_augment (yyvsp
[0].chars
, yylsp
[0]);
1619 scanner_last_string_free ();
1626 /* Line 999 of yacc.c. */
1627 #line 1628 "parse-gram.c"
1633 YY_STACK_PRINT (yyss
, yyssp
);
1638 /* Now `shift' the result of the reduction. Determine what state
1639 that goes to, based on the state we popped back to and the rule
1640 number reduced by. */
1644 yystate
= yypgoto
[yyn
- YYNTOKENS
] + *yyssp
;
1645 if (0 <= yystate
&& yystate
<= YYLAST
&& yycheck
[yystate
] == *yyssp
)
1646 yystate
= yytable
[yystate
];
1648 yystate
= yydefgoto
[yyn
- YYNTOKENS
];
1653 /*------------------------------------.
1654 | yyerrlab -- here on detecting error |
1655 `------------------------------------*/
1657 /* If not already recovering from an error, report this error. */
1662 yyn
= yypact
[yystate
];
1664 if (YYPACT_NINF
< yyn
&& yyn
< YYLAST
)
1666 YYSIZE_T yysize
= 0;
1667 int yytype
= YYTRANSLATE (yychar
);
1668 const char* yyprefix
;
1672 /* Start YYX at -YYN if negative to avoid negative indexes in
1674 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
1676 /* Stay within bounds of both yycheck and yytname. */
1677 int yychecklim
= YYLAST
- yyn
;
1678 int yyxend
= yychecklim
< YYNTOKENS
? yychecklim
: YYNTOKENS
;
1681 yyprefix
= ", expecting ";
1682 for (yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
1683 if (yycheck
[yyx
+ yyn
] == yyx
&& yyx
!= YYTERROR
)
1685 yysize
+= yystrlen (yyprefix
) + yystrlen (yytname
[yyx
]);
1693 yysize
+= (sizeof ("syntax error, unexpected ")
1694 + yystrlen (yytname
[yytype
]));
1695 yymsg
= (char *) YYSTACK_ALLOC (yysize
);
1698 char *yyp
= yystpcpy (yymsg
, "syntax error, unexpected ");
1699 yyp
= yystpcpy (yyp
, yytname
[yytype
]);
1703 yyprefix
= ", expecting ";
1704 for (yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
1705 if (yycheck
[yyx
+ yyn
] == yyx
&& yyx
!= YYTERROR
)
1707 yyp
= yystpcpy (yyp
, yyprefix
);
1708 yyp
= yystpcpy (yyp
, yytname
[yyx
]);
1713 YYSTACK_FREE (yymsg
);
1716 yyerror ("syntax error; also virtual memory exhausted");
1719 #endif /* YYERROR_VERBOSE */
1720 yyerror ("syntax error");
1725 if (yyerrstatus
== 3)
1727 /* If just tried and failed to reuse lookahead token after an
1728 error, discard it. */
1730 /* Return failure if at end of input. */
1731 if (yychar
== YYEOF
)
1733 /* Pop the error token. */
1735 /* Pop the rest of the stack. */
1736 while (yyss
< yyssp
)
1738 YYDSYMPRINTF ("Error: popping", yystos
[*yyssp
], yyvsp
, yylsp
);
1739 yydestruct (yystos
[*yyssp
], yyvsp
, yylsp
);
1745 YYDSYMPRINTF ("Error: discarding", yytoken
, &yylval
, &yylloc
);
1746 yydestruct (yytoken
, &yylval
, &yylloc
);
1748 *++yylerrsp
= yylloc
;
1751 /* Else will try to reuse lookahead token after shifting the error
1756 /*----------------------------------------------------.
1757 | yyerrlab1 -- error raised explicitly by an action. |
1758 `----------------------------------------------------*/
1760 yyerrstatus
= 3; /* Each real token shifted decrements this. */
1764 yyn
= yypact
[yystate
];
1765 if (yyn
!= YYPACT_NINF
)
1768 if (0 <= yyn
&& yyn
<= YYLAST
&& yycheck
[yyn
] == YYTERROR
)
1776 /* Pop the current state because it cannot handle the error token. */
1780 YYDSYMPRINTF ("Error: popping", yystos
[*yyssp
], yyvsp
, yylsp
);
1781 yydestruct (yystos
[yystate
], yyvsp
, yylsp
);
1785 YY_STACK_PRINT (yyss
, yyssp
);
1791 YYDPRINTF ((stderr
, "Shifting error token, "));
1794 YYLLOC_DEFAULT (yyloc
, yylsp
, (yylerrsp
- yylsp
));
1801 /*-------------------------------------.
1802 | yyacceptlab -- YYACCEPT comes here. |
1803 `-------------------------------------*/
1808 /*-----------------------------------.
1809 | yyabortlab -- YYABORT comes here. |
1810 `-----------------------------------*/
1816 /*----------------------------------------------.
1817 | yyoverflowlab -- parser overflow comes here. |
1818 `----------------------------------------------*/
1820 yyerror ("parser stack overflow");
1828 YYSTACK_FREE (yyss
);
1834 #line 408 "parse-gram.y"
1838 /* Return the location of the left-hand side of a rule whose
1839 right-hand side is RHS[1] ... RHS[N]. Ignore empty nonterminals in
1840 the right-hand side, and return an empty location equal to the end
1841 boundary of RHS[0] if the right-hand side is empty. */
1844 lloc_default (YYLTYPE
const *rhs
, int n
)
1848 loc
.start
= loc
.end
= rhs
[n
].end
;
1850 /* Ignore empty nonterminals the start of the the right-hand side.
1851 Do not bother to ignore them at the end of the right-hand side,
1852 since empty nonterminals have the same end as their predecessors. */
1853 for (i
= 1; i
<= n
; i
++)
1854 if (! equal_boundaries (rhs
[i
].start
, rhs
[i
].end
))
1856 loc
.start
= rhs
[i
].start
;
1864 /* Add a lex-param or a parse-param (depending on TYPE) with
1865 declaration DECL and location LOC. */
1868 add_param (char const *type
, char *decl
, location loc
)
1870 static char const alphanum
[] =
1872 "abcdefghijklmnopqrstuvwxyz"
1873 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1875 char const *alpha
= alphanum
+ 10;
1876 char const *name_start
= NULL
;
1879 for (p
= decl
; *p
; p
++)
1880 if ((p
== decl
|| ! strchr (alphanum
, p
[-1])) && strchr (alpha
, p
[0]))
1883 /* Strip the surrounding '{' and '}'. */
1888 complain_at (loc
, _("missing identifier in parameter declaration"));
1895 name_start
[name_len
] && strchr (alphanum
, name_start
[name_len
]);
1899 name
= xmalloc (name_len
+ 1);
1900 memcpy (name
, name_start
, name_len
);
1901 name
[name_len
] = '\0';
1902 muscle_pair_list_grow (type
, decl
, name
);
1906 scanner_last_string_free ();
1909 /*----------------------------------------------------.
1910 | When debugging the parser, display tokens' values. |
1911 `----------------------------------------------------*/
1914 print_token_value (FILE *file
, int type
, YYSTYPE
const *value
)
1920 fprintf (file
, " = %s", value
->symbol
->tag
);
1924 fprintf (file
, " = %d", value
->integer
);
1928 fprintf (file
, " = \"%s\"", value
->chars
);
1932 fprintf (file
, " = <%s>", value
->uniqstr
);
1936 case PERCENT_DESTRUCTOR
:
1937 case PERCENT_LEX_PARAM
:
1938 case PERCENT_PARSE_PARAM
:
1939 case PERCENT_PRINTER
:
1943 fprintf (file
, " = {{ %s }}", value
->chars
);
1947 fprintf (file
, "unknown token type");
1953 gram_error (location
const *loc
, char const *msg
)
1955 complain_at (*loc
, "%s", msg
);
1959 token_name (int type
)
1961 return yytname
[type
];