]> git.saurik.com Git - bison.git/blame - data/glr.c
POSIX: warn if %prec's token was not defined.
[bison.git] / data / glr.c
CommitLineData
08af01c2 1 -*- C -*-
01241d47 2
fb8135fa 3# GLR skeleton for Bison
110ef36a
JD
4# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
5# Software Foundation, Inc.
fb8135fa 6
f16b0819 7# This program is free software: you can redistribute it and/or modify
fb8135fa 8# it under the terms of the GNU General Public License as published by
f16b0819 9# the Free Software Foundation, either version 3 of the License, or
fb8135fa 10# (at your option) any later version.
f16b0819 11#
fb8135fa
AD
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
f16b0819 16#
fb8135fa 17# You should have received a copy of the GNU General Public License
f16b0819 18# along with this program. If not, see <http://www.gnu.org/licenses/>.
fb8135fa 19
66d30cd4 20
0a96ba81 21m4_include(b4_pkgdatadir/[c.m4])
7eb8a0bc 22
66d30cd4
AD
23## ---------------- ##
24## Default values. ##
25## ---------------- ##
26
27# Stack parameters.
28m4_define_default([b4_stack_depth_max], [10000])
29m4_define_default([b4_stack_depth_init], [200])
30
2a8d363a
AD
31
32
33## ------------------------ ##
34## Pure/impure interfaces. ##
35## ------------------------ ##
36
d9df47b6
JD
37b4_define_flag_if([pure])
38# If glr.cc is including this file and thus has already set b4_pure_flag, don't
39# change the value of b4_pure_flag, and don't record a use of api.pure.
40m4_ifndef([b4_pure_flag],
41[b4_percent_define_default([[api.pure]], [[false]])
42 m4_define([b4_pure_flag],
43 [b4_percent_define_flag_if([[api.pure]], [[1]], [[0]])])])
2a8d363a 44
4b367315
AD
45# b4_user_formals
46# ---------------
1989d947
AD
47# The possible parse-params formal arguments preceded by a comma.
48#
49# This is not shared with yacc.c in c.m4 because GLR relies on ISO C
50# formal argument declarations.
4b367315
AD
51m4_define([b4_user_formals],
52[m4_ifset([b4_parse_param], [, b4_c_ansi_formals(b4_parse_param)])])
53
54
2a8d363a
AD
55# b4_lex_param
56# ------------
21964f43
AD
57# Accumule in b4_lex_param all the yylex arguments.
58# Yes, this is quite ugly...
59m4_define([b4_lex_param],
d6cff4dc 60m4_dquote(b4_pure_if([[[[YYSTYPE *]], [[&yylval]]][]dnl
327afc7c 61b4_locations_if([, [[YYLTYPE *], [&yylloc]]])])dnl
21964f43
AD
62m4_ifdef([b4_lex_param], [, ]b4_lex_param)))
63
2a8d363a 64
93724f13
AD
65# b4_yyerror_args
66# ---------------
1989d947
AD
67# Optional effective arguments passed to yyerror: user args plus yylloc, and
68# a trailing comma.
93724f13 69m4_define([b4_yyerror_args],
327afc7c 70[b4_pure_if([b4_locations_if([yylocp, ])])dnl
93724f13
AD
71m4_ifset([b4_parse_param], [b4_c_args(b4_parse_param), ])])
72
73
74# b4_lyyerror_args
75# ----------------
742e4900 76# Same as above, but on the lookahead, hence &yylloc instead of yylocp.
93724f13 77m4_define([b4_lyyerror_args],
327afc7c 78[b4_pure_if([b4_locations_if([&yylloc, ])])dnl
93724f13
AD
79m4_ifset([b4_parse_param], [b4_c_args(b4_parse_param), ])])
80
81
2a8d363a
AD
82# b4_pure_args
83# ------------
1989d947 84# Same as b4_yyerror_args, but with a leading comma.
2a8d363a 85m4_define([b4_pure_args],
327afc7c 86[b4_pure_if([b4_locations_if([, yylocp])])[]b4_user_args])
2a8d363a
AD
87
88
2a8d363a
AD
89# b4_lpure_args
90# -------------
742e4900 91# Same as above, but on the lookahead, hence &yylloc instead of yylocp.
2a8d363a 92m4_define([b4_lpure_args],
327afc7c 93[b4_pure_if([b4_locations_if([, &yylloc])])[]b4_user_args])
0245f82d 94
66d30cd4 95
1989d947
AD
96# b4_pure_formals
97# ---------------
d6cff4dc 98# Arguments passed to yyerror: user formals plus yylocp.
1989d947 99m4_define([b4_pure_formals],
327afc7c 100[b4_pure_if([b4_locations_if([, YYLTYPE *yylocp])])[]b4_user_formals])
1989d947
AD
101
102
66d30cd4
AD
103## ----------------- ##
104## Semantic Values. ##
105## ----------------- ##
106
107
01241d47
PH
108# b4_lhs_value([TYPE])
109# --------------------
110# Expansion of $<TYPE>$.
111m4_define([b4_lhs_value],
1fa5d8bb
AD
112[b4_symbol_value([(*yyvalp)], [$1])])
113
114
115# b4_rhs_data(RULE-LENGTH, NUM)
116# -----------------------------
117# Expand to the semantic stack place that contains value and location
118# of symbol number NUM in a rule of length RULE-LENGTH.
119m4_define([b4_rhs_data],
bd187d7b 120[((yyGLRStackItem const *)yyvsp)@{YYFILL (b4_subtract([$2], [$1]))@}.yystate])
01241d47
PH
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],
1fa5d8bb 128[b4_symbol_value([b4_rhs_data([$1], [$2]).yysemantics.yysval], [$3])])
01241d47
PH
129
130
131
132## ----------- ##
133## Locations. ##
134## ----------- ##
135
01241d47
PH
136# b4_lhs_location()
137# -----------------
138# Expansion of @$.
139m4_define([b4_lhs_location],
140[(*yylocp)])
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],
1fa5d8bb 148[(b4_rhs_data([$1], [$2]).yyloc)])
01241d47 149
5059b5c8
AD
150
151
152## -------------- ##
153## Output files. ##
154## -------------- ##
155
b526ee61
AD
156# We do want M4 expansion after # for CPP macros.
157m4_changecom()
08af01c2 158m4_divert_push(0)dnl
a0d4650a 159@output(b4_parser_file_name@)@
193d7c70 160b4_copyright([Skeleton implementation for Bison GLR parsers in C],
110ef36a 161 [2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009])
fb8135fa 162[
193d7c70 163/* C GLR parser skeleton written by Paul Hilfinger. */
01241d47 164
2a8d363a 165]b4_identification
5059b5c8 166
a4e25e1d 167b4_percent_code_get([[top]])[]dnl
aa08666d 168m4_if(b4_prefix, [yy], [],
c5b95ccf 169[/* Substitute the variable and function names. */
01241d47
PH
170#define yyparse b4_prefix[]parse
171#define yylex b4_prefix[]lex
172#define yyerror b4_prefix[]error
173#define yylval b4_prefix[]lval
174#define yychar b4_prefix[]char
175#define yydebug b4_prefix[]debug
176#define yynerrs b4_prefix[]nerrs
9bc0dd67
JD
177#define yylloc b4_prefix[]lloc])[
178
179/* Copy the first part of user declarations. */
136a0f76 180]b4_user_pre_prologue
01241d47 181
5059b5c8
AD
182dnl # b4_shared_declarations
183dnl # ----------------------
184dnl # Declaration that might either go into the header (if --defines)
185dnl # or open coded in the parser body.
186m4_define([b4_shared_declarations],
a4e25e1d 187[b4_percent_code_get([[requires]])[]dnl
01241d47 188
9bc0dd67 189b4_token_enums(b4_tokens)
141f5793 190
ddc8ede1 191[#ifndef YYSTYPE
01241d47 192]m4_ifdef([b4_stype],
ddc8ede1 193[[typedef union ]b4_union_name[
7ecec4dd 194{
ddc8ede1 195]b4_user_stype[
7ecec4dd 196} YYSTYPE;
ddc8ede1
PE
197# define YYSTYPE_IS_TRIVIAL 1]],
198[m4_if(b4_tag_seen_flag, 0,
199[[typedef int YYSTYPE;
200# define YYSTYPE_IS_TRIVIAL 1]])])[
01241d47
PH
201#endif
202
02650b7f 203#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
fa8c3ebc 204typedef struct YYLTYPE
01241d47 205{
327afc7c 206]b4_locations_if([
f50adbbd
AD
207 int first_line;
208 int first_column;
209 int last_line;
ffa4c58a 210 int last_column;
5cc16ecc
PE
211],[
212 char yydummy;
25005f6a 213])[
fa8c3ebc
PE
214} YYLTYPE;
215# define YYLTYPE_IS_DECLARED 1
01241d47
PH
216# define YYLTYPE_IS_TRIVIAL 1
217#endif
9bc0dd67 218
a4e25e1d 219]b4_percent_code_get([[provides]])[]dnl
9bc0dd67 220])
5059b5c8 221
bd9d212b 222b4_defines_if([[#include "@basename(]b4_spec_defines_file[@)"]],
5ad0a449 223 [b4_shared_declarations])[
5059b5c8
AD
224
225/* Enabling traces. */
226#ifndef YYDEBUG
fa819509 227# define YYDEBUG ]b4_parse_trace_if([1], [0])[
5059b5c8
AD
228#endif
229
230/* Enabling verbose error messages. */
231#ifdef YYERROR_VERBOSE
232# undef YYERROR_VERBOSE
233# define YYERROR_VERBOSE 1
234#else
b3a2272a 235# define YYERROR_VERBOSE ]b4_error_verbose_if([1], [0])[
5059b5c8
AD
236#endif
237
238/* Enabling the token table. */
239#ifndef YYTOKEN_TABLE
240# define YYTOKEN_TABLE ]b4_token_table[
241#endif
01241d47 242
288006a2 243/* Default (constant) value used for initialization for null
f6abc26e 244 right-hand sides. Unlike the standard yacc.c template,
288006a2 245 here we set the default value of $$ to a zeroed-out value.
b9b51bf0 246 Since the default value is undefined, this behavior is
9d9b8b70 247 technically correct. */
01241d47 248static YYSTYPE yyval_default;
01241d47
PH
249
250/* Copy the second part of user declarations. */
8e0a5e9e 251]b4_user_post_prologue
a4e25e1d 252b4_percent_code_get[]dnl
01241d47 253
8e0a5e9e 254[#include <stdio.h>
63cb01d6
PE
255#include <stdlib.h>
256#include <string.h>
63cb01d6 257
30757c8c 258#ifndef YY_
ae93128c 259# if defined YYENABLE_NLS && YYENABLE_NLS
30757c8c
PE
260# if ENABLE_NLS
261# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
262# define YY_(msgid) dgettext ("bison-runtime", msgid)
263# endif
264# endif
265# ifndef YY_
266# define YY_(msgid) msgid
267# endif
268#endif
269
2a4647a3 270/* Suppress unused-variable warnings by "using" E. */
02650b7f 271#if ! defined lint || defined __GNUC__
12ce2df6 272# define YYUSE(e) ((void) (e))
613d8952 273#else
12ce2df6
PE
274# define YYUSE(e) /* empty */
275#endif
276
277/* Identity function, used to suppress warnings about constant conditions. */
278#ifndef lint
279# define YYID(n) (n)
280#else
281]b4_c_function_def([YYID], [static int], [[int i], [i]])[
282{
283 return i;
284}
613d8952 285#endif
2a4647a3 286
a525b568
PE
287#ifndef YYFREE
288# define YYFREE free
289#endif
290#ifndef YYMALLOC
291# define YYMALLOC malloc
292#endif
293#ifndef YYREALLOC
294# define YYREALLOC realloc
295#endif
296
63cb01d6
PE
297#define YYSIZEMAX ((size_t) -1)
298
f7c398aa
PE
299#ifdef __cplusplus
300 typedef bool yybool;
301#else
302 typedef unsigned char yybool;
01241d47 303#endif
f7c398aa
PE
304#define yytrue 1
305#define yyfalse 0
01241d47 306
c89b4c03
PE
307#ifndef YYSETJMP
308# include <setjmp.h>
309# define YYJMP_BUF jmp_buf
310# define YYSETJMP(env) setjmp (env)
311# define YYLONGJMP(env, val) longjmp (env, val)
312#endif
313
1154cced
AD
314/*-----------------.
315| GCC extensions. |
316`-----------------*/
317
318#ifndef __attribute__
319/* This feature is available in gcc versions 2.5 and later. */
02650b7f 320# if (! defined __GNUC__ || __GNUC__ < 2 \
a603c6e0
JD
321 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) \
322 || (defined __STRICT_ANSI__ && __STRICT_ANSI__))
1154cced
AD
323# define __attribute__(Spec) /* empty */
324# endif
325#endif
326
327afc7c 327]b4_locations_if([#define YYOPTIONAL_LOC(Name) Name],[
3bc00d6c
PE
328#ifdef __cplusplus
329# define YYOPTIONAL_LOC(Name) /* empty */
330#else
331# define YYOPTIONAL_LOC(Name) Name __attribute__ ((__unused__))
332#endif])[
333
64c4fd52
PE
334#ifndef YYASSERT
335# define YYASSERT(condition) ((void) ((condition) || (abort (), 0)))
336#endif
337
9d9b8b70 338/* YYFINAL -- State number of the termination state. */
7db2ed2d 339#define YYFINAL ]b4_final_state_number[
39912f52 340/* YYLAST -- Last index in YYTABLE. */
01241d47
PH
341#define YYLAST ]b4_last[
342
9d9b8b70 343/* YYNTOKENS -- Number of terminals. */
7db2ed2d 344#define YYNTOKENS ]b4_tokens_number[
9d9b8b70 345/* YYNNTS -- Number of nonterminals. */
7db2ed2d 346#define YYNNTS ]b4_nterms_number[
9d9b8b70 347/* YYNRULES -- Number of rules. */
7db2ed2d 348#define YYNRULES ]b4_rules_number[
9d9b8b70 349/* YYNRULES -- Number of states. */
7db2ed2d 350#define YYNSTATES ]b4_states_number[
9d9b8b70 351/* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */
01241d47 352#define YYMAXRHS ]b4_r2_max[
25005f6a 353/* YYMAXLEFT -- Maximum number of symbols to the left of a handle
9d9b8b70 354 accessed by $0, $-1, etc., in any rule. */
25005f6a 355#define YYMAXLEFT ]b4_max_left_semantic_context[
01241d47
PH
356
357/* YYTRANSLATE(X) -- Bison symbol number corresponding to X. */
358#define YYUNDEFTOK ]b4_undef_token_number[
359#define YYMAXUTOK ]b4_user_token_number_max[
360
5cc16ecc 361#define YYTRANSLATE(YYX) \
cf806753 362 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
01241d47
PH
363
364/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
a762e609 365static const ]b4_int_type_for([b4_translate])[ yytranslate[] =
01241d47
PH
366{
367 ]b4_translate[
368};
369
370#if YYDEBUG
01241d47 371/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
a762e609 372static const ]b4_int_type_for([b4_rline])[ yyrline[] =
01241d47
PH
373{
374 ]b4_rline[
375};
376#endif
377
141f5793 378#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
9e0876fb 379/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
9d9b8b70 380 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
01241d47
PH
381static const char *const yytname[] =
382{
383 ]b4_tname[
384};
01241d47
PH
385#endif
386
728e89a0
AD
387#define YYPACT_NINF ]b4_pact_ninf[
388#define YYTABLE_NINF ]b4_table_ninf[
01241d47 389
728e89a0 390]b4_parser_tables_define[
01241d47 391
9d9b8b70 392/* YYDPREC[RULE-NUM] -- Dynamic precedence of rule #RULE-NUM (0 if none). */
a762e609 393static const ]b4_int_type_for([b4_dprec])[ yydprec[] =
01241d47
PH
394{
395 ]b4_dprec[
396};
397
9d9b8b70 398/* YYMERGER[RULE-NUM] -- Index of merging function for rule #RULE-NUM. */
a762e609 399static const ]b4_int_type_for([b4_merger])[ yymerger[] =
01241d47
PH
400{
401 ]b4_merger[
402};
403
ea99527d
AD
404/* YYCONFLP[YYPACT[STATE-NUM]] -- Pointer into YYCONFL of start of
405 list of conflicting reductions corresponding to action entry for
406 state STATE-NUM in yytable. 0 means no conflicts. The list in
407 yyconfl is terminated by a rule number of 0. */
a762e609 408static const ]b4_int_type_for([b4_conflict_list_heads])[ yyconflp[] =
01241d47
PH
409{
410 ]b4_conflict_list_heads[
411};
412
ea99527d
AD
413/* YYCONFL[I] -- lists of conflicting rule numbers, each terminated by
414 0, pointed into by YYCONFLP. */
a762e609 415]dnl Do not use b4_int_type_for here, since there are places where
779e7ceb 416dnl pointers onto yyconfl are taken, which type is "short int *".
a762e609 417dnl We probably ought to introduce a type for confl.
779e7ceb 418[static const short int yyconfl[] =
01241d47
PH
419{
420 ]b4_conflicting_rules[
421};
01241d47 422\f
0245f82d 423/* Prevent warning if -Wmissing-prototypes. */
2a8d363a 424]b4_c_ansi_function_decl([yyparse], [int], b4_parse_param)[
e7cb57c0 425
2a8d363a 426/* Error token number */
01241d47
PH
427#define YYTERROR 1
428
b4a20338
AD
429/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
430 If N is 0, then set CURRENT to the empty location which ends
431 the previous symbol: RHS[0] (always defined). */
01241d47 432
327afc7c 433]b4_locations_if([[
9fafc4dd 434#define YYRHSLOC(Rhs, K) ((Rhs)[K].yystate.yyloc)
01241d47 435#ifndef YYLLOC_DEFAULT
9fafc4dd
PE
436# define YYLLOC_DEFAULT(Current, Rhs, N) \
437 do \
9ecafbbf 438 if (YYID (N)) \
9fafc4dd 439 { \
9bec482e
PE
440 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
441 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
442 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
443 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
9fafc4dd
PE
444 } \
445 else \
446 { \
447 (Current).first_line = (Current).last_line = \
9bec482e 448 YYRHSLOC (Rhs, 0).last_line; \
9fafc4dd 449 (Current).first_column = (Current).last_column = \
9bec482e 450 YYRHSLOC (Rhs, 0).last_column; \
9fafc4dd 451 } \
12ce2df6 452 while (YYID (0))
3fc16193
AD
453
454/* YY_LOCATION_PRINT -- Print the location on the stream.
455 This macro was not mandated originally: define only if we know
456 we won't break user code: when these are the locations we know. */
457
458# define YY_LOCATION_PRINT(File, Loc) \
459 fprintf (File, "%d.%d-%d.%d", \
69ce078b
PE
460 (Loc).first_line, (Loc).first_column, \
461 (Loc).last_line, (Loc).last_column)
25005f6a
PH
462#endif
463]],[
464#ifndef YYLLOC_DEFAULT
9fafc4dd 465# define YYLLOC_DEFAULT(Current, Rhs, N) ((void) 0)
01241d47 466#endif
25005f6a
PH
467])[
468
3fc16193
AD
469#ifndef YY_LOCATION_PRINT
470# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
471#endif
472
01241d47
PH
473
474/* YYLEX -- calling `yylex' with the right arguments. */
21964f43 475#define YYLEX ]b4_c_function_call([yylex], [int], b4_lex_param)[
01241d47
PH
476
477]b4_pure_if(
478[
01241d47 479#undef yynerrs
3e7a2cd9 480#define yynerrs (yystackp->yyerrcnt)
01241d47 481#undef yychar
d6cff4dc
AD
482#define yychar (yystackp->yyrawchar)
483#undef yylval
484#define yylval (yystackp->yyval)
485#undef yylloc
486#define yylloc (yystackp->yyloc)
487m4_if(b4_prefix[], [yy], [],
488[#define b4_prefix[]nerrs yynerrs
489#define b4_prefix[]char yychar
490#define b4_prefix[]lval yylval
491#define b4_prefix[]lloc yylloc])],
01241d47
PH
492[YYSTYPE yylval;
493
494YYLTYPE yylloc;
495
496int yynerrs;
497int yychar;])[
498
499static const int YYEOF = 0;
500static const int YYEMPTY = -2;
501
502typedef enum { yyok, yyaccept, yyabort, yyerr } YYRESULTTAG;
503
5860cc8c
AD
504#define YYCHK(YYE) \
505 do { \
506 YYRESULTTAG yyflag = YYE; \
507 if (yyflag != yyok) \
508 return yyflag; \
509 } while (YYID (0))
01241d47
PH
510
511#if YYDEBUG
512
02650b7f 513# ifndef YYFPRINTF
01241d47 514# define YYFPRINTF fprintf
02650b7f 515# endif
01241d47
PH
516
517# define YYDPRINTF(Args) \
5860cc8c
AD
518 do { \
519 if (yydebug) \
520 YYFPRINTF Args; \
521 } while (YYID (0))
7bd6c77e 522
a0af42fc 523]b4_yy_symbol_print_generate([b4_c_ansi_function_def])[
7bd6c77e 524
5860cc8c
AD
525# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
526 do { \
527 if (yydebug) \
528 { \
529 YYFPRINTF (stderr, "%s ", Title); \
530 yy_symbol_print (stderr, Type, \
531 Value]b4_locations_if([, Location])[]b4_user_args[); \
532 YYFPRINTF (stderr, "\n"); \
533 } \
534 } while (YYID (0))
9c1e26bd 535
01241d47
PH
536/* Nonzero means print parse trace. It is left uninitialized so that
537 multiple parsers can coexist. */
538int yydebug;
7bd6c77e 539
01241d47 540#else /* !YYDEBUG */
7bd6c77e 541
ee16363f 542# define YYDPRINTF(Args)
284acc8b 543# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
7bd6c77e 544
01241d47
PH
545#endif /* !YYDEBUG */
546
547/* YYINITDEPTH -- initial size of the parser's stacks. */
548#ifndef YYINITDEPTH
66d30cd4 549# define YYINITDEPTH ]b4_stack_depth_init[
01241d47
PH
550#endif
551
552/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
553 if the built-in stack extension method is used).
554
555 Do not make this value too large; the results are undefined if
fb8135fa 556 SIZE_MAX < YYMAXDEPTH * sizeof (GLRStackItem)
01241d47
PH
557 evaluated with infinite-precision integer arithmetic. */
558
01241d47 559#ifndef YYMAXDEPTH
66d30cd4 560# define YYMAXDEPTH ]b4_stack_depth_max[
01241d47
PH
561#endif
562
563/* Minimum number of free items on the stack allowed after an
fb8135fa 564 allocation. This is to allow allocation and initialization
63cb01d6 565 to be completed by functions that call yyexpandGLRStack before the
fb8135fa 566 stack is expanded, thus insuring that all necessary pointers get
9d9b8b70 567 properly redirected to new data. */
01241d47
PH
568#define YYHEADROOM 2
569
e2688cd9 570#ifndef YYSTACKEXPANDABLE
02650b7f 571# if (! defined __cplusplus \
327afc7c 572 || (]b4_locations_if([[defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
02650b7f 573 && ]])[defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))
e2688cd9
PE
574# define YYSTACKEXPANDABLE 1
575# else
576# define YYSTACKEXPANDABLE 0
577# endif
01241d47
PH
578#endif
579
02998094
AD
580#if YYSTACKEXPANDABLE
581# define YY_RESERVE_GLRSTACK(Yystack) \
582 do { \
583 if (Yystack->yyspaceLeft < YYHEADROOM) \
584 yyexpandGLRStack (Yystack); \
12ce2df6 585 } while (YYID (0))
02998094
AD
586#else
587# define YY_RESERVE_GLRSTACK(Yystack) \
588 do { \
589 if (Yystack->yyspaceLeft < YYHEADROOM) \
590 yyMemoryExhausted (Yystack); \
12ce2df6 591 } while (YYID (0))
02998094
AD
592#endif
593
594
63cb01d6
PE
595#if YYERROR_VERBOSE
596
597# ifndef yystpcpy
02650b7f 598# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
63cb01d6
PE
599# define yystpcpy stpcpy
600# else
601/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
602 YYDEST. */
603static char *
604yystpcpy (char *yydest, const char *yysrc)
605{
606 char *yyd = yydest;
607 const char *yys = yysrc;
608
609 while ((*yyd++ = *yys++) != '\0')
610 continue;
611
612 return yyd - 1;
613}
614# endif
615# endif
616
9e0876fb
PE
617# ifndef yytnamerr
618/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
619 quotes and backslashes, so that it's suitable for yyerror. The
620 heuristic is that double-quoting is unnecessary unless the string
621 contains an apostrophe, a comma, or backslash (other than
622 backslash-backslash). YYSTR is taken from yytname. If YYRES is
623 null, do not copy; instead, return the length of what the result
624 would have been. */
625static size_t
626yytnamerr (char *yyres, const char *yystr)
627{
628 if (*yystr == '"')
629 {
630 size_t yyn = 0;
631 char const *yyp = yystr;
632
633 for (;;)
634 switch (*++yyp)
635 {
636 case '\'':
637 case ',':
638 goto do_not_strip_quotes;
639
640 case '\\':
641 if (*++yyp != '\\')
642 goto do_not_strip_quotes;
643 /* Fall through. */
644 default:
645 if (yyres)
646 yyres[yyn] = *yyp;
647 yyn++;
648 break;
649
650 case '"':
651 if (yyres)
652 yyres[yyn] = '\0';
653 return yyn;
654 }
655 do_not_strip_quotes: ;
656 }
657
658 if (! yyres)
659 return strlen (yystr);
660
661 return yystpcpy (yyres, yystr) - yyres;
662}
663# endif
664
63cb01d6
PE
665#endif /* !YYERROR_VERBOSE */
666
01241d47
PH
667/** State numbers, as in LALR(1) machine */
668typedef int yyStateNum;
669
670/** Rule numbers, as in LALR(1) machine */
671typedef int yyRuleNum;
672
673/** Grammar symbol */
779e7ceb 674typedef short int yySymbol;
01241d47
PH
675
676/** Item references, as in LALR(1) machine */
779e7ceb 677typedef short int yyItemNum;
01241d47
PH
678
679typedef struct yyGLRState yyGLRState;
3e7a2cd9 680typedef struct yyGLRStateSet yyGLRStateSet;
01241d47
PH
681typedef struct yySemanticOption yySemanticOption;
682typedef union yyGLRStackItem yyGLRStackItem;
683typedef struct yyGLRStack yyGLRStack;
01241d47
PH
684
685struct yyGLRState {
9d9b8b70 686 /** Type tag: always true. */
f7c398aa 687 yybool yyisState;
9d9b8b70
PE
688 /** Type tag for yysemantics. If true, yysval applies, otherwise
689 * yyfirstVal applies. */
f7c398aa 690 yybool yyresolved;
9d9b8b70 691 /** Number of corresponding LALR(1) machine state. */
01241d47 692 yyStateNum yylrState;
5e6f62f2 693 /** Preceding state in this stack */
01241d47 694 yyGLRState* yypred;
5e6f62f2 695 /** Source position of the first token produced by my symbol */
01241d47
PH
696 size_t yyposn;
697 union {
5e6f62f2 698 /** First in a chain of alternative reductions producing the
010f91c3 699 * non-terminal corresponding to this state, threaded through
9d9b8b70 700 * yynext. */
01241d47 701 yySemanticOption* yyfirstVal;
9d9b8b70 702 /** Semantic value for this state. */
01241d47
PH
703 YYSTYPE yysval;
704 } yysemantics;
9d9b8b70 705 /** Source location for this state. */
01241d47
PH
706 YYLTYPE yyloc;
707};
708
709struct yyGLRStateSet {
710 yyGLRState** yystates;
b7691f15 711 /** During nondeterministic operation, yylookaheadNeeds tracks which
bf70fa87 712 * stacks have actually needed the current lookahead. During deterministic
b7691f15 713 * operation, yylookaheadNeeds[0] is not maintained since it would merely
bf70fa87 714 * duplicate yychar != YYEMPTY. */
b7691f15 715 yybool* yylookaheadNeeds;
01241d47
PH
716 size_t yysize, yycapacity;
717};
718
719struct yySemanticOption {
9d9b8b70 720 /** Type tag: always false. */
f7c398aa 721 yybool yyisState;
5e6f62f2 722 /** Rule number for this reduction */
01241d47 723 yyRuleNum yyrule;
9d9b8b70 724 /** The last RHS state in the list of states to be reduced. */
01241d47 725 yyGLRState* yystate;
bf70fa87
JD
726 /** The lookahead for this reduction. */
727 int yyrawchar;
728 YYSTYPE yyval;
729 YYLTYPE yyloc;
9d9b8b70
PE
730 /** Next sibling in chain of options. To facilitate merging,
731 * options are chained in decreasing order by address. */
01241d47
PH
732 yySemanticOption* yynext;
733};
734
9d9b8b70
PE
735/** Type of the items in the GLR stack. The yyisState field
736 * indicates which item of the union is valid. */
01241d47
PH
737union yyGLRStackItem {
738 yyGLRState yystate;
739 yySemanticOption yyoption;
740};
741
742struct yyGLRStack {
01241d47 743 int yyerrState;
327afc7c 744]b4_locations_if([[ /* To compute the location of the error token. */
63d72da7 745 yyGLRStackItem yyerror_range[3];]])[
01241d47
PH
746]b4_pure_if(
747[
748 int yyerrcnt;
749 int yyrawchar;
d6cff4dc
AD
750 YYSTYPE yyval;
751 YYLTYPE yyloc;
01241d47 752])[
c89b4c03 753 YYJMP_BUF yyexception_buffer;
01241d47
PH
754 yyGLRStackItem* yyitems;
755 yyGLRStackItem* yynextFree;
63cb01d6 756 size_t yyspaceLeft;
01241d47
PH
757 yyGLRState* yysplitPoint;
758 yyGLRState* yylastDeleted;
759 yyGLRStateSet yytops;
760};
761
b2741627 762#if YYSTACKEXPANDABLE
3e7a2cd9 763static void yyexpandGLRStack (yyGLRStack* yystackp);
b2741627 764#endif
01241d47 765
3e7a2cd9 766static void yyFail (yyGLRStack* yystackp]b4_pure_formals[, const char* yymsg)
135bc829 767 __attribute__ ((__noreturn__));
01241d47 768static void
3e7a2cd9 769yyFail (yyGLRStack* yystackp]b4_pure_formals[, const char* yymsg)
01241d47 770{
fd2df2ed
PE
771 if (yymsg != NULL)
772 yyerror (]b4_yyerror_args[yymsg);
3e7a2cd9 773 YYLONGJMP (yystackp->yyexception_buffer, 1);
01241d47
PH
774}
775
3e7a2cd9 776static void yyMemoryExhausted (yyGLRStack* yystackp)
135bc829 777 __attribute__ ((__noreturn__));
63cb01d6 778static void
3e7a2cd9 779yyMemoryExhausted (yyGLRStack* yystackp)
63cb01d6 780{
3e7a2cd9 781 YYLONGJMP (yystackp->yyexception_buffer, 2);
63cb01d6
PE
782}
783
01241d47 784#if YYDEBUG || YYERROR_VERBOSE
63cb01d6 785/** A printable representation of TOKEN. */
fb8135fa
AD
786static inline const char*
787yytokenName (yySymbol yytoken)
01241d47 788{
d0d5aa64
PE
789 if (yytoken == YYEMPTY)
790 return "";
791
01241d47
PH
792 return yytname[yytoken];
793}
794#endif
795
f868dc04
PH
796/** Fill in YYVSP[YYLOW1 .. YYLOW0-1] from the chain of states starting
797 * at YYVSP[YYLOW0].yystate.yypred. Leaves YYVSP[YYLOW1].yystate.yypred
9d9b8b70 798 * containing the pointer to the next state in the chain. */
135bc829 799static void yyfillin (yyGLRStackItem *, int, int) __attribute__ ((__unused__));
6a84279c
PE
800static void
801yyfillin (yyGLRStackItem *yyvsp, int yylow0, int yylow1)
f868dc04
PH
802{
803 yyGLRState* s;
804 int i;
c4749565 805 s = yyvsp[yylow0].yystate.yypred;
f868dc04
PH
806 for (i = yylow0-1; i >= yylow1; i -= 1)
807 {
64c4fd52 808 YYASSERT (s->yyresolved);
f868dc04
PH
809 yyvsp[i].yystate.yyresolved = yytrue;
810 yyvsp[i].yystate.yysemantics.yysval = s->yysemantics.yysval;
811 yyvsp[i].yystate.yyloc = s->yyloc;
812 s = yyvsp[i].yystate.yypred = s->yypred;
813 }
6a84279c
PE
814}
815
816/* Do nothing if YYNORMAL or if *YYLOW <= YYLOW1. Otherwise, fill in
44e7ead1
PH
817 * YYVSP[YYLOW1 .. *YYLOW-1] as in yyfillin and set *YYLOW = YYLOW1.
818 * For convenience, always return YYLOW1. */
6a84279c 819static inline int yyfill (yyGLRStackItem *, int *, int, yybool)
135bc829 820 __attribute__ ((__unused__));
6a84279c
PE
821static inline int
822yyfill (yyGLRStackItem *yyvsp, int *yylow, int yylow1, yybool yynormal)
823{
824 if (!yynormal && yylow1 < *yylow)
825 {
826 yyfillin (yyvsp, *yylow, yylow1);
827 *yylow = yylow1;
828 }
f868dc04
PH
829 return yylow1;
830}
831
01241d47
PH
832/** Perform user action for rule number YYN, with RHS length YYRHSLEN,
833 * and top stack item YYVSP. YYLVALP points to place to put semantic
834 * value ($$), and yylocp points to place for location information
9d9b8b70
PE
835 * (@@$). Returns yyok for normal return, yyaccept for YYACCEPT,
836 * yyerr for YYERROR, yyabort for YYABORT. */
12ce2df6 837/*ARGSUSED*/ static YYRESULTTAG
fb8135fa 838yyuserAction (yyRuleNum yyn, int yyrhslen, yyGLRStackItem* yyvsp,
80a18357 839 YYSTYPE* yyvalp,
43d3b664 840 YYLTYPE* YYOPTIONAL_LOC (yylocp),
3e7a2cd9 841 yyGLRStack* yystackp
69ce078b 842 ]b4_user_formals[)
01241d47 843{
135bc829 844 yybool yynormal __attribute__ ((__unused__)) =
3e7a2cd9 845 (yystackp->yysplitPoint == NULL);
f868dc04 846 int yylow;
613d8952
AD
847]b4_parse_param_use[]dnl
848[# undef yyerrok
3e7a2cd9 849# define yyerrok (yystackp->yyerrState = 0)
01241d47
PH
850# undef YYACCEPT
851# define YYACCEPT return yyaccept
852# undef YYABORT
853# define YYABORT return yyabort
854# undef YYERROR
5cc16ecc 855# define YYERROR return yyerrok, yyerr
01241d47 856# undef YYRECOVERING
02103984 857# define YYRECOVERING() (yystackp->yyerrState != 0)
01241d47 858# undef yyclearin
3f001415 859# define yyclearin (yychar = YYEMPTY)
f868dc04 860# undef YYFILL
6a84279c 861# define YYFILL(N) yyfill (yyvsp, &yylow, N, yynormal)
01241d47
PH
862# undef YYBACKUP
863# define YYBACKUP(Token, Value) \
30757c8c 864 return yyerror (]b4_yyerror_args[YY_("syntax error: cannot back up")), \
5cc16ecc 865 yyerrok, yyerr
01241d47 866
25005f6a
PH
867 yylow = 1;
868 if (yyrhslen == 0)
b4a20338 869 *yyvalp = yyval_default;
25005f6a 870 else
b4a20338 871 *yyvalp = yyvsp[YYFILL (1-yyrhslen)].yystate.yysemantics.yysval;
401aace6 872 YYLLOC_DEFAULT ((*yylocp), (yyvsp - yyrhslen), yyrhslen);
327afc7c 873]b4_locations_if([[ yystackp->yyerror_range[1].yystate.yyloc = *yylocp;
a85284cf 874]])[
25005f6a
PH
875 switch (yyn)
876 {
8ec0a172 877 ]b4_user_actions[
95f22ad2 878 default: break;
25005f6a 879 }
01241d47 880
25005f6a 881 return yyok;
01241d47
PH
882# undef yyerrok
883# undef YYABORT
884# undef YYACCEPT
885# undef YYERROR
886# undef YYBACKUP
887# undef yyclearin
888# undef YYRECOVERING
01241d47
PH
889}
890\f
891
12ce2df6 892/*ARGSUSED*/ static void
01241d47
PH
893yyuserMerge (int yyn, YYSTYPE* yy0, YYSTYPE* yy1)
894{
2a4647a3
PE
895 YYUSE (yy0);
896 YYUSE (yy1);
1154cced 897
fb8135fa 898 switch (yyn)
01241d47 899 {
a85284cf 900 ]b4_mergers[
e2688cd9 901 default: break;
01241d47 902 }
01241d47 903}
a85284cf 904
2a8d363a 905 /* Bison grammar-table manipulation. */
01241d47 906
7bd6c77e
AD
907]b4_yydestruct_generate([b4_c_ansi_function_def])[
908
42a6501d
PE
909/** Number of symbols composing the right hand side of rule #RULE. */
910static inline int
911yyrhsLength (yyRuleNum yyrule)
912{
913 return yyr2[yyrule];
914}
915
a4cf101a 916static void
4b367315 917yydestroyGLRState (char const *yymsg, yyGLRState *yys]b4_user_formals[)
a4cf101a
PE
918{
919 if (yys->yyresolved)
920 yydestruct (yymsg, yystos[yys->yylrState],
327afc7c 921 &yys->yysemantics.yysval]b4_locations_if([, &yys->yyloc])[]b4_user_args[);
a4cf101a
PE
922 else
923 {
924#if YYDEBUG
925 if (yydebug)
926 {
520181ab
JD
927 if (yys->yysemantics.yyfirstVal)
928 YYFPRINTF (stderr, "%s unresolved ", yymsg);
929 else
930 YYFPRINTF (stderr, "%s incomplete ", yymsg);
a0af42fc 931 yy_symbol_print (stderr, yystos[yys->yylrState],
327afc7c 932 NULL]b4_locations_if([, &yys->yyloc])[]b4_user_args[);
2f4f028d 933 YYFPRINTF (stderr, "\n");
a4cf101a
PE
934 }
935#endif
a4cf101a 936
42a6501d 937 if (yys->yysemantics.yyfirstVal)
69ce078b
PE
938 {
939 yySemanticOption *yyoption = yys->yysemantics.yyfirstVal;
940 yyGLRState *yyrh;
941 int yyn;
942 for (yyrh = yyoption->yystate, yyn = yyrhsLength (yyoption->yyrule);
943 yyn > 0;
944 yyrh = yyrh->yypred, yyn -= 1)
945 yydestroyGLRState (yymsg, yyrh]b4_user_args[);
946 }
42a6501d 947 }
01241d47
PH
948}
949
9d9b8b70 950/** Left-hand-side symbol for rule #RULE. */
01241d47 951static inline yySymbol
fb8135fa 952yylhsNonterm (yyRuleNum yyrule)
01241d47
PH
953{
954 return yyr1[yyrule];
955}
956
f2b30bdf 957#define yypact_value_is_default(yystate) \
87412882 958 ]b4_table_value_equals([[pact]], [[yystate]], [b4_pact_ninf])[
944ed9f4 959
01241d47 960/** True iff LR state STATE has only a default reduction (regardless
9d9b8b70 961 * of token). */
f7c398aa 962static inline yybool
01241d47
PH
963yyisDefaultedState (yyStateNum yystate)
964{
f2b30bdf 965 return yypact_value_is_default (yypact[yystate]);
01241d47 966}
fb8135fa 967
9d9b8b70 968/** The default reduction for STATE, assuming it has one. */
01241d47
PH
969static inline yyRuleNum
970yydefaultAction (yyStateNum yystate)
971{
972 return yydefact[yystate];
973}
974
f2b30bdf 975#define yytable_value_is_error(yytable_value) \
aa0cb40d 976 ]b4_table_value_equals([[table]], [[yytable_value]], [b4_table_ninf])[
944ed9f4 977
2a1fe6ed 978/** Set *YYACTION to the action to take in YYSTATE on seeing YYTOKEN.
01241d47
PH
979 * Result R means
980 * R < 0: Reduce on rule -R.
981 * R = 0: Error.
fb8135fa
AD
982 * R > 0: Shift to state R.
983 * Set *CONFLICTS to a pointer into yyconfl to 0-terminated list of
01241d47
PH
984 * conflicting reductions.
985 */
986static inline void
fb8135fa 987yygetLRActions (yyStateNum yystate, int yytoken,
69ce078b 988 int* yyaction, const short int** yyconflicts)
01241d47
PH
989{
990 int yyindex = yypact[yystate] + yytoken;
f2b30bdf
JD
991 if (yypact_value_is_default (yypact[yystate])
992 || yyindex < 0 || YYLAST < yyindex || yycheck[yyindex] != yytoken)
01241d47
PH
993 {
994 *yyaction = -yydefact[yystate];
995 *yyconflicts = yyconfl;
996 }
f2b30bdf 997 else if (! yytable_value_is_error (yytable[yyindex]))
01241d47
PH
998 {
999 *yyaction = yytable[yyindex];
1000 *yyconflicts = yyconfl + yyconflp[yyindex];
1001 }
f50adbbd
AD
1002 else
1003 {
1004 *yyaction = 0;
1005 *yyconflicts = yyconfl + yyconflp[yyindex];
1006 }
01241d47
PH
1007}
1008
1009static inline yyStateNum
1010yyLRgotoState (yyStateNum yystate, yySymbol yylhs)
1011{
7580c379 1012 int yyr = yypgoto[yylhs - YYNTOKENS] + yystate;
34ec3579 1013 if (0 <= yyr && yyr <= YYLAST && yycheck[yyr] == yystate)
01241d47
PH
1014 return yytable[yyr];
1015 else
1016 return yydefgoto[yylhs - YYNTOKENS];
1017}
1018
f7c398aa 1019static inline yybool
fb8135fa 1020yyisShiftAction (int yyaction)
01241d47 1021{
39912f52 1022 return 0 < yyaction;
01241d47
PH
1023}
1024
f7c398aa 1025static inline yybool
fb8135fa 1026yyisErrorAction (int yyaction)
01241d47 1027{
f50adbbd 1028 return yyaction == 0;
01241d47
PH
1029}
1030
1031 /* GLRStates */
1032
02998094
AD
1033/** Return a fresh GLRStackItem. Callers should call
1034 * YY_RESERVE_GLRSTACK afterwards to make sure there is sufficient
1035 * headroom. */
1036
1037static inline yyGLRStackItem*
3e7a2cd9 1038yynewGLRStackItem (yyGLRStack* yystackp, yybool yyisState)
02998094 1039{
3e7a2cd9
PE
1040 yyGLRStackItem* yynewItem = yystackp->yynextFree;
1041 yystackp->yyspaceLeft -= 1;
1042 yystackp->yynextFree += 1;
02998094
AD
1043 yynewItem->yystate.yyisState = yyisState;
1044 return yynewItem;
1045}
1046
12f4614d
PH
1047/** Add a new semantic action that will execute the action for rule
1048 * RULENUM on the semantic values in RHS to the list of
c66dfadd 1049 * alternative actions for STATE. Assumes that RHS comes from
12f4614d 1050 * stack #K of *STACKP. */
1154cced 1051static void
bf70fa87 1052yyaddDeferredAction (yyGLRStack* yystackp, size_t yyk, yyGLRState* yystate,
8452c667 1053 yyGLRState* yyrhs, yyRuleNum yyrule)
01241d47 1054{
02998094 1055 yySemanticOption* yynewOption =
3e7a2cd9 1056 &yynewGLRStackItem (yystackp, yyfalse)->yyoption;
8452c667 1057 yynewOption->yystate = yyrhs;
02998094 1058 yynewOption->yyrule = yyrule;
b7691f15 1059 if (yystackp->yytops.yylookaheadNeeds[yyk])
bf70fa87
JD
1060 {
1061 yynewOption->yyrawchar = yychar;
1062 yynewOption->yyval = yylval;
1063 yynewOption->yyloc = yylloc;
1064 }
1065 else
1066 yynewOption->yyrawchar = YYEMPTY;
02998094
AD
1067 yynewOption->yynext = yystate->yysemantics.yyfirstVal;
1068 yystate->yysemantics.yyfirstVal = yynewOption;
1069
3e7a2cd9 1070 YY_RESERVE_GLRSTACK (yystackp);
01241d47
PH
1071}
1072
1073 /* GLRStacks */
1074
9d9b8b70 1075/** Initialize SET to a singleton set containing an empty stack. */
63cb01d6 1076static yybool
01241d47
PH
1077yyinitStateSet (yyGLRStateSet* yyset)
1078{
1079 yyset->yysize = 1;
1080 yyset->yycapacity = 16;
be16239b 1081 yyset->yystates = (yyGLRState**) YYMALLOC (16 * sizeof yyset->yystates[0]);
63cb01d6
PE
1082 if (! yyset->yystates)
1083 return yyfalse;
01241d47 1084 yyset->yystates[0] = NULL;
b7691f15
JD
1085 yyset->yylookaheadNeeds =
1086 (yybool*) YYMALLOC (16 * sizeof yyset->yylookaheadNeeds[0]);
1087 if (! yyset->yylookaheadNeeds)
bf70fa87
JD
1088 {
1089 YYFREE (yyset->yystates);
1090 return yyfalse;
1091 }
63cb01d6 1092 return yytrue;
01241d47
PH
1093}
1094
fb8135fa 1095static void yyfreeStateSet (yyGLRStateSet* yyset)
01241d47 1096{
a525b568 1097 YYFREE (yyset->yystates);
b7691f15 1098 YYFREE (yyset->yylookaheadNeeds);
01241d47
PH
1099}
1100
1101/** Initialize STACK to a single empty stack, with total maximum
9d9b8b70 1102 * capacity for all stacks of SIZE. */
63cb01d6 1103static yybool
3e7a2cd9 1104yyinitGLRStack (yyGLRStack* yystackp, size_t yysize)
01241d47 1105{
3e7a2cd9 1106 yystackp->yyerrState = 0;
01241d47 1107 yynerrs = 0;
3e7a2cd9
PE
1108 yystackp->yyspaceLeft = yysize;
1109 yystackp->yyitems =
1110 (yyGLRStackItem*) YYMALLOC (yysize * sizeof yystackp->yynextFree[0]);
1111 if (!yystackp->yyitems)
3922956a 1112 return yyfalse;
3e7a2cd9
PE
1113 yystackp->yynextFree = yystackp->yyitems;
1114 yystackp->yysplitPoint = NULL;
1115 yystackp->yylastDeleted = NULL;
1116 return yyinitStateSet (&yystackp->yytops);
01241d47
PH
1117}
1118
02998094
AD
1119
1120#if YYSTACKEXPANDABLE
1121# define YYRELOC(YYFROMITEMS,YYTOITEMS,YYX,YYTYPE) \
01241d47
PH
1122 &((YYTOITEMS) - ((YYFROMITEMS) - (yyGLRStackItem*) (YYX)))->YYTYPE
1123
1124/** If STACK is expandable, extend it. WARNING: Pointers into the
1125 stack from outside should be considered invalid after this call.
1126 We always expand when there are 1 or fewer items left AFTER an
1127 allocation, so that we can avoid having external pointers exist
9d9b8b70 1128 across an allocation. */
01241d47 1129static void
3e7a2cd9 1130yyexpandGLRStack (yyGLRStack* yystackp)
01241d47 1131{
63cb01d6 1132 yyGLRStackItem* yynewItems;
01241d47
PH
1133 yyGLRStackItem* yyp0, *yyp1;
1134 size_t yysize, yynewSize;
1135 size_t yyn;
3e7a2cd9 1136 yysize = yystackp->yynextFree - yystackp->yyitems;
18d9185c 1137 if (YYMAXDEPTH - YYHEADROOM < yysize)
3e7a2cd9 1138 yyMemoryExhausted (yystackp);
01241d47 1139 yynewSize = 2*yysize;
39912f52 1140 if (YYMAXDEPTH < yynewSize)
01241d47 1141 yynewSize = YYMAXDEPTH;
63cb01d6
PE
1142 yynewItems = (yyGLRStackItem*) YYMALLOC (yynewSize * sizeof yynewItems[0]);
1143 if (! yynewItems)
3e7a2cd9
PE
1144 yyMemoryExhausted (yystackp);
1145 for (yyp0 = yystackp->yyitems, yyp1 = yynewItems, yyn = yysize;
39912f52 1146 0 < yyn;
fb8135fa 1147 yyn -= 1, yyp0 += 1, yyp1 += 1)
01241d47
PH
1148 {
1149 *yyp1 = *yyp0;
f7c398aa 1150 if (*(yybool *) yyp0)
fb8135fa 1151 {
01241d47
PH
1152 yyGLRState* yys0 = &yyp0->yystate;
1153 yyGLRState* yys1 = &yyp1->yystate;
fb8135fa
AD
1154 if (yys0->yypred != NULL)
1155 yys1->yypred =
01241d47
PH
1156 YYRELOC (yyp0, yyp1, yys0->yypred, yystate);
1157 if (! yys0->yyresolved && yys0->yysemantics.yyfirstVal != NULL)
fb8135fa 1158 yys1->yysemantics.yyfirstVal =
01241d47
PH
1159 YYRELOC(yyp0, yyp1, yys0->yysemantics.yyfirstVal, yyoption);
1160 }
fb8135fa 1161 else
01241d47
PH
1162 {
1163 yySemanticOption* yyv0 = &yyp0->yyoption;
1164 yySemanticOption* yyv1 = &yyp1->yyoption;
1165 if (yyv0->yystate != NULL)
1166 yyv1->yystate = YYRELOC (yyp0, yyp1, yyv0->yystate, yystate);
1167 if (yyv0->yynext != NULL)
1168 yyv1->yynext = YYRELOC (yyp0, yyp1, yyv0->yynext, yyoption);
1169 }
1170 }
3e7a2cd9
PE
1171 if (yystackp->yysplitPoint != NULL)
1172 yystackp->yysplitPoint = YYRELOC (yystackp->yyitems, yynewItems,
1173 yystackp->yysplitPoint, yystate);
1174
1175 for (yyn = 0; yyn < yystackp->yytops.yysize; yyn += 1)
1176 if (yystackp->yytops.yystates[yyn] != NULL)
1177 yystackp->yytops.yystates[yyn] =
1178 YYRELOC (yystackp->yyitems, yynewItems,
1179 yystackp->yytops.yystates[yyn], yystate);
1180 YYFREE (yystackp->yyitems);
1181 yystackp->yyitems = yynewItems;
1182 yystackp->yynextFree = yynewItems + yysize;
1183 yystackp->yyspaceLeft = yynewSize - yysize;
01241d47 1184}
02998094 1185#endif
01241d47
PH
1186
1187static void
3e7a2cd9 1188yyfreeGLRStack (yyGLRStack* yystackp)
01241d47 1189{
3e7a2cd9
PE
1190 YYFREE (yystackp->yyitems);
1191 yyfreeStateSet (&yystackp->yytops);
01241d47
PH
1192}
1193
1194/** Assuming that S is a GLRState somewhere on STACK, update the
fb8135fa 1195 * splitpoint of STACK, if needed, so that it is at least as deep as
9d9b8b70 1196 * S. */
01241d47 1197static inline void
3e7a2cd9 1198yyupdateSplit (yyGLRStack* yystackp, yyGLRState* yys)
01241d47 1199{
3e7a2cd9
PE
1200 if (yystackp->yysplitPoint != NULL && yystackp->yysplitPoint > yys)
1201 yystackp->yysplitPoint = yys;
01241d47
PH
1202}
1203
9d9b8b70 1204/** Invalidate stack #K in STACK. */
01241d47 1205static inline void
3e7a2cd9 1206yymarkStackDeleted (yyGLRStack* yystackp, size_t yyk)
01241d47 1207{
3e7a2cd9
PE
1208 if (yystackp->yytops.yystates[yyk] != NULL)
1209 yystackp->yylastDeleted = yystackp->yytops.yystates[yyk];
1210 yystackp->yytops.yystates[yyk] = NULL;
01241d47
PH
1211}
1212
fb8135fa 1213/** Undelete the last stack that was marked as deleted. Can only be
01241d47 1214 done once after a deletion, and only when all other stacks have
9d9b8b70 1215 been deleted. */
01241d47 1216static void
3e7a2cd9 1217yyundeleteLastStack (yyGLRStack* yystackp)
01241d47 1218{
3e7a2cd9 1219 if (yystackp->yylastDeleted == NULL || yystackp->yytops.yysize != 0)
01241d47 1220 return;
3e7a2cd9
PE
1221 yystackp->yytops.yystates[0] = yystackp->yylastDeleted;
1222 yystackp->yytops.yysize = 1;
2f4f028d 1223 YYDPRINTF ((stderr, "Restoring last deleted stack as stack #0.\n"));
3e7a2cd9 1224 yystackp->yylastDeleted = NULL;
01241d47
PH
1225}
1226
1227static inline void
3e7a2cd9 1228yyremoveDeletes (yyGLRStack* yystackp)
01241d47 1229{
1154cced 1230 size_t yyi, yyj;
01241d47 1231 yyi = yyj = 0;
3e7a2cd9 1232 while (yyj < yystackp->yytops.yysize)
01241d47 1233 {
3e7a2cd9 1234 if (yystackp->yytops.yystates[yyi] == NULL)
01241d47 1235 {
1154cced 1236 if (yyi == yyj)
ee16363f 1237 {
2f4f028d 1238 YYDPRINTF ((stderr, "Removing dead stacks.\n"));
ee16363f 1239 }
3e7a2cd9 1240 yystackp->yytops.yysize -= 1;
01241d47 1241 }
fb8135fa 1242 else
01241d47 1243 {
3e7a2cd9 1244 yystackp->yytops.yystates[yyj] = yystackp->yytops.yystates[yyi];
bf70fa87 1245 /* In the current implementation, it's unnecessary to copy
b7691f15 1246 yystackp->yytops.yylookaheadNeeds[yyi] since, after
bf70fa87
JD
1247 yyremoveDeletes returns, the parser immediately either enters
1248 deterministic operation or shifts a token. However, it doesn't
1249 hurt, and the code might evolve to need it. */
b7691f15
JD
1250 yystackp->yytops.yylookaheadNeeds[yyj] =
1251 yystackp->yytops.yylookaheadNeeds[yyi];
01241d47 1252 if (yyj != yyi)
ee16363f 1253 {
08fc98e5
PE
1254 YYDPRINTF ((stderr, "Rename stack %lu -> %lu.\n",
1255 (unsigned long int) yyi, (unsigned long int) yyj));
ee16363f 1256 }
01241d47
PH
1257 yyj += 1;
1258 }
1259 yyi += 1;
1260 }
1261}
1262
fb8135fa 1263/** Shift to a new state on stack #K of STACK, corresponding to LR state
9d9b8b70 1264 * LRSTATE, at input position POSN, with (resolved) semantic value SVAL. */
01241d47 1265static inline void
3e7a2cd9 1266yyglrShift (yyGLRStack* yystackp, size_t yyk, yyStateNum yylrState,
63cb01d6 1267 size_t yyposn,
3e7a2cd9 1268 YYSTYPE* yyvalp, YYLTYPE* yylocp)
01241d47 1269{
3e7a2cd9 1270 yyGLRState* yynewState = &yynewGLRStackItem (yystackp, yytrue)->yystate;
01241d47 1271
02998094
AD
1272 yynewState->yylrState = yylrState;
1273 yynewState->yyposn = yyposn;
1274 yynewState->yyresolved = yytrue;
3e7a2cd9
PE
1275 yynewState->yypred = yystackp->yytops.yystates[yyk];
1276 yynewState->yysemantics.yysval = *yyvalp;
02998094 1277 yynewState->yyloc = *yylocp;
3e7a2cd9 1278 yystackp->yytops.yystates[yyk] = yynewState;
02998094 1279
3e7a2cd9 1280 YY_RESERVE_GLRSTACK (yystackp);
01241d47
PH
1281}
1282
f868dc04 1283/** Shift stack #K of YYSTACK, to a new state corresponding to LR
c4749565 1284 * state YYLRSTATE, at input position YYPOSN, with the (unresolved)
9d9b8b70 1285 * semantic value of YYRHS under the action for YYRULE. */
01241d47 1286static inline void
3e7a2cd9 1287yyglrShiftDefer (yyGLRStack* yystackp, size_t yyk, yyStateNum yylrState,
8452c667 1288 size_t yyposn, yyGLRState* yyrhs, yyRuleNum yyrule)
01241d47 1289{
3e7a2cd9 1290 yyGLRState* yynewState = &yynewGLRStackItem (yystackp, yytrue)->yystate;
02998094
AD
1291
1292 yynewState->yylrState = yylrState;
1293 yynewState->yyposn = yyposn;
1294 yynewState->yyresolved = yyfalse;
3e7a2cd9 1295 yynewState->yypred = yystackp->yytops.yystates[yyk];
02998094 1296 yynewState->yysemantics.yyfirstVal = NULL;
3e7a2cd9 1297 yystackp->yytops.yystates[yyk] = yynewState;
02998094 1298
9d9b8b70 1299 /* Invokes YY_RESERVE_GLRSTACK. */
8452c667 1300 yyaddDeferredAction (yystackp, yyk, yynewState, yyrhs, yyrule);
01241d47
PH
1301}
1302
1303/** Pop the symbols consumed by reduction #RULE from the top of stack
fb8135fa
AD
1304 * #K of STACK, and perform the appropriate semantic action on their
1305 * semantic values. Assumes that all ambiguities in semantic values
9d9b8b70 1306 * have been previously resolved. Set *VALP to the resulting value,
01241d47 1307 * and *LOCP to the computed location (if any). Return value is as
9d9b8b70 1308 * for userAction. */
ff032592 1309static inline YYRESULTTAG
3e7a2cd9 1310yydoAction (yyGLRStack* yystackp, size_t yyk, yyRuleNum yyrule,
5cc16ecc 1311 YYSTYPE* yyvalp, YYLTYPE* yylocp]b4_user_formals[)
01241d47
PH
1312{
1313 int yynrhs = yyrhsLength (yyrule);
1314
3e7a2cd9 1315 if (yystackp->yysplitPoint == NULL)
01241d47 1316 {
9d9b8b70 1317 /* Standard special case: single stack. */
8452c667 1318 yyGLRStackItem* yyrhs = (yyGLRStackItem*) yystackp->yytops.yystates[yyk];
64c4fd52 1319 YYASSERT (yyk == 0);
3e7a2cd9
PE
1320 yystackp->yynextFree -= yynrhs;
1321 yystackp->yyspaceLeft += yynrhs;
1322 yystackp->yytops.yystates[0] = & yystackp->yynextFree[-1].yystate;
8452c667 1323 return yyuserAction (yyrule, yynrhs, yyrhs,
3e7a2cd9 1324 yyvalp, yylocp, yystackp]b4_user_args[);
01241d47 1325 }
fb8135fa 1326 else
01241d47 1327 {
44e7ead1
PH
1328 /* At present, doAction is never called in nondeterministic
1329 * mode, so this branch is never taken. It is here in
1330 * anticipation of a future feature that will allow immediate
9d9b8b70 1331 * evaluation of selected actions in nondeterministic mode. */
01241d47
PH
1332 int yyi;
1333 yyGLRState* yys;
25005f6a 1334 yyGLRStackItem yyrhsVals[YYMAXRHS + YYMAXLEFT + 1];
5cc16ecc 1335 yys = yyrhsVals[YYMAXRHS + YYMAXLEFT].yystate.yypred
327afc7c 1336 = yystackp->yytops.yystates[yyk];]b4_locations_if([[
44e7ead1 1337 if (yynrhs == 0)
9d9b8b70 1338 /* Set default location. */
69ce078b 1339 yyrhsVals[YYMAXRHS + YYMAXLEFT - 1].yystate.yyloc = yys->yyloc;]])[
f868dc04 1340 for (yyi = 0; yyi < yynrhs; yyi += 1)
01241d47 1341 {
f868dc04 1342 yys = yys->yypred;
64c4fd52 1343 YYASSERT (yys);
01241d47 1344 }
3e7a2cd9
PE
1345 yyupdateSplit (yystackp, yys);
1346 yystackp->yytops.yystates[yyk] = yys;
25005f6a 1347 return yyuserAction (yyrule, yynrhs, yyrhsVals + YYMAXRHS + YYMAXLEFT - 1,
3e7a2cd9 1348 yyvalp, yylocp, yystackp]b4_user_args[);
01241d47
PH
1349 }
1350}
1351
e7cb57c0 1352#if !YYDEBUG
62b08cfc 1353# define YY_REDUCE_PRINT(Args)
e7cb57c0 1354#else
62b08cfc 1355# define YY_REDUCE_PRINT(Args) \
e7cb57c0
AD
1356do { \
1357 if (yydebug) \
62b08cfc 1358 yy_reduce_print Args; \
12ce2df6 1359} while (YYID (0))
e7cb57c0
AD
1360
1361/*----------------------------------------------------------.
1362| Report that the RULE is going to be reduced on stack #K. |
1363`----------------------------------------------------------*/
1364
12ce2df6 1365/*ARGSUSED*/ static inline void
e9e61b00 1366yy_reduce_print (yyGLRStack* yystackp, size_t yyk, yyRuleNum yyrule]b4_user_formals[)
e7cb57c0 1367{
62b08cfc
AD
1368 int yynrhs = yyrhsLength (yyrule);
1369 yybool yynormal __attribute__ ((__unused__)) =
3e7a2cd9
PE
1370 (yystackp->yysplitPoint == NULL);
1371 yyGLRStackItem* yyvsp = (yyGLRStackItem*) yystackp->yytops.yystates[yyk];
62b08cfc 1372 int yylow = 1;
e7cb57c0 1373 int yyi;
613d8952
AD
1374]b4_parse_param_use[]dnl
1375[ YYFPRINTF (stderr, "Reducing stack %lu by rule %d (line %lu):\n",
08fc98e5
PE
1376 (unsigned long int) yyk, yyrule - 1,
1377 (unsigned long int) yyrline[yyrule]);
6de5398d 1378 /* The symbols being reduced. */
62b08cfc
AD
1379 for (yyi = 0; yyi < yynrhs; yyi++)
1380 {
f57a7536 1381 YYFPRINTF (stderr, " $%d = ", yyi + 1);
783aa653
AD
1382 yy_symbol_print (stderr,
1383 ]yystos@{b4_rhs_data(yynrhs, yyi + 1).yylrState@}[,
a0af42fc 1384 &]b4_rhs_value(yynrhs, yyi + 1)[
327afc7c 1385 ]b4_locations_if([, &]b4_rhs_location(yynrhs, yyi + 1))[]dnl
a0af42fc 1386 b4_user_args[);
f57a7536 1387 YYFPRINTF (stderr, "\n");
62b08cfc 1388 }
e7cb57c0
AD
1389}
1390#endif
1391
01241d47
PH
1392/** Pop items off stack #K of STACK according to grammar rule RULE,
1393 * and push back on the resulting nonterminal symbol. Perform the
fb8135fa 1394 * semantic action associated with RULE and store its value with the
01241d47
PH
1395 * newly pushed state, if FORCEEVAL or if STACK is currently
1396 * unambiguous. Otherwise, store the deferred semantic action with
1397 * the new state. If the new state would have an identical input
1398 * position, LR state, and predecessor to an existing state on the stack,
fb8135fa 1399 * it is identified with that existing state, eliminating stack #K from
9d9b8b70 1400 * the STACK. In this case, the (necessarily deferred) semantic value is
fb8135fa 1401 * added to the options for the existing state's semantic value.
01241d47
PH
1402 */
1403static inline YYRESULTTAG
3e7a2cd9 1404yyglrReduce (yyGLRStack* yystackp, size_t yyk, yyRuleNum yyrule,
69ce078b 1405 yybool yyforceEval]b4_user_formals[)
01241d47 1406{
3e7a2cd9 1407 size_t yyposn = yystackp->yytops.yystates[yyk]->yyposn;
01241d47 1408
3e7a2cd9 1409 if (yyforceEval || yystackp->yysplitPoint == NULL)
01241d47
PH
1410 {
1411 YYSTYPE yysval;
1412 YYLTYPE yyloc;
fb8135fa 1413
e9e61b00 1414 YY_REDUCE_PRINT ((yystackp, yyk, yyrule]b4_user_args[));
3e7a2cd9
PE
1415 YYCHK (yydoAction (yystackp, yyk, yyrule, &yysval,
1416 &yyloc]b4_user_args[));
62b08cfc 1417 YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyrule], &yysval, &yyloc);
3e7a2cd9
PE
1418 yyglrShift (yystackp, yyk,
1419 yyLRgotoState (yystackp->yytops.yystates[yyk]->yylrState,
01241d47 1420 yylhsNonterm (yyrule)),
3e7a2cd9 1421 yyposn, &yysval, &yyloc);
01241d47 1422 }
fb8135fa 1423 else
01241d47 1424 {
1154cced
AD
1425 size_t yyi;
1426 int yyn;
3e7a2cd9 1427 yyGLRState* yys, *yys0 = yystackp->yytops.yystates[yyk];
01241d47
PH
1428 yyStateNum yynewLRState;
1429
3e7a2cd9 1430 for (yys = yystackp->yytops.yystates[yyk], yyn = yyrhsLength (yyrule);
39912f52 1431 0 < yyn; yyn -= 1)
01241d47
PH
1432 {
1433 yys = yys->yypred;
64c4fd52 1434 YYASSERT (yys);
01241d47 1435 }
3e7a2cd9 1436 yyupdateSplit (yystackp, yys);
01241d47 1437 yynewLRState = yyLRgotoState (yys->yylrState, yylhsNonterm (yyrule));
fb8135fa 1438 YYDPRINTF ((stderr,
9d9b8b70 1439 "Reduced stack %lu by rule #%d; action deferred. Now in state %d.\n",
08fc98e5 1440 (unsigned long int) yyk, yyrule - 1, yynewLRState));
3e7a2cd9
PE
1441 for (yyi = 0; yyi < yystackp->yytops.yysize; yyi += 1)
1442 if (yyi != yyk && yystackp->yytops.yystates[yyi] != NULL)
01241d47 1443 {
3e7a2cd9
PE
1444 yyGLRState* yyp, *yysplit = yystackp->yysplitPoint;
1445 yyp = yystackp->yytops.yystates[yyi];
fb8135fa 1446 while (yyp != yys && yyp != yysplit && yyp->yyposn >= yyposn)
01241d47 1447 {
fb8135fa 1448 if (yyp->yylrState == yynewLRState && yyp->yypred == yys)
01241d47 1449 {
bf70fa87 1450 yyaddDeferredAction (yystackp, yyk, yyp, yys0, yyrule);
3e7a2cd9 1451 yymarkStackDeleted (yystackp, yyk);
08fc98e5
PE
1452 YYDPRINTF ((stderr, "Merging stack %lu into stack %lu.\n",
1453 (unsigned long int) yyk,
1454 (unsigned long int) yyi));
ff032592 1455 return yyok;
01241d47
PH
1456 }
1457 yyp = yyp->yypred;
1458 }
1459 }
3e7a2cd9
PE
1460 yystackp->yytops.yystates[yyk] = yys;
1461 yyglrShiftDefer (yystackp, yyk, yynewLRState, yyposn, yys0, yyrule);
fb8135fa 1462 }
ff032592 1463 return yyok;
01241d47
PH
1464}
1465
63cb01d6 1466static size_t
3e7a2cd9 1467yysplitStack (yyGLRStack* yystackp, size_t yyk)
01241d47 1468{
3e7a2cd9 1469 if (yystackp->yysplitPoint == NULL)
01241d47 1470 {
64c4fd52 1471 YYASSERT (yyk == 0);
3e7a2cd9 1472 yystackp->yysplitPoint = yystackp->yytops.yystates[yyk];
01241d47 1473 }
3e7a2cd9 1474 if (yystackp->yytops.yysize >= yystackp->yytops.yycapacity)
01241d47 1475 {
63cb01d6 1476 yyGLRState** yynewStates;
b7691f15 1477 yybool* yynewLookaheadNeeds;
ddee1b06
PH
1478
1479 yynewStates = NULL;
c66dfadd 1480
ddee1b06
PH
1481 if (yystackp->yytops.yycapacity
1482 > (YYSIZEMAX / (2 * sizeof yynewStates[0])))
1483 yyMemoryExhausted (yystackp);
1484 yystackp->yytops.yycapacity *= 2;
1485
1486 yynewStates =
1487 (yyGLRState**) YYREALLOC (yystackp->yytops.yystates,
1488 (yystackp->yytops.yycapacity
1489 * sizeof yynewStates[0]));
1490 if (yynewStates == NULL)
3e7a2cd9
PE
1491 yyMemoryExhausted (yystackp);
1492 yystackp->yytops.yystates = yynewStates;
ddee1b06 1493
b7691f15
JD
1494 yynewLookaheadNeeds =
1495 (yybool*) YYREALLOC (yystackp->yytops.yylookaheadNeeds,
ddee1b06 1496 (yystackp->yytops.yycapacity
b7691f15
JD
1497 * sizeof yynewLookaheadNeeds[0]));
1498 if (yynewLookaheadNeeds == NULL)
bf70fa87 1499 yyMemoryExhausted (yystackp);
b7691f15 1500 yystackp->yytops.yylookaheadNeeds = yynewLookaheadNeeds;
01241d47 1501 }
3e7a2cd9
PE
1502 yystackp->yytops.yystates[yystackp->yytops.yysize]
1503 = yystackp->yytops.yystates[yyk];
b7691f15
JD
1504 yystackp->yytops.yylookaheadNeeds[yystackp->yytops.yysize]
1505 = yystackp->yytops.yylookaheadNeeds[yyk];
3e7a2cd9
PE
1506 yystackp->yytops.yysize += 1;
1507 return yystackp->yytops.yysize-1;
01241d47
PH
1508}
1509
1510/** True iff Y0 and Y1 represent identical options at the top level.
1511 * That is, they represent the same rule applied to RHS symbols
9d9b8b70 1512 * that produce the same terminal symbols. */
f7c398aa 1513static yybool
01241d47
PH
1514yyidenticalOptions (yySemanticOption* yyy0, yySemanticOption* yyy1)
1515{
fb8135fa 1516 if (yyy0->yyrule == yyy1->yyrule)
01241d47
PH
1517 {
1518 yyGLRState *yys0, *yys1;
1519 int yyn;
fb8135fa 1520 for (yys0 = yyy0->yystate, yys1 = yyy1->yystate,
01241d47
PH
1521 yyn = yyrhsLength (yyy0->yyrule);
1522 yyn > 0;
1523 yys0 = yys0->yypred, yys1 = yys1->yypred, yyn -= 1)
1524 if (yys0->yyposn != yys1->yyposn)
1525 return yyfalse;
1526 return yytrue;
1527 }
1528 else
1529 return yyfalse;
1530}
1531
5e6f62f2 1532/** Assuming identicalOptions (Y0,Y1), destructively merge the
9d9b8b70 1533 * alternative semantic values for the RHS-symbols of Y1 and Y0. */
01241d47
PH
1534static void
1535yymergeOptionSets (yySemanticOption* yyy0, yySemanticOption* yyy1)
1536{
1537 yyGLRState *yys0, *yys1;
1538 int yyn;
fb8135fa 1539 for (yys0 = yyy0->yystate, yys1 = yyy1->yystate,
01241d47
PH
1540 yyn = yyrhsLength (yyy0->yyrule);
1541 yyn > 0;
1542 yys0 = yys0->yypred, yys1 = yys1->yypred, yyn -= 1)
5e6f62f2
PH
1543 {
1544 if (yys0 == yys1)
1545 break;
010f91c3 1546 else if (yys0->yyresolved)
5e6f62f2
PH
1547 {
1548 yys1->yyresolved = yytrue;
1549 yys1->yysemantics.yysval = yys0->yysemantics.yysval;
1550 }
1551 else if (yys1->yyresolved)
1552 {
1553 yys0->yyresolved = yytrue;
1554 yys0->yysemantics.yysval = yys1->yysemantics.yysval;
1555 }
010f91c3 1556 else
5e6f62f2
PH
1557 {
1558 yySemanticOption** yyz0p;
1559 yySemanticOption* yyz1;
1560 yyz0p = &yys0->yysemantics.yyfirstVal;
1561 yyz1 = yys1->yysemantics.yyfirstVal;
3e7a2cd9 1562 while (YYID (yytrue))
5e6f62f2
PH
1563 {
1564 if (yyz1 == *yyz0p || yyz1 == NULL)
1565 break;
1566 else if (*yyz0p == NULL)
1567 {
1568 *yyz0p = yyz1;
1569 break;
1570 }
1571 else if (*yyz0p < yyz1)
1572 {
1573 yySemanticOption* yyz = *yyz0p;
1574 *yyz0p = yyz1;
1575 yyz1 = yyz1->yynext;
1576 (*yyz0p)->yynext = yyz;
1577 }
1578 yyz0p = &(*yyz0p)->yynext;
1579 }
1580 yys1->yysemantics.yyfirstVal = yys0->yysemantics.yyfirstVal;
1581 }
1582 }
01241d47
PH
1583}
1584
1585/** Y0 and Y1 represent two possible actions to take in a given
1586 * parsing state; return 0 if no combination is possible,
9d9b8b70 1587 * 1 if user-mergeable, 2 if Y0 is preferred, 3 if Y1 is preferred. */
01241d47 1588static int
1154cced 1589yypreference (yySemanticOption* y0, yySemanticOption* y1)
01241d47 1590{
1154cced
AD
1591 yyRuleNum r0 = y0->yyrule, r1 = y1->yyrule;
1592 int p0 = yydprec[r0], p1 = yydprec[r1];
01241d47 1593
1154cced 1594 if (p0 == p1)
01241d47 1595 {
1154cced 1596 if (yymerger[r0] == 0 || yymerger[r0] != yymerger[r1])
01241d47
PH
1597 return 0;
1598 else
1599 return 1;
1600 }
1154cced 1601 if (p0 == 0 || p1 == 0)
01241d47 1602 return 0;
1154cced 1603 if (p0 < p1)
01241d47 1604 return 3;
39912f52 1605 if (p1 < p0)
01241d47
PH
1606 return 2;
1607 return 0;
1608}
1609
d659304d 1610static YYRESULTTAG yyresolveValue (yyGLRState* yys,
520181ab
JD
1611 yyGLRStack* yystackp]b4_user_formals[);
1612
01241d47 1613
520181ab
JD
1614/** Resolve the previous N states starting at and including state S. If result
1615 * != yyok, some states may have been left unresolved possibly with empty
1616 * semantic option chains. Regardless of whether result = yyok, each state
1617 * has been left with consistent data so that yydestroyGLRState can be invoked
1618 * if necessary. */
01241d47 1619static YYRESULTTAG
3e7a2cd9
PE
1620yyresolveStates (yyGLRState* yys, int yyn,
1621 yyGLRStack* yystackp]b4_user_formals[)
01241d47 1622{
39912f52 1623 if (0 < yyn)
01241d47 1624 {
64c4fd52 1625 YYASSERT (yys->yypred);
d659304d 1626 YYCHK (yyresolveStates (yys->yypred, yyn-1, yystackp]b4_user_args[));
fb8135fa 1627 if (! yys->yyresolved)
520181ab 1628 YYCHK (yyresolveValue (yys, yystackp]b4_user_args[));
01241d47
PH
1629 }
1630 return yyok;
1631}
1632
520181ab
JD
1633/** Resolve the states for the RHS of OPT, perform its user action, and return
1634 * the semantic value and location. Regardless of whether result = yyok, all
1635 * RHS states have been destroyed (assuming the user action destroys all RHS
1636 * semantic values if invoked). */
01241d47 1637static YYRESULTTAG
3e7a2cd9 1638yyresolveAction (yySemanticOption* yyopt, yyGLRStack* yystackp,
69ce078b 1639 YYSTYPE* yyvalp, YYLTYPE* yylocp]b4_user_formals[)
01241d47 1640{
25005f6a 1641 yyGLRStackItem yyrhsVals[YYMAXRHS + YYMAXLEFT + 1];
f868dc04 1642 int yynrhs;
bf70fa87
JD
1643 int yychar_current;
1644 YYSTYPE yylval_current;
1645 YYLTYPE yylloc_current;
520181ab 1646 YYRESULTTAG yyflag;
01241d47
PH
1647
1648 yynrhs = yyrhsLength (yyopt->yyrule);
520181ab
JD
1649 yyflag = yyresolveStates (yyopt->yystate, yynrhs, yystackp]b4_user_args[);
1650 if (yyflag != yyok)
1651 {
1652 yyGLRState *yys;
1653 for (yys = yyopt->yystate; yynrhs > 0; yys = yys->yypred, yynrhs -= 1)
1654 yydestroyGLRState ("Cleanup: popping", yys]b4_user_args[);
1655 return yyflag;
1656 }
1657
327afc7c 1658 yyrhsVals[YYMAXRHS + YYMAXLEFT].yystate.yypred = yyopt->yystate;]b4_locations_if([[
44e7ead1 1659 if (yynrhs == 0)
9d9b8b70 1660 /* Set default location. */
44e7ead1 1661 yyrhsVals[YYMAXRHS + YYMAXLEFT - 1].yystate.yyloc = yyopt->yystate->yyloc;]])[
bf70fa87
JD
1662 yychar_current = yychar;
1663 yylval_current = yylval;
1664 yylloc_current = yylloc;
1665 yychar = yyopt->yyrawchar;
1666 yylval = yyopt->yyval;
1667 yylloc = yyopt->yyloc;
520181ab 1668 yyflag = yyuserAction (yyopt->yyrule, yynrhs,
bf70fa87
JD
1669 yyrhsVals + YYMAXRHS + YYMAXLEFT - 1,
1670 yyvalp, yylocp, yystackp]b4_user_args[);
1671 yychar = yychar_current;
1672 yylval = yylval_current;
1673 yylloc = yylloc_current;
520181ab 1674 return yyflag;
01241d47
PH
1675}
1676
1677#if YYDEBUG
e7cb57c0
AD
1678static void
1679yyreportTree (yySemanticOption* yyx, int yyindent)
01241d47
PH
1680{
1681 int yynrhs = yyrhsLength (yyx->yyrule);
1682 int yyi;
1683 yyGLRState* yys;
9138c575 1684 yyGLRState* yystates[1 + YYMAXRHS];
782a05f9 1685 yyGLRState yyleftmost_state;
01241d47 1686
39912f52 1687 for (yyi = yynrhs, yys = yyx->yystate; 0 < yyi; yyi -= 1, yys = yys->yypred)
01241d47
PH
1688 yystates[yyi] = yys;
1689 if (yys == NULL)
782a05f9
PE
1690 {
1691 yyleftmost_state.yyposn = 0;
1692 yystates[0] = &yyleftmost_state;
1693 }
01241d47
PH
1694 else
1695 yystates[0] = yys;
1696
39912f52 1697 if (yyx->yystate->yyposn < yys->yyposn + 1)
01241d47 1698 YYFPRINTF (stderr, "%*s%s -> <Rule %d, empty>\n",
fb8135fa 1699 yyindent, "", yytokenName (yylhsNonterm (yyx->yyrule)),
9138c575 1700 yyx->yyrule - 1);
01241d47 1701 else
08fc98e5 1702 YYFPRINTF (stderr, "%*s%s -> <Rule %d, tokens %lu .. %lu>\n",
01241d47 1703 yyindent, "", yytokenName (yylhsNonterm (yyx->yyrule)),
9138c575 1704 yyx->yyrule - 1, (unsigned long int) (yys->yyposn + 1),
08fc98e5 1705 (unsigned long int) yyx->yystate->yyposn);
fb8135fa 1706 for (yyi = 1; yyi <= yynrhs; yyi += 1)
01241d47 1707 {
fb8135fa 1708 if (yystates[yyi]->yyresolved)
01241d47
PH
1709 {
1710 if (yystates[yyi-1]->yyposn+1 > yystates[yyi]->yyposn)
1711 YYFPRINTF (stderr, "%*s%s <empty>\n", yyindent+2, "",
783aa653 1712 yytokenName (yystos[yystates[yyi-1]->yylrState]));
01241d47 1713 else
08fc98e5 1714 YYFPRINTF (stderr, "%*s%s <tokens %lu .. %lu>\n", yyindent+2, "",
783aa653
AD
1715 yytokenName (yystos[yystates[yyi-1]->yylrState]),
1716 (unsigned long int) (yystates[yyi-1]->yyposn + 1),
08fc98e5 1717 (unsigned long int) yystates[yyi]->yyposn);
01241d47 1718 }
fb8135fa 1719 else
01241d47
PH
1720 yyreportTree (yystates[yyi]->yysemantics.yyfirstVal, yyindent+2);
1721 }
1722}
fb8135fa 1723#endif
01241d47 1724
35ee866a
JD
1725/*ARGSUSED*/ static YYRESULTTAG
1726yyreportAmbiguity (yySemanticOption* yyx0,
1727 yySemanticOption* yyx1]b4_pure_formals[)
01241d47 1728{
2a4647a3
PE
1729 YYUSE (yyx0);
1730 YYUSE (yyx1);
1154cced 1731
01241d47 1732#if YYDEBUG
2f4f028d
PE
1733 YYFPRINTF (stderr, "Ambiguity detected.\n");
1734 YYFPRINTF (stderr, "Option 1,\n");
01241d47 1735 yyreportTree (yyx0, 2);
2f4f028d 1736 YYFPRINTF (stderr, "\nOption 2,\n");
01241d47 1737 yyreportTree (yyx1, 2);
2f4f028d 1738 YYFPRINTF (stderr, "\n");
01241d47 1739#endif
35ee866a
JD
1740
1741 yyerror (]b4_yyerror_args[YY_("syntax is ambiguous"));
1742 return yyabort;
01241d47
PH
1743}
1744
6d05403d
PE
1745/** Starting at and including state S1, resolve the location for each of the
1746 * previous N1 states that is unresolved. The first semantic option of a state
8710fc41
JD
1747 * is always chosen. */
1748static void
6d05403d 1749yyresolveLocations (yyGLRState* yys1, int yyn1,
8710fc41
JD
1750 yyGLRStack *yystackp]b4_user_formals[)
1751{
6d05403d 1752 if (0 < yyn1)
8710fc41 1753 {
6d05403d
PE
1754 yyresolveLocations (yys1->yypred, yyn1 - 1, yystackp]b4_user_args[);
1755 if (!yys1->yyresolved)
8710fc41
JD
1756 {
1757 yySemanticOption *yyoption;
6d05403d 1758 yyGLRStackItem yyrhsloc[1 + YYMAXRHS];
8710fc41
JD
1759 int yynrhs;
1760 int yychar_current;
1761 YYSTYPE yylval_current;
1762 YYLTYPE yylloc_current;
6d05403d 1763 yyoption = yys1->yysemantics.yyfirstVal;
8710fc41
JD
1764 YYASSERT (yyoption != NULL);
1765 yynrhs = yyrhsLength (yyoption->yyrule);
1766 if (yynrhs > 0)
1767 {
1768 yyGLRState *yys;
6d05403d 1769 int yyn;
8710fc41
JD
1770 yyresolveLocations (yyoption->yystate, yynrhs,
1771 yystackp]b4_user_args[);
6d05403d
PE
1772 for (yys = yyoption->yystate, yyn = yynrhs;
1773 yyn > 0;
1774 yys = yys->yypred, yyn -= 1)
1775 yyrhsloc[yyn].yystate.yyloc = yys->yyloc;
8710fc41
JD
1776 }
1777 else
1778 {
5ad0a449
JD
1779 /* Both yyresolveAction and yyresolveLocations traverse the GSS
1780 in reverse rightmost order. It is only necessary to invoke
1781 yyresolveLocations on a subforest for which yyresolveAction
1782 would have been invoked next had an ambiguity not been
1783 detected. Thus the location of the previous state (but not
1784 necessarily the previous state itself) is guaranteed to be
1785 resolved already. */
8710fc41 1786 yyGLRState *yyprevious = yyoption->yystate;
6d05403d 1787 yyrhsloc[0].yystate.yyloc = yyprevious->yyloc;
8710fc41
JD
1788 }
1789 yychar_current = yychar;
1790 yylval_current = yylval;
1791 yylloc_current = yylloc;
1792 yychar = yyoption->yyrawchar;
1793 yylval = yyoption->yyval;
1794 yylloc = yyoption->yyloc;
6d05403d 1795 YYLLOC_DEFAULT ((yys1->yyloc), yyrhsloc, yynrhs);
8710fc41
JD
1796 yychar = yychar_current;
1797 yylval = yylval_current;
1798 yylloc = yylloc_current;
1799 }
1800 }
1801}
01241d47 1802
d659304d 1803/** Resolve the ambiguity represented in state S, perform the indicated
520181ab
JD
1804 * actions, and set the semantic value of S. If result != yyok, the chain of
1805 * semantic options in S has been cleared instead or it has been left
1806 * unmodified except that redundant options may have been removed. Regardless
1807 * of whether result = yyok, S has been left with consistent data so that
1808 * yydestroyGLRState can be invoked if necessary. */
01241d47 1809static YYRESULTTAG
520181ab 1810yyresolveValue (yyGLRState* yys, yyGLRStack* yystackp]b4_user_formals[)
01241d47 1811{
d659304d 1812 yySemanticOption* yyoptionList = yys->yysemantics.yyfirstVal;
01241d47 1813 yySemanticOption* yybest;
f9315de5 1814 yySemanticOption** yypp;
63cb01d6 1815 yybool yymerge;
520181ab
JD
1816 YYSTYPE yysval;
1817 YYRESULTTAG yyflag;
1818 YYLTYPE *yylocp = &yys->yyloc;
01241d47 1819
fb8135fa 1820 yybest = yyoptionList;
63cb01d6 1821 yymerge = yyfalse;
f9315de5 1822 for (yypp = &yyoptionList->yynext; *yypp != NULL; )
01241d47 1823 {
f9315de5
PE
1824 yySemanticOption* yyp = *yypp;
1825
01241d47 1826 if (yyidenticalOptions (yybest, yyp))
f9315de5
PE
1827 {
1828 yymergeOptionSets (yybest, yyp);
1829 *yypp = yyp->yynext;
1830 }
01241d47 1831 else
f9315de5
PE
1832 {
1833 switch (yypreference (yybest, yyp))
1834 {
1835 case 0:
8710fc41 1836 yyresolveLocations (yys, 1, yystackp]b4_user_args[);
35ee866a 1837 return yyreportAmbiguity (yybest, yyp]b4_pure_args[);
f9315de5
PE
1838 break;
1839 case 1:
1840 yymerge = yytrue;
1841 break;
1842 case 2:
1843 break;
1844 case 3:
1845 yybest = yyp;
1846 yymerge = yyfalse;
1847 break;
ae199bf1 1848 default:
d1101454 1849 /* This cannot happen so it is not worth a YYASSERT (yyfalse),
69ce078b 1850 but some compilers complain if the default case is
ae199bf1
PE
1851 omitted. */
1852 break;
f9315de5
PE
1853 }
1854 yypp = &yyp->yynext;
1855 }
01241d47
PH
1856 }
1857
fb8135fa 1858 if (yymerge)
01241d47 1859 {
f9315de5 1860 yySemanticOption* yyp;
01241d47 1861 int yyprec = yydprec[yybest->yyrule];
520181ab
JD
1862 yyflag = yyresolveAction (yybest, yystackp, &yysval,
1863 yylocp]b4_user_args[);
1864 if (yyflag == yyok)
1865 for (yyp = yybest->yynext; yyp != NULL; yyp = yyp->yynext)
1866 {
1867 if (yyprec == yydprec[yyp->yyrule])
1868 {
1869 YYSTYPE yysval_other;
1870 YYLTYPE yydummy;
1871 yyflag = yyresolveAction (yyp, yystackp, &yysval_other,
1872 &yydummy]b4_user_args[);
1873 if (yyflag != yyok)
1874 {
1875 yydestruct ("Cleanup: discarding incompletely merged value for",
1876 yystos[yys->yylrState],
327afc7c 1877 &yysval]b4_locations_if([, yylocp])[]b4_user_args[);
520181ab
JD
1878 break;
1879 }
1880 yyuserMerge (yymerger[yyp->yyrule], &yysval, &yysval_other);
1881 }
1882 }
1883 }
1884 else
1885 yyflag = yyresolveAction (yybest, yystackp, &yysval, yylocp]b4_user_args[);
1886
1887 if (yyflag == yyok)
1888 {
1889 yys->yyresolved = yytrue;
1890 yys->yysemantics.yysval = yysval;
01241d47
PH
1891 }
1892 else
520181ab
JD
1893 yys->yysemantics.yyfirstVal = NULL;
1894 return yyflag;
01241d47
PH
1895}
1896
1897static YYRESULTTAG
3e7a2cd9 1898yyresolveStack (yyGLRStack* yystackp]b4_user_formals[)
01241d47 1899{
3e7a2cd9 1900 if (yystackp->yysplitPoint != NULL)
01241d47
PH
1901 {
1902 yyGLRState* yys;
1903 int yyn;
1904
3e7a2cd9
PE
1905 for (yyn = 0, yys = yystackp->yytops.yystates[0];
1906 yys != yystackp->yysplitPoint;
01241d47 1907 yys = yys->yypred, yyn += 1)
ee16363f 1908 continue;
3e7a2cd9 1909 YYCHK (yyresolveStates (yystackp->yytops.yystates[0], yyn, yystackp
2a8d363a 1910 ]b4_user_args[));
01241d47
PH
1911 }
1912 return yyok;
1913}
1914
1915static void
3e7a2cd9 1916yycompressStack (yyGLRStack* yystackp)
01241d47
PH
1917{
1918 yyGLRState* yyp, *yyq, *yyr;
1919
3e7a2cd9 1920 if (yystackp->yytops.yysize != 1 || yystackp->yysplitPoint == NULL)
01241d47
PH
1921 return;
1922
3e7a2cd9
PE
1923 for (yyp = yystackp->yytops.yystates[0], yyq = yyp->yypred, yyr = NULL;
1924 yyp != yystackp->yysplitPoint;
01241d47
PH
1925 yyr = yyp, yyp = yyq, yyq = yyp->yypred)
1926 yyp->yypred = yyr;
fb8135fa 1927
3e7a2cd9
PE
1928 yystackp->yyspaceLeft += yystackp->yynextFree - yystackp->yyitems;
1929 yystackp->yynextFree = ((yyGLRStackItem*) yystackp->yysplitPoint) + 1;
1930 yystackp->yyspaceLeft -= yystackp->yynextFree - yystackp->yyitems;
1931 yystackp->yysplitPoint = NULL;
1932 yystackp->yylastDeleted = NULL;
fb8135fa
AD
1933
1934 while (yyr != NULL)
1935 {
3e7a2cd9 1936 yystackp->yynextFree->yystate = *yyr;
01241d47 1937 yyr = yyr->yypred;
3e7a2cd9
PE
1938 yystackp->yynextFree->yystate.yypred = &yystackp->yynextFree[-1].yystate;
1939 yystackp->yytops.yystates[0] = &yystackp->yynextFree->yystate;
1940 yystackp->yynextFree += 1;
1941 yystackp->yyspaceLeft -= 1;
01241d47
PH
1942 }
1943}
1944
1945static YYRESULTTAG
3e7a2cd9 1946yyprocessOneStack (yyGLRStack* yystackp, size_t yyk,
9ecafbbf 1947 size_t yyposn]b4_pure_formals[)
01241d47
PH
1948{
1949 int yyaction;
779e7ceb 1950 const short int* yyconflicts;
01241d47 1951 yyRuleNum yyrule;
01241d47 1952
3e7a2cd9 1953 while (yystackp->yytops.yystates[yyk] != NULL)
01241d47 1954 {
3e7a2cd9 1955 yyStateNum yystate = yystackp->yytops.yystates[yyk]->yylrState;
63cb01d6
PE
1956 YYDPRINTF ((stderr, "Stack %lu Entering state %d\n",
1957 (unsigned long int) yyk, yystate));
01241d47 1958
64c4fd52
PE
1959 YYASSERT (yystate != YYFINAL);
1960
fb8135fa 1961 if (yyisDefaultedState (yystate))
01241d47
PH
1962 {
1963 yyrule = yydefaultAction (yystate);
fb8135fa 1964 if (yyrule == 0)
01241d47 1965 {
63cb01d6
PE
1966 YYDPRINTF ((stderr, "Stack %lu dies.\n",
1967 (unsigned long int) yyk));
3e7a2cd9 1968 yymarkStackDeleted (yystackp, yyk);
01241d47
PH
1969 return yyok;
1970 }
3e7a2cd9 1971 YYCHK (yyglrReduce (yystackp, yyk, yyrule, yyfalse]b4_user_args[));
01241d47 1972 }
fb8135fa 1973 else
01241d47 1974 {
3f001415 1975 yySymbol yytoken;
b7691f15 1976 yystackp->yytops.yylookaheadNeeds[yyk] = yytrue;
3f001415 1977 if (yychar == YYEMPTY)
01241d47 1978 {
2f4f028d 1979 YYDPRINTF ((stderr, "Reading a token: "));
01241d47 1980 yychar = YYLEX;
cf806753
PE
1981 }
1982
1983 if (yychar <= YYEOF)
1984 {
1985 yychar = yytoken = YYEOF;
1986 YYDPRINTF ((stderr, "Now at end of input.\n"));
1987 }
1988 else
1989 {
3f001415
JD
1990 yytoken = YYTRANSLATE (yychar);
1991 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
01241d47 1992 }
cf806753 1993
3f001415 1994 yygetLRActions (yystate, yytoken, &yyaction, &yyconflicts);
01241d47 1995
fb8135fa 1996 while (*yyconflicts != 0)
01241d47 1997 {
3e7a2cd9 1998 size_t yynewStack = yysplitStack (yystackp, yyk);
63cb01d6
PE
1999 YYDPRINTF ((stderr, "Splitting off stack %lu from %lu.\n",
2000 (unsigned long int) yynewStack,
2001 (unsigned long int) yyk));
3e7a2cd9 2002 YYCHK (yyglrReduce (yystackp, yynewStack,
df9a1ba4 2003 *yyconflicts, yyfalse]b4_user_args[));
9ecafbbf
AD
2004 YYCHK (yyprocessOneStack (yystackp, yynewStack,
2005 yyposn]b4_pure_args[));
01241d47
PH
2006 yyconflicts += 1;
2007 }
fb8135fa
AD
2008
2009 if (yyisShiftAction (yyaction))
69ce078b 2010 break;
fb8135fa 2011 else if (yyisErrorAction (yyaction))
01241d47 2012 {
63cb01d6
PE
2013 YYDPRINTF ((stderr, "Stack %lu dies.\n",
2014 (unsigned long int) yyk));
3e7a2cd9 2015 yymarkStackDeleted (yystackp, yyk);
01241d47
PH
2016 break;
2017 }
2018 else
9ecafbbf
AD
2019 YYCHK (yyglrReduce (yystackp, yyk, -yyaction,
2020 yyfalse]b4_user_args[));
01241d47
PH
2021 }
2022 }
2023 return yyok;
2024}
2025
3e7a2cd9 2026/*ARGSUSED*/ static void
d6cff4dc 2027yyreportSyntaxError (yyGLRStack* yystackp]b4_user_formals[)
01241d47 2028{
3e7a2cd9 2029 if (yystackp->yyerrState == 0)
01241d47 2030 {
fb8135fa 2031#if YYERROR_VERBOSE
93a0df69 2032 int yyn;
3e7a2cd9 2033 yyn = yypact[yystackp->yytops.yystates[0]->yylrState];
d6645148 2034 if (YYPACT_NINF < yyn && yyn <= YYLAST)
01241d47 2035 {
3f001415
JD
2036 yySymbol yytoken = YYTRANSLATE (yychar);
2037 size_t yysize0 = yytnamerr (NULL, yytokenName (yytoken));
63cb01d6
PE
2038 size_t yysize = yysize0;
2039 size_t yysize1;
2040 yybool yysize_overflow = yyfalse;
2041 char* yymsg = NULL;
2042 enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
2b008529
AD
2043 /* Internationalized format string. */
2044 const char *yyformat = 0;
2045 /* Arguments of yyformat. */
63cb01d6 2046 char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
93a0df69 2047
01241d47 2048 /* Start YYX at -YYN if negative to avoid negative indexes in
87412882
JD
2049 YYCHECK. In other words, skip the first -YYN actions for this
2050 state because they are default actions. */
c4749565 2051 int yyxbegin = yyn < 0 ? -yyn : 0;
93a0df69
PE
2052
2053 /* Stay within bounds of both yycheck and yytname. */
d6645148 2054 int yychecklim = YYLAST - yyn + 1;
c4749565 2055 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
63cb01d6 2056
2b008529
AD
2057 /* Number of reported tokens (one for the "unexpected", one per
2058 "expected"). */
2059 int yycount = 0;
2060 int yyx;
2061
2062 yyarg[yycount++] = yytokenName (yytoken);
93a0df69 2063
c4749565 2064 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
53f036ce 2065 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
f2b30bdf 2066 && !yytable_value_is_error (yytable[yyx + yyn]))
93a0df69 2067 {
63cb01d6 2068 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
01241d47 2069 {
63cb01d6
PE
2070 yycount = 1;
2071 yysize = yysize0;
93a0df69 2072 break;
01241d47 2073 }
63cb01d6 2074 yyarg[yycount++] = yytokenName (yyx);
9e0876fb 2075 yysize1 = yysize + yytnamerr (NULL, yytokenName (yyx));
63cb01d6
PE
2076 yysize_overflow |= yysize1 < yysize;
2077 yysize = yysize1;
93a0df69 2078 }
63cb01d6 2079
2b008529
AD
2080 switch (yycount)
2081 {
2082#define YYCASE_(N, S) \
2083 case N: \
2084 yyformat = S; \
2085 break
2086 YYCASE_(1, YY_("syntax error, unexpected %s"));
2087 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
2088 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
2089 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
2090 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
2091#undef YYCASE_
2092 }
2093
2094 yysize1 = yysize + strlen (yyformat);
63cb01d6
PE
2095 yysize_overflow |= yysize1 < yysize;
2096 yysize = yysize1;
2097
2098 if (!yysize_overflow)
2099 yymsg = (char *) YYMALLOC (yysize);
2100
2101 if (yymsg)
93a0df69 2102 {
63cb01d6
PE
2103 char *yyp = yymsg;
2104 int yyi = 0;
2b008529 2105 while ((*yyp = *yyformat))
93a0df69 2106 {
2b008529 2107 if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
63cb01d6 2108 {
9e0876fb 2109 yyp += yytnamerr (yyp, yyarg[yyi++]);
2b008529 2110 yyformat += 2;
63cb01d6
PE
2111 }
2112 else
2113 {
2114 yyp++;
2b008529 2115 yyformat++;
63cb01d6 2116 }
93a0df69
PE
2117 }
2118 yyerror (]b4_lyyerror_args[yymsg);
a525b568 2119 YYFREE (yymsg);
01241d47 2120 }
93a0df69 2121 else
1a059451
PE
2122 {
2123 yyerror (]b4_lyyerror_args[YY_("syntax error"));
3e7a2cd9 2124 yyMemoryExhausted (yystackp);
1a059451 2125 }
01241d47
PH
2126 }
2127 else
93a0df69 2128#endif /* YYERROR_VERBOSE */
30757c8c 2129 yyerror (]b4_lyyerror_args[YY_("syntax error"));
01241d47
PH
2130 yynerrs += 1;
2131 }
2132}
2133
d6cff4dc
AD
2134/* Recover from a syntax error on *YYSTACKP, assuming that *YYSTACKP->YYTOKENP,
2135 yylval, and yylloc are the syntactic category, semantic value, and location
742e4900 2136 of the lookahead. */
12ce2df6 2137/*ARGSUSED*/ static void
d6cff4dc 2138yyrecoverSyntaxError (yyGLRStack* yystackp]b4_user_formals[)
01241d47 2139{
1154cced
AD
2140 size_t yyk;
2141 int yyj;
01241d47 2142
3e7a2cd9 2143 if (yystackp->yyerrState == 3)
2a1fe6ed
AD
2144 /* We just shifted the error token and (perhaps) took some
2145 reductions. Skip tokens until we can proceed. */
3e7a2cd9 2146 while (YYID (yytrue))
2a1fe6ed 2147 {
3f001415
JD
2148 yySymbol yytoken;
2149 if (yychar == YYEOF)
3e7a2cd9 2150 yyFail (yystackp][]b4_lpure_args[, NULL);
3f001415 2151 if (yychar != YYEMPTY)
327afc7c 2152 {]b4_locations_if([[
e342c3be 2153 /* We throw away the lookahead, but the error range
9d9b8b70 2154 of the shifted error token must take it into account. */
3e7a2cd9 2155 yyGLRState *yys = yystackp->yytops.yystates[0];
63d72da7
PE
2156 yyGLRStackItem yyerror_range[3];
2157 yyerror_range[1].yystate.yyloc = yys->yyloc;
9ecafbbf 2158 yyerror_range[2].yystate.yyloc = yylloc;
401aace6 2159 YYLLOC_DEFAULT ((yys->yyloc), yyerror_range, 2);]])[
3f001415 2160 yytoken = YYTRANSLATE (yychar);
e342c3be 2161 yydestruct ("Error: discarding",
327afc7c 2162 yytoken, &yylval]b4_locations_if([, &yylloc])[]b4_user_args[);
e342c3be 2163 }
2f4f028d 2164 YYDPRINTF ((stderr, "Reading a token: "));
01241d47 2165 yychar = YYLEX;
cf806753
PE
2166 if (yychar <= YYEOF)
2167 {
2168 yychar = yytoken = YYEOF;
2169 YYDPRINTF ((stderr, "Now at end of input.\n"));
2170 }
2171 else
2172 {
2173 yytoken = YYTRANSLATE (yychar);
2174 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
2175 }
3e7a2cd9 2176 yyj = yypact[yystackp->yytops.yystates[0]->yylrState];
f2b30bdf 2177 if (yypact_value_is_default (yyj))
25005f6a 2178 return;
3f001415 2179 yyj += yytoken;
34ec3579 2180 if (yyj < 0 || YYLAST < yyj || yycheck[yyj] != yytoken)
01241d47 2181 {
3e7a2cd9 2182 if (yydefact[yystackp->yytops.yystates[0]->yylrState] != 0)
01241d47
PH
2183 return;
2184 }
f2b30bdf 2185 else if (! yytable_value_is_error (yytable[yyj]))
01241d47 2186 return;
2a1fe6ed 2187 }
fb8135fa 2188
2a1fe6ed 2189 /* Reduce to one stack. */
3e7a2cd9
PE
2190 for (yyk = 0; yyk < yystackp->yytops.yysize; yyk += 1)
2191 if (yystackp->yytops.yystates[yyk] != NULL)
01241d47 2192 break;
3e7a2cd9
PE
2193 if (yyk >= yystackp->yytops.yysize)
2194 yyFail (yystackp][]b4_lpure_args[, NULL);
2195 for (yyk += 1; yyk < yystackp->yytops.yysize; yyk += 1)
2196 yymarkStackDeleted (yystackp, yyk);
2197 yyremoveDeletes (yystackp);
2198 yycompressStack (yystackp);
01241d47 2199
9d9b8b70 2200 /* Now pop stack until we find a state that shifts the error token. */
3e7a2cd9
PE
2201 yystackp->yyerrState = 3;
2202 while (yystackp->yytops.yystates[0] != NULL)
01241d47 2203 {
3e7a2cd9 2204 yyGLRState *yys = yystackp->yytops.yystates[0];
7bd6c77e 2205 yyj = yypact[yys->yylrState];
f2b30bdf 2206 if (! yypact_value_is_default (yyj))
01241d47 2207 {
944ed9f4
PE
2208 yyj += YYTERROR;
2209 if (0 <= yyj && yyj <= YYLAST && yycheck[yyj] == YYTERROR
2210 && yyisShiftAction (yytable[yyj]))
2211 {
e342c3be 2212 /* Shift the error token having adjusted its location. */
327afc7c 2213 YYLTYPE yyerrloc;]b4_locations_if([[
9ecafbbf 2214 yystackp->yyerror_range[2].yystate.yyloc = yylloc;
401aace6 2215 YYLLOC_DEFAULT (yyerrloc, (yystackp->yyerror_range), 2);]])[
1576d44d 2216 YY_SYMBOL_PRINT ("Shifting", yystos[yytable[yyj]],
9ecafbbf 2217 &yylval, &yyerrloc);
3e7a2cd9 2218 yyglrShift (yystackp, 0, yytable[yyj],
9ecafbbf 2219 yys->yyposn, &yylval, &yyerrloc);
3e7a2cd9 2220 yys = yystackp->yytops.yystates[0];
944ed9f4
PE
2221 break;
2222 }
01241d47 2223 }
327afc7c 2224]b4_locations_if([[ yystackp->yyerror_range[1].yystate.yyloc = yys->yyloc;]])[
868d2d96
JD
2225 if (yys->yypred != NULL)
2226 yydestroyGLRState ("Error: popping", yys]b4_user_args[);
3e7a2cd9
PE
2227 yystackp->yytops.yystates[0] = yys->yypred;
2228 yystackp->yynextFree -= 1;
2229 yystackp->yyspaceLeft += 1;
01241d47 2230 }
3e7a2cd9
PE
2231 if (yystackp->yytops.yystates[0] == NULL)
2232 yyFail (yystackp][]b4_lpure_args[, NULL);
fb8135fa
AD
2233}
2234
01241d47
PH
2235#define YYCHK1(YYE) \
2236 do { \
2237 switch (YYE) { \
127287e9 2238 case yyok: \
01241d47
PH
2239 break; \
2240 case yyabort: \
6100a9aa 2241 goto yyabortlab; \
01241d47 2242 case yyaccept: \
6100a9aa 2243 goto yyacceptlab; \
01241d47
PH
2244 case yyerr: \
2245 goto yyuser_error; \
127287e9
PE
2246 default: \
2247 goto yybuglab; \
01241d47 2248 } \
12ce2df6 2249 } while (YYID (0))
01241d47 2250
0245f82d
AD
2251
2252/*----------.
2253| yyparse. |
2254`----------*/
2255
2256]b4_c_ansi_function_def([yyparse], [int], b4_parse_param)[
01241d47 2257{
6100a9aa 2258 int yyresult;
01241d47 2259 yyGLRStack yystack;
d6cff4dc 2260 yyGLRStack* const yystackp = &yystack;
01241d47 2261 size_t yyposn;
fb8135fa 2262
2f4f028d 2263 YYDPRINTF ((stderr, "Starting parse\n"));
2a1fe6ed 2264
bf70fa87 2265 yychar = YYEMPTY;
b8458aa5 2266 yylval = yyval_default;
327afc7c 2267]b4_locations_if([
ae93128c 2268#if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
cd48d21d
AD
2269 yylloc.first_line = yylloc.last_line = ]b4_location_initial_line[;
2270 yylloc.first_column = yylloc.last_column = ]b4_location_initial_column[;
b8458aa5
AD
2271#endif
2272])
2273m4_ifdef([b4_initial_action], [
1c02d4bf
AD
2274m4_pushdef([b4_at_dollar], [yylloc])dnl
2275m4_pushdef([b4_dollar_dollar], [yylval])dnl
9d9b8b70 2276 /* User initialization code. */
8ec0a172 2277 b4_user_initial_action
b8458aa5 2278m4_popdef([b4_dollar_dollar])dnl
8ec0a172 2279m4_popdef([b4_at_dollar])])dnl
b8458aa5 2280[
d6cff4dc 2281 if (! yyinitGLRStack (yystackp, YYINITDEPTH))
1a059451 2282 goto yyexhaustedlab;
c89b4c03 2283 switch (YYSETJMP (yystack.yyexception_buffer))
6100a9aa 2284 {
c89b4c03 2285 case 0: break;
6100a9aa 2286 case 1: goto yyabortlab;
1a059451 2287 case 2: goto yyexhaustedlab;
c89b4c03 2288 default: goto yybuglab;
6100a9aa 2289 }
3e7a2cd9 2290 yyglrShift (&yystack, 0, 0, 0, &yylval, &yylloc);
01241d47
PH
2291 yyposn = 0;
2292
3e7a2cd9 2293 while (YYID (yytrue))
01241d47 2294 {
21964f43
AD
2295 /* For efficiency, we have two loops, the first of which is
2296 specialized to deterministic operation (single stack, no
2297 potential ambiguity). */
01241d47 2298 /* Standard mode */
3e7a2cd9 2299 while (YYID (yytrue))
01241d47
PH
2300 {
2301 yyRuleNum yyrule;
2302 int yyaction;
779e7ceb 2303 const short int* yyconflicts;
01241d47
PH
2304
2305 yyStateNum yystate = yystack.yytops.yystates[0]->yylrState;
69ce078b 2306 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
01241d47 2307 if (yystate == YYFINAL)
6100a9aa 2308 goto yyacceptlab;
fb8135fa 2309 if (yyisDefaultedState (yystate))
01241d47
PH
2310 {
2311 yyrule = yydefaultAction (yystate);
fb8135fa 2312 if (yyrule == 0)
01241d47 2313 {
327afc7c 2314]b4_locations_if([[ yystack.yyerror_range[1].yystate.yyloc = yylloc;]])[
9ecafbbf 2315 yyreportSyntaxError (&yystack]b4_user_args[);
01241d47
PH
2316 goto yyuser_error;
2317 }
df9a1ba4 2318 YYCHK1 (yyglrReduce (&yystack, 0, yyrule, yytrue]b4_user_args[));
01241d47 2319 }
fb8135fa 2320 else
01241d47 2321 {
3f001415
JD
2322 yySymbol yytoken;
2323 if (yychar == YYEMPTY)
01241d47 2324 {
2f4f028d 2325 YYDPRINTF ((stderr, "Reading a token: "));
01241d47 2326 yychar = YYLEX;
cf806753
PE
2327 }
2328
2329 if (yychar <= YYEOF)
2330 {
2331 yychar = yytoken = YYEOF;
2332 YYDPRINTF ((stderr, "Now at end of input.\n"));
2333 }
2334 else
2335 {
01241d47 2336 yytoken = YYTRANSLATE (yychar);
9ecafbbf 2337 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
01241d47 2338 }
cf806753 2339
01241d47
PH
2340 yygetLRActions (yystate, yytoken, &yyaction, &yyconflicts);
2341 if (*yyconflicts != 0)
2342 break;
fb8135fa 2343 if (yyisShiftAction (yyaction))
01241d47 2344 {
9ecafbbf 2345 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
868d2d96 2346 yychar = YYEMPTY;
01241d47 2347 yyposn += 1;
9ecafbbf 2348 yyglrShift (&yystack, 0, yyaction, yyposn, &yylval, &yylloc);
39912f52 2349 if (0 < yystack.yyerrState)
01241d47 2350 yystack.yyerrState -= 1;
01241d47
PH
2351 }
2352 else if (yyisErrorAction (yyaction))
2353 {
327afc7c 2354]b4_locations_if([[ yystack.yyerror_range[1].yystate.yyloc = yylloc;]])[
9ecafbbf 2355 yyreportSyntaxError (&yystack]b4_user_args[);
01241d47
PH
2356 goto yyuser_error;
2357 }
2358 else
df9a1ba4 2359 YYCHK1 (yyglrReduce (&yystack, 0, -yyaction, yytrue]b4_user_args[));
01241d47
PH
2360 }
2361 }
2362
3e7a2cd9 2363 while (YYID (yytrue))
01241d47 2364 {
69ce078b 2365 yySymbol yytoken_to_shift;
63cb01d6 2366 size_t yys;
69ce078b 2367
ae952af2 2368 for (yys = 0; yys < yystack.yytops.yysize; yys += 1)
b7691f15 2369 yystackp->yytops.yylookaheadNeeds[yys] = yychar != YYEMPTY;
bf70fa87 2370
69ce078b
PE
2371 /* yyprocessOneStack returns one of three things:
2372
2373 - An error flag. If the caller is yyprocessOneStack, it
2374 immediately returns as well. When the caller is finally
2375 yyparse, it jumps to an error label via YYCHK1.
2376
2377 - yyok, but yyprocessOneStack has invoked yymarkStackDeleted
2378 (&yystack, yys), which sets the top state of yys to NULL. Thus,
2379 yyparse's following invocation of yyremoveDeletes will remove
2380 the stack.
2381
2382 - yyok, when ready to shift a token.
2383
2384 Except in the first case, yyparse will invoke yyremoveDeletes and
2385 then shift the next token onto all remaining stacks. This
2386 synchronization of the shift (that is, after all preceding
ae952af2 2387 reductions on all stacks) helps prevent double destructor calls
69ce078b
PE
2388 on yylval in the event of memory exhaustion. */
2389
ae952af2 2390 for (yys = 0; yys < yystack.yytops.yysize; yys += 1)
9ecafbbf 2391 YYCHK1 (yyprocessOneStack (&yystack, yys, yyposn]b4_lpure_args[));
69ce078b 2392 yyremoveDeletes (&yystack);
ae952af2
JD
2393 if (yystack.yytops.yysize == 0)
2394 {
2395 yyundeleteLastStack (&yystack);
2396 if (yystack.yytops.yysize == 0)
2397 yyFail (&yystack][]b4_lpure_args[, YY_("syntax error"));
2398 YYCHK1 (yyresolveStack (&yystack]b4_user_args[));
2399 YYDPRINTF ((stderr, "Returning to deterministic operation.\n"));
327afc7c 2400]b4_locations_if([[ yystack.yyerror_range[1].yystate.yyloc = yylloc;]])[
ae952af2
JD
2401 yyreportSyntaxError (&yystack]b4_user_args[);
2402 goto yyuser_error;
2403 }
69ce078b
PE
2404
2405 /* If any yyglrShift call fails, it will fail after shifting. Thus,
2406 a copy of yylval will already be on stack 0 in the event of a
3f001415 2407 failure in the following loop. Thus, yychar is set to YYEMPTY
69ce078b
PE
2408 before the loop to make sure the user destructor for yylval isn't
2409 called twice. */
3f001415 2410 yytoken_to_shift = YYTRANSLATE (yychar);
bf70fa87 2411 yychar = YYEMPTY;
01241d47 2412 yyposn += 1;
ae952af2 2413 for (yys = 0; yys < yystack.yytops.yysize; yys += 1)
69ce078b
PE
2414 {
2415 int yyaction;
2416 const short int* yyconflicts;
2417 yyStateNum yystate = yystack.yytops.yystates[yys]->yylrState;
2418 yygetLRActions (yystate, yytoken_to_shift, &yyaction,
2419 &yyconflicts);
2420 /* Note that yyconflicts were handled by yyprocessOneStack. */
2421 YYDPRINTF ((stderr, "On stack %lu, ", (unsigned long int) yys));
9ecafbbf 2422 YY_SYMBOL_PRINT ("shifting", yytoken_to_shift, &yylval, &yylloc);
69ce078b 2423 yyglrShift (&yystack, yys, yyaction, yyposn,
9ecafbbf 2424 &yylval, &yylloc);
69ce078b
PE
2425 YYDPRINTF ((stderr, "Stack %lu now in state #%d\n",
2426 (unsigned long int) yys,
2427 yystack.yytops.yystates[yys]->yylrState));
2428 }
ae952af2
JD
2429
2430 if (yystack.yytops.yysize == 1)
01241d47 2431 {
2a8d363a 2432 YYCHK1 (yyresolveStack (&yystack]b4_user_args[));
2f4f028d 2433 YYDPRINTF ((stderr, "Returning to deterministic operation.\n"));
01241d47
PH
2434 yycompressStack (&yystack);
2435 break;
2436 }
2437 }
2438 continue;
2439 yyuser_error:
d6cff4dc 2440 yyrecoverSyntaxError (&yystack]b4_user_args[);
01241d47
PH
2441 yyposn = yystack.yytops.yystates[0]->yyposn;
2442 }
6100a9aa
PE
2443
2444 yyacceptlab:
2445 yyresult = 0;
2446 goto yyreturn;
2447
127287e9
PE
2448 yybuglab:
2449 YYASSERT (yyfalse);
a85284cf 2450 goto yyabortlab;
127287e9 2451
6100a9aa
PE
2452 yyabortlab:
2453 yyresult = 1;
2454 goto yyreturn;
2455
1a059451
PE
2456 yyexhaustedlab:
2457 yyerror (]b4_lyyerror_args[YY_("memory exhausted"));
6100a9aa 2458 yyresult = 2;
a85284cf 2459 goto yyreturn;
6100a9aa
PE
2460
2461 yyreturn:
868d2d96 2462 if (yychar != YYEMPTY)
dd5f2af2 2463 yydestruct ("Cleanup: discarding lookahead",
3f001415 2464 YYTRANSLATE (yychar),
327afc7c 2465 &yylval]b4_locations_if([, &yylloc])[]b4_user_args[);
01241d47 2466
3922956a
PE
2467 /* If the stack is well-formed, pop the stack until it is empty,
2468 destroying its entries as we go. But free the stack regardless
2469 of whether it is well-formed. */
2470 if (yystack.yyitems)
2471 {
2472 yyGLRState** yystates = yystack.yytops.yystates;
2473 if (yystates)
69ce078b
PE
2474 {
2475 size_t yysize = yystack.yytops.yysize;
2476 size_t yyk;
2477 for (yyk = 0; yyk < yysize; yyk += 1)
2478 if (yystates[yyk])
2479 {
2480 while (yystates[yyk])
2481 {
2482 yyGLRState *yys = yystates[yyk];
327afc7c 2483]b4_locations_if([[ yystack.yyerror_range[1].yystate.yyloc = yys->yyloc;]]
868d2d96
JD
2484)[ if (yys->yypred != NULL)
2485 yydestroyGLRState ("Cleanup: popping", yys]b4_user_args[);
69ce078b
PE
2486 yystates[yyk] = yys->yypred;
2487 yystack.yynextFree -= 1;
2488 yystack.yyspaceLeft += 1;
2489 }
2490 break;
2491 }
2492 }
3922956a
PE
2493 yyfreeGLRStack (&yystack);
2494 }
258b75ca 2495
7b5cdcbd
JD
2496 /* Make sure YYID is used. */
2497 return YYID (yyresult);
01241d47
PH
2498}
2499
2500/* DEBUGGING ONLY */
8a86eef0 2501#if YYDEBUG
3e7a2cd9 2502static void yypstack (yyGLRStack* yystackp, size_t yyk)
135bc829 2503 __attribute__ ((__unused__));
3e7a2cd9 2504static void yypdumpstack (yyGLRStack* yystackp) __attribute__ ((__unused__));
01241d47 2505
1154cced 2506static void
cf126971 2507yy_yypstack (yyGLRState* yys)
01241d47 2508{
cf126971 2509 if (yys->yypred)
01241d47 2510 {
cf126971 2511 yy_yypstack (yys->yypred);
8a86eef0 2512 YYFPRINTF (stderr, " -> ");
01241d47 2513 }
8a86eef0
JD
2514 YYFPRINTF (stderr, "%d@@%lu", yys->yylrState,
2515 (unsigned long int) yys->yyposn);
cf126971 2516}
01241d47 2517
cf126971
PE
2518static void
2519yypstates (yyGLRState* yyst)
2520{
fb8135fa 2521 if (yyst == NULL)
8a86eef0 2522 YYFPRINTF (stderr, "<null>");
fb8135fa 2523 else
01241d47 2524 yy_yypstack (yyst);
8a86eef0 2525 YYFPRINTF (stderr, "\n");
01241d47
PH
2526}
2527
1154cced 2528static void
3e7a2cd9 2529yypstack (yyGLRStack* yystackp, size_t yyk)
01241d47 2530{
3e7a2cd9 2531 yypstates (yystackp->yytops.yystates[yyk]);
01241d47
PH
2532}
2533
5cc16ecc 2534#define YYINDEX(YYX) \
3e7a2cd9 2535 ((YYX) == NULL ? -1 : (yyGLRStackItem*) (YYX) - yystackp->yyitems)
01241d47
PH
2536
2537
1154cced 2538static void
3e7a2cd9 2539yypdumpstack (yyGLRStack* yystackp)
01241d47
PH
2540{
2541 yyGLRStackItem* yyp;
1154cced 2542 size_t yyi;
3e7a2cd9 2543 for (yyp = yystackp->yyitems; yyp < yystackp->yynextFree; yyp += 1)
01241d47 2544 {
8a86eef0
JD
2545 YYFPRINTF (stderr, "%3lu. ",
2546 (unsigned long int) (yyp - yystackp->yyitems));
f7c398aa 2547 if (*(yybool *) yyp)
01241d47 2548 {
8a86eef0
JD
2549 YYFPRINTF (stderr, "Res: %d, LR State: %d, posn: %lu, pred: %ld",
2550 yyp->yystate.yyresolved, yyp->yystate.yylrState,
2551 (unsigned long int) yyp->yystate.yyposn,
2552 (long int) YYINDEX (yyp->yystate.yypred));
fb8135fa 2553 if (! yyp->yystate.yyresolved)
8a86eef0
JD
2554 YYFPRINTF (stderr, ", firstVal: %ld",
2555 (long int) YYINDEX (yyp->yystate
2556 .yysemantics.yyfirstVal));
01241d47 2557 }
fb8135fa 2558 else
01241d47 2559 {
8a86eef0
JD
2560 YYFPRINTF (stderr, "Option. rule: %d, state: %ld, next: %ld",
2561 yyp->yyoption.yyrule - 1,
2562 (long int) YYINDEX (yyp->yyoption.yystate),
2563 (long int) YYINDEX (yyp->yyoption.yynext));
01241d47 2564 }
8a86eef0 2565 YYFPRINTF (stderr, "\n");
01241d47 2566 }
8a86eef0 2567 YYFPRINTF (stderr, "Tops:");
3e7a2cd9 2568 for (yyi = 0; yyi < yystackp->yytops.yysize; yyi += 1)
8a86eef0
JD
2569 YYFPRINTF (stderr, "%lu: %ld; ", (unsigned long int) yyi,
2570 (long int) YYINDEX (yystackp->yytops.yystates[yyi]));
2571 YYFPRINTF (stderr, "\n");
01241d47 2572}
417141dd 2573#endif
4524c55b 2574]b4_epilogue[]dnl
3f7ca628
JD
2575dnl
2576dnl glr.cc produces its own header.
2577dnl
2578m4_if(b4_skeleton, ["glr.c"],
2579[b4_defines_if(
a0d4650a 2580[@output(b4_spec_defines_file@)@
193d7c70 2581b4_copyright([Skeleton interface for Bison GLR parsers in C],
110ef36a 2582 [2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009])
01241d47 2583
5059b5c8 2584b4_shared_declarations
01241d47 2585
0c650a20 2586b4_pure_if([],
6c88b51e 2587[[extern YYSTYPE ]b4_prefix[lval;]])
01241d47 2588
327afc7c 2589b4_locations_if([b4_pure_if([],
6c88b51e 2590[extern YYLTYPE ]b4_prefix[lloc;])
01241d47 2591])
4524c55b 2592])])[]dnl
08af01c2 2593m4_divert_pop(0)