]> git.saurik.com Git - bison.git/blame - data/yacc.c
todo: short term
[bison.git] / data / yacc.c
CommitLineData
08af01c2 1 -*- C -*-
60491a94 2# Yacc compatible skeleton for Bison
c7a65b99 3
945e396c 4# Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
b3a2272a 5# 2007, 2008, 2009 Free Software Foundation, Inc.
60491a94 6
639867b5 7m4_pushdef([b4_copyright_years],
401b73af
JD
8 [1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
9 2007, 2008, 2009])
639867b5 10
f16b0819 11# This program is free software: you can redistribute it and/or modify
60491a94 12# it under the terms of the GNU General Public License as published by
f16b0819 13# the Free Software Foundation, either version 3 of the License, or
60491a94 14# (at your option) any later version.
f16b0819 15#
60491a94
AD
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
f16b0819 20#
60491a94 21# You should have received a copy of the GNU General Public License
f16b0819 22# along with this program. If not, see <http://www.gnu.org/licenses/>.
60491a94 23
67212941
JD
24# Check the value of %define api.push-pull.
25b4_percent_define_default([[api.push-pull]], [[pull]])
26b4_percent_define_check_values([[[[api.push-pull]],
bb31eb56 27 [[pull]], [[push]], [[both]]]])
9ca7f077
JD
28b4_define_flag_if([pull]) m4_define([b4_pull_flag], [[1]])
29b4_define_flag_if([push]) m4_define([b4_push_flag], [[1]])
67212941 30m4_case(b4_percent_define_get([[api.push-pull]]),
9ca7f077
JD
31 [pull], [m4_define([b4_push_flag], [[0]])],
32 [push], [m4_define([b4_pull_flag], [[0]])])
33
34# Handle BISON_USE_PUSH_FOR_PULL for the test suite. So that push parsing
35# tests function as written, don't let BISON_USE_PUSH_FOR_PULL modify Bison's
36# behavior at all when push parsing is already requested.
37b4_define_flag_if([use_push_for_pull])
38b4_use_push_for_pull_if([
39 b4_push_if([m4_define([b4_use_push_for_pull_flag], [[0]])],
40 [m4_define([b4_push_flag], [[1]])])])
945e396c 41
0a96ba81 42m4_include(b4_pkgdatadir/[c.m4])
7eb8a0bc 43
66d30cd4
AD
44## ---------------- ##
45## Default values. ##
46## ---------------- ##
47
48# Stack parameters.
49m4_define_default([b4_stack_depth_max], [10000])
50m4_define_default([b4_stack_depth_init], [200])
51
2a8d363a
AD
52
53## ------------------------ ##
54## Pure/impure interfaces. ##
55## ------------------------ ##
56
d9df47b6
JD
57b4_percent_define_default([[api.pure]], [[false]])
58b4_define_flag_if([pure])
59m4_define([b4_pure_flag],
60 [b4_percent_define_flag_if([[api.pure]], [[1]], [[0]])])
2a8d363a 61
4b367315
AD
62# b4_yacc_pure_if(IF-TRUE, IF-FALSE)
63# ----------------------------------
2a8d363a 64# Expand IF-TRUE, if %pure-parser and %parse-param, IF-FALSE otherwise.
4b367315 65m4_define([b4_yacc_pure_if],
2a8d363a 66[b4_pure_if([m4_ifset([b4_parse_param],
02650b7f
PE
67 [$1], [$2])],
68 [$2])])
2a8d363a
AD
69
70
93724f13
AD
71# b4_yyerror_args
72# ---------------
2a8d363a 73# Arguments passed to yyerror: user args plus yylloc.
93724f13 74m4_define([b4_yyerror_args],
327afc7c 75[b4_yacc_pure_if([b4_locations_if([&yylloc, ])])dnl
93724f13 76m4_ifset([b4_parse_param], [b4_c_args(b4_parse_param), ])])
2a8d363a
AD
77
78
79# b4_lex_param
80# ------------
d42f69cd 81# Accumulate in b4_lex_param all the yylex arguments.
2a8d363a 82# b4_lex_param arrives quoted twice, but we want to keep only one level.
21964f43
AD
83m4_define([b4_lex_param],
84m4_dquote(b4_pure_if([[[[YYSTYPE *]], [[&yylval]]][]dnl
327afc7c 85b4_locations_if([, [[YYLTYPE *], [&yylloc]]])m4_ifdef([b4_lex_param], [, ])])dnl
68cdf747 86m4_ifdef([b4_lex_param], b4_lex_param)))
66d30cd4
AD
87
88
f1886bb2
AD
89## ------------ ##
90## Data Types. ##
91## ------------ ##
92
93# b4_int_type(MIN, MAX)
94# ---------------------
95# Return the smallest int type able to handle numbers ranging from
d42cf844
PE
96# MIN to MAX (included). Overwrite the version from c.m4, which
97# uses only C89 types, so that the user can override the shorter
98# types, and so that pre-C89 compilers are handled correctly.
f1886bb2 99m4_define([b4_int_type],
d42cf844
PE
100[m4_if(b4_ints_in($@, [0], [255]), [1], [yytype_uint8],
101 b4_ints_in($@, [-128], [127]), [1], [yytype_int8],
f1886bb2 102
d42cf844
PE
103 b4_ints_in($@, [0], [65535]), [1], [yytype_uint16],
104 b4_ints_in($@, [-32768], [32767]), [1], [yytype_int16],
f1886bb2
AD
105
106 m4_eval([0 <= $1]), [1], [unsigned int],
107
02650b7f 108 [int])])
f1886bb2
AD
109
110
66d30cd4
AD
111## ----------------- ##
112## Semantic Values. ##
113## ----------------- ##
114
115
82b6cb3f
AD
116# b4_lhs_value([TYPE])
117# --------------------
118# Expansion of $<TYPE>$.
119m4_define([b4_lhs_value],
1fa5d8bb 120[b4_symbol_value(yyval, [$1])])
82b6cb3f
AD
121
122
123# b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
124# --------------------------------------
125# Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
126# symbols on RHS.
127m4_define([b4_rhs_value],
bd187d7b 128 [b4_symbol_value([yyvsp@{b4_subtract([$2], [$1])@}], [$3])])
82b6cb3f
AD
129
130
58612f1d
AD
131
132## ----------- ##
133## Locations. ##
134## ----------- ##
135
82b6cb3f
AD
136# b4_lhs_location()
137# -----------------
138# Expansion of @$.
139m4_define([b4_lhs_location],
bc82c5a5 140[(yyloc)])
82b6cb3f
AD
141
142
143# b4_rhs_location(RULE-LENGTH, NUM)
144# ---------------------------------
145# Expansion of @NUM, where the current rule has RULE-LENGTH symbols
146# on RHS.
147m4_define([b4_rhs_location],
bd187d7b 148 [(yylsp@{b4_subtract([$2], [$1])@})])
be2a1a68 149
0d8bed56 150
bb31eb56
JD
151## ------------------ ##
152## Parser variables. ##
153## ------------------ ##
154
155# b4_declare_scanner_communication_variables
156# ------------------------------------------
157# Declare the variables that are global, or local to YYPARSE if
158# pure-parser.
159m4_define([b4_declare_scanner_communication_variables], [[
160/* The lookahead symbol. */
161int yychar;
162
163/* The semantic value of the lookahead symbol. */
164YYSTYPE yylval;]b4_locations_if([[
165
166/* Location data for the lookahead symbol. */
167YYLTYPE yylloc;]])b4_pure_if([], [[
168
169/* Number of syntax errors so far. */
170int yynerrs;]])])
171
172
173# b4_declare_parser_state_variables
174# ---------------------------------
175# Declare all the variables that are needed to maintain the parser state
176# between calls to yypush_parse.
177m4_define([b4_declare_parser_state_variables], [b4_pure_if([[
178 /* Number of syntax errors so far. */
179 int yynerrs;
180]])[
181 int yystate;
182 /* Number of tokens to shift before error messages enabled. */
183 int yyerrstatus;
184
185 /* The stacks and their tools:
186 `yyss': related to states.
187 `yyvs': related to semantic values.]b4_locations_if([[
188 `yyls': related to locations.]])[
189
190 Refer to the stacks thru separate pointers, to allow yyoverflow
191 to reallocate them elsewhere. */
192
193 /* The state stack. */
194 yytype_int16 yyssa[YYINITDEPTH];
195 yytype_int16 *yyss;
196 yytype_int16 *yyssp;
197
198 /* The semantic value stack. */
199 YYSTYPE yyvsa[YYINITDEPTH];
200 YYSTYPE *yyvs;
201 YYSTYPE *yyvsp;]b4_locations_if([[
202
203 /* The location stack. */
204 YYLTYPE yylsa[YYINITDEPTH];
205 YYLTYPE *yyls;
206 YYLTYPE *yylsp;
207
208 /* The locations where the error started and ended. */
209 YYLTYPE yyerror_range[2];]])[
210
211 YYSIZE_T yystacksize;]])
212
0d8bed56 213
1ae72863
AD
214## --------------------------------------------------------- ##
215## Defining symbol actions, e.g., printers and destructors. ##
216## --------------------------------------------------------- ##
217
b526ee61
AD
218# We do want M4 expansion after # for CPP macros.
219m4_changecom()
08af01c2 220m4_divert_push(0)dnl
a0d4650a 221@output(b4_parser_file_name@)@
269e222e 222b4_copyright([Implementation for Bison's Yacc-like parsers in C])[
af3412cd
PE
223
224/* C LALR(1) parser skeleton written by Richard Stallman, by
225 simplifying the original so-called "semantic" parser. */
444fbf65 226
cf44a9ae
PE
227/* All symbols defined below should begin with yy or YY, to avoid
228 infringing on user name space. This should be done even for local
229 variables, as they might otherwise be expanded by user macros.
230 There are some unavoidable exceptions within include files to
231 define necessary library symbols; they are noted "INFRINGES ON
232 USER NAME SPACE" below. */
233
9c1e26bd 234]b4_identification
a4e25e1d 235b4_percent_code_get([[top]])[]dnl
aa08666d 236m4_if(b4_prefix, [yy], [],
bb31eb56
JD
237[[/* Substitute the variable and function names. */]b4_pull_if([[
238#define yyparse ]b4_prefix[parse]])b4_push_if([[
239#define yypush_parse ]b4_prefix[push_parse]b4_pull_if([[
240#define yypull_parse ]b4_prefix[pull_parse]])[
241#define yypstate_new ]b4_prefix[pstate_new
9ca7f077 242#define yypstate_delete ]b4_prefix[pstate_delete
bb31eb56
JD
243#define yypstate ]b4_prefix[pstate]])[
244#define yylex ]b4_prefix[lex
9ca7f077
JD
245#define yyerror ]b4_prefix[error
246#define yylval ]b4_prefix[lval
247#define yychar ]b4_prefix[char
248#define yydebug ]b4_prefix[debug
249#define yynerrs ]b4_prefix[nerrs
250]b4_locations_if([[#define yylloc ]b4_prefix[lloc]])])[
17da6427 251
0dd1580a 252/* Copy the first part of user declarations. */
136a0f76 253]b4_user_pre_prologue[
cce71710 254
d99361e6
AD
255/* Enabling traces. */
256#ifndef YYDEBUG
fa819509 257# define YYDEBUG ]b4_parse_trace_if([1], [0])[
d99361e6
AD
258#endif
259
260/* Enabling verbose error messages. */
261#ifdef YYERROR_VERBOSE
262# undef YYERROR_VERBOSE
263# define YYERROR_VERBOSE 1
264#else
b3a2272a 265# define YYERROR_VERBOSE ]b4_error_verbose_if([1], [0])[
d99361e6
AD
266#endif
267
141f5793
PE
268/* Enabling the token table. */
269#ifndef YYTOKEN_TABLE
270# define YYTOKEN_TABLE ]b4_token_table[
271#endif
272
a4e25e1d 273]b4_percent_code_get([[requires]])[]dnl
9bc0dd67
JD
274
275b4_token_enums_defines(b4_tokens)[
276
02650b7f 277#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
9c1e26bd 278]m4_ifdef([b4_stype],
ddc8ede1 279[[typedef union ]b4_union_name[
7ecec4dd 280{
ddc8ede1 281]b4_user_stype[
7ecec4dd 282} YYSTYPE;
ddc8ede1
PE
283# define YYSTYPE_IS_TRIVIAL 1]],
284[m4_if(b4_tag_seen_flag, 0,
285[[typedef int YYSTYPE;
286# define YYSTYPE_IS_TRIVIAL 1]])])[
050c471b
PE
287# define yystype YYSTYPE /* obsolescent; will be withdrawn */
288# define YYSTYPE_IS_DECLARED 1
9ca7f077 289#endif]b4_locations_if([[
fd51e5ff 290
9ca7f077 291#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
050c471b 292typedef struct YYLTYPE
fd51e5ff
AD
293{
294 int first_line;
295 int first_column;
296 int last_line;
297 int last_column;
050c471b
PE
298} YYLTYPE;
299# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
300# define YYLTYPE_IS_DECLARED 1
71cd15d4 301# define YYLTYPE_IS_TRIVIAL 1
9ca7f077
JD
302#endif]])b4_push_if([[
303
304#ifndef YYPUSH_DECLS
305# define YYPUSH_DECLS
306struct yypstate;
307typedef struct yypstate yypstate;
308enum { YYPUSH_MORE = 4 };
309
310]b4_pull_if([b4_c_function_decl([[yyparse]], [[int]], b4_parse_param)
311])b4_c_function_decl([[yypush_parse]], [[int]],
312 [[[yypstate *yyps]], [[yyps]]]b4_pure_if([,
313 [[[int yypushed_char]], [[yypushed_char]]],
314 [[[YYSTYPE const *yypushed_val]], [[yypushed_val]]]b4_locations_if([,
315 [[[YYLTYPE const *yypushed_loc]], [[yypushed_loc]]]])])m4_ifset([b4_parse_param], [,
316 b4_parse_param]))
317b4_pull_if([b4_c_function_decl([[yypull_parse]], [[int]],
318 [[[yypstate *yyps]], [[yyps]]]m4_ifset([b4_parse_param], [,
319 b4_parse_param]))])
320b4_c_function_decl([[yypstate_new]], [[yypstate *]], [[[void]], []])
321b4_c_function_decl([[yypstate_delete]], [[void]],
322 [[[yypstate *yyps]], [[yyps]]])[
323#endif]])
fd51e5ff 324
a4e25e1d 325b4_percent_code_get([[provides]])[]dnl
9bc0dd67
JD
326
327[/* Copy the second part of user declarations. */
8e0a5e9e 328]b4_user_post_prologue
a4e25e1d 329b4_percent_code_get[]dnl
7093d0f5 330
8e0a5e9e 331[#ifdef short
d42cf844
PE
332# undef short
333#endif
334
335#ifdef YYTYPE_UINT8
336typedef YYTYPE_UINT8 yytype_uint8;
337#else
338typedef unsigned char yytype_uint8;
339#endif
340
341#ifdef YYTYPE_INT8
342typedef YYTYPE_INT8 yytype_int8;
343#elif ]b4_c_modern[
344typedef signed char yytype_int8;
345#else
346typedef short int yytype_int8;
347#endif
348
349#ifdef YYTYPE_UINT16
350typedef YYTYPE_UINT16 yytype_uint16;
351#else
352typedef unsigned short int yytype_uint16;
353#endif
354
355#ifdef YYTYPE_INT16
356typedef YYTYPE_INT16 yytype_int16;
357#else
358typedef short int yytype_int16;
359#endif
360
55289366 361#ifndef YYSIZE_T
02650b7f 362# ifdef __SIZE_TYPE__
55289366 363# define YYSIZE_T __SIZE_TYPE__
02650b7f 364# elif defined size_t
55289366 365# define YYSIZE_T size_t
02650b7f 366# elif ! defined YYSIZE_T && ]b4_c_modern[
55289366
PE
367# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
368# define YYSIZE_T size_t
369# else
370# define YYSIZE_T unsigned int
371# endif
bedf57f5 372#endif
7093d0f5 373
b4c1f9d2
PE
374#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
375
30757c8c
PE
376#ifndef YY_
377# if YYENABLE_NLS
378# if ENABLE_NLS
379# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
380# define YY_(msgid) dgettext ("bison-runtime", msgid)
381# endif
382# endif
383# ifndef YY_
384# define YY_(msgid) msgid
385# endif
386#endif
387
2a4647a3 388/* Suppress unused-variable warnings by "using" E. */
02650b7f 389#if ! defined lint || defined __GNUC__
12ce2df6
PE
390# define YYUSE(e) ((void) (e))
391#else
392# define YYUSE(e) /* empty */
393#endif
394
395/* Identity function, used to suppress warnings about constant conditions. */
396#ifndef lint
397# define YYID(n) (n)
398#else
cd9e1ba2 399]b4_c_function_def([YYID], [static int], [[int yyi], [yyi]])[
12ce2df6 400{
cd9e1ba2 401 return yyi;
12ce2df6
PE
402}
403#endif
2a4647a3 404
02650b7f 405#if ! defined yyoverflow || YYERROR_VERBOSE
2779e383 406
9ca7f077
JD
407]b4_push_if([],
408[[/* The parser invokes alloca or malloc; define the necessary symbols. */
7093d0f5 409
b929851a
PE
410# ifdef YYSTACK_USE_ALLOCA
411# if YYSTACK_USE_ALLOCA
b929851a
PE
412# ifdef __GNUC__
413# define YYSTACK_ALLOC __builtin_alloca
02650b7f 414# elif defined __BUILTIN_VA_ARG_INCR
55289366 415# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
02650b7f 416# elif defined _AIX
55289366 417# define YYSTACK_ALLOC __alloca
02650b7f 418# elif defined _MSC_VER
55289366
PE
419# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
420# define alloca _alloca
d7e14fc0
PE
421# else
422# define YYSTACK_ALLOC alloca
02650b7f 423# if ! defined _ALLOCA_H && ! defined _STDLIB_H && ]b4_c_modern[
bedf57f5 424# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
55289366
PE
425# ifndef _STDLIB_H
426# define _STDLIB_H 1
427# endif
bedf57f5 428# endif
7093d0f5
AD
429# endif
430# endif
431# endif
432
9ca7f077
JD
433]])dnl
434[# ifdef YYSTACK_ALLOC
9d9b8b70 435 /* Pacify GCC's `empty if-body' warning. */
12ce2df6 436# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
506ffb1f 437# ifndef YYSTACK_ALLOC_MAXIMUM
b9c9f761
PE
438 /* The OS might guarantee only one guard page at the bottom of the stack,
439 and a page size can be as small as 4096 bytes. So we cannot safely
440 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
441 to allow for a few compiler-allocated temporary stack slots. */
e2a21b6f 442# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
506ffb1f 443# endif
7093d0f5 444# else
2779e383
PE
445# define YYSTACK_ALLOC YYMALLOC
446# define YYSTACK_FREE YYFREE
506ffb1f 447# ifndef YYSTACK_ALLOC_MAXIMUM
b4c1f9d2 448# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
506ffb1f 449# endif
fc3f467f
PE
450# if (defined __cplusplus && ! defined _STDLIB_H \
451 && ! ((defined YYMALLOC || defined malloc) \
452 && (defined YYFREE || defined free)))
453# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
454# ifndef _STDLIB_H
455# define _STDLIB_H 1
456# endif
0925ebb4 457# endif
bedf57f5
PE
458# ifndef YYMALLOC
459# define YYMALLOC malloc
02650b7f 460# if ! defined malloc && ! defined _STDLIB_H && ]b4_c_modern[
bedf57f5
PE
461void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
462# endif
463# endif
464# ifndef YYFREE
465# define YYFREE free
02650b7f 466# if ! defined free && ! defined _STDLIB_H && ]b4_c_modern[
bedf57f5
PE
467void free (void *); /* INFRINGES ON USER NAME SPACE */
468# endif
469# endif
7093d0f5 470# endif
02650b7f 471#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
cf44a9ae
PE
472
473
02650b7f
PE
474#if (! defined yyoverflow \
475 && (! defined __cplusplus \
327afc7c 476 || (]b4_locations_if([[defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
02650b7f 477 && ]])[defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
7093d0f5 478
600f9b0c
PE
479/* A type that is properly aligned for any stack member. */
480union yyalloc
481{
9ca7f077
JD
482 yytype_int16 yyss_alloc;
483 YYSTYPE yyvs_alloc;]b4_locations_if([
484 YYLTYPE yyls_alloc;])[
485};
600f9b0c
PE
486
487/* The size of the maximum gap between one aligned stack and the next. */
17836590 488# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
600f9b0c
PE
489
490/* The size of an array large to enough to hold all stacks, each with
491 N elements. */
327afc7c 492]b4_locations_if(
58612f1d 493[# define YYSTACK_BYTES(N) \
d42cf844 494 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \
17836590 495 + 2 * YYSTACK_GAP_MAXIMUM)],
58612f1d 496[# define YYSTACK_BYTES(N) \
d42cf844 497 ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
17836590 498 + YYSTACK_GAP_MAXIMUM)])[
600f9b0c 499
5b041382
PE
500/* Copy COUNT objects from FROM to TO. The source and destination do
501 not overlap. */
502# ifndef YYCOPY
02650b7f 503# if defined __GNUC__ && 1 < __GNUC__
5b041382
PE
504# define YYCOPY(To, From, Count) \
505 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
506# else
507# define YYCOPY(To, From, Count) \
508 do \
509 { \
cb530ce9 510 YYSIZE_T yyi; \
5b041382 511 for (yyi = 0; yyi < (Count); yyi++) \
9c1e26bd 512 (To)[yyi] = (From)[yyi]; \
5b041382 513 } \
12ce2df6 514 while (YYID (0))
5b041382
PE
515# endif
516# endif
517
518/* Relocate STACK from its old location to the new one. The
7093d0f5 519 local variables YYSIZE and YYSTACKSIZE give the old and new number of
600f9b0c
PE
520 elements in the stack, and YYPTR gives the new location of the
521 stack. Advance YYPTR to a properly aligned location for the next
522 stack. */
9ca7f077 523# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
7093d0f5
AD
524 do \
525 { \
526 YYSIZE_T yynewbytes; \
9ca7f077
JD
527 YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
528 Stack = &yyptr->Stack_alloc; \
17836590 529 yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
2729e106 530 yyptr += yynewbytes / sizeof (*yyptr); \
7093d0f5 531 } \
12ce2df6 532 while (YYID (0))
7093d0f5 533
cf44a9ae 534#endif
8850be4b 535
9d9b8b70 536/* YYFINAL -- State number of the termination state. */
9c1e26bd 537#define YYFINAL ]b4_final_state_number[
39912f52 538/* YYLAST -- Last index in YYTABLE. */
9c1e26bd 539#define YYLAST ]b4_last[
7742ddeb 540
9d9b8b70 541/* YYNTOKENS -- Number of terminals. */
9c1e26bd 542#define YYNTOKENS ]b4_tokens_number[
9d9b8b70 543/* YYNNTS -- Number of nonterminals. */
9c1e26bd 544#define YYNNTS ]b4_nterms_number[
9d9b8b70 545/* YYNRULES -- Number of rules. */
9c1e26bd 546#define YYNRULES ]b4_rules_number[
914202bd 547/* YYNSTATES -- Number of states. */
9c1e26bd 548#define YYNSTATES ]b4_states_number[
7742ddeb 549
cb0b136a
AD
550/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
551 by yylex, with out-of-bounds checking. */
9c1e26bd
AD
552#define YYUNDEFTOK ]b4_undef_token_number[
553#define YYMAXUTOK ]b4_user_token_number_max[
007a50a4 554
04098407 555#define YYTRANSLATE(YYX) \
a20713a4 556 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
a8289c62 557
cb0b136a
AD
558/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
559 as returned by yylex, without out-of-bounds checking. */
b0400cc6 560static const ]b4_int_type_for([b4_translate])[ yytranslate[] =
a8289c62 561{
c5e3e510 562 ]b4_translate[
a8289c62
RA
563};
564
565#if YYDEBUG
ba206cf4
AD
566]b4_integral_parser_table_define([rline], [b4_rline],
567 [YYRLINE[YYN] -- Source line where rule number YYN was defined.])[
a8289c62
RA
568#endif
569
141f5793 570#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
9e0876fb 571/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
9d9b8b70 572 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
c5e3e510 573static const char *const yytname[] =
a8289c62 574{
c5e3e510 575 ]b4_tname[
a8289c62
RA
576};
577#endif
578
c0ad8bf3 579# ifdef YYPRINT
cb0b136a
AD
580/* YYTOKNUM[NUM] -- (External) token number corresponding to the
581 (internal) symbol number NUM (which must be that of a token). */
c5e3e510 582static const ]b4_int_type_for([b4_toknum])[ yytoknum[] =
a8289c62 583{
c5e3e510 584 ]b4_toknum[
a8289c62 585};
c0ad8bf3 586# endif
a8289c62 587
c5e3e510 588#define YYPACT_NINF ]b4_pact_ninf[
a8289c62 589
f2b30bdf 590#define yypact_value_is_default(yystate) \
87412882
JD
591 ]b4_table_value_equals([[pact]], [[yystate]], [b4_pact_ninf])[
592
c5e3e510 593#define YYTABLE_NINF ]b4_table_ninf[
a8289c62 594
f2b30bdf 595#define yytable_value_is_error(yytable_value) \
aa0cb40d 596 ]b4_table_value_equals([[table]], [[yytable_value]], [b4_table_ninf])[
87412882 597
ba206cf4 598]b4_parser_tables_define[
7093d0f5 599
10fa2066 600#define yyerrok (yyerrstatus = 0)
a20713a4
PE
601#define yyclearin (yychar = YYEMPTY)
602#define YYEMPTY (-2)
10fa2066 603#define YYEOF 0
a8289c62 604
70ddf897 605#define YYACCEPT goto yyacceptlab
a8289c62 606#define YYABORT goto yyabortlab
a6b89bb2 607#define YYERROR goto yyerrorlab
8a3eb3c8 608
a8289c62 609
71da9eea
AD
610/* Like YYERROR except do call yyerror. This remains here temporarily
611 to ease the transition to the new meaning of YYERROR, for GCC.
10fa2066 612 Once GCC version 2 has supplanted version 1, this can go. */
a8289c62 613
10fa2066 614#define YYFAIL goto yyerrlab
a8289c62 615
10fa2066 616#define YYRECOVERING() (!!yyerrstatus)
a8289c62 617
69b4e0c5 618#define YYBACKUP(Token, Value) \
10fa2066 619do \
a20713a4 620 if (yychar == YYEMPTY && yylen == 1) \
71da9eea 621 { \
17da6427 622 yychar = (Token); \
7742ddeb 623 yylval = (Value); \
b0400cc6 624 yytoken = YYTRANSLATE (yychar); \
a85284cf 625 YYPOPSTACK (1); \
10fa2066
RS
626 goto yybackup; \
627 } \
628 else \
04098407 629 { \
30757c8c 630 yyerror (]b4_yyerror_args[YY_("syntax error: cannot back up")); \
71da9eea
AD
631 YYERROR; \
632 } \
12ce2df6 633while (YYID (0))
10fa2066 634
3fc16193 635
10fa2066
RS
636#define YYTERROR 1
637#define YYERRCODE 256
638
3fc16193 639
b4a20338
AD
640/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
641 If N is 0, then set CURRENT to the empty location which ends
642 the previous symbol: RHS[0] (always defined). */
3abcd459 643
24e0cbd0 644#define YYRHSLOC(Rhs, K) ((Rhs)[K])
3abcd459 645#ifndef YYLLOC_DEFAULT
24e0cbd0
PE
646# define YYLLOC_DEFAULT(Current, Rhs, N) \
647 do \
d6cff4dc 648 if (YYID (N)) \
24e0cbd0 649 { \
9bec482e
PE
650 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
651 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
652 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
653 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
24e0cbd0
PE
654 } \
655 else \
656 { \
657 (Current).first_line = (Current).last_line = \
9bec482e 658 YYRHSLOC (Rhs, 0).last_line; \
24e0cbd0 659 (Current).first_column = (Current).last_column = \
9bec482e 660 YYRHSLOC (Rhs, 0).last_column; \
24e0cbd0 661 } \
12ce2df6 662 while (YYID (0))
b8458aa5
AD
663#endif
664
3fc16193
AD
665
666/* YY_LOCATION_PRINT -- Print the location on the stream.
667 This macro was not mandated originally: define only if we know
668 we won't break user code: when these are the locations we know. */
669
3fc16193 670#ifndef YY_LOCATION_PRINT
b8458aa5
AD
671# if YYLTYPE_IS_TRIVIAL
672# define YY_LOCATION_PRINT(File, Loc) \
673 fprintf (File, "%d.%d-%d.%d", \
02650b7f
PE
674 (Loc).first_line, (Loc).first_column, \
675 (Loc).last_line, (Loc).last_column)
0dcca5c2
AD
676# else
677# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
b8458aa5 678# endif
3abcd459
AD
679#endif
680
3fc16193 681
3abcd459 682/* YYLEX -- calling `yylex' with the right arguments. */
553e2b22 683
ae7453f2 684#ifdef YYLEX_PARAM
327afc7c 685# define YYLEX yylex (]b4_pure_if([&yylval[]b4_locations_if([, &yylloc]), ])[YYLEX_PARAM)
74310291 686#else
9c1e26bd 687# define YYLEX ]b4_c_function_call([yylex], [int], b4_lex_param)[
ae7453f2 688#endif
553e2b22 689
5a35a6cb 690/* Enable debugging if requested. */
0d533154 691#if YYDEBUG
b7575ffe 692
2f4f028d 693# ifndef YYFPRINTF
45119af1
PE
694# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
695# define YYFPRINTF fprintf
b7575ffe
PE
696# endif
697
5a35a6cb
AD
698# define YYDPRINTF(Args) \
699do { \
17da6427 700 if (yydebug) \
b7575ffe 701 YYFPRINTF Args; \
12ce2df6 702} while (YYID (0))
c5e3e510 703
4b367315
AD
704# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
705do { \
706 if (yydebug) \
707 { \
708 YYFPRINTF (stderr, "%s ", Title); \
a0af42fc 709 yy_symbol_print (stderr, \
327afc7c 710 Type, Value]b4_locations_if([, Location])[]b4_user_args[); \
4b367315
AD
711 YYFPRINTF (stderr, "\n"); \
712 } \
12ce2df6 713} while (YYID (0))
9c1e26bd 714
a0af42fc 715]b4_yy_symbol_print_generate([b4_c_function_def])[
d1ff7a7c 716
b0937b22
AD
717/*------------------------------------------------------------------.
718| yy_stack_print -- Print the state stack from its BOTTOM up to its |
5348bfbe 719| TOP (included). |
b0937b22
AD
720`------------------------------------------------------------------*/
721
722]b4_c_function_def([yy_stack_print], [static void],
cd9e1ba2
PE
723 [[yytype_int16 *yybottom], [yybottom]],
724 [[yytype_int16 *yytop], [yytop]])[
b0937b22 725{
2f4f028d 726 YYFPRINTF (stderr, "Stack now");
cd9e1ba2
PE
727 for (; yybottom <= yytop; yybottom++)
728 {
729 int yybot = *yybottom;
730 YYFPRINTF (stderr, " %d", yybot);
731 }
2f4f028d 732 YYFPRINTF (stderr, "\n");
b0937b22
AD
733}
734
735# define YY_STACK_PRINT(Bottom, Top) \
736do { \
737 if (yydebug) \
738 yy_stack_print ((Bottom), (Top)); \
12ce2df6 739} while (YYID (0))
b0937b22
AD
740
741
742/*------------------------------------------------.
743| Report that the YYRULE is going to be reduced. |
744`------------------------------------------------*/
745
746]b4_c_function_def([yy_reduce_print], [static void],
68dbdee8
AD
747 [[yytype_int16 *yyssp], [yyssp]],
748 [[YYSTYPE *yyvsp], [yyvsp]],
aefef0d6 749 b4_locations_if([[[YYLTYPE *yylsp], [yylsp]],
68dbdee8
AD
750 ])[[int yyrule], [yyrule]]m4_ifset([b4_parse_param], [,
751 b4_parse_param]))[
b0937b22 752{
68dbdee8 753 unsigned long int yylno = yyrline[yyrule];
d1ff7a7c 754 int yynrhs = yyr2[yyrule];
b0937b22 755 int yyi;
d1ff7a7c 756 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
68dbdee8 757 yyrule - 1, yylno);
d1ff7a7c
AD
758 /* The symbols being reduced. */
759 for (yyi = 0; yyi < yynrhs; yyi++)
760 {
f57a7536 761 YYFPRINTF (stderr, " $%d = ", yyi + 1);
68dbdee8
AD
762 yy_symbol_print (stderr,
763 yystos[yyssp[yyi + 1 - yynrhs]],
764 &]b4_rhs_value(yynrhs, yyi + 1)[
765 ]b4_locations_if([, &]b4_rhs_location(yynrhs, yyi + 1))[]dnl
766 b4_user_args[);
f57a7536 767 YYFPRINTF (stderr, "\n");
d1ff7a7c 768 }
b0937b22
AD
769}
770
d9963c85
PE
771# define YY_REDUCE_PRINT(Rule) \
772do { \
773 if (yydebug) \
68dbdee8 774 yy_reduce_print (yyssp, yyvsp, ]b4_locations_if([yylsp, ])[Rule]b4_user_args[); \
12ce2df6 775} while (YYID (0))
b0937b22 776
cf44a9ae
PE
777/* Nonzero means print parse trace. It is left uninitialized so that
778 multiple parsers can coexist. */
17da6427 779int yydebug;
5a35a6cb
AD
780#else /* !YYDEBUG */
781# define YYDPRINTF(Args)
284acc8b 782# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
b0937b22 783# define YY_STACK_PRINT(Bottom, Top)
d9963c85 784# define YY_REDUCE_PRINT(Rule)
5a35a6cb
AD
785#endif /* !YYDEBUG */
786
b0937b22 787
5a35a6cb 788/* YYINITDEPTH -- initial size of the parser's stacks. */
10fa2066 789#ifndef YYINITDEPTH
9c1e26bd 790# define YYINITDEPTH ]b4_stack_depth_init[
10fa2066
RS
791#endif
792
5a35a6cb 793/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
600f9b0c
PE
794 if the built-in stack extension method is used).
795
796 Do not make this value too large; the results are undefined if
506ffb1f 797 YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
600f9b0c
PE
798 evaluated with infinite-precision integer arithmetic. */
799
10fa2066 800#ifndef YYMAXDEPTH
9c1e26bd 801# define YYMAXDEPTH ]b4_stack_depth_max[
10fa2066 802#endif
a8289c62 803
10fa2066 804\f
a8289c62 805
7093d0f5
AD
806#if YYERROR_VERBOSE
807
808# ifndef yystrlen
02650b7f 809# if defined __GLIBC__ && defined _STRING_H
7093d0f5
AD
810# define yystrlen strlen
811# else
812/* Return the length of YYSTR. */
1b9c21fb
PE
813]b4_c_function_def([yystrlen], [static YYSIZE_T],
814 [[const char *yystr], [yystr]])[
7093d0f5 815{
12ce2df6
PE
816 YYSIZE_T yylen;
817 for (yylen = 0; yystr[yylen]; yylen++)
7093d0f5 818 continue;
12ce2df6 819 return yylen;
7093d0f5
AD
820}
821# endif
822# endif
823
824# ifndef yystpcpy
02650b7f 825# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
7093d0f5
AD
826# define yystpcpy stpcpy
827# else
828/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
829 YYDEST. */
1b9c21fb
PE
830]b4_c_function_def([yystpcpy], [static char *],
831 [[char *yydest], [yydest]], [[const char *yysrc], [yysrc]])[
7093d0f5 832{
cb530ce9
PE
833 char *yyd = yydest;
834 const char *yys = yysrc;
7093d0f5
AD
835
836 while ((*yyd++ = *yys++) != '\0')
837 continue;
838
839 return yyd - 1;
840}
841# endif
842# endif
843
9e0876fb
PE
844# ifndef yytnamerr
845/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
846 quotes and backslashes, so that it's suitable for yyerror. The
847 heuristic is that double-quoting is unnecessary unless the string
848 contains an apostrophe, a comma, or backslash (other than
849 backslash-backslash). YYSTR is taken from yytname. If YYRES is
850 null, do not copy; instead, return the length of what the result
851 would have been. */
852static YYSIZE_T
853yytnamerr (char *yyres, const char *yystr)
854{
855 if (*yystr == '"')
856 {
276f48df 857 YYSIZE_T yyn = 0;
9e0876fb
PE
858 char const *yyp = yystr;
859
860 for (;;)
861 switch (*++yyp)
862 {
863 case '\'':
864 case ',':
865 goto do_not_strip_quotes;
866
867 case '\\':
868 if (*++yyp != '\\')
869 goto do_not_strip_quotes;
870 /* Fall through. */
871 default:
872 if (yyres)
873 yyres[yyn] = *yyp;
874 yyn++;
875 break;
876
877 case '"':
878 if (yyres)
879 yyres[yyn] = '\0';
880 return yyn;
881 }
882 do_not_strip_quotes: ;
883 }
884
885 if (! yyres)
886 return yystrlen (yystr);
887
888 return yystpcpy (yyres, yystr) - yyres;
889}
890# endif
891
b4c1f9d2 892/* Copy into YYRESULT an error message about the unexpected token
84eedf86 893 YYTOKEN while in state YYSTATE. Return the number of bytes copied,
b4c1f9d2
PE
894 including the terminating null byte. If YYRESULT is null, do not
895 copy anything; just return the number of bytes that would be
896 copied. As a special case, return 0 if an ordinary "syntax error"
897 message will do. Return YYSIZE_MAXIMUM if overflow occurs during
898 size calculation. */
899static YYSIZE_T
84eedf86 900yysyntax_error (char *yyresult, int yystate, int yytoken)
b4c1f9d2
PE
901{
902 int yyn = yypact[yystate];
7093d0f5 903
d6645148 904 if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
b4c1f9d2
PE
905 return 0;
906 else
907 {
84eedf86 908 YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]);
b4c1f9d2
PE
909 YYSIZE_T yysize = yysize0;
910 YYSIZE_T yysize1;
911 int yysize_overflow = 0;
912 enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
eeb29422
AD
913 /* Internationalized format string. */
914 const char *yyformat = 0;
915 /* Arguments of yyformat. */
b4c1f9d2 916 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
b4c1f9d2
PE
917
918 /* Start YYX at -YYN if negative to avoid negative indexes in
87412882
JD
919 YYCHECK. In other words, skip the first -YYN actions for this
920 state because they are default actions. */
b4c1f9d2
PE
921 int yyxbegin = yyn < 0 ? -yyn : 0;
922
923 /* Stay within bounds of both yycheck and yytname. */
d6645148 924 int yychecklim = YYLAST - yyn + 1;
b4c1f9d2 925 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
eeb29422
AD
926 /* Number of reported tokens (one for the "unexpected", one per
927 "expected"). */
928 int yycount = 0;
929 int yyx;
b4c1f9d2 930
84eedf86 931 yyarg[yycount++] = yytname[yytoken];
b4c1f9d2
PE
932
933 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
53f036ce 934 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
f2b30bdf 935 && !yytable_value_is_error (yytable[yyx + yyn]))
02650b7f
PE
936 {
937 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
938 {
939 yycount = 1;
940 yysize = yysize0;
02650b7f
PE
941 break;
942 }
943 yyarg[yycount++] = yytname[yyx];
944 yysize1 = yysize + yytnamerr (0, yytname[yyx]);
945 yysize_overflow |= (yysize1 < yysize);
946 yysize = yysize1;
02650b7f 947 }
b4c1f9d2 948
eeb29422
AD
949 switch (yycount)
950 {
951#define YYCASE_(N, S) \
952 case N: \
953 yyformat = S; \
954 break
955 YYCASE_(1, YY_("syntax error, unexpected %s"));
956 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
957 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
958 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
959 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
960#undef YYCASE_
961 }
962
963 yysize1 = yysize + yystrlen (yyformat);
12ce2df6 964 yysize_overflow |= (yysize1 < yysize);
b4c1f9d2
PE
965 yysize = yysize1;
966
967 if (yysize_overflow)
968 return YYSIZE_MAXIMUM;
969
970 if (yyresult)
971 {
02650b7f
PE
972 /* Avoid sprintf, as that infringes on the user's name space.
973 Don't have undefined behavior even if the translation
974 produced a string with the wrong number of "%s"s. */
975 char *yyp = yyresult;
976 int yyi = 0;
eeb29422
AD
977 while ((*yyp = *yyformat) != '\0')
978 if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
979 {
980 yyp += yytnamerr (yyp, yyarg[yyi++]);
981 yyformat += 2;
982 }
983 else
984 {
985 yyp++;
986 yyformat++;
987 }
02650b7f 988 }
b4c1f9d2
PE
989 return yysize;
990 }
991}
992#endif /* YYERROR_VERBOSE */
10fa2066 993\f
a8289c62 994
bb31eb56 995]b4_yydestruct_generate([b4_c_function_def])b4_push_if([], [[
4a2a22f4 996
bb31eb56
JD
997
998/* Prevent warnings from -Wmissing-prototypes. */
4a2a22f4 999#ifdef YYPARSE_PARAM
1b9c21fb 1000]b4_c_function_decl([yyparse], [int],
bb31eb56 1001 [[void *YYPARSE_PARAM], [YYPARSE_PARAM]])[
0245f82d 1002#else /* ! YYPARSE_PARAM */
d1ff7a7c 1003]b4_c_function_decl([yyparse], [int], b4_parse_param)[
bb31eb56 1004#endif /* ! YYPARSE_PARAM */]])b4_pure_if([], [
9ca7f077 1005
bb31eb56 1006b4_declare_scanner_communication_variables])[]b4_push_if([[
9ca7f077 1007
9ca7f077 1008
bb31eb56
JD
1009struct yypstate
1010 {]b4_declare_parser_state_variables[
9ca7f077
JD
1011 /* Used to determine if this is the first time this instance has
1012 been used. */
1013 int yynew;
333e670c 1014 };]b4_pure_if([], [[
a35f64ea 1015
333e670c
JD
1016static char yypstate_allocated = 0;]])b4_pull_if([
1017
1018b4_c_function_def([[yyparse]], [[int]], b4_parse_param)[
9ca7f077
JD
1019{
1020 return yypull_parse (0]m4_ifset([b4_parse_param],
1021 [[, ]b4_c_args(b4_parse_param)])[);
333e670c 1022}
0245f82d 1023
9ca7f077
JD
1024]b4_c_function_def([[yypull_parse]], [[int]],
1025 [[[yypstate *yyps]], [[yyps]]]m4_ifset([b4_parse_param], [,
1026 b4_parse_param]))[
1027{
1028 int yystatus;
333e670c
JD
1029 yypstate *yyps_local;]b4_pure_if([[
1030 int yychar;
1031 YYSTYPE yylval;]b4_locations_if([[
1032 YYLTYPE yylloc;]])])[
9ca7f077
JD
1033 if (yyps == 0)
1034 {
1035 yyps_local = yypstate_new ();
1036 if (!yyps_local)
1037 {]b4_pure_if([[
1038 yyerror (]b4_yyerror_args[YY_("memory exhausted"));]], [[
1039 if (!yypstate_allocated)
1040 yyerror (]b4_yyerror_args[YY_("memory exhausted"));]])[
1041 return 2;
1042 }
1043 }
1044 else
1045 yyps_local = yyps;
1046 do {
1047 yychar = YYLEX;
1048 yystatus =
1049 yypush_parse (yyps_local]b4_pure_if([[, yychar, &yylval]b4_locations_if([[, &yylloc]])])m4_ifset([b4_parse_param], [, b4_c_args(b4_parse_param)])[);
1050 } while (yystatus == YYPUSH_MORE);
1051 if (yyps == 0)
1052 yypstate_delete (yyps_local);
1053 return yystatus;
333e670c
JD
1054}]])[
1055
9ca7f077
JD
1056/* Initialize the parser data structure. */
1057]b4_c_function_def([[yypstate_new]], [[yypstate *]])[
1058{
1059 yypstate *yyps;]b4_pure_if([], [[
1060 if (yypstate_allocated)
333e670c 1061 return 0;]])[
9ca7f077
JD
1062 yyps = (yypstate *) malloc (sizeof *yyps);
1063 if (!yyps)
1064 return 0;
1065 yyps->yynew = 1;]b4_pure_if([], [[
1066 yypstate_allocated = 1;]])[
1067 return yyps;
1068}
1069
1070]b4_c_function_def([[yypstate_delete]], [[void]],
1071 [[[yypstate *yyps]], [[yyps]]])[
1072{
1073#ifndef yyoverflow
1074 /* If the stack was reallocated but the parse did not complete, then the
1075 stack still needs to be freed. */
1076 if (!yyps->yynew && yyps->yyss != yyps->yyssa)
1077 YYSTACK_FREE (yyps->yyss);
1078#endif
1079 free (yyps);]b4_pure_if([], [[
1080 yypstate_allocated = 0;]])[
1081}
bb31eb56
JD
1082]b4_pure_if([[
1083#define ]b4_prefix[nerrs yyps->]b4_prefix[nerrs]])[
1084#define yystate yyps->yystate
9ca7f077
JD
1085#define yyerrstatus yyps->yyerrstatus
1086#define yyssa yyps->yyssa
1087#define yyss yyps->yyss
1088#define yyssp yyps->yyssp
1089#define yyvsa yyps->yyvsa
1090#define yyvs yyps->yyvs
bb31eb56
JD
1091#define yyvsp yyps->yyvsp]b4_locations_if([[
1092#define yylsa yyps->yylsa
9ca7f077
JD
1093#define yyls yyps->yyls
1094#define yylsp yyps->yylsp
bb31eb56
JD
1095#define yyerror_range yyps->yyerror_range]])[
1096#define yystacksize yyps->yystacksize
1097
1098
1099/*---------------.
1100| yypush_parse. |
1101`---------------*/
1102
1103]b4_c_function_def([[yypush_parse]], [[int]],
9ca7f077
JD
1104 [[[yypstate *yyps]], [[yyps]]]b4_pure_if([,
1105 [[[int yypushed_char]], [[yypushed_char]]],
1106 [[[YYSTYPE const *yypushed_val]], [[yypushed_val]]]b4_locations_if([,
1107 [[[YYLTYPE const *yypushed_loc]], [[yypushed_loc]]]])])m4_ifset([b4_parse_param], [,
bb31eb56
JD
1108 b4_parse_param]))], [[
1109
1110
1111/*----------.
1112| yyparse. |
1113`----------*/
1114
0245f82d 1115#ifdef YYPARSE_PARAM
bb31eb56
JD
1116]b4_c_function_def([yyparse], [int],
1117 [[void *YYPARSE_PARAM], [YYPARSE_PARAM]])[
0245f82d 1118#else /* ! YYPARSE_PARAM */
bb31eb56
JD
1119]b4_c_function_def([yyparse], [int], b4_parse_param)[
1120#endif]])[
1121{]b4_pure_if([b4_declare_scanner_communication_variables
1122])b4_push_if([b4_pure_if([], [[
1123 int yypushed_char = yychar;
1124 YYSTYPE yypushed_val = yylval;]b4_locations_if([[
1125 YYLTYPE yypushed_loc = yylloc;]])
1126])],
1127 [b4_declare_parser_state_variables
1128])[
cb530ce9 1129 int yyn;
600f9b0c 1130 int yyresult;
742e4900 1131 /* Lookahead token as an internal (translated) token number. */
9ca7f077
JD
1132 int yytoken;
1133 /* The variables used to return semantic value and location from the
1134 action routines. */
fa6aa7b3
JD
1135 YYSTYPE yyval;]b4_locations_if([[
1136 YYLTYPE yyloc;]])[
1137
b4c1f9d2
PE
1138#if YYERROR_VERBOSE
1139 /* Buffer for error messages, and its allocated size. */
1140 char yymsgbuf[128];
1141 char *yymsg = yymsgbuf;
1142 YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
1143#endif
10fa2066 1144
327afc7c 1145#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)]b4_locations_if([, yylsp -= (N)])[)
10fa2066 1146
a85284cf 1147 /* The number of symbols on the RHS of the reduced rule.
9d9b8b70 1148 Keep to zero when no symbol should be popped. */
fa6aa7b3
JD
1149 int yylen = 0;]b4_push_if([[
1150
9ca7f077
JD
1151 if (!yyps->yynew)
1152 {
1153 yyn = yypact[yystate];
1154 goto yyread_pushed_token;
fa6aa7b3
JD
1155 }]])[
1156
9ca7f077
JD
1157 yytoken = 0;
1158 yyss = yyssa;
fa6aa7b3
JD
1159 yyvs = yyvsa;]b4_locations_if([[
1160 yyls = yylsa;]])[
9ca7f077 1161 yystacksize = YYINITDEPTH;
10fa2066 1162
2f4f028d 1163 YYDPRINTF ((stderr, "Starting parse\n"));
10fa2066
RS
1164
1165 yystate = 0;
1166 yyerrstatus = 0;
17da6427 1167 yynerrs = 0;
9ca7f077 1168 yychar = YYEMPTY; /* Cause a token to be read. */
10fa2066
RS
1169
1170 /* Initialize stack pointers.
1171 Waste one element of value and location stack
1172 so that they stay on the same level as the state stack.
1173 The wasted elements are never initialized. */
cbd89906 1174 yyssp = yyss;
9ca7f077
JD
1175 yyvsp = yyvs;]b4_locations_if([[
1176 yylsp = yyls;
1177
b8458aa5
AD
1178#if YYLTYPE_IS_TRIVIAL
1179 /* Initialize the default location before parsing starts. */
cd48d21d
AD
1180 yylloc.first_line = yylloc.last_line = ]b4_location_initial_line[;
1181 yylloc.first_column = yylloc.last_column = ]b4_location_initial_column[;
9ca7f077
JD
1182#endif]])
1183m4_ifdef([b4_initial_action],[
407d4a75
PE
1184m4_pushdef([b4_at_dollar], [m4_define([b4_at_dollar_used])yylloc])dnl
1185m4_pushdef([b4_dollar_dollar], [m4_define([b4_dollar_dollar_used])yylval])dnl
9ca7f077
JD
1186/* User initialization code. */
1187b4_user_initial_action
cd3684cf 1188m4_popdef([b4_dollar_dollar])dnl
8ec0a172 1189m4_popdef([b4_at_dollar])])dnl
407d4a75
PE
1190m4_ifdef([b4_dollar_dollar_used],[[ yyvsp[0] = yylval;
1191]])dnl
1192m4_ifdef([b4_at_dollar_used], [[ yylsp[0] = yylloc;
9ca7f077
JD
1193]])[
1194 goto yysetstate;
10fa2066 1195
71da9eea
AD
1196/*------------------------------------------------------------.
1197| yynewstate -- Push a new state, which is found in yystate. |
1198`------------------------------------------------------------*/
342b8b6e 1199 yynewstate:
71da9eea 1200 /* In all cases, when you get here, the value and location stacks
9d9b8b70 1201 have just been pushed. So pushing a state here evens the stacks. */
cbd89906
PE
1202 yyssp++;
1203
342b8b6e 1204 yysetstate:
cbd89906 1205 *yyssp = yystate;
10fa2066 1206
39912f52 1207 if (yyss + yystacksize - 1 <= yyssp)
10fa2066 1208 {
10fa2066 1209 /* Get the current used size of the three stacks, in elements. */
7093d0f5 1210 YYSIZE_T yysize = yyssp - yyss + 1;
10fa2066
RS
1211
1212#ifdef yyoverflow
3d76b07d 1213 {
9d9b8b70 1214 /* Give user a chance to reallocate the stack. Use copies of
3d76b07d
AD
1215 these so that the &'s don't force the real ones into
1216 memory. */
1217 YYSTYPE *yyvs1 = yyvs;
9ca7f077
JD
1218 yytype_int16 *yyss1 = yyss;]b4_locations_if([
1219 YYLTYPE *yyls1 = yyls;])[
3d76b07d
AD
1220
1221 /* Each stack pointer address is followed by the size of the
58612f1d
AD
1222 data in use in that stack, in bytes. This used to be a
1223 conditional around just the two extra args, but that might
1224 be undefined if yyoverflow is a macro. */
1a059451 1225 yyoverflow (YY_("memory exhausted"),
7093d0f5 1226 &yyss1, yysize * sizeof (*yyssp),
9ca7f077
JD
1227 &yyvs1, yysize * sizeof (*yyvsp),]b4_locations_if([
1228 &yyls1, yysize * sizeof (*yylsp),])[
3d76b07d 1229 &yystacksize);
9ca7f077
JD
1230]b4_locations_if([
1231 yyls = yyls1;])[
3d76b07d
AD
1232 yyss = yyss1;
1233 yyvs = yyvs1;
1234 }
10fa2066 1235#else /* no yyoverflow */
cf44a9ae 1236# ifndef YYSTACK_RELOCATE
1a059451 1237 goto yyexhaustedlab;
cf44a9ae 1238# else
10fa2066 1239 /* Extend the stack our own way. */
39912f52 1240 if (YYMAXDEPTH <= yystacksize)
1a059451 1241 goto yyexhaustedlab;
10fa2066 1242 yystacksize *= 2;
39912f52 1243 if (YYMAXDEPTH < yystacksize)
10fa2066 1244 yystacksize = YYMAXDEPTH;
e9e4c321 1245
600f9b0c 1246 {
d42cf844 1247 yytype_int16 *yyss1 = yyss;
2729e106
PE
1248 union yyalloc *yyptr =
1249 (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
600f9b0c 1250 if (! yyptr)
1a059451 1251 goto yyexhaustedlab;
9ca7f077
JD
1252 YYSTACK_RELOCATE (yyss_alloc, yyss);
1253 YYSTACK_RELOCATE (yyvs_alloc, yyvs);]b4_locations_if([
1254 YYSTACK_RELOCATE (yyls_alloc, yyls);])[
cf44a9ae 1255# undef YYSTACK_RELOCATE
600f9b0c
PE
1256 if (yyss1 != yyssa)
1257 YYSTACK_FREE (yyss1);
1258 }
cf44a9ae 1259# endif
10fa2066
RS
1260#endif /* no yyoverflow */
1261
7093d0f5 1262 yyssp = yyss + yysize - 1;
9ca7f077
JD
1263 yyvsp = yyvs + yysize - 1;]b4_locations_if([
1264 yylsp = yyls + yysize - 1;])[
10fa2066 1265
30757c8c 1266 YYDPRINTF ((stderr, "Stack size increased to %lu\n",
600f9b0c 1267 (unsigned long int) yystacksize));
10fa2066 1268
39912f52 1269 if (yyss + yystacksize - 1 <= yyssp)
10fa2066
RS
1270 YYABORT;
1271 }
1272
30757c8c 1273 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
10fa2066 1274
868d2d96
JD
1275 if (yystate == YYFINAL)
1276 YYACCEPT;
1277
10fa2066 1278 goto yybackup;
71da9eea 1279
71da9eea
AD
1280/*-----------.
1281| yybackup. |
1282`-----------*/
1283yybackup:
10fa2066 1284
a85284cf 1285 /* Do appropriate processing given the current state. Read a
742e4900 1286 lookahead token if we need one and don't already have one. */
10fa2066 1287
742e4900 1288 /* First try to decide what to do without reference to lookahead token. */
10fa2066 1289 yyn = yypact[yystate];
f2b30bdf 1290 if (yypact_value_is_default (yyn))
10fa2066
RS
1291 goto yydefault;
1292
742e4900 1293 /* Not known => get a lookahead token if don't already have one. */
10fa2066 1294
742e4900 1295 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
a20713a4 1296 if (yychar == YYEMPTY)
fa6aa7b3
JD
1297 {]b4_push_if([[
1298 if (!yyps->yynew)
1299 {]b4_use_push_for_pull_if([], [[
1300 YYDPRINTF ((stderr, "Return for a new token:\n"));]])[
1301 yyresult = YYPUSH_MORE;
9ca7f077
JD
1302 goto yypushreturn;
1303 }
fa6aa7b3 1304 yyps->yynew = 0;]b4_pure_if([], [[
9ca7f077
JD
1305 /* Restoring the pushed token is only necessary for the first
1306 yypush_parse invocation since subsequent invocations don't overwrite
1307 it before jumping to yyread_pushed_token. */
1308 yychar = yypushed_char;
fa6aa7b3
JD
1309 yylval = yypushed_val;]b4_locations_if([[
1310 yylloc = yypushed_loc;]])])[
1311yyread_pushed_token:]])[
1312 YYDPRINTF ((stderr, "Reading a token: "));]b4_push_if([b4_pure_if([[
1313 yychar = yypushed_char;
9ca7f077 1314 if (yypushed_val)
fa6aa7b3
JD
1315 yylval = *yypushed_val;]b4_locations_if([[
1316 if (yypushed_loc)
1317 yylloc = *yypushed_loc;]])])], [[
1318 yychar = YYLEX;]])[
1319 }
10fa2066 1320
a20713a4 1321 if (yychar <= YYEOF)
10fa2066 1322 {
a20713a4 1323 yychar = yytoken = YYEOF;
2f4f028d 1324 YYDPRINTF ((stderr, "Now at end of input.\n"));
10fa2066
RS
1325 }
1326 else
1327 {
a20713a4 1328 yytoken = YYTRANSLATE (yychar);
30757c8c 1329 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
10fa2066
RS
1330 }
1331
b0400cc6 1332 /* If the proper action on seeing token YYTOKEN is to reduce or to
e5cfd9d8 1333 detect an error, take that action. */
b0400cc6 1334 yyn += yytoken;
34ec3579 1335 if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
e5cfd9d8
PE
1336 goto yydefault;
1337 yyn = yytable[yyn];
1338 if (yyn <= 0)
10fa2066 1339 {
f2b30bdf 1340 if (yytable_value_is_error (yyn))
e5cfd9d8 1341 goto yyerrlab;
10fa2066
RS
1342 yyn = -yyn;
1343 goto yyreduce;
1344 }
10fa2066 1345
a85284cf
AD
1346 /* Count tokens shifted since error; after three, turn off error
1347 status. */
1348 if (yyerrstatus)
1349 yyerrstatus--;
1350
742e4900 1351 /* Shift the lookahead token. */
30757c8c 1352 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
10fa2066 1353
868d2d96
JD
1354 /* Discard the shifted token. */
1355 yychar = YYEMPTY;
10fa2066 1356
a85284cf 1357 yystate = yyn;
17da6427 1358 *++yyvsp = yylval;
327afc7c 1359]b4_locations_if([ *++yylsp = yylloc;])[
10fa2066
RS
1360 goto yynewstate;
1361
10fa2066 1362
71da9eea
AD
1363/*-----------------------------------------------------------.
1364| yydefault -- do the default action for the current state. |
1365`-----------------------------------------------------------*/
1366yydefault:
10fa2066
RS
1367 yyn = yydefact[yystate];
1368 if (yyn == 0)
1369 goto yyerrlab;
71da9eea 1370 goto yyreduce;
10fa2066 1371
71da9eea
AD
1372
1373/*-----------------------------.
1374| yyreduce -- Do a reduction. |
1375`-----------------------------*/
10fa2066 1376yyreduce:
71da9eea 1377 /* yyn is the number of a rule to reduce with. */
10fa2066 1378 yylen = yyr2[yyn];
da9abf43
AD
1379
1380 /* If YYLEN is nonzero, implement the default value of the action:
573c1d9f 1381 `$$ = $1'.
da9abf43 1382
accea6db
PE
1383 Otherwise, the following line sets YYVAL to garbage.
1384 This behavior is undocumented and Bison
da9abf43
AD
1385 users should not rely upon it. Assigning to YYVAL
1386 unconditionally makes the parser a bit smaller, and it avoids a
1387 GCC warning that YYVAL may be used uninitialized. */
1388 yyval = yyvsp[1-yylen];
3abcd459 1389
327afc7c 1390]b4_locations_if(
9d9b8b70 1391[[ /* Default location. */
401aace6 1392 YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);]])[
d9963c85 1393 YY_REDUCE_PRINT (yyn);
a8289c62 1394 switch (yyn)
d1ff7a7c 1395 {
8ec0a172 1396 ]b4_user_actions[
95f22ad2 1397 default: break;
a8289c62 1398 }
d1ff7a7c 1399 YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
897668ee 1400
a85284cf
AD
1401 YYPOPSTACK (yylen);
1402 yylen = 0;
b0937b22 1403 YY_STACK_PRINT (yyss, yyssp);
10fa2066 1404
9ca7f077
JD
1405 *++yyvsp = yyval;]b4_locations_if([
1406 *++yylsp = yyloc;])[
10fa2066 1407
41aca2e0
AD
1408 /* Now `shift' the result of the reduction. Determine what state
1409 that goes to, based on the state we popped back to and the rule
1410 number reduced by. */
10fa2066
RS
1411
1412 yyn = yyr1[yyn];
1413
7742ddeb 1414 yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
34ec3579 1415 if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
10fa2066
RS
1416 yystate = yytable[yystate];
1417 else
7742ddeb 1418 yystate = yydefgoto[yyn - YYNTOKENS];
10fa2066
RS
1419
1420 goto yynewstate;
1421
10fa2066 1422
71da9eea
AD
1423/*------------------------------------.
1424| yyerrlab -- here on detecting error |
1425`------------------------------------*/
1426yyerrlab:
1427 /* If not already recovering from an error, report this error. */
1428 if (!yyerrstatus)
10fa2066 1429 {
17da6427 1430 ++yynerrs;
b4c1f9d2
PE
1431#if ! YYERROR_VERBOSE
1432 yyerror (]b4_yyerror_args[YY_("syntax error"));
1433#else
1434 {
84eedf86 1435 YYSIZE_T yysize = yysyntax_error (0, yystate, yytoken);
b4c1f9d2
PE
1436 if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
1437 {
1438 YYSIZE_T yyalloc = 2 * yysize;
1439 if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
1440 yyalloc = YYSTACK_ALLOC_MAXIMUM;
1441 if (yymsg != yymsgbuf)
1442 YYSTACK_FREE (yymsg);
1443 yymsg = (char *) YYSTACK_ALLOC (yyalloc);
1444 if (yymsg)
1445 yymsg_alloc = yyalloc;
1446 else
3aa2f55d 1447 {
b4c1f9d2
PE
1448 yymsg = yymsgbuf;
1449 yymsg_alloc = sizeof yymsgbuf;
3aa2f55d 1450 }
b4c1f9d2 1451 }
df5aed8c 1452
b4c1f9d2
PE
1453 if (0 < yysize && yysize <= yymsg_alloc)
1454 {
84eedf86 1455 (void) yysyntax_error (yymsg, yystate, yytoken);
b4c1f9d2
PE
1456 yyerror (]b4_yyerror_args[yymsg);
1457 }
1458 else
1459 {
1460 yyerror (]b4_yyerror_args[YY_("syntax error"));
1461 if (yysize != 0)
1a059451 1462 goto yyexhaustedlab;
b4c1f9d2
PE
1463 }
1464 }
1465#endif
10fa2066 1466 }
71da9eea 1467
327afc7c 1468]b4_locations_if([[ yyerror_range[0] = yylloc;]])[
d42f69cd 1469
10fa2066
RS
1470 if (yyerrstatus == 3)
1471 {
742e4900 1472 /* If just tried and failed to reuse lookahead token after an
71da9eea 1473 error, discard it. */
10fa2066 1474
a6b89bb2 1475 if (yychar <= YYEOF)
02650b7f 1476 {
258b75ca 1477 /* Return failure if at end of input. */
a6b89bb2 1478 if (yychar == YYEOF)
80ce3401 1479 YYABORT;
02650b7f 1480 }
a6b89bb2
PE
1481 else
1482 {
4b367315 1483 yydestruct ("Error: discarding",
327afc7c 1484 yytoken, &yylval]b4_locations_if([, &yylloc])[]b4_user_args[);
a6b89bb2 1485 yychar = YYEMPTY;
a6b89bb2 1486 }
10fa2066
RS
1487 }
1488
742e4900 1489 /* Else will try to reuse lookahead token after shifting the error
71da9eea 1490 token. */
8a3eb3c8 1491 goto yyerrlab1;
300a7966 1492
10fa2066 1493
a6b89bb2
PE
1494/*---------------------------------------------------.
1495| yyerrorlab -- error raised explicitly by YYERROR. |
1496`---------------------------------------------------*/
1497yyerrorlab:
1498
c7a65b99
PE
1499 /* Pacify compilers like GCC when the user code never invokes
1500 YYERROR and the label yyerrorlab therefore never appears in user
1501 code. */
2a4647a3 1502 if (/*CONSTCOND*/ 0)
a6b89bb2 1503 goto yyerrorlab;
a6b89bb2 1504
327afc7c 1505]b4_locations_if([[ yyerror_range[0] = yylsp[1-yylen];
a85284cf 1506]])[ /* Do not reclaim the symbols of the rule which action triggered
9d9b8b70 1507 this YYERROR. */
a85284cf
AD
1508 YYPOPSTACK (yylen);
1509 yylen = 0;
1510 YY_STACK_PRINT (yyss, yyssp);
a6b89bb2 1511 yystate = *yyssp;
3fc16193 1512 goto yyerrlab1;
a6b89bb2
PE
1513
1514
1515/*-------------------------------------------------------------.
1516| yyerrlab1 -- common code for both syntax error and YYERROR. |
1517`-------------------------------------------------------------*/
300a7966 1518yyerrlab1:
cf44a9ae 1519 yyerrstatus = 3; /* Each real token shifted decrements this. */
10fa2066 1520
660bc8dd
PE
1521 for (;;)
1522 {
1523 yyn = yypact[yystate];
f2b30bdf 1524 if (!yypact_value_is_default (yyn))
660bc8dd
PE
1525 {
1526 yyn += YYTERROR;
1527 if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
1528 {
1529 yyn = yytable[yyn];
1530 if (0 < yyn)
1531 break;
1532 }
1533 }
10fa2066 1534
660bc8dd
PE
1535 /* Pop the current state because it cannot handle the error token. */
1536 if (yyssp == yyss)
1537 YYABORT;
5504898e 1538
327afc7c 1539]b4_locations_if([[ yyerror_range[0] = *yylsp;]])[
4b367315 1540 yydestruct ("Error: popping",
327afc7c 1541 yystos[yystate], yyvsp]b4_locations_if([, yylsp])[]b4_user_args[);
a85284cf 1542 YYPOPSTACK (1);
a6b89bb2 1543 yystate = *yyssp;
b0937b22 1544 YY_STACK_PRINT (yyss, yyssp);
10fa2066 1545 }
10fa2066 1546
17da6427 1547 *++yyvsp = yylval;
327afc7c 1548]b4_locations_if([[
3fc16193
AD
1549 yyerror_range[1] = yylloc;
1550 /* Using YYLLOC is tempting, but would change the location of
742e4900 1551 the lookahead. YYLOC is available though. */
401aace6 1552 YYLLOC_DEFAULT (yyloc, (yyerror_range - 1), 2);
3fc16193 1553 *++yylsp = yyloc;]])[
10fa2066 1554
9d9b8b70 1555 /* Shift the error token. */
30757c8c 1556 YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
1576d44d 1557
10fa2066
RS
1558 yystate = yyn;
1559 goto yynewstate;
70ddf897 1560
71da9eea
AD
1561
1562/*-------------------------------------.
1563| yyacceptlab -- YYACCEPT comes here. |
1564`-------------------------------------*/
1565yyacceptlab:
600f9b0c
PE
1566 yyresult = 0;
1567 goto yyreturn;
71da9eea
AD
1568
1569/*-----------------------------------.
1570| yyabortlab -- YYABORT comes here. |
1571`-----------------------------------*/
1572yyabortlab:
600f9b0c
PE
1573 yyresult = 1;
1574 goto yyreturn;
1575
a2ea208d 1576#if !defined(yyoverflow) || YYERROR_VERBOSE
1a059451
PE
1577/*-------------------------------------------------.
1578| yyexhaustedlab -- memory exhaustion comes here. |
1579`-------------------------------------------------*/
1580yyexhaustedlab:
1581 yyerror (]b4_yyerror_args[YY_("memory exhausted"));
600f9b0c
PE
1582 yyresult = 2;
1583 /* Fall through. */
0bfb02ff 1584#endif
600f9b0c
PE
1585
1586yyreturn:
868d2d96 1587 if (yychar != YYEMPTY)
dd5f2af2 1588 yydestruct ("Cleanup: discarding lookahead",
327afc7c 1589 yytoken, &yylval]b4_locations_if([, &yylloc])[]b4_user_args[);
a85284cf 1590 /* Do not reclaim the symbols of the rule which action triggered
9d9b8b70 1591 this YYABORT or YYACCEPT. */
a85284cf
AD
1592 YYPOPSTACK (yylen);
1593 YY_STACK_PRINT (yyss, yyssp);
258b75ca
PE
1594 while (yyssp != yyss)
1595 {
dd5f2af2 1596 yydestruct ("Cleanup: popping",
327afc7c 1597 yystos[*yyssp], yyvsp]b4_locations_if([, yylsp])[]b4_user_args[);
a85284cf 1598 YYPOPSTACK (1);
258b75ca 1599 }
600f9b0c
PE
1600#ifndef yyoverflow
1601 if (yyss != yyssa)
1602 YYSTACK_FREE (yyss);
bb31eb56
JD
1603#endif]b4_push_if([[
1604 yyps->yynew = 1;
9ca7f077 1605
bb31eb56
JD
1606yypushreturn:]])[
1607#if YYERROR_VERBOSE
b4c1f9d2
PE
1608 if (yymsg != yymsgbuf)
1609 YYSTACK_FREE (yymsg);
70ddf897 1610#endif
7b5cdcbd
JD
1611 /* Make sure YYID is used. */
1612 return YYID (yyresult);
9ca7f077 1613}
be2a1a68 1614
4524c55b 1615]b4_epilogue[]dnl
327afc7c 1616b4_defines_if(
a0d4650a 1617[@output(b4_spec_defines_file@)@
269e222e 1618b4_copyright([Interface for Bison's Yacc-like parsers in C])dnl
6e93d810 1619
a4e25e1d 1620b4_percent_code_get([[requires]])[]dnl
9bc0dd67 1621
cf147260 1622b4_token_enums_defines(b4_tokens)
be2a1a68 1623
9bc0dd67
JD
1624[#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
1625]m4_ifdef([b4_stype],
ddc8ede1 1626[[typedef union ]b4_union_name[
7ecec4dd 1627{
ddc8ede1 1628]b4_user_stype[
7ecec4dd 1629} YYSTYPE;
ddc8ede1
PE
1630# define YYSTYPE_IS_TRIVIAL 1]],
1631[m4_if(b4_tag_seen_flag, 0,
1632[[typedef int YYSTYPE;
1633# define YYSTYPE_IS_TRIVIAL 1]])])[
050c471b
PE
1634# define yystype YYSTYPE /* obsolescent; will be withdrawn */
1635# define YYSTYPE_IS_DECLARED 1
be2a1a68
AD
1636#endif
1637
9ca7f077 1638]b4_pure_if([], [[extern YYSTYPE ]b4_prefix[lval;]])
be2a1a68 1639
327afc7c 1640b4_locations_if(
02650b7f 1641[#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
050c471b 1642typedef struct YYLTYPE
be2a1a68
AD
1643{
1644 int first_line;
1645 int first_column;
1646 int last_line;
1647 int last_column;
050c471b
PE
1648} YYLTYPE;
1649# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
1650# define YYLTYPE_IS_DECLARED 1
1651# define YYLTYPE_IS_TRIVIAL 1
be2a1a68 1652#endif
ff48177d 1653
9ca7f077 1654]b4_pure_if([], [[extern YYLTYPE ]b4_prefix[lloc;]])
9bc0dd67 1655)dnl b4_locations_if
9ca7f077
JD
1656b4_push_if([[
1657#ifndef YYPUSH_DECLS
1658# define YYPUSH_DECLS
1659struct ]b4_prefix[pstate;
1660typedef struct ]b4_prefix[pstate ]b4_prefix[pstate;
1661enum { YYPUSH_MORE = 4 };
1662]b4_pull_if([b4_c_function_decl([b4_prefix[parse]], [[int]], b4_parse_param)
1663])b4_c_function_decl([b4_prefix[push_parse]], [[int]],
1664 [[b4_prefix[pstate *yyps]], [[yyps]]]b4_pure_if([,
1665 [[[int yypushed_char]], [[yypushed_char]]],
1666 [[[YYSTYPE const *yypushed_val]], [[yypushed_val]]]b4_locations_if([,
1667 [[[YYLTYPE const *yypushed_loc]], [[yypushed_loc]]]])])m4_ifset([b4_parse_param], [,
1668 b4_parse_param]))
1669b4_pull_if([b4_c_function_decl([b4_prefix[pull_parse]], [[int]],
1670 [[b4_prefix[pstate *yyps]], [[yyps]]]m4_ifset([b4_parse_param], [,
1671 b4_parse_param]))])
1672b4_c_function_decl([b4_prefix[pstate_new]], [b4_prefix[pstate *]],
1673 [[[void]], []])
1674b4_c_function_decl([b4_prefix[pstate_delete]], [[void]],
1675 [[b4_prefix[pstate *yyps]], [[yyps]]])[
1676#endif
1677]])
1678b4_percent_code_get([[provides]])[]dnl
327afc7c 1679])dnl b4_defines_if
08af01c2 1680m4_divert_pop(0)
639867b5 1681m4_popdef([b4_copyright_years])