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