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