1 /* -*-C-*- Note some compilers choke on comments on `#line' lines. */
3 /* This file comes from bison-@bison_version@. */
5 /* Skeleton output parser for bison,
6 Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* As a special exception, when this file is copied by Bison into a
24 Bison output file, you may use that output file without restriction.
25 This special exception was added by the Free Software Foundation
26 in version 1.24 of Bison. */
28 /* This is the parser code that is written into each bison parser when
29 the %semantic_parser declaration is not specified in the grammar.
30 It was written by Richard Stallman by simplifying the hairy parser
31 used when %semantic_parser is specified. */
33 #ifndef YYSTACK_USE_ALLOCA
35 # define YYSTACK_USE_ALLOCA
36 # else /* alloca not defined */
38 # define YYSTACK_USE_ALLOCA
39 # define alloca __builtin_alloca
40 # else /* not GNU C. */
41 # if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386))
42 # define YYSTACK_USE_ALLOCA
44 # else /* not sparc */
45 /* We think this test detects Watcom and Microsoft C. */
46 /* This used to test MSDOS, but that is a bad idea since that
47 symbol is in the user namespace. */
48 # if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__)
50 /* No need for malloc.h, which pollutes the namespace; instead,
51 just don't use alloca. */
54 # else /* not MSDOS, or __TURBOC__ */
56 /* I don't know what this was needed for, but it pollutes the
57 namespace. So I turned it off. rms, 2 May 1997. */
58 /* #include <malloc.h> */
60 # define YYSTACK_USE_ALLOCA
61 # else /* not MSDOS, or __TURBOC__, or _AIX */
63 /* haible@ilog.fr says this works for HPUX 9.05 and up, and on
64 HPUX 10. Eventually we can turn this on. */
66 # define YYSTACK_USE_ALLOCA
67 # define alloca __builtin_alloca
70 # endif /* not _AIX */
71 # endif /* not MSDOS, or __TURBOC__ */
72 # endif /* not sparc */
73 # endif /* not GNU C */
74 # endif /* alloca not defined */
75 #endif /* YYSTACK_USE_ALLOCA not defined */
77 #ifdef YYSTACK_USE_ALLOCA
78 # define YYSTACK_ALLOC alloca
80 # define YYSTACK_ALLOC malloc
83 /* Note: there must be only one dollar sign in this file.
84 It is replaced by the list of actions, each action
85 as one case of the switch. */
87 #define yyerrok (yyerrstatus = 0)
88 #define yyclearin (yychar = YYEMPTY)
91 #define YYACCEPT goto yyacceptlab
92 #define YYABORT goto yyabortlab
93 #define YYERROR goto yyerrlab1
94 /* Like YYERROR except do call yyerror. This remains here temporarily
95 to ease the transition to the new meaning of YYERROR, for GCC.
96 Once GCC version 2 has supplanted version 1, this can go. */
97 #define YYFAIL goto yyerrlab
98 #define YYRECOVERING() (!!yyerrstatus)
99 #define YYBACKUP(Token, Value) \
101 if (yychar == YYEMPTY && yylen == 1) \
105 yychar1 = YYTRANSLATE (yychar); \
111 yyerror ("syntax error: cannot back up"); \
117 #define YYERRCODE 256
120 # define YYLEX yylex ()
126 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
128 # define YYLEX yylex (&yylval, &yylloc)
130 # else /* !YYLSP_NEEDED */
132 # define YYLEX yylex (&yylval, YYLEX_PARAM)
134 # define YYLEX yylex (&yylval)
136 # endif /* !YYLSP_NEEDED */
139 /* If nonreentrant, generate the variables here. */
142 /* The lookahead symbol. */
145 /* The semantic value of the lookahead symbol. */
149 /* Location data for the lookahead symbol. */
153 /* Number of parse errors so far. */
159 int yydebug; /* nonzero means print parse trace */
161 /* [The following comment makes no sense to me. Could someone
162 clarify it? --akim] Since this is uninitialized, it does not
163 stop multiple parsers from coexisting. */
165 /* To avoid crippling this file with `#if YYDEBUG', define `yydebug'
166 as `0', so that the `if (yydebug)' be removed as dead code. */
170 /* YYINITDEPTH indicates the initial size of the parser's stacks */
173 # define YYINITDEPTH 200
176 /* YYMAXDEPTH is the maximum size the stacks can grow to
177 (effective only if the built-in stack extension method is used). */
184 # define YYMAXDEPTH 10000
187 /* Define __yy_memcpy. Note that the size argument
188 should be passed with type unsigned int, because that is what the non-GCC
189 definitions require. With GCC, __builtin_memcpy takes an arg
190 of type size_t, but it can handle unsigned int. */
192 #if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
193 # define __yy_memcpy(To,From,Count) __builtin_memcpy (To,From,Count)
194 #else /* not GNU C or C++ */
197 /* This is the most reliable way to avoid incompatibilities
198 in available built-in functions on various systems. */
200 __yy_memcpy (to, from, count)
205 register char *f = from;
206 register char *t = to;
207 register int i = count;
213 # else /* __cplusplus */
215 /* This is the most reliable way to avoid incompatibilities
216 in available built-in functions on various systems. */
218 __yy_memcpy (char *to, char *from, unsigned int count)
220 register char *t = to;
221 register char *f = from;
222 register int i = count;
233 /* The user can define YYPARSE_PARAM as the name of an argument to be passed
234 into yyparse. The argument should have type void *.
235 It should actually point to an object.
236 Grammar actions can access the variable by casting it
237 to the proper pointer type. */
241 # define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
242 # define YYPARSE_PARAM_DECL
243 # else /* !__cplusplus */
244 # define YYPARSE_PARAM_ARG YYPARSE_PARAM
245 # define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
246 # endif /* !__cplusplus */
247 #else /* !YYPARSE_PARAM */
248 # define YYPARSE_PARAM_ARG
249 # define YYPARSE_PARAM_DECL
250 #endif /* !YYPARSE_PARAM */
252 /* Prevent warning if -Wstrict-prototypes. */
254 # ifdef YYPARSE_PARAM
255 int yyparse (void *);
262 yyparse (YYPARSE_PARAM_ARG)
265 register int yystate;
267 /* Number of tokens to shift before error messages enabled. */
269 /* Lookahead token as an internal (translated) token number. */
272 /* Three stacks and their tools:
273 `yyss': related to states,
274 `yysv': related to semantic values,
275 `yyls': related to locations.
277 Refer to the stacks thru separate pointers, to allow yyoverflow
278 to reallocate them elsewhere. */
280 /* The state stack. */
281 short yyssa[YYINITDEPTH];
283 register short *yyssp;
285 /* The semantic value stack. */
286 YYSTYPE yyvsa[YYINITDEPTH];
287 YYSTYPE *yyvs = yyvsa;
288 register YYSTYPE *yyvsp;
291 /* The location stack. */
292 YYLTYPE yylsa[YYINITDEPTH];
293 YYLTYPE *yyls = yylsa;
298 # define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
300 # define YYPOPSTACK (yyvsp--, yyssp--)
303 int yystacksize = YYINITDEPTH;
304 int yyfree_stacks = 0;
316 /* The variables used to return semantic value and location from the
323 /* When reducing, the number of symbols on the RHS of the reduced
328 fprintf (stderr, "Starting parse\n");
333 yychar = YYEMPTY; /* Cause a token to be read. */
335 /* Initialize stack pointers.
336 Waste one element of value and location stack
337 so that they stay on the same level as the state stack.
338 The wasted elements are never initialized. */
347 /*------------------------------------------------------------.
348 | yynewstate -- Push a new state, which is found in yystate. |
349 `------------------------------------------------------------*/
351 /* In all cases, when you get here, the value and location stacks
352 have just been pushed. so pushing a state here evens the stacks.
356 if (yyssp >= yyss + yystacksize - 1)
358 /* Give user a chance to reallocate the stack. Use copies of
359 these so that the &'s don't force the real ones into memory.
361 YYSTYPE *yyvs1 = yyvs;
364 YYLTYPE *yyls1 = yyls;
367 /* Get the current used size of the three stacks, in elements. */
368 int size = yyssp - yyss + 1;
371 /* Each stack pointer address is followed by the size of
372 the data in use in that stack, in bytes. */
374 /* This used to be a conditional around just the two extra args,
375 but that might be undefined if yyoverflow is a macro. */
376 yyoverflow ("parser stack overflow",
377 &yyss1, size * sizeof (*yyssp),
378 &yyvs1, size * sizeof (*yyvsp),
379 &yyls1, size * sizeof (*yylsp),
382 yyoverflow ("parser stack overflow",
383 &yyss1, size * sizeof (*yyssp),
384 &yyvs1, size * sizeof (*yyvsp),
388 yyss = yyss1; yyvs = yyvs1;
392 #else /* no yyoverflow */
393 /* Extend the stack our own way. */
394 if (yystacksize >= YYMAXDEPTH)
396 yyerror ("parser stack overflow");
408 if (yystacksize > YYMAXDEPTH)
409 yystacksize = YYMAXDEPTH;
410 # ifndef YYSTACK_USE_ALLOCA
413 yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));
414 __yy_memcpy ((char *)yyss, (char *)yyss1,
415 size * (unsigned int) sizeof (*yyssp));
416 yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp));
417 __yy_memcpy ((char *)yyvs, (char *)yyvs1,
418 size * (unsigned int) sizeof (*yyvsp));
420 yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp));
421 __yy_memcpy ((char *)yyls, (char *)yyls1,
422 size * (unsigned int) sizeof (*yylsp));
424 #endif /* no yyoverflow */
426 yyssp = yyss + size - 1;
427 yyvsp = yyvs + size - 1;
429 yylsp = yyls + size - 1;
433 fprintf (stderr, "Stack size increased to %d\n", yystacksize);
435 if (yyssp >= yyss + yystacksize - 1)
440 fprintf (stderr, "Entering state %d\n", yystate);
450 /* Do appropriate processing given the current state. */
451 /* Read a lookahead token if we need one and don't already have one. */
454 /* First try to decide what to do without reference to lookahead token. */
456 yyn = yypact[yystate];
460 /* Not known => get a lookahead token if don't already have one. */
462 /* yychar is either YYEMPTY or YYEOF
463 or a valid token in external form. */
465 if (yychar == YYEMPTY)
468 fprintf (stderr, "Reading a token: ");
472 /* Convert token to internal form (in yychar1) for indexing tables with */
474 if (yychar <= 0) /* This means end of input. */
477 yychar = YYEOF; /* Don't call YYLEX any more */
480 fprintf (stderr, "Now at end of input.\n");
484 yychar1 = YYTRANSLATE (yychar);
487 /* We have to keep this `#if YYDEBUG', since we use variables
488 which are defined only if `YYDEBUG' is set. */
491 fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
492 /* Give the individual parser a way to print the precise
493 meaning of a token, for further debugging info. */
495 YYPRINT (stderr, yychar, yylval);
497 fprintf (stderr, ")\n");
503 if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
508 /* yyn is what to do for this token type in this state.
509 Negative => reduce, -yyn is rule number.
510 Positive => shift, yyn is new state.
511 New state is final state => don't bother to shift,
513 0, or most negative number => error. */
528 /* Shift the lookahead token. */
531 fprintf (stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
534 /* Discard the token being shifted unless it is eof. */
543 /* Count tokens shifted since error; after three, turn off error
552 /*-----------------------------------------------------------.
553 | yydefault -- do the default action for the current state. |
554 `-----------------------------------------------------------*/
556 yyn = yydefact[yystate];
562 /*-----------------------------.
563 | yyreduce -- Do a reduction. |
564 `-----------------------------*/
566 /* yyn is the number of a rule to reduce with. */
568 /* Implement default value of the action:
569 `{dollar}{dollar} = {dollar}1'. */
571 yyval = yyvsp[1-yylen];
573 /* Implement default location. If the rhs is empty, extend YYLOC to
574 YYLLOC, which corresponds to the current token, otherwise
575 implement `@{dollar} = Starts at @1, ends at @YYLEN'. */
578 yyloc = yylsp[1-yylen];
579 yyloc.last_line = yylsp[0].last_line;
580 yyloc.last_column = yylsp[0].last_column;
584 yyloc.last_line = yylsp[0].last_line;
585 yyloc.last_column = yylsp[0].last_column;
591 /* We have to keep this `#if YYDEBUG', since we use variables which
592 are defined only if `YYDEBUG' is set. */
597 fprintf (stderr, "Reducing via rule %d (line %d), ",
600 /* Print the symbols being reduced, and their result. */
601 for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
602 fprintf (stderr, "%s ", yytname[yyrhs[i]]);
603 fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
606 $ /* The action file replaces this line marked with this dollarsign. */
617 short *ssp1 = yyss - 1;
618 fprintf (stderr, "state stack now");
619 while (ssp1 != yyssp)
620 fprintf (stderr, " %d", *++ssp1);
621 fprintf (stderr, "\n");
629 /* Now `shift' the result of the reduction. Determine what state
630 that goes to, based on the state we popped back to and the rule
631 number reduced by. */
635 yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
636 if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
637 yystate = yytable[yystate];
639 yystate = yydefgoto[yyn - YYNTBASE];
644 /*------------------------------------.
645 | yyerrlab -- here on detecting error |
646 `------------------------------------*/
648 /* If not already recovering from an error, report this error. */
653 #ifdef YYERROR_VERBOSE
654 yyn = yypact[yystate];
656 if (yyn > YYFLAG && yyn < YYLAST)
663 /* Start X at -yyn if nec to avoid negative indexes in yycheck. */
664 for (x = (yyn < 0 ? -yyn : 0);
665 x < (sizeof (yytname) / sizeof (char *)); x++)
666 if (yycheck[x + yyn] == x)
667 size += strlen (yytname[x]) + 15, count++;
668 size += strlen ("parse error, unexpected `") + 1;
669 size += strlen (yytname[YYTRANSLATE (yychar)]);
670 msg = (char *) malloc (size);
673 strcpy (msg, "parse error, unexpected `");
674 strcat (msg, yytname[YYTRANSLATE (yychar)]);
680 for (x = (yyn < 0 ? -yyn : 0);
681 x < (sizeof (yytname) / sizeof (char *)); x++)
682 if (yycheck[x + yyn] == x)
684 strcat (msg, count == 0 ? ", expecting `" : " or `");
685 strcat (msg, yytname[x]);
694 yyerror ("parse error; also virtual memory exceeded");
697 #endif /* YYERROR_VERBOSE */
698 yyerror ("parse error");
703 /*--------------------------------------------------.
704 | yyerrlab1 -- error raised explicitly by an action |
705 `--------------------------------------------------*/
707 if (yyerrstatus == 3)
709 /* If just tried and failed to reuse lookahead token after an
710 error, discard it. */
712 /* return failure if at end of input */
717 fprintf (stderr, "Discarding token %d (%s).\n",
718 yychar, yytname[yychar1]);
723 /* Else will try to reuse lookahead token after shifting the error
726 yyerrstatus = 3; /* Each real token shifted decrements this */
731 /*-------------------------------------------------------------------.
732 | yyerrdefault -- current state does not do anything special for the |
734 `-------------------------------------------------------------------*/
737 /* This is wrong; only states that explicitly want error tokens
738 should shift them. */
740 /* If its default is to accept any token, ok. Otherwise pop it. */
741 yyn = yydefact[yystate];
747 /*---------------------------------------------------------------.
748 | yyerrpop -- pop the current state because it cannot handle the |
750 `---------------------------------------------------------------*/
762 short *ssp1 = yyss - 1;
763 fprintf (stderr, "Error: state stack now");
764 while (ssp1 != yyssp)
765 fprintf (stderr, " %d", *++ssp1);
766 fprintf (stderr, "\n");
774 yyn = yypact[yystate];
779 if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
797 fprintf (stderr, "Shifting error token, ");
808 /*-------------------------------------.
809 | yyacceptlab -- YYACCEPT comes here. |
810 `-------------------------------------*/
823 /*-----------------------------------.
824 | yyabortlab -- YYABORT comes here. |
825 `-----------------------------------*/