]> git.saurik.com Git - bison.git/blob - data/yacc.c
Don't include c.m4, as "include" doesn't do what we want.
[bison.git] / data / yacc.c
1 m4_divert(-1) -*- C -*-
2
3 # Yacc compatible skeleton for Bison
4 # Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002
5 # Free Software Foundation, Inc.
6
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 2 of the License, or
10 # (at your option) any later version.
11
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.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 # 02111-1307 USA
21
22
23
24 ## ---------------- ##
25 ## Default values. ##
26 ## ---------------- ##
27
28 # Stack parameters.
29 m4_define_default([b4_stack_depth_max], [10000])
30 m4_define_default([b4_stack_depth_init], [200])
31
32
33 ## ------------------------ ##
34 ## Pure/impure interfaces. ##
35 ## ------------------------ ##
36
37
38 # b4_pure_if(IF-TRUE, IF-FALSE)
39 # -----------------------------
40 # Expand IF-TRUE, if %pure-parser and %parse-param, IF-FALSE otherwise.
41 m4_define([b4_Pure_if],
42 [b4_pure_if([m4_ifset([b4_parse_param],
43 [$1], [$2])],
44 [$2])])
45
46
47 # b4_yyerror_args
48 # ---------------
49 # Arguments passed to yyerror: user args plus yylloc.
50 m4_define([b4_yyerror_args],
51 [b4_Pure_if([b4_location_if([&yylloc, ])])dnl
52 m4_ifset([b4_parse_param], [b4_c_args(b4_parse_param), ])])
53
54
55 # b4_lex_param
56 # ------------
57 # Accumule in b4_lex_param all the yylex arguments.
58 # b4_lex_param arrives quoted twice, but we want to keep only one level.
59 m4_define([b4_lex_param],
60 m4_dquote(b4_pure_if([[[[YYSTYPE *]], [[&yylval]]][]dnl
61 b4_location_if([, [[YYLTYPE *], [&yylloc]]])])dnl
62 m4_ifdef([b4_lex_param], [, ]b4_lex_param)))
63
64
65
66 ## ------------ ##
67 ## Data Types. ##
68 ## ------------ ##
69
70 # b4_int_type(MIN, MAX)
71 # ---------------------
72 # Return the smallest int type able to handle numbers ranging from
73 # MIN to MAX (included). We overwrite the version from c.m4 which relies
74 # on "signed char" which is not portable to old K&R compilers.
75 m4_define([b4_int_type],
76 [m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char],
77 b4_ints_in($@, [-128], [127]), [1], [yysigned_char],
78
79 b4_ints_in($@, [0], [65535]), [1], [unsigned short],
80 b4_ints_in($@, [-32768], [32767]), [1], [short],
81
82 m4_eval([0 <= $1]), [1], [unsigned int],
83
84 [int])])
85
86
87 ## ----------------- ##
88 ## Semantic Values. ##
89 ## ----------------- ##
90
91
92 # b4_lhs_value([TYPE])
93 # --------------------
94 # Expansion of $<TYPE>$.
95 m4_define([b4_lhs_value],
96 [yyval[]m4_ifval([$1], [.$1])])
97
98
99 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
100 # --------------------------------------
101 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
102 # symbols on RHS.
103 m4_define([b4_rhs_value],
104 [yyvsp@{m4_eval([$2 - $1])@}m4_ifval([$3], [.$3])])
105
106
107
108 ## ----------- ##
109 ## Locations. ##
110 ## ----------- ##
111
112 # b4_lhs_location()
113 # -----------------
114 # Expansion of @$.
115 m4_define([b4_lhs_location],
116 [yyloc])
117
118
119 # b4_rhs_location(RULE-LENGTH, NUM)
120 # ---------------------------------
121 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
122 # on RHS.
123 m4_define([b4_rhs_location],
124 [yylsp@{m4_eval([$2 - $1])@}])
125
126
127
128 ## --------------------------------------------------------- ##
129 ## Defining symbol actions, e.g., printers and destructors. ##
130 ## --------------------------------------------------------- ##
131
132 # We do want M4 expansion after # for CPP macros.
133 m4_changecom()
134 m4_divert(0)dnl
135 @output @output_parser_name@
136 b4_copyright([Skeleton parser for Yacc-like parsing with Bison],
137 [1984, 1989, 1990, 2000, 2001, 2002])[
138
139 /* As a special exception, when this file is copied by Bison into a
140 Bison output file, you may use that output file without restriction.
141 This special exception was added by the Free Software Foundation
142 in version 1.24 of Bison. */
143
144 /* Written by Richard Stallman by simplifying the original so called
145 ``semantic'' parser. */
146
147 /* All symbols defined below should begin with yy or YY, to avoid
148 infringing on user name space. This should be done even for local
149 variables, as they might otherwise be expanded by user macros.
150 There are some unavoidable exceptions within include files to
151 define necessary library symbols; they are noted "INFRINGES ON
152 USER NAME SPACE" below. */
153
154 ]b4_identification
155 m4_if(b4_prefix[], [yy], [],
156 [/* If NAME_PREFIX is specified substitute the variables and functions
157 names. */
158 #define yyparse b4_prefix[]parse
159 #define yylex b4_prefix[]lex
160 #define yyerror b4_prefix[]error
161 #define yylval b4_prefix[]lval
162 #define yychar b4_prefix[]char
163 #define yydebug b4_prefix[]debug
164 #define yynerrs b4_prefix[]nerrs
165 b4_location_if([#define yylloc b4_prefix[]lloc])])[
166
167 ]b4_token_defines(b4_tokens)[
168
169 /* Copy the first part of user declarations. */
170 ]b4_pre_prologue[
171
172 /* Enabling traces. */
173 #ifndef YYDEBUG
174 # define YYDEBUG ]b4_debug[
175 #endif
176
177 /* Enabling verbose error messages. */
178 #ifdef YYERROR_VERBOSE
179 # undef YYERROR_VERBOSE
180 # define YYERROR_VERBOSE 1
181 #else
182 # define YYERROR_VERBOSE ]b4_error_verbose[
183 #endif
184
185 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
186 ]m4_ifdef([b4_stype],
187 [b4_syncline([b4_stype_line], [b4_filename])
188 typedef union m4_bregexp(b4_stype, [^{], [YYSTYPE ])b4_stype YYSTYPE;
189 /* Line __line__ of yacc.c. */
190 b4_syncline([@oline@], [@ofile@])],
191 [typedef int YYSTYPE;])[
192 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
193 # define YYSTYPE_IS_DECLARED 1
194 # define YYSTYPE_IS_TRIVIAL 1
195 #endif
196
197 ]b4_location_if([#if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
198 typedef struct YYLTYPE
199 {
200 int first_line;
201 int first_column;
202 int last_line;
203 int last_column;
204 } YYLTYPE;
205 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
206 # define YYLTYPE_IS_DECLARED 1
207 # define YYLTYPE_IS_TRIVIAL 1
208 #endif
209 ])[
210
211 /* Copy the second part of user declarations. */
212 ]b4_post_prologue
213
214 /* Line __line__ of yacc.c. */
215 b4_syncline([@oline@], [@ofile@])[
216
217 #if ! defined (yyoverflow) || YYERROR_VERBOSE
218
219 /* The parser invokes alloca or malloc; define the necessary symbols. */
220
221 # if YYSTACK_USE_ALLOCA
222 # define YYSTACK_ALLOC alloca
223 # else
224 # ifndef YYSTACK_USE_ALLOCA
225 # if defined (alloca) || defined (_ALLOCA_H)
226 # define YYSTACK_ALLOC alloca
227 # else
228 # ifdef __GNUC__
229 # define YYSTACK_ALLOC __builtin_alloca
230 # endif
231 # endif
232 # endif
233 # endif
234
235 # ifdef YYSTACK_ALLOC
236 /* Pacify GCC's `empty if-body' warning. */
237 # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
238 # else
239 # if defined (__STDC__) || defined (__cplusplus)
240 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
241 # define YYSIZE_T size_t
242 # endif
243 # define YYSTACK_ALLOC malloc
244 # define YYSTACK_FREE free
245 # endif
246 #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */
247
248
249 #if (! defined (yyoverflow) \
250 && (! defined (__cplusplus) \
251 || (]b4_location_if([YYLTYPE_IS_TRIVIAL && ])[YYSTYPE_IS_TRIVIAL)))
252
253 /* A type that is properly aligned for any stack member. */
254 union yyalloc
255 {
256 short yyss;
257 YYSTYPE yyvs;
258 ]b4_location_if([ YYLTYPE yyls;
259 ])dnl
260 [};
261
262 /* The size of the maximum gap between one aligned stack and the next. */
263 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
264
265 /* The size of an array large to enough to hold all stacks, each with
266 N elements. */
267 ]b4_location_if(
268 [# define YYSTACK_BYTES(N) \
269 ((N) * (sizeof (short) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
270 + 2 * YYSTACK_GAP_MAXIMUM)],
271 [# define YYSTACK_BYTES(N) \
272 ((N) * (sizeof (short) + sizeof (YYSTYPE)) \
273 + YYSTACK_GAP_MAXIMUM)])[
274
275 /* Copy COUNT objects from FROM to TO. The source and destination do
276 not overlap. */
277 # ifndef YYCOPY
278 # if 1 < __GNUC__
279 # define YYCOPY(To, From, Count) \
280 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
281 # else
282 # define YYCOPY(To, From, Count) \
283 do \
284 { \
285 register YYSIZE_T yyi; \
286 for (yyi = 0; yyi < (Count); yyi++) \
287 (To)[yyi] = (From)[yyi]; \
288 } \
289 while (0)
290 # endif
291 # endif
292
293 /* Relocate STACK from its old location to the new one. The
294 local variables YYSIZE and YYSTACKSIZE give the old and new number of
295 elements in the stack, and YYPTR gives the new location of the
296 stack. Advance YYPTR to a properly aligned location for the next
297 stack. */
298 # define YYSTACK_RELOCATE(Stack) \
299 do \
300 { \
301 YYSIZE_T yynewbytes; \
302 YYCOPY (&yyptr->Stack, Stack, yysize); \
303 Stack = &yyptr->Stack; \
304 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
305 yyptr += yynewbytes / sizeof (*yyptr); \
306 } \
307 while (0)
308
309 #endif
310
311 #if defined (__STDC__) || defined (__cplusplus)
312 typedef signed char yysigned_char;
313 #else
314 typedef short yysigned_char;
315 #endif
316
317 /* YYFINAL -- State number of the termination state. */
318 #define YYFINAL ]b4_final_state_number[
319 /* YYLAST -- Last index in YYTABLE. */
320 #define YYLAST ]b4_last[
321
322 /* YYNTOKENS -- Number of terminals. */
323 #define YYNTOKENS ]b4_tokens_number[
324 /* YYNNTS -- Number of nonterminals. */
325 #define YYNNTS ]b4_nterms_number[
326 /* YYNRULES -- Number of rules. */
327 #define YYNRULES ]b4_rules_number[
328 /* YYNRULES -- Number of states. */
329 #define YYNSTATES ]b4_states_number[
330
331 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
332 #define YYUNDEFTOK ]b4_undef_token_number[
333 #define YYMAXUTOK ]b4_user_token_number_max[
334
335 #define YYTRANSLATE(YYX) \
336 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
337
338 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
339 static const ]b4_int_type_for([b4_translate])[ yytranslate[] =
340 {
341 ]b4_translate[
342 };
343
344 #if YYDEBUG
345 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
346 YYRHS. */
347 static const ]b4_int_type_for([b4_prhs])[ yyprhs[] =
348 {
349 ]b4_prhs[
350 };
351
352 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
353 static const ]b4_int_type_for([b4_rhs])[ yyrhs[] =
354 {
355 ]b4_rhs[
356 };
357
358 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
359 static const ]b4_int_type_for([b4_rline])[ yyrline[] =
360 {
361 ]b4_rline[
362 };
363 #endif
364
365 #if YYDEBUG || YYERROR_VERBOSE
366 /* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
367 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
368 static const char *const yytname[] =
369 {
370 ]b4_tname[
371 };
372 #endif
373
374 # ifdef YYPRINT
375 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
376 token YYLEX-NUM. */
377 static const ]b4_int_type_for([b4_toknum])[ yytoknum[] =
378 {
379 ]b4_toknum[
380 };
381 # endif
382
383 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
384 static const ]b4_int_type_for([b4_r1])[ yyr1[] =
385 {
386 ]b4_r1[
387 };
388
389 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
390 static const ]b4_int_type_for([b4_r2])[ yyr2[] =
391 {
392 ]b4_r2[
393 };
394
395 /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
396 STATE-NUM when YYTABLE doesn't specify something else to do. Zero
397 means the default is an error. */
398 static const ]b4_int_type_for([b4_defact])[ yydefact[] =
399 {
400 ]b4_defact[
401 };
402
403 /* YYDEFGOTO[NTERM-NUM]. */
404 static const ]b4_int_type_for([b4_defgoto])[ yydefgoto[] =
405 {
406 ]b4_defgoto[
407 };
408
409 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
410 STATE-NUM. */
411 #define YYPACT_NINF ]b4_pact_ninf[
412 static const ]b4_int_type_for([b4_pact])[ yypact[] =
413 {
414 ]b4_pact[
415 };
416
417 /* YYPGOTO[NTERM-NUM]. */
418 static const ]b4_int_type_for([b4_pgoto])[ yypgoto[] =
419 {
420 ]b4_pgoto[
421 };
422
423 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
424 positive, shift that token. If negative, reduce the rule which
425 number is the opposite. If zero, do what YYDEFACT says.
426 If YYTABLE_NINF, syntax error. */
427 #define YYTABLE_NINF ]b4_table_ninf[
428 static const ]b4_int_type_for([b4_table])[ yytable[] =
429 {
430 ]b4_table[
431 };
432
433 static const ]b4_int_type_for([b4_check])[ yycheck[] =
434 {
435 ]b4_check[
436 };
437
438 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
439 symbol of state STATE-NUM. */
440 static const ]b4_int_type_for([b4_stos])[ yystos[] =
441 {
442 ]b4_stos[
443 };
444
445 #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__)
446 # define YYSIZE_T __SIZE_TYPE__
447 #endif
448 #if ! defined (YYSIZE_T) && defined (size_t)
449 # define YYSIZE_T size_t
450 #endif
451 #if ! defined (YYSIZE_T)
452 # if defined (__STDC__) || defined (__cplusplus)
453 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
454 # define YYSIZE_T size_t
455 # endif
456 #endif
457 #if ! defined (YYSIZE_T)
458 # define YYSIZE_T unsigned int
459 #endif
460
461 #define yyerrok (yyerrstatus = 0)
462 #define yyclearin (yychar = YYEMPTY)
463 #define YYEMPTY (-2)
464 #define YYEOF 0
465
466 #define YYACCEPT goto yyacceptlab
467 #define YYABORT goto yyabortlab
468 #define YYERROR goto yyerrlab1
469
470 /* Like YYERROR except do call yyerror. This remains here temporarily
471 to ease the transition to the new meaning of YYERROR, for GCC.
472 Once GCC version 2 has supplanted version 1, this can go. */
473
474 #define YYFAIL goto yyerrlab
475
476 #define YYRECOVERING() (!!yyerrstatus)
477
478 #define YYBACKUP(Token, Value) \
479 do \
480 if (yychar == YYEMPTY && yylen == 1) \
481 { \
482 yychar = (Token); \
483 yylval = (Value); \
484 yytoken = YYTRANSLATE (yychar); \
485 YYPOPSTACK; \
486 goto yybackup; \
487 } \
488 else \
489 { \
490 yyerror (]b4_yyerror_args["syntax error: cannot back up");\
491 YYERROR; \
492 } \
493 while (0)
494
495 #define YYTERROR 1
496 #define YYERRCODE 256
497
498 /* YYLLOC_DEFAULT -- Compute the default location (before the actions
499 are run). */
500
501 #ifndef YYLLOC_DEFAULT
502 # define YYLLOC_DEFAULT(Current, Rhs, N) \
503 Current.first_line = Rhs[1].first_line; \
504 Current.first_column = Rhs[1].first_column; \
505 Current.last_line = Rhs[N].last_line; \
506 Current.last_column = Rhs[N].last_column;
507 #endif
508
509 /* YYLEX -- calling `yylex' with the right arguments. */
510
511 #ifdef YYLEX_PARAM
512 # define YYLEX yylex (]b4_pure_if([&yylval[]b4_location_if([, &yylloc]), ])[YYLEX_PARAM)
513 #else
514 # define YYLEX ]b4_c_function_call([yylex], [int], b4_lex_param)[
515 #endif
516
517 /* Enable debugging if requested. */
518 #if YYDEBUG
519
520 # ifndef YYFPRINTF
521 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
522 # define YYFPRINTF fprintf
523 # endif
524
525 # define YYDPRINTF(Args) \
526 do { \
527 if (yydebug) \
528 YYFPRINTF Args; \
529 } while (0)
530
531 # define YYDSYMPRINT(Args) \
532 do { \
533 if (yydebug) \
534 yysymprint Args; \
535 } while (0)
536
537 # define YYDSYMPRINTF(Title, Token, Value, Location) \
538 do { \
539 if (yydebug) \
540 { \
541 YYFPRINTF (stderr, "%s ", Title); \
542 yysymprint (stderr, \
543 Token, Value]b4_location_if([, Location])[); \
544 YYFPRINTF (stderr, "\n"); \
545 } \
546 } while (0)
547
548 /*------------------------------------------------------------------.
549 | yy_stack_print -- Print the state stack from its BOTTOM up to its |
550 | TOP (cinluded). |
551 `------------------------------------------------------------------*/
552
553 ]b4_c_function_def([yy_stack_print], [static void],
554 [[short *bottom], [bottom]],
555 [[short *top], [top]])[
556 {
557 YYFPRINTF (stderr, "Stack now");
558 for (/* Nothing. */; bottom <= top; ++bottom)
559 YYFPRINTF (stderr, " %d", *bottom);
560 YYFPRINTF (stderr, "\n");
561 }
562
563 # define YY_STACK_PRINT(Bottom, Top) \
564 do { \
565 if (yydebug) \
566 yy_stack_print ((Bottom), (Top)); \
567 } while (0)
568
569
570 /*------------------------------------------------.
571 | Report that the YYRULE is going to be reduced. |
572 `------------------------------------------------*/
573
574 ]b4_c_function_def([yy_reduce_print], [static void],
575 [[int yyrule], [yyrule]])[
576 {
577 int yyi;
578 unsigned int yylineno = yyrline[yyrule];
579 YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ",
580 yyrule - 1, yylineno);
581 /* Print the symbols being reduced, and their result. */
582 for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++)
583 YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]);
584 YYFPRINTF (stderr, "-> %s\n", yytname [yyr1[yyrule]]);
585 }
586
587 # define YY_REDUCE_PRINT(Rule) \
588 do { \
589 if (yydebug) \
590 yy_reduce_print (Rule); \
591 } while (0)
592
593 /* Nonzero means print parse trace. It is left uninitialized so that
594 multiple parsers can coexist. */
595 int yydebug;
596 #else /* !YYDEBUG */
597 # define YYDPRINTF(Args)
598 # define YYDSYMPRINT(Args)
599 # define YYDSYMPRINTF(Title, Token, Value, Location)
600 # define YY_STACK_PRINT(Bottom, Top)
601 # define YY_REDUCE_PRINT(Rule)
602 #endif /* !YYDEBUG */
603
604
605 /* YYINITDEPTH -- initial size of the parser's stacks. */
606 #ifndef YYINITDEPTH
607 # define YYINITDEPTH ]b4_stack_depth_init[
608 #endif
609
610 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
611 if the built-in stack extension method is used).
612
613 Do not make this value too large; the results are undefined if
614 SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH)
615 evaluated with infinite-precision integer arithmetic. */
616
617 #if YYMAXDEPTH == 0
618 # undef YYMAXDEPTH
619 #endif
620
621 #ifndef YYMAXDEPTH
622 # define YYMAXDEPTH ]b4_stack_depth_max[
623 #endif
624
625 \f
626
627 #if YYERROR_VERBOSE
628
629 # ifndef yystrlen
630 # if defined (__GLIBC__) && defined (_STRING_H)
631 # define yystrlen strlen
632 # else
633 /* Return the length of YYSTR. */
634 static YYSIZE_T
635 # if defined (__STDC__) || defined (__cplusplus)
636 yystrlen (const char *yystr)
637 # else
638 yystrlen (yystr)
639 const char *yystr;
640 # endif
641 {
642 register const char *yys = yystr;
643
644 while (*yys++ != '\0')
645 continue;
646
647 return yys - yystr - 1;
648 }
649 # endif
650 # endif
651
652 # ifndef yystpcpy
653 # if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
654 # define yystpcpy stpcpy
655 # else
656 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
657 YYDEST. */
658 static char *
659 # if defined (__STDC__) || defined (__cplusplus)
660 yystpcpy (char *yydest, const char *yysrc)
661 # else
662 yystpcpy (yydest, yysrc)
663 char *yydest;
664 const char *yysrc;
665 # endif
666 {
667 register char *yyd = yydest;
668 register const char *yys = yysrc;
669
670 while ((*yyd++ = *yys++) != '\0')
671 continue;
672
673 return yyd - 1;
674 }
675 # endif
676 # endif
677
678 #endif /* !YYERROR_VERBOSE */
679
680 \f
681
682 #if YYDEBUG
683 ]b4_yysymprint_generate([b4_c_function_def])[
684 #endif /* ! YYDEBUG */
685 ]b4_yydestruct_generate([b4_c_function_def])
686 \f
687
688 /* Prevent warnings from -Wmissing-prototypes. */
689
690 #ifdef YYPARSE_PARAM
691 # if defined (__STDC__) || defined (__cplusplus)
692 int yyparse (void *YYPARSE_PARAM);
693 # else
694 int yyparse ();
695 # endif
696 #else /* ! YYPARSE_PARAM */
697 b4_c_function_decl([yyparse], [int], b4_parse_param)
698 #endif /* ! YYPARSE_PARAM */
699
700
701 m4_divert_push([KILL])# ======================== M4 code.
702 # b4_declare_parser_variables
703 # ---------------------------
704 # Declare the variables that are global, or local to YYPARSE if
705 # pure-parser.
706 m4_define([b4_declare_parser_variables],
707 [/* The lookahead symbol. */
708 int yychar;
709
710 /* The semantic value of the lookahead symbol. */
711 YYSTYPE yylval;
712
713 /* Number of syntax errors so far. */
714 int yynerrs;b4_location_if([
715 /* Location data for the lookahead symbol. */
716 YYLTYPE yylloc;])
717 ])
718 m4_divert_pop([KILL])dnl# ====================== End of M4 code.
719
720 b4_pure_if([],
721 [b4_declare_parser_variables])
722
723
724 /*----------.
725 | yyparse. |
726 `----------*/
727
728 #ifdef YYPARSE_PARAM
729 # if defined (__STDC__) || defined (__cplusplus)
730 int yyparse (void *YYPARSE_PARAM)
731 # else
732 int yyparse (YYPARSE_PARAM)
733 void *YYPARSE_PARAM;
734 # endif
735 #else /* ! YYPARSE_PARAM */
736 b4_c_function_def([yyparse], [int], b4_parse_param)
737 #endif
738 {[
739 ]b4_pure_if([b4_declare_parser_variables])[
740 register int yystate;
741 register int yyn;
742 int yyresult;
743 /* Number of tokens to shift before error messages enabled. */
744 int yyerrstatus;
745 /* Lookahead token as an internal (translated) token number. */
746 int yytoken = 0;
747
748 /* Three stacks and their tools:
749 `yyss': related to states,
750 `yyvs': related to semantic values,
751 `yyls': related to locations.
752
753 Refer to the stacks thru separate pointers, to allow yyoverflow
754 to reallocate them elsewhere. */
755
756 /* The state stack. */
757 short yyssa[YYINITDEPTH];
758 short *yyss = yyssa;
759 register short *yyssp;
760
761 /* The semantic value stack. */
762 YYSTYPE yyvsa[YYINITDEPTH];
763 YYSTYPE *yyvs = yyvsa;
764 register YYSTYPE *yyvsp;
765
766 ]b4_location_if(
767 [[ /* The location stack. */
768 YYLTYPE yylsa[YYINITDEPTH];
769 YYLTYPE *yyls = yylsa;
770 YYLTYPE *yylsp;]])[
771
772 #define YYPOPSTACK (yyvsp--, yyssp--]b4_location_if([, yylsp--])[)
773
774 YYSIZE_T yystacksize = YYINITDEPTH;
775
776 /* The variables used to return semantic value and location from the
777 action routines. */
778 YYSTYPE yyval;
779 ]b4_location_if([ YYLTYPE yyloc;])[
780
781 /* When reducing, the number of symbols on the RHS of the reduced
782 rule. */
783 int yylen;
784
785 YYDPRINTF ((stderr, "Starting parse\n"));
786
787 yystate = 0;
788 yyerrstatus = 0;
789 yynerrs = 0;
790 yychar = YYEMPTY; /* Cause a token to be read. */
791
792 /* Initialize stack pointers.
793 Waste one element of value and location stack
794 so that they stay on the same level as the state stack.
795 The wasted elements are never initialized. */
796
797 yyssp = yyss;
798 yyvsp = yyvs;
799 ]b4_location_if([ yylsp = yyls;])[
800 goto yysetstate;
801
802 /*------------------------------------------------------------.
803 | yynewstate -- Push a new state, which is found in yystate. |
804 `------------------------------------------------------------*/
805 yynewstate:
806 /* In all cases, when you get here, the value and location stacks
807 have just been pushed. so pushing a state here evens the stacks.
808 */
809 yyssp++;
810
811 yysetstate:
812 *yyssp = yystate;
813
814 if (yyss + yystacksize - 1 <= yyssp)
815 {
816 /* Get the current used size of the three stacks, in elements. */
817 YYSIZE_T yysize = yyssp - yyss + 1;
818
819 #ifdef yyoverflow
820 {
821 /* Give user a chance to reallocate the stack. Use copies of
822 these so that the &'s don't force the real ones into
823 memory. */
824 YYSTYPE *yyvs1 = yyvs;
825 short *yyss1 = yyss;
826 ]b4_location_if([ YYLTYPE *yyls1 = yyls;])[
827
828 /* Each stack pointer address is followed by the size of the
829 data in use in that stack, in bytes. This used to be a
830 conditional around just the two extra args, but that might
831 be undefined if yyoverflow is a macro. */
832 yyoverflow ("parser stack overflow",
833 &yyss1, yysize * sizeof (*yyssp),
834 &yyvs1, yysize * sizeof (*yyvsp),
835 ]b4_location_if([ &yyls1, yysize * sizeof (*yylsp),])[
836 &yystacksize);
837 ]b4_location_if([ yyls = yyls1;])[
838 yyss = yyss1;
839 yyvs = yyvs1;
840 }
841 #else /* no yyoverflow */
842 # ifndef YYSTACK_RELOCATE
843 goto yyoverflowlab;
844 # else
845 /* Extend the stack our own way. */
846 if (YYMAXDEPTH <= yystacksize)
847 goto yyoverflowlab;
848 yystacksize *= 2;
849 if (YYMAXDEPTH < yystacksize)
850 yystacksize = YYMAXDEPTH;
851
852 {
853 short *yyss1 = yyss;
854 union yyalloc *yyptr =
855 (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
856 if (! yyptr)
857 goto yyoverflowlab;
858 YYSTACK_RELOCATE (yyss);
859 YYSTACK_RELOCATE (yyvs);
860 ]b4_location_if([ YYSTACK_RELOCATE (yyls);])[
861 # undef YYSTACK_RELOCATE
862 if (yyss1 != yyssa)
863 YYSTACK_FREE (yyss1);
864 }
865 # endif
866 #endif /* no yyoverflow */
867
868 yyssp = yyss + yysize - 1;
869 yyvsp = yyvs + yysize - 1;
870 ]b4_location_if([ yylsp = yyls + yysize - 1;])[
871
872 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
873 (unsigned long int) yystacksize));
874
875 if (yyss + yystacksize - 1 <= yyssp)
876 YYABORT;
877 }
878
879 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
880
881 goto yybackup;
882
883 /*-----------.
884 | yybackup. |
885 `-----------*/
886 yybackup:
887
888 /* Do appropriate processing given the current state. */
889 /* Read a lookahead token if we need one and don't already have one. */
890 /* yyresume: */
891
892 /* First try to decide what to do without reference to lookahead token. */
893
894 yyn = yypact[yystate];
895 if (yyn == YYPACT_NINF)
896 goto yydefault;
897
898 /* Not known => get a lookahead token if don't already have one. */
899
900 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
901 if (yychar == YYEMPTY)
902 {
903 YYDPRINTF ((stderr, "Reading a token: "));
904 yychar = YYLEX;
905 }
906
907 if (yychar <= YYEOF)
908 {
909 yychar = yytoken = YYEOF;
910 YYDPRINTF ((stderr, "Now at end of input.\n"));
911 }
912 else
913 {
914 yytoken = YYTRANSLATE (yychar);
915 YYDSYMPRINTF ("Next token is", yytoken, &yylval, &yylloc);
916 }
917
918 /* If the proper action on seeing token YYTOKEN is to reduce or to
919 detect an error, take that action. */
920 yyn += yytoken;
921 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
922 goto yydefault;
923 yyn = yytable[yyn];
924 if (yyn <= 0)
925 {
926 if (yyn == 0 || yyn == YYTABLE_NINF)
927 goto yyerrlab;
928 yyn = -yyn;
929 goto yyreduce;
930 }
931
932 if (yyn == YYFINAL)
933 YYACCEPT;
934
935 /* Shift the lookahead token. */
936 YYDPRINTF ((stderr, "Shifting token %s, ", yytname[yytoken]));
937
938 /* Discard the token being shifted unless it is eof. */
939 if (yychar != YYEOF)
940 yychar = YYEMPTY;
941
942 *++yyvsp = yylval;
943 ]b4_location_if([ *++yylsp = yylloc;])[
944
945 /* Count tokens shifted since error; after three, turn off error
946 status. */
947 if (yyerrstatus)
948 yyerrstatus--;
949
950 yystate = yyn;
951 goto yynewstate;
952
953
954 /*-----------------------------------------------------------.
955 | yydefault -- do the default action for the current state. |
956 `-----------------------------------------------------------*/
957 yydefault:
958 yyn = yydefact[yystate];
959 if (yyn == 0)
960 goto yyerrlab;
961 goto yyreduce;
962
963
964 /*-----------------------------.
965 | yyreduce -- Do a reduction. |
966 `-----------------------------*/
967 yyreduce:
968 /* yyn is the number of a rule to reduce with. */
969 yylen = yyr2[yyn];
970
971 /* If YYLEN is nonzero, implement the default value of the action:
972 `$$ = $1'.
973
974 Otherwise, the following line sets YYVAL to garbage.
975 This behavior is undocumented and Bison
976 users should not rely upon it. Assigning to YYVAL
977 unconditionally makes the parser a bit smaller, and it avoids a
978 GCC warning that YYVAL may be used uninitialized. */
979 yyval = yyvsp[1-yylen];
980
981 ]b4_location_if(
982 [ /* Default location. */
983 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);])[
984 YY_REDUCE_PRINT (yyn);
985 switch (yyn)
986 ]{
987 b4_actions
988 }
989
990 /* Line __line__ of yacc.c. */
991 b4_syncline([@oline@], [@ofile@])
992 \f
993 [ yyvsp -= yylen;
994 yyssp -= yylen;
995 ]b4_location_if([ yylsp -= yylen;])[
996
997 YY_STACK_PRINT (yyss, yyssp);
998
999 *++yyvsp = yyval;
1000 ]b4_location_if([ *++yylsp = yyloc;])[
1001
1002 /* Now `shift' the result of the reduction. Determine what state
1003 that goes to, based on the state we popped back to and the rule
1004 number reduced by. */
1005
1006 yyn = yyr1[yyn];
1007
1008 yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
1009 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
1010 yystate = yytable[yystate];
1011 else
1012 yystate = yydefgoto[yyn - YYNTOKENS];
1013
1014 goto yynewstate;
1015
1016
1017 /*------------------------------------.
1018 | yyerrlab -- here on detecting error |
1019 `------------------------------------*/
1020 yyerrlab:
1021 /* If not already recovering from an error, report this error. */
1022 if (!yyerrstatus)
1023 {
1024 ++yynerrs;
1025 #if YYERROR_VERBOSE
1026 yyn = yypact[yystate];
1027
1028 if (YYPACT_NINF < yyn && yyn < YYLAST)
1029 {
1030 YYSIZE_T yysize = 0;
1031 int yytype = YYTRANSLATE (yychar);
1032 char *yymsg;
1033 int yyx, yycount;
1034
1035 yycount = 0;
1036 /* Start YYX at -YYN if negative to avoid negative indexes in
1037 YYCHECK. */
1038 for (yyx = yyn < 0 ? -yyn : 0;
1039 yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++)
1040 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
1041 yysize += yystrlen (yytname[yyx]) + 15, yycount++;
1042 yysize += yystrlen ("syntax error, unexpected ") + 1;
1043 yysize += yystrlen (yytname[yytype]);
1044 yymsg = (char *) YYSTACK_ALLOC (yysize);
1045 if (yymsg != 0)
1046 {
1047 char *yyp = yystpcpy (yymsg, "syntax error, unexpected ");
1048 yyp = yystpcpy (yyp, yytname[yytype]);
1049
1050 if (yycount < 5)
1051 {
1052 yycount = 0;
1053 for (yyx = yyn < 0 ? -yyn : 0;
1054 yyx < (int) (sizeof (yytname) / sizeof (char *));
1055 yyx++)
1056 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
1057 {
1058 const char *yyq = ! yycount ? ", expecting " : " or ";
1059 yyp = yystpcpy (yyp, yyq);
1060 yyp = yystpcpy (yyp, yytname[yyx]);
1061 yycount++;
1062 }
1063 }
1064 yyerror (]b4_yyerror_args[yymsg);
1065 YYSTACK_FREE (yymsg);
1066 }
1067 else
1068 yyerror (]b4_yyerror_args["syntax error; also virtual memory exhausted");
1069 }
1070 else
1071 #endif /* YYERROR_VERBOSE */
1072 yyerror (]b4_yyerror_args["syntax error");
1073 }
1074
1075 if (yyerrstatus == 3)
1076 {
1077 /* If just tried and failed to reuse lookahead token after an
1078 error, discard it. */
1079
1080 /* Return failure if at end of input. */
1081 if (yychar == YYEOF)
1082 {
1083 /* Pop the error token. */
1084 YYPOPSTACK;
1085 /* Pop the rest of the stack. */
1086 while (yyss < yyssp)
1087 {
1088 YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
1089 yydestruct (yystos[*yyssp], yyvsp]b4_location_if([, yylsp])[);
1090 YYPOPSTACK;
1091 }
1092 YYABORT;
1093 }
1094
1095 YYDSYMPRINTF ("Error: discarding", yytoken, &yylval, &yylloc);
1096 yydestruct (yytoken, &yylval]b4_location_if([, &yylloc])[);
1097 yychar = YYEMPTY;
1098 }
1099
1100 /* Else will try to reuse lookahead token after shifting the error
1101 token. */
1102 goto yyerrlab1;
1103
1104
1105 /*----------------------------------------------------.
1106 | yyerrlab1 -- error raised explicitly by an action. |
1107 `----------------------------------------------------*/
1108 yyerrlab1:
1109 yyerrstatus = 3; /* Each real token shifted decrements this. */
1110
1111 for (;;)
1112 {
1113 yyn = yypact[yystate];
1114 if (yyn != YYPACT_NINF)
1115 {
1116 yyn += YYTERROR;
1117 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
1118 {
1119 yyn = yytable[yyn];
1120 if (0 < yyn)
1121 break;
1122 }
1123 }
1124
1125 /* Pop the current state because it cannot handle the error token. */
1126 if (yyssp == yyss)
1127 YYABORT;
1128
1129 YYDSYMPRINTF ("Error: popping", yystos[*yyssp], yyvsp, yylsp);
1130 yydestruct (yystos[yystate], yyvsp]b4_location_if([, yylsp])[);
1131 yyvsp--;
1132 yystate = *--yyssp;
1133 ]b4_location_if([ yylsp--;])[
1134 YY_STACK_PRINT (yyss, yyssp);
1135 }
1136
1137 if (yyn == YYFINAL)
1138 YYACCEPT;
1139
1140 YYDPRINTF ((stderr, "Shifting error token, "));
1141
1142 *++yyvsp = yylval;
1143 ]b4_location_if([ *++yylsp = yylloc;])[
1144
1145 yystate = yyn;
1146 goto yynewstate;
1147
1148
1149 /*-------------------------------------.
1150 | yyacceptlab -- YYACCEPT comes here. |
1151 `-------------------------------------*/
1152 yyacceptlab:
1153 yyresult = 0;
1154 goto yyreturn;
1155
1156 /*-----------------------------------.
1157 | yyabortlab -- YYABORT comes here. |
1158 `-----------------------------------*/
1159 yyabortlab:
1160 yyresult = 1;
1161 goto yyreturn;
1162
1163 #ifndef yyoverflow
1164 /*----------------------------------------------.
1165 | yyoverflowlab -- parser overflow comes here. |
1166 `----------------------------------------------*/
1167 yyoverflowlab:
1168 yyerror (]b4_yyerror_args["parser stack overflow");
1169 yyresult = 2;
1170 /* Fall through. */
1171 #endif
1172
1173 yyreturn:
1174 #ifndef yyoverflow
1175 if (yyss != yyssa)
1176 YYSTACK_FREE (yyss);
1177 #endif
1178 return yyresult;
1179 ]}
1180
1181
1182 b4_epilogue
1183 m4_if(b4_defines_flag, 0, [],
1184 [@output @output_header_name@
1185 b4_copyright([Skeleton parser for Yacc-like parsing with Bison],
1186 [1984, 1989, 1990, 2000, 2001, 2002])
1187
1188 /* As a special exception, when this file is copied by Bison into a
1189 Bison output file, you may use that output file without restriction.
1190 This special exception was added by the Free Software Foundation
1191 in version 1.24 of Bison. */
1192
1193 b4_token_defines(b4_tokens)
1194
1195 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
1196 m4_ifdef([b4_stype],
1197 [b4_syncline([b4_stype_line], [b4_filename])
1198 typedef union m4_bregexp(b4_stype, [^{], [YYSTYPE ])b4_stype YYSTYPE;
1199 /* Line __line__ of yacc.c. */
1200 b4_syncline([@oline@], [@ofile@])],
1201 [typedef int YYSTYPE;])
1202 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
1203 # define YYSTYPE_IS_DECLARED 1
1204 # define YYSTYPE_IS_TRIVIAL 1
1205 #endif
1206
1207 b4_pure_if([],
1208 [extern YYSTYPE b4_prefix[]lval;])
1209
1210 b4_location_if(
1211 [#if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
1212 typedef struct YYLTYPE
1213 {
1214 int first_line;
1215 int first_column;
1216 int last_line;
1217 int last_column;
1218 } YYLTYPE;
1219 # define yyltype YYLTYPE /* obsolescent; will be withdrawn */
1220 # define YYLTYPE_IS_DECLARED 1
1221 # define YYLTYPE_IS_TRIVIAL 1
1222 #endif
1223
1224 m4_if(b4_pure, [0],
1225 [extern YYLTYPE b4_prefix[]lloc;])
1226 ])
1227 ])