1 m4_divert(-1) -*- C
-*-
3 # GLR skeleton for Bison
4 # Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
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.
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.
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
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 ## ---------------- ##
24 ## ---------------- ##
27 m4_define_default([b4_stack_depth_max
], [10000])
28 m4_define_default([b4_stack_depth_init
], [200])
32 ## ------------------------ ##
33 ## Pure/impure interfaces. ##
34 ## ------------------------ ##
39 # Accumule in b4_lex_param all the yylex arguments.
40 # Yes, this is quite ugly...
41 m4_define([b4_lex_param
],
42 m4_dquote(b4_pure_if([[[[YYSTYPE
*]], [[yylvalp]]][]dnl
43 b4_location_if([, [[YYLTYPE
*], [yyllocp
]]])])dnl
44 m4_ifdef([b4_lex_param
], [, ]b4_lex_param
)))
49 m4_define([b4_user_formals
],
50 [m4_ifset([b4_parse_param
], [, b4_c_ansi_formals(b4_parse_param
)])])
55 # Arguments passed to yyerror: user args plus yylloc.
56 m4_define([b4_yyerror_args
],
57 [b4_pure_if([b4_location_if([yylocp
, ])])dnl
58 m4_ifset([b4_parse_param
], [b4_c_args(b4_parse_param
), ])])
63 # Same as above, but on the look-ahead, hence yyllocp instead of yylocp.
64 m4_define([b4_lyyerror_args
],
65 [b4_pure_if([b4_location_if([yyllocp
, ])])dnl
66 m4_ifset([b4_parse_param
], [b4_c_args(b4_parse_param
), ])])
71 # Arguments needed by yyerror: user args plus yylloc.
72 m4_define([b4_pure_args
],
73 [b4_pure_if([b4_location_if([, yylocp
])])[]b4_user_args
])
78 # Arguments passed to yyerror: user formals plus yyllocp.
79 m4_define([b4_pure_formals
],
80 [b4_pure_if([b4_location_if([, YYLTYPE
*yylocp
])])[]b4_user_formals
])
85 # Same as above, but on the look-ahead, hence yyllocp instead of yylocp.
86 m4_define([b4_lpure_args
],
87 [b4_pure_if([b4_location_if([, yyllocp
])])[]b4_user_args
])
92 # Same as above, but on the look-ahead, hence yyllocp instead of yylocp.
93 m4_define([b4_lpure_formals
],
94 [b4_pure_if([b4_location_if([YYLTYPE
*yyllocp
])])[]b4_user_formals
])
97 ## ----------------- ##
98 ## Semantic Values. ##
99 ## ----------------- ##
102 # b4_lhs_value([TYPE])
103 # --------------------
104 # Expansion of $<TYPE>$.
105 m4_define([b4_lhs_value
],
106 [((*yyvalp
)[]m4_ifval([$
1], [.$
1]))])
109 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
110 # --------------------------------------
111 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
113 m4_define([b4_rhs_value
],
114 [(((yyGLRStackItem
const *)yyvsp
)@
{YYFILL (m4_eval([$
2 - $
1]))@
}.yystate
.yysemantics
.yysval
[]m4_ifval([$
3], [.$
3]))])
125 m4_define([b4_lhs_location
],
129 # b4_rhs_location(RULE-LENGTH, NUM)
130 # ---------------------------------
131 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
133 m4_define([b4_rhs_location
],
134 [(((yyGLRStackItem
const *)yyvsp
)@
{YYFILL (m4_eval([$
2 - $
1]))@
}.yystate
.yyloc
)])
136 # We do want M4 expansion after # for CPP macros.
139 @output @output_parser_name@
140 b4_copyright([Skeleton parser
for GLR parsing with Bison
],
141 [2002, 2003, 2004, 2005])
143 /* This is the parser code for GLR (Generalized LR) parser. */
146 m4_if(b4_prefix
[], [yy
], [],
147 [/* Substitute the variable and function names. */
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
155 #define yylloc b4_prefix[]lloc])
157 b4_token_defines(b4_tokens
)
159 /* Copy the first part of user declarations. */
162 /* Enabling traces. */
164 # define YYDEBUG ]b4_debug[
167 /* Enabling verbose error messages. */
168 #ifdef YYERROR_VERBOSE
169 # undef YYERROR_VERBOSE
170 # define YYERROR_VERBOSE 1
172 # define YYERROR_VERBOSE ]b4_error_verbose[
175 /* Enabling the token table. */
176 #ifndef YYTOKEN_TABLE
177 # define YYTOKEN_TABLE ]b4_token_table[
180 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
181 ]m4_ifdef([b4_stype
],
182 [b4_syncline([b4_stype_line
], [b4_filename
])
183 typedef union m4_bregexp(b4_stype
, [^{], [YYSTYPE
])b4_stype YYSTYPE
;
184 /* Line __line__ of glr.c. */
185 b4_syncline([@oline@
], [@ofile@
])],
186 [typedef int YYSTYPE
;])[
187 # define YYSTYPE_IS_DECLARED 1
188 # define YYSTYPE_IS_TRIVIAL 1
191 #if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
192 typedef struct YYLTYPE
203 # define YYLTYPE_IS_DECLARED 1
204 # define YYLTYPE_IS_TRIVIAL 1
207 /* Default (constant) value used for initialization for null
208 right-hand sides. Unlike the standard yacc.c template,
209 here we set the default value of $$ to a zeroed-out value.
210 Since the default value is undefined, this behavior is
211 technically correct. */
212 static YYSTYPE yyval_default
;
214 /* Copy the second part of user declarations. */
217 ]/* Line __line__ of glr.c. */
218 b4_syncline([@oline@
], [@ofile@
])
229 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
230 # define YY_(msgid) dgettext ("bison-runtime", msgid)
234 # define YY_(msgid) msgid
242 # define YYMALLOC malloc
245 # define YYREALLOC realloc
248 #define YYSIZEMAX ((size_t) -1)
253 typedef unsigned char yybool
;
262 #ifndef __attribute__
263 /* This feature is available in gcc versions 2.5 and later. */
264 # if (!defined (__GNUC__) || __GNUC__ < 2 \
265 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__)
266 # define __attribute__(Spec) /* empty */
270 ]b4_location_if([#define YYOPTIONAL_LOC(Name) Name],[
272 # define YYOPTIONAL_LOC(Name) /* empty */
274 # define YYOPTIONAL_LOC(Name) Name __attribute__ ((__unused__))
278 # define YYASSERT(condition) ((void) ((condition) || (abort (), 0)))
281 /* YYFINAL -- State number of the termination state. */
282 #define YYFINAL ]b4_final_state_number[
283 /* YYLAST -- Last index in YYTABLE. */
284 #define YYLAST ]b4_last[
286 /* YYNTOKENS -- Number of terminals. */
287 #define YYNTOKENS ]b4_tokens_number[
288 /* YYNNTS -- Number of nonterminals. */
289 #define YYNNTS ]b4_nterms_number[
290 /* YYNRULES -- Number of rules. */
291 #define YYNRULES ]b4_rules_number[
292 /* YYNRULES -- Number of states. */
293 #define YYNSTATES ]b4_states_number[
294 /* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */
295 #define YYMAXRHS ]b4_r2_max[
296 /* YYMAXLEFT -- Maximum number of symbols to the left of a handle
297 accessed by $0, $-1, etc., in any rule. */
298 #define YYMAXLEFT ]b4_max_left_semantic_context[
300 /* YYTRANSLATE(X) -- Bison symbol number corresponding to X. */
301 #define YYUNDEFTOK ]b4_undef_token_number[
302 #define YYMAXUTOK ]b4_user_token_number_max[
304 #define YYTRANSLATE(YYX) \
305 ((YYX <= 0) ? YYEOF : \
306 (unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
308 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
309 static const ]b4_int_type_for([b4_translate
])[ yytranslate
[] =
315 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
317 static const ]b4_int_type_for([b4_prhs
])[ yyprhs
[] =
322 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
323 static const ]b4_int_type_for([b4_rhs
])[ yyrhs
[] =
328 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
329 static const ]b4_int_type_for([b4_rline
])[ yyrline
[] =
335 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
336 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
337 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
338 static const char *const yytname
[] =
344 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
345 static const ]b4_int_type_for([b4_r1
])[ yyr1
[] =
350 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
351 static const ]b4_int_type_for([b4_r2
])[ yyr2
[] =
356 /* YYDPREC[RULE-NUM] -- Dynamic precedence of rule #RULE-NUM (0 if none). */
357 static const ]b4_int_type_for([b4_dprec
])[ yydprec
[] =
362 /* YYMERGER[RULE-NUM] -- Index of merging function for rule #RULE-NUM. */
363 static const ]b4_int_type_for([b4_merger
])[ yymerger
[] =
368 /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
369 doesn't specify something else to do. Zero means the default is an
371 static const ]b4_int_type_for([b4_defact
])[ yydefact
[] =
376 /* YYPDEFGOTO[NTERM-NUM]. */
377 static const ]b4_int_type_for([b4_defgoto
])[ yydefgoto
[] =
382 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
384 #define YYPACT_NINF ]b4_pact_ninf[
385 static const ]b4_int_type_for([b4_pact
])[ yypact
[] =
390 /* YYPGOTO[NTERM-NUM]. */
391 static const ]b4_int_type_for([b4_pgoto
])[ yypgoto
[] =
396 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
397 positive, shift that token. If negative, reduce the rule which
398 number is the opposite. If zero, do what YYDEFACT says.
399 If YYTABLE_NINF, syntax error. */
400 #define YYTABLE_NINF ]b4_table_ninf[
401 static const ]b4_int_type_for([b4_table
])[ yytable
[] =
406 /* YYCONFLP[YYPACT[STATE-NUM]] -- Pointer into YYCONFL of start of
407 list of conflicting reductions corresponding to action entry for
408 state STATE-NUM in yytable. 0 means no conflicts. The list in
409 yyconfl is terminated by a rule number of 0. */
410 static const ]b4_int_type_for([b4_conflict_list_heads
])[ yyconflp
[] =
412 ]b4_conflict_list_heads
[
415 /* YYCONFL[I] -- lists of conflicting rule numbers, each terminated by
416 0, pointed into by YYCONFLP. */
417 ]dnl Do
not use b4_int_type_for here
, since there are places where
418 dnl pointers onto yyconfl are taken
, which type is
"short int *".
419 dnl We probably ought to introduce a type
for confl
.
420 [static const short int yyconfl
[] =
422 ]b4_conflicting_rules
[
425 static const ]b4_int_type_for([b4_check
])[ yycheck
[] =
430 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
431 symbol of state STATE-NUM. */
432 static const ]b4_int_type_for([b4_stos
])[ yystos
[] =
438 /* Prevent warning if -Wmissing-prototypes. */
439 ]b4_c_ansi_function_decl([yyparse
], [int], b4_parse_param
)[
441 /* Error token number */
444 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
445 If N is 0, then set CURRENT to the empty location which ends
446 the previous symbol: RHS[0] (always defined). */
449 #define YYRHSLOC(Rhs, K) ((Rhs)[K].yystate.yyloc)
450 #ifndef YYLLOC_DEFAULT
451 # define YYLLOC_DEFAULT(Current, Rhs, N) \
455 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
456 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
457 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
458 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
462 (Current).first_line = (Current).last_line = \
463 YYRHSLOC (Rhs, 0).last_line; \
464 (Current).first_column = (Current).last_column = \
465 YYRHSLOC (Rhs, 0).last_column; \
469 /* YY_LOCATION_PRINT -- Print the location on the stream.
470 This macro was not mandated originally: define only if we know
471 we won't break user code: when these are the locations we know. */
473 # define YY_LOCATION_PRINT(File, Loc) \
474 fprintf (File, "%d.%d-%d.%d", \
475 (Loc).first_line, (Loc).first_column, \
476 (Loc).last_line, (Loc).last_column)
479 #ifndef YYLLOC_DEFAULT
480 # define YYLLOC_DEFAULT(Current, Rhs, N) ((void) 0)
484 #ifndef YY_LOCATION_PRINT
485 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
489 /* YYLEX -- calling `yylex' with the right arguments. */
490 #define YYLEX ]b4_c_function_call([yylex], [int], b4_lex_param)[
495 #define yynerrs (yystack->yyerrcnt)
497 #define yychar (yystack->yyrawchar)],
505 static const int YYEOF
= 0;
506 static const int YYEMPTY
= -2;
508 typedef enum { yyok
, yyaccept
, yyabort
, yyerr
} YYRESULTTAG
;
511 do { YYRESULTTAG yyflag = YYE; if (yyflag != yyok) return yyflag; } \
516 #if ! defined (YYFPRINTF)
517 # define YYFPRINTF fprintf
520 # define YYDPRINTF(Args) \
526 ]b4_yysymprint_generate([b4_c_ansi_function_def
])[
528 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
532 YYFPRINTF (stderr, "%s ", Title); \
533 yysymprint (stderr, \
534 Type, Value]b4_location_if([, Location])[); \
535 YYFPRINTF (stderr, "\n"); \
539 /* Nonzero means print parse trace. It is left uninitialized so that
540 multiple parsers can coexist. */
545 # define YYDPRINTF(Args)
546 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
548 #endif /* !YYDEBUG */
550 /* YYINITDEPTH -- initial size of the parser's stacks. */
552 # define YYINITDEPTH ]b4_stack_depth_init[
555 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
556 if the built-in stack extension method is used).
558 Do not make this value too large; the results are undefined if
559 SIZE_MAX < YYMAXDEPTH * sizeof (GLRStackItem)
560 evaluated with infinite-precision integer arithmetic. */
563 # define YYMAXDEPTH ]b4_stack_depth_max[
566 /* Minimum number of free items on the stack allowed after an
567 allocation. This is to allow allocation and initialization
568 to be completed by functions that call yyexpandGLRStack before the
569 stack is expanded, thus insuring that all necessary pointers get
570 properly redirected to new data. */
573 #ifndef YYSTACKEXPANDABLE
574 # if (! defined (__cplusplus) \
575 || (]b4_location_if([[defined (YYLTYPE_IS_TRIVIAL) && YYLTYPE_IS_TRIVIAL \
576 && ]])[defined (YYSTYPE_IS_TRIVIAL) && YYSTYPE_IS_TRIVIAL))
577 # define YYSTACKEXPANDABLE 1
579 # define YYSTACKEXPANDABLE 0
586 # if defined (__GLIBC__) && defined (_STRING_H) && defined (_GNU_SOURCE)
587 # define yystpcpy stpcpy
589 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
592 yystpcpy (char *yydest
, const char *yysrc
)
595 const char *yys
= yysrc
;
597 while ((*yyd
++ = *yys
++) != '\0')
606 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
607 quotes and backslashes, so that it's suitable for yyerror. The
608 heuristic is that double-quoting is unnecessary unless the string
609 contains an apostrophe, a comma, or backslash (other than
610 backslash-backslash). YYSTR is taken from yytname. If YYRES is
611 null, do not copy; instead, return the length of what the result
614 yytnamerr (char *yyres
, const char *yystr
)
619 char const *yyp
= yystr
;
626 goto do_not_strip_quotes
;
630 goto do_not_strip_quotes
;
643 do_not_strip_quotes
: ;
647 return strlen (yystr
);
649 return yystpcpy (yyres
, yystr
) - yyres
;
653 #endif /* !YYERROR_VERBOSE */
655 /** State numbers, as in LALR(1) machine */
656 typedef int yyStateNum
;
658 /** Rule numbers, as in LALR(1) machine */
659 typedef int yyRuleNum
;
661 /** Grammar symbol */
662 typedef short int yySymbol
;
664 /** Item references, as in LALR(1) machine */
665 typedef short int yyItemNum
;
667 typedef struct yyGLRState yyGLRState
;
668 typedef struct yySemanticOption yySemanticOption
;
669 typedef union yyGLRStackItem yyGLRStackItem
;
670 typedef struct yyGLRStack yyGLRStack
;
671 typedef struct yyGLRStateSet yyGLRStateSet
;
674 /** Type tag: always true. */
676 /** Type tag for yysemantics. If true, yysval applies, otherwise
677 * yyfirstVal applies. */
679 /** Number of corresponding LALR(1) machine state. */
680 yyStateNum yylrState
;
681 /** Preceding state in this stack */
683 /** Source position of the first token produced by my symbol */
686 /** First in a chain of alternative reductions producing the
687 * non-terminal corresponding to this state, threaded through
689 yySemanticOption
* yyfirstVal
;
690 /** Semantic value for this state. */
693 /** Source location for this state. */
697 struct yyGLRStateSet
{
698 yyGLRState
** yystates
;
699 size_t yysize
, yycapacity
;
702 struct yySemanticOption
{
703 /** Type tag: always false. */
705 /** Rule number for this reduction */
707 /** The last RHS state in the list of states to be reduced. */
709 /** Next sibling in chain of options. To facilitate merging,
710 * options are chained in decreasing order by address. */
711 yySemanticOption
* yynext
;
714 /** Type of the items in the GLR stack. The yyisState field
715 * indicates which item of the union is valid. */
716 union yyGLRStackItem
{
718 yySemanticOption yyoption
;
723 ]b4_location_if([[ /* To compute the location of the error token. */
724 yyGLRStackItem yyerror_range
[3];]])[
731 jmp_buf yyexception_buffer
;
732 yyGLRStackItem
* yyitems
;
733 yyGLRStackItem
* yynextFree
;
735 yyGLRState
* yysplitPoint
;
736 yyGLRState
* yylastDeleted
;
737 yyGLRStateSet yytops
;
740 static void yyexpandGLRStack (yyGLRStack
* yystack
);
742 static void yyFail (yyGLRStack
* yystack
]b4_pure_formals
[, const char* yymsg
)
743 __attribute__ ((__noreturn__
));
745 yyFail (yyGLRStack
* yystack
]b4_pure_formals
[, const char* yymsg
)
748 yyerror (]b4_yyerror_args
[yymsg
);
749 longjmp (yystack
->yyexception_buffer
, 1);
752 static void yyMemoryExhausted (yyGLRStack
* yystack
)
753 __attribute__ ((__noreturn__
));
755 yyMemoryExhausted (yyGLRStack
* yystack
)
757 longjmp (yystack
->yyexception_buffer
, 2);
760 #if YYDEBUG || YYERROR_VERBOSE
761 /** A printable representation of TOKEN. */
762 static inline const char*
763 yytokenName (yySymbol yytoken
)
765 if (yytoken
== YYEMPTY
)
768 return yytname
[yytoken
];
772 /** Fill in YYVSP[YYLOW1 .. YYLOW0-1] from the chain of states starting
773 * at YYVSP[YYLOW0].yystate.yypred. Leaves YYVSP[YYLOW1].yystate.yypred
774 * containing the pointer to the next state in the chain. Assumes
775 * YYLOW1 < YYLOW0. */
776 static void yyfillin (yyGLRStackItem
*, int, int) __attribute__ ((__unused__
));
778 yyfillin (yyGLRStackItem
*yyvsp
, int yylow0
, int yylow1
)
782 s
= yyvsp
[yylow0
].yystate
.yypred
;
783 for (i
= yylow0
-1; i
>= yylow1
; i
-= 1)
785 YYASSERT (s
->yyresolved
);
786 yyvsp
[i
].yystate
.yyresolved
= yytrue
;
787 yyvsp
[i
].yystate
.yysemantics
.yysval
= s
->yysemantics
.yysval
;
788 yyvsp
[i
].yystate
.yyloc
= s
->yyloc
;
789 s
= yyvsp
[i
].yystate
.yypred
= s
->yypred
;
793 /* Do nothing if YYNORMAL or if *YYLOW <= YYLOW1. Otherwise, fill in
794 YYVSP[YYLOW1 .. *YYLOW-1] as in yyfillin and set *YYLOW = YYLOW1.
795 For convenience, always return YYLOW1. */
796 static inline int yyfill (yyGLRStackItem
*, int *, int, yybool
)
797 __attribute__ ((__unused__
));
799 yyfill (yyGLRStackItem
*yyvsp
, int *yylow
, int yylow1
, yybool yynormal
)
801 if (!yynormal
&& yylow1
< *yylow
)
803 yyfillin (yyvsp
, *yylow
, yylow1
);
809 /** Perform user action for rule number YYN, with RHS length YYRHSLEN,
810 * and top stack item YYVSP. YYLVALP points to place to put semantic
811 * value ($$), and yylocp points to place for location information
812 * (@@$). Returns yyok for normal return, yyaccept for YYACCEPT,
813 * yyerr for YYERROR, yyabort for YYABORT. */
815 yyuserAction (yyRuleNum yyn
, int yyrhslen
, yyGLRStackItem
* yyvsp
,
817 YYLTYPE
* YYOPTIONAL_LOC (yylocp
),
821 yybool yynormal
__attribute__ ((__unused__
)) =
822 (yystack
->yysplitPoint
== NULL
);
826 # define yyerrok (yystack->yyerrState = 0)
828 # define YYACCEPT return yyaccept
830 # define YYABORT return yyabort
832 # define YYERROR return yyerrok, yyerr
834 # define YYRECOVERING (yystack->yyerrState != 0)
836 # define yyclearin (yychar = *(yystack->yytokenp) = YYEMPTY)
838 # define YYFILL(N) yyfill (yyvsp, &yylow, N, yynormal)
840 # define YYBACKUP(Token, Value) \
841 return yyerror (]b4_yyerror_args[YY_("syntax error: cannot back up")), \
846 *yyvalp
= yyval_default
;
848 *yyvalp
= yyvsp
[YYFILL (1-yyrhslen
)].yystate
.yysemantics
.yysval
;
849 YYLLOC_DEFAULT (*yylocp
, yyvsp
- yyrhslen
, yyrhslen
);
850 ]b4_location_if([[ yystack
->yyerror_range
[1].yystate
.yyloc
= *yylocp
;
866 /* Line __line__ of glr.c. */
867 b4_syncline([@oline@
], [@ofile@
])
872 yyuserMerge (int yyn
, YYSTYPE
* yy0
, YYSTYPE
* yy1
)
874 /* `Use' the arguments. */
885 /* Bison grammar-table manipulation. */
887 ]b4_yydestruct_generate([b4_c_ansi_function_def
])[
889 /** Number of symbols composing the right hand side of rule #RULE. */
891 yyrhsLength (yyRuleNum yyrule
)
896 /** Left-hand-side symbol for rule #RULE. */
897 static inline yySymbol
898 yylhsNonterm (yyRuleNum yyrule
)
903 #define yyis_pact_ninf(yystate) \
904 ]m4_if(m4_eval(b4_pact_ninf < b4_pact_min), 1,
906 ((yystate
) == YYPACT_NINF
))[
908 /** True iff LR state STATE has only a default reduction (regardless
911 yyisDefaultedState (yyStateNum yystate
)
913 return yyis_pact_ninf (yypact
[yystate
]);
916 /** The default reduction for STATE, assuming it has one. */
917 static inline yyRuleNum
918 yydefaultAction (yyStateNum yystate
)
920 return yydefact
[yystate
];
923 #define yyis_table_ninf(yytable_value) \
924 ]m4_if(m4_eval(b4_table_ninf < b4_table_min), 1,
926 ((yytable_value
) == YYTABLE_NINF
))[
928 /** Set *YYACTION to the action to take in YYSTATE on seeing YYTOKEN.
930 * R < 0: Reduce on rule -R.
932 * R > 0: Shift to state R.
933 * Set *CONFLICTS to a pointer into yyconfl to 0-terminated list of
934 * conflicting reductions.
937 yygetLRActions (yyStateNum yystate
, int yytoken
,
938 int* yyaction
, const short int** yyconflicts
)
940 int yyindex
= yypact
[yystate
] + yytoken
;
941 if (yyindex
< 0 || YYLAST
< yyindex
|| yycheck
[yyindex
] != yytoken
)
943 *yyaction
= -yydefact
[yystate
];
944 *yyconflicts
= yyconfl
;
946 else if (! yyis_table_ninf (yytable
[yyindex
]))
948 *yyaction
= yytable
[yyindex
];
949 *yyconflicts
= yyconfl
+ yyconflp
[yyindex
];
954 *yyconflicts
= yyconfl
+ yyconflp
[yyindex
];
958 static inline yyStateNum
959 yyLRgotoState (yyStateNum yystate
, yySymbol yylhs
)
962 yyr
= yypgoto
[yylhs
- YYNTOKENS
] + yystate
;
963 if (0 <= yyr
&& yyr
<= YYLAST
&& yycheck
[yyr
] == yystate
)
966 return yydefgoto
[yylhs
- YYNTOKENS
];
970 yyisShiftAction (int yyaction
)
976 yyisErrorAction (int yyaction
)
978 return yyaction
== 0;
984 yyaddDeferredAction (yyGLRStack
* yystack
, yyGLRState
* yystate
,
985 yyGLRState
* rhs
, yyRuleNum yyrule
)
987 yySemanticOption
* yynewItem
;
988 yynewItem
= &yystack
->yynextFree
->yyoption
;
989 yystack
->yyspaceLeft
-= 1;
990 yystack
->yynextFree
+= 1;
991 yynewItem
->yyisState
= yyfalse
;
992 yynewItem
->yystate
= rhs
;
993 yynewItem
->yyrule
= yyrule
;
994 yynewItem
->yynext
= yystate
->yysemantics
.yyfirstVal
;
995 yystate
->yysemantics
.yyfirstVal
= yynewItem
;
996 if (yystack
->yyspaceLeft
< YYHEADROOM
)
997 yyexpandGLRStack (yystack
);
1002 /** Initialize SET to a singleton set containing an empty stack. */
1004 yyinitStateSet (yyGLRStateSet
* yyset
)
1007 yyset
->yycapacity
= 16;
1008 yyset
->yystates
= (yyGLRState
**) YYMALLOC (16 * sizeof yyset
->yystates
[0]);
1009 if (! yyset
->yystates
)
1011 yyset
->yystates
[0] = NULL
;
1015 static void yyfreeStateSet (yyGLRStateSet
* yyset
)
1017 YYFREE (yyset
->yystates
);
1020 /** Initialize STACK to a single empty stack, with total maximum
1021 * capacity for all stacks of SIZE. */
1023 yyinitGLRStack (yyGLRStack
* yystack
, size_t yysize
)
1025 yystack
->yyerrState
= 0;
1027 yystack
->yyspaceLeft
= yysize
;
1029 (yyGLRStackItem
*) YYMALLOC (yysize
* sizeof yystack
->yynextFree
[0]);
1030 if (!yystack
->yyitems
)
1032 yystack
->yynextFree
= yystack
->yyitems
;
1033 yystack
->yysplitPoint
= NULL
;
1034 yystack
->yylastDeleted
= NULL
;
1035 return yyinitStateSet (&yystack
->yytops
);
1038 #define YYRELOC(YYFROMITEMS,YYTOITEMS,YYX,YYTYPE) \
1039 &((YYTOITEMS) - ((YYFROMITEMS) - (yyGLRStackItem*) (YYX)))->YYTYPE
1041 /** If STACK is expandable, extend it. WARNING: Pointers into the
1042 stack from outside should be considered invalid after this call.
1043 We always expand when there are 1 or fewer items left AFTER an
1044 allocation, so that we can avoid having external pointers exist
1045 across an allocation. */
1047 yyexpandGLRStack (yyGLRStack
* yystack
)
1049 #if YYSTACKEXPANDABLE
1050 yyGLRStackItem
* yynewItems
;
1051 yyGLRStackItem
* yyp0
, *yyp1
;
1052 size_t yysize
, yynewSize
;
1054 yysize
= yystack
->yynextFree
- yystack
->yyitems
;
1055 if (YYMAXDEPTH
<= yysize
)
1056 yyMemoryExhausted (yystack
);
1057 yynewSize
= 2*yysize
;
1058 if (YYMAXDEPTH
< yynewSize
)
1059 yynewSize
= YYMAXDEPTH
;
1060 yynewItems
= (yyGLRStackItem
*) YYMALLOC (yynewSize
* sizeof yynewItems
[0]);
1062 yyMemoryExhausted (yystack
);
1063 for (yyp0
= yystack
->yyitems
, yyp1
= yynewItems
, yyn
= yysize
;
1065 yyn
-= 1, yyp0
+= 1, yyp1
+= 1)
1068 if (*(yybool
*) yyp0
)
1070 yyGLRState
* yys0
= &yyp0
->yystate
;
1071 yyGLRState
* yys1
= &yyp1
->yystate
;
1072 if (yys0
->yypred
!= NULL
)
1074 YYRELOC (yyp0
, yyp1
, yys0
->yypred
, yystate
);
1075 if (! yys0
->yyresolved
&& yys0
->yysemantics
.yyfirstVal
!= NULL
)
1076 yys1
->yysemantics
.yyfirstVal
=
1077 YYRELOC(yyp0
, yyp1
, yys0
->yysemantics
.yyfirstVal
, yyoption
);
1081 yySemanticOption
* yyv0
= &yyp0
->yyoption
;
1082 yySemanticOption
* yyv1
= &yyp1
->yyoption
;
1083 if (yyv0
->yystate
!= NULL
)
1084 yyv1
->yystate
= YYRELOC (yyp0
, yyp1
, yyv0
->yystate
, yystate
);
1085 if (yyv0
->yynext
!= NULL
)
1086 yyv1
->yynext
= YYRELOC (yyp0
, yyp1
, yyv0
->yynext
, yyoption
);
1089 if (yystack
->yysplitPoint
!= NULL
)
1090 yystack
->yysplitPoint
= YYRELOC (yystack
->yyitems
, yynewItems
,
1091 yystack
->yysplitPoint
, yystate
);
1093 for (yyn
= 0; yyn
< yystack
->yytops
.yysize
; yyn
+= 1)
1094 if (yystack
->yytops
.yystates
[yyn
] != NULL
)
1095 yystack
->yytops
.yystates
[yyn
] =
1096 YYRELOC (yystack
->yyitems
, yynewItems
,
1097 yystack
->yytops
.yystates
[yyn
], yystate
);
1098 YYFREE (yystack
->yyitems
);
1099 yystack
->yyitems
= yynewItems
;
1100 yystack
->yynextFree
= yynewItems
+ yysize
;
1101 yystack
->yyspaceLeft
= yynewSize
- yysize
;
1104 yyMemoryExhausted (yystack
);
1109 yyfreeGLRStack (yyGLRStack
* yystack
)
1111 YYFREE (yystack
->yyitems
);
1112 yyfreeStateSet (&yystack
->yytops
);
1115 /** Assuming that S is a GLRState somewhere on STACK, update the
1116 * splitpoint of STACK, if needed, so that it is at least as deep as
1119 yyupdateSplit (yyGLRStack
* yystack
, yyGLRState
* yys
)
1121 if (yystack
->yysplitPoint
!= NULL
&& yystack
->yysplitPoint
> yys
)
1122 yystack
->yysplitPoint
= yys
;
1125 /** Invalidate stack #K in STACK. */
1127 yymarkStackDeleted (yyGLRStack
* yystack
, size_t yyk
)
1129 if (yystack
->yytops
.yystates
[yyk
] != NULL
)
1130 yystack
->yylastDeleted
= yystack
->yytops
.yystates
[yyk
];
1131 yystack
->yytops
.yystates
[yyk
] = NULL
;
1134 /** Undelete the last stack that was marked as deleted. Can only be
1135 done once after a deletion, and only when all other stacks have
1138 yyundeleteLastStack (yyGLRStack
* yystack
)
1140 if (yystack
->yylastDeleted
== NULL
|| yystack
->yytops
.yysize
!= 0)
1142 yystack
->yytops
.yystates
[0] = yystack
->yylastDeleted
;
1143 yystack
->yytops
.yysize
= 1;
1144 YYDPRINTF ((stderr
, "Restoring last deleted stack as stack #0.\n"));
1145 yystack
->yylastDeleted
= NULL
;
1149 yyremoveDeletes (yyGLRStack
* yystack
)
1153 while (yyj
< yystack
->yytops
.yysize
)
1155 if (yystack
->yytops
.yystates
[yyi
] == NULL
)
1159 YYDPRINTF ((stderr
, "Removing dead stacks.\n"));
1161 yystack
->yytops
.yysize
-= 1;
1165 yystack
->yytops
.yystates
[yyj
] = yystack
->yytops
.yystates
[yyi
];
1168 YYDPRINTF ((stderr
, "Rename stack %lu -> %lu.\n",
1169 (unsigned long int) yyi
, (unsigned long int) yyj
));
1177 /** Shift to a new state on stack #K of STACK, corresponding to LR state
1178 * LRSTATE, at input position POSN, with (resolved) semantic value SVAL. */
1180 yyglrShift (yyGLRStack
* yystack
, size_t yyk
, yyStateNum yylrState
,
1182 YYSTYPE yysval
, YYLTYPE
* yylocp
)
1184 yyGLRStackItem
* yynewItem
;
1186 yynewItem
= yystack
->yynextFree
;
1187 yystack
->yynextFree
+= 1;
1188 yystack
->yyspaceLeft
-= 1;
1189 yynewItem
->yystate
.yyisState
= yytrue
;
1190 yynewItem
->yystate
.yylrState
= yylrState
;
1191 yynewItem
->yystate
.yyposn
= yyposn
;
1192 yynewItem
->yystate
.yyresolved
= yytrue
;
1193 yynewItem
->yystate
.yypred
= yystack
->yytops
.yystates
[yyk
];
1194 yystack
->yytops
.yystates
[yyk
] = &yynewItem
->yystate
;
1195 yynewItem
->yystate
.yysemantics
.yysval
= yysval
;
1196 yynewItem
->yystate
.yyloc
= *yylocp
;
1197 if (yystack
->yyspaceLeft
< YYHEADROOM
)
1198 yyexpandGLRStack (yystack
);
1201 /** Shift stack #K of YYSTACK, to a new state corresponding to LR
1202 * state YYLRSTATE, at input position YYPOSN, with the (unresolved)
1203 * semantic value of YYRHS under the action for YYRULE. */
1205 yyglrShiftDefer (yyGLRStack
* yystack
, size_t yyk
, yyStateNum yylrState
,
1206 size_t yyposn
, yyGLRState
* rhs
, yyRuleNum yyrule
)
1208 yyGLRStackItem
* yynewItem
;
1210 yynewItem
= yystack
->yynextFree
;
1211 yynewItem
->yystate
.yyisState
= yytrue
;
1212 yynewItem
->yystate
.yylrState
= yylrState
;
1213 yynewItem
->yystate
.yyposn
= yyposn
;
1214 yynewItem
->yystate
.yyresolved
= yyfalse
;
1215 yynewItem
->yystate
.yypred
= yystack
->yytops
.yystates
[yyk
];
1216 yynewItem
->yystate
.yysemantics
.yyfirstVal
= NULL
;
1217 yystack
->yytops
.yystates
[yyk
] = &yynewItem
->yystate
;
1218 yystack
->yynextFree
+= 1;
1219 yystack
->yyspaceLeft
-= 1;
1220 yyaddDeferredAction (yystack
, &yynewItem
->yystate
, rhs
, yyrule
);
1223 /** Pop the symbols consumed by reduction #RULE from the top of stack
1224 * #K of STACK, and perform the appropriate semantic action on their
1225 * semantic values. Assumes that all ambiguities in semantic values
1226 * have been previously resolved. Set *VALP to the resulting value,
1227 * and *LOCP to the computed location (if any). Return value is as
1228 * for userAction. */
1229 static inline YYRESULTTAG
1230 yydoAction (yyGLRStack
* yystack
, size_t yyk
, yyRuleNum yyrule
,
1231 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1233 int yynrhs
= yyrhsLength (yyrule
);
1235 if (yystack
->yysplitPoint
== NULL
)
1237 /* Standard special case: single stack. */
1238 yyGLRStackItem
* rhs
= (yyGLRStackItem
*) yystack
->yytops
.yystates
[yyk
];
1239 YYASSERT (yyk
== 0);
1240 yystack
->yynextFree
-= yynrhs
;
1241 yystack
->yyspaceLeft
+= yynrhs
;
1242 yystack
->yytops
.yystates
[0] = & yystack
->yynextFree
[-1].yystate
;
1243 return yyuserAction (yyrule
, yynrhs
, rhs
,
1244 yyvalp
, yylocp
, yystack
]b4_user_args
[);
1250 yyGLRStackItem yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
+ 1];
1251 yys
= yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
].yystate
.yypred
1252 = yystack
->yytops
.yystates
[yyk
];
1253 for (yyi
= 0; yyi
< yynrhs
; yyi
+= 1)
1258 yyupdateSplit (yystack
, yys
);
1259 yystack
->yytops
.yystates
[yyk
] = yys
;
1260 return yyuserAction (yyrule
, yynrhs
, yyrhsVals
+ YYMAXRHS
+ YYMAXLEFT
- 1,
1261 yyvalp
, yylocp
, yystack
]b4_user_args
[);
1266 # define YY_REDUCE_PRINT(K, Rule)
1268 # define YY_REDUCE_PRINT(K, Rule) \
1271 yy_reduce_print (K, Rule); \
1274 /*----------------------------------------------------------.
1275 | Report that the RULE is going to be reduced on stack #K. |
1276 `----------------------------------------------------------*/
1279 yy_reduce_print (size_t yyk
, yyRuleNum yyrule
)
1282 YYFPRINTF (stderr
, "Reducing stack %lu by rule %d (line %lu), ",
1283 (unsigned long int) yyk
, yyrule
- 1,
1284 (unsigned long int) yyrline
[yyrule
]);
1285 /* Print the symbols being reduced, and their result. */
1286 for (yyi
= yyprhs
[yyrule
]; 0 <= yyrhs
[yyi
]; yyi
++)
1287 YYFPRINTF (stderr
, "%s ", yytokenName (yyrhs
[yyi
]));
1288 YYFPRINTF (stderr
, "-> %s\n", yytokenName (yyr1
[yyrule
]));
1292 /** Pop items off stack #K of STACK according to grammar rule RULE,
1293 * and push back on the resulting nonterminal symbol. Perform the
1294 * semantic action associated with RULE and store its value with the
1295 * newly pushed state, if FORCEEVAL or if STACK is currently
1296 * unambiguous. Otherwise, store the deferred semantic action with
1297 * the new state. If the new state would have an identical input
1298 * position, LR state, and predecessor to an existing state on the stack,
1299 * it is identified with that existing state, eliminating stack #K from
1300 * the STACK. In this case, the (necessarily deferred) semantic value is
1301 * added to the options for the existing state's semantic value.
1303 static inline YYRESULTTAG
1304 yyglrReduce (yyGLRStack
* yystack
, size_t yyk
, yyRuleNum yyrule
,
1305 yybool yyforceEval
]b4_user_formals
[)
1307 size_t yyposn
= yystack
->yytops
.yystates
[yyk
]->yyposn
;
1309 if (yyforceEval
|| yystack
->yysplitPoint
== NULL
)
1314 YY_REDUCE_PRINT (yyk
, yyrule
);
1315 YYCHK (yydoAction (yystack
, yyk
, yyrule
, &yysval
, &yyloc
]b4_user_args
[));
1316 yyglrShift (yystack
, yyk
,
1317 yyLRgotoState (yystack
->yytops
.yystates
[yyk
]->yylrState
,
1318 yylhsNonterm (yyrule
)),
1319 yyposn
, yysval
, &yyloc
);
1325 yyGLRState
* yys
, *yys0
= yystack
->yytops
.yystates
[yyk
];
1326 yyStateNum yynewLRState
;
1328 for (yys
= yystack
->yytops
.yystates
[yyk
], yyn
= yyrhsLength (yyrule
);
1334 yyupdateSplit (yystack
, yys
);
1335 yynewLRState
= yyLRgotoState (yys
->yylrState
, yylhsNonterm (yyrule
));
1337 "Reduced stack %lu by rule #%d; action deferred. Now in state %d.\n",
1338 (unsigned long int) yyk
, yyrule
- 1, yynewLRState
));
1339 for (yyi
= 0; yyi
< yystack
->yytops
.yysize
; yyi
+= 1)
1340 if (yyi
!= yyk
&& yystack
->yytops
.yystates
[yyi
] != NULL
)
1342 yyGLRState
* yyp
, *yysplit
= yystack
->yysplitPoint
;
1343 yyp
= yystack
->yytops
.yystates
[yyi
];
1344 while (yyp
!= yys
&& yyp
!= yysplit
&& yyp
->yyposn
>= yyposn
)
1346 if (yyp
->yylrState
== yynewLRState
&& yyp
->yypred
== yys
)
1348 yyaddDeferredAction (yystack
, yyp
, yys0
, yyrule
);
1349 yymarkStackDeleted (yystack
, yyk
);
1350 YYDPRINTF ((stderr
, "Merging stack %lu into stack %lu.\n",
1351 (unsigned long int) yyk
,
1352 (unsigned long int) yyi
));
1358 yystack
->yytops
.yystates
[yyk
] = yys
;
1359 yyglrShiftDefer (yystack
, yyk
, yynewLRState
, yyposn
, yys0
, yyrule
);
1365 yysplitStack (yyGLRStack
* yystack
, size_t yyk
)
1367 if (yystack
->yysplitPoint
== NULL
)
1369 YYASSERT (yyk
== 0);
1370 yystack
->yysplitPoint
= yystack
->yytops
.yystates
[yyk
];
1372 if (yystack
->yytops
.yysize
>= yystack
->yytops
.yycapacity
)
1374 yyGLRState
** yynewStates
;
1375 if (! ((yystack
->yytops
.yycapacity
1376 <= (YYSIZEMAX
/ (2 * sizeof yynewStates
[0])))
1378 (yyGLRState
**) YYREALLOC (yystack
->yytops
.yystates
,
1379 ((yystack
->yytops
.yycapacity
*= 2)
1380 * sizeof yynewStates
[0])))))
1381 yyMemoryExhausted (yystack
);
1382 yystack
->yytops
.yystates
= yynewStates
;
1384 yystack
->yytops
.yystates
[yystack
->yytops
.yysize
]
1385 = yystack
->yytops
.yystates
[yyk
];
1386 yystack
->yytops
.yysize
+= 1;
1387 return yystack
->yytops
.yysize
-1;
1390 /** True iff Y0 and Y1 represent identical options at the top level.
1391 * That is, they represent the same rule applied to RHS symbols
1392 * that produce the same terminal symbols. */
1394 yyidenticalOptions (yySemanticOption
* yyy0
, yySemanticOption
* yyy1
)
1396 if (yyy0
->yyrule
== yyy1
->yyrule
)
1398 yyGLRState
*yys0
, *yys1
;
1400 for (yys0
= yyy0
->yystate
, yys1
= yyy1
->yystate
,
1401 yyn
= yyrhsLength (yyy0
->yyrule
);
1403 yys0
= yys0
->yypred
, yys1
= yys1
->yypred
, yyn
-= 1)
1404 if (yys0
->yyposn
!= yys1
->yyposn
)
1412 /** Assuming identicalOptions (Y0,Y1), destructively merge the
1413 * alternative semantic values for the RHS-symbols of Y1 and Y0. */
1415 yymergeOptionSets (yySemanticOption
* yyy0
, yySemanticOption
* yyy1
)
1417 yyGLRState
*yys0
, *yys1
;
1419 for (yys0
= yyy0
->yystate
, yys1
= yyy1
->yystate
,
1420 yyn
= yyrhsLength (yyy0
->yyrule
);
1422 yys0
= yys0
->yypred
, yys1
= yys1
->yypred
, yyn
-= 1)
1426 else if (yys0
->yyresolved
)
1428 yys1
->yyresolved
= yytrue
;
1429 yys1
->yysemantics
.yysval
= yys0
->yysemantics
.yysval
;
1431 else if (yys1
->yyresolved
)
1433 yys0
->yyresolved
= yytrue
;
1434 yys0
->yysemantics
.yysval
= yys1
->yysemantics
.yysval
;
1438 yySemanticOption
** yyz0p
;
1439 yySemanticOption
* yyz1
;
1440 yyz0p
= &yys0
->yysemantics
.yyfirstVal
;
1441 yyz1
= yys1
->yysemantics
.yyfirstVal
;
1444 if (yyz1
== *yyz0p
|| yyz1
== NULL
)
1446 else if (*yyz0p
== NULL
)
1451 else if (*yyz0p
< yyz1
)
1453 yySemanticOption
* yyz
= *yyz0p
;
1455 yyz1
= yyz1
->yynext
;
1456 (*yyz0p
)->yynext
= yyz
;
1458 yyz0p
= &(*yyz0p
)->yynext
;
1460 yys1
->yysemantics
.yyfirstVal
= yys0
->yysemantics
.yyfirstVal
;
1465 /** Y0 and Y1 represent two possible actions to take in a given
1466 * parsing state; return 0 if no combination is possible,
1467 * 1 if user-mergeable, 2 if Y0 is preferred, 3 if Y1 is preferred. */
1469 yypreference (yySemanticOption
* y0
, yySemanticOption
* y1
)
1471 yyRuleNum r0
= y0
->yyrule
, r1
= y1
->yyrule
;
1472 int p0
= yydprec
[r0
], p1
= yydprec
[r1
];
1476 if (yymerger
[r0
] == 0 || yymerger
[r0
] != yymerger
[r1
])
1481 if (p0
== 0 || p1
== 0)
1490 static YYRESULTTAG
yyresolveValue (yySemanticOption
* yyoptionList
,
1491 yyGLRStack
* yystack
, YYSTYPE
* yyvalp
,
1492 YYLTYPE
* yylocp
]b4_user_formals
[);
1495 yyresolveStates (yyGLRState
* yys
, int yyn
, yyGLRStack
* yystack
]b4_user_formals
[)
1500 YYASSERT (yys
->yypred
);
1501 yyflag
= yyresolveStates (yys
->yypred
, yyn
-1, yystack
]b4_user_args
[);
1504 if (! yys
->yyresolved
)
1506 yyflag
= yyresolveValue (yys
->yysemantics
.yyfirstVal
, yystack
,
1507 &yys
->yysemantics
.yysval
, &yys
->yyloc
1511 yys
->yyresolved
= yytrue
;
1518 yyresolveAction (yySemanticOption
* yyopt
, yyGLRStack
* yystack
,
1519 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1521 yyGLRStackItem yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
+ 1];
1524 yynrhs
= yyrhsLength (yyopt
->yyrule
);
1525 YYCHK (yyresolveStates (yyopt
->yystate
, yynrhs
, yystack
]b4_user_args
[));
1526 yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
].yystate
.yypred
= yyopt
->yystate
;
1527 return yyuserAction (yyopt
->yyrule
, yynrhs
,
1528 yyrhsVals
+ YYMAXRHS
+ YYMAXLEFT
- 1,
1529 yyvalp
, yylocp
, yystack
]b4_user_args
[);
1534 yyreportTree (yySemanticOption
* yyx
, int yyindent
)
1536 int yynrhs
= yyrhsLength (yyx
->yyrule
);
1539 yyGLRState
* yystates
[YYMAXRHS
];
1540 yyGLRState yyleftmost_state
;
1542 for (yyi
= yynrhs
, yys
= yyx
->yystate
; 0 < yyi
; yyi
-= 1, yys
= yys
->yypred
)
1543 yystates
[yyi
] = yys
;
1546 yyleftmost_state
.yyposn
= 0;
1547 yystates
[0] = &yyleftmost_state
;
1552 if (yyx
->yystate
->yyposn
< yys
->yyposn
+ 1)
1553 YYFPRINTF (stderr
, "%*s%s -> <Rule %d, empty>\n",
1554 yyindent
, "", yytokenName (yylhsNonterm (yyx
->yyrule
)),
1557 YYFPRINTF (stderr
, "%*s%s -> <Rule %d, tokens %lu .. %lu>\n",
1558 yyindent
, "", yytokenName (yylhsNonterm (yyx
->yyrule
)),
1559 yyx
->yyrule
, (unsigned long int) (yys
->yyposn
+ 1),
1560 (unsigned long int) yyx
->yystate
->yyposn
);
1561 for (yyi
= 1; yyi
<= yynrhs
; yyi
+= 1)
1563 if (yystates
[yyi
]->yyresolved
)
1565 if (yystates
[yyi
-1]->yyposn
+1 > yystates
[yyi
]->yyposn
)
1566 YYFPRINTF (stderr
, "%*s%s <empty>\n", yyindent
+2, "",
1567 yytokenName (yyrhs
[yyprhs
[yyx
->yyrule
]+yyi
-1]));
1569 YYFPRINTF (stderr
, "%*s%s <tokens %lu .. %lu>\n", yyindent
+2, "",
1570 yytokenName (yyrhs
[yyprhs
[yyx
->yyrule
]+yyi
-1]),
1571 (unsigned long int) (yystates
[yyi
- 1]->yyposn
+ 1),
1572 (unsigned long int) yystates
[yyi
]->yyposn
);
1575 yyreportTree (yystates
[yyi
]->yysemantics
.yyfirstVal
, yyindent
+2);
1580 static void yyreportAmbiguity (yySemanticOption
* yyx0
, yySemanticOption
* yyx1
,
1581 yyGLRStack
* yystack
]b4_pure_formals
[)
1582 __attribute__ ((__noreturn__
));
1584 yyreportAmbiguity (yySemanticOption
* yyx0
, yySemanticOption
* yyx1
,
1585 yyGLRStack
* yystack
]b4_pure_formals
[)
1587 /* `Unused' warnings. */
1592 YYFPRINTF (stderr
, "Ambiguity detected.\n");
1593 YYFPRINTF (stderr
, "Option 1,\n");
1594 yyreportTree (yyx0
, 2);
1595 YYFPRINTF (stderr
, "\nOption 2,\n");
1596 yyreportTree (yyx1
, 2);
1597 YYFPRINTF (stderr
, "\n");
1599 yyFail (yystack
][]b4_pure_args
[, YY_("syntax is ambiguous"));
1603 /** Resolve the ambiguity represented by OPTIONLIST, perform the indicated
1604 * actions, and return the result. */
1606 yyresolveValue (yySemanticOption
* yyoptionList
, yyGLRStack
* yystack
,
1607 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1609 yySemanticOption
* yybest
;
1610 yySemanticOption
** yypp
;
1613 yybest
= yyoptionList
;
1615 for (yypp
= &yyoptionList
->yynext
; *yypp
!= NULL
; )
1617 yySemanticOption
* yyp
= *yypp
;
1619 if (yyidenticalOptions (yybest
, yyp
))
1621 yymergeOptionSets (yybest
, yyp
);
1622 *yypp
= yyp
->yynext
;
1626 switch (yypreference (yybest
, yyp
))
1629 yyreportAmbiguity (yybest
, yyp
, yystack
]b4_pure_args
[);
1641 yypp
= &yyp
->yynext
;
1647 yySemanticOption
* yyp
;
1648 int yyprec
= yydprec
[yybest
->yyrule
];
1649 YYCHK (yyresolveAction (yybest
, yystack
, yyvalp
, yylocp
]b4_user_args
[));
1650 for (yyp
= yybest
->yynext
; yyp
!= NULL
; yyp
= yyp
->yynext
)
1652 if (yyprec
== yydprec
[yyp
->yyrule
])
1656 YYCHK (yyresolveAction (yyp
, yystack
, &yyval1
, &yydummy
]b4_user_args
[));
1657 yyuserMerge (yymerger
[yyp
->yyrule
], yyvalp
, &yyval1
);
1663 return yyresolveAction (yybest
, yystack
, yyvalp
, yylocp
]b4_user_args
[);
1667 yyresolveStack (yyGLRStack
* yystack
]b4_user_formals
[)
1669 if (yystack
->yysplitPoint
!= NULL
)
1674 for (yyn
= 0, yys
= yystack
->yytops
.yystates
[0];
1675 yys
!= yystack
->yysplitPoint
;
1676 yys
= yys
->yypred
, yyn
+= 1)
1678 YYCHK (yyresolveStates (yystack
->yytops
.yystates
[0], yyn
, yystack
1685 yycompressStack (yyGLRStack
* yystack
)
1687 yyGLRState
* yyp
, *yyq
, *yyr
;
1689 if (yystack
->yytops
.yysize
!= 1 || yystack
->yysplitPoint
== NULL
)
1692 for (yyp
= yystack
->yytops
.yystates
[0], yyq
= yyp
->yypred
, yyr
= NULL
;
1693 yyp
!= yystack
->yysplitPoint
;
1694 yyr
= yyp
, yyp
= yyq
, yyq
= yyp
->yypred
)
1697 yystack
->yyspaceLeft
+= yystack
->yynextFree
- yystack
->yyitems
;
1698 yystack
->yynextFree
= ((yyGLRStackItem
*) yystack
->yysplitPoint
) + 1;
1699 yystack
->yyspaceLeft
-= yystack
->yynextFree
- yystack
->yyitems
;
1700 yystack
->yysplitPoint
= NULL
;
1701 yystack
->yylastDeleted
= NULL
;
1705 yystack
->yynextFree
->yystate
= *yyr
;
1707 yystack
->yynextFree
->yystate
.yypred
= & yystack
->yynextFree
[-1].yystate
;
1708 yystack
->yytops
.yystates
[0] = &yystack
->yynextFree
->yystate
;
1709 yystack
->yynextFree
+= 1;
1710 yystack
->yyspaceLeft
-= 1;
1715 yyprocessOneStack (yyGLRStack
* yystack
, size_t yyk
,
1716 size_t yyposn
, YYSTYPE
* yylvalp
, YYLTYPE
* yyllocp
1720 const short int* yyconflicts
;
1722 yySymbol
* const yytokenp
= yystack
->yytokenp
;
1724 while (yystack
->yytops
.yystates
[yyk
] != NULL
)
1726 yyStateNum yystate
= yystack
->yytops
.yystates
[yyk
]->yylrState
;
1727 YYDPRINTF ((stderr
, "Stack %lu Entering state %d\n",
1728 (unsigned long int) yyk
, yystate
));
1730 YYASSERT (yystate
!= YYFINAL
);
1732 if (yyisDefaultedState (yystate
))
1734 yyrule
= yydefaultAction (yystate
);
1737 YYDPRINTF ((stderr
, "Stack %lu dies.\n",
1738 (unsigned long int) yyk
));
1739 yymarkStackDeleted (yystack
, yyk
);
1742 YYCHK (yyglrReduce (yystack
, yyk
, yyrule
, yyfalse
]b4_user_args
[));
1746 if (*yytokenp
== YYEMPTY
)
1748 YYDPRINTF ((stderr
, "Reading a token: "));
1750 *yytokenp
= YYTRANSLATE (yychar
);
1751 YY_SYMBOL_PRINT ("Next token is", *yytokenp
, yylvalp
, yyllocp
);
1753 yygetLRActions (yystate
, *yytokenp
, &yyaction
, &yyconflicts
);
1755 while (*yyconflicts
!= 0)
1757 size_t yynewStack
= yysplitStack (yystack
, yyk
);
1758 YYDPRINTF ((stderr
, "Splitting off stack %lu from %lu.\n",
1759 (unsigned long int) yynewStack
,
1760 (unsigned long int) yyk
));
1761 YYCHK (yyglrReduce (yystack
, yynewStack
,
1762 *yyconflicts
, yyfalse
]b4_user_args
[));
1763 YYCHK (yyprocessOneStack (yystack
, yynewStack
, yyposn
,
1764 yylvalp
, yyllocp
]b4_pure_args
[));
1768 if (yyisShiftAction (yyaction
))
1770 YYDPRINTF ((stderr
, "On stack %lu, ", (unsigned long int) yyk
));
1771 YY_SYMBOL_PRINT ("shifting", *yytokenp
, yylvalp
, yyllocp
);
1772 yyglrShift (yystack
, yyk
, yyaction
, yyposn
+1,
1774 YYDPRINTF ((stderr
, "Stack %lu now in state #%d\n",
1775 (unsigned long int) yyk
,
1776 yystack
->yytops
.yystates
[yyk
]->yylrState
));
1779 else if (yyisErrorAction (yyaction
))
1781 YYDPRINTF ((stderr
, "Stack %lu dies.\n",
1782 (unsigned long int) yyk
));
1783 yymarkStackDeleted (yystack
, yyk
);
1787 YYCHK (yyglrReduce (yystack
, yyk
, -yyaction
, yyfalse
]b4_user_args
[));
1794 yyreportSyntaxError (yyGLRStack
* yystack
,
1795 YYSTYPE
* yylvalp
, YYLTYPE
* yyllocp
]b4_user_formals
[)
1797 /* `Unused' warnings. */
1801 if (yystack
->yyerrState
== 0)
1804 yySymbol
* const yytokenp
= yystack
->yytokenp
;
1806 yyn
= yypact
[yystack
->yytops
.yystates
[0]->yylrState
];
1807 if (YYPACT_NINF
< yyn
&& yyn
< YYLAST
)
1809 size_t yysize0
= yytnamerr (NULL
, yytokenName (*yytokenp
));
1810 size_t yysize
= yysize0
;
1812 yybool yysize_overflow
= yyfalse
;
1814 enum { YYERROR_VERBOSE_ARGS_MAXIMUM
= 5 };
1815 char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
];
1819 static char const yyunexpected
[] = "syntax error, unexpected %s";
1820 static char const yyexpecting
[] = ", expecting %s";
1821 static char const yyor
[] = " or %s";
1822 char yyformat
[sizeof yyunexpected
1823 + sizeof yyexpecting
- 1
1824 + ((YYERROR_VERBOSE_ARGS_MAXIMUM
- 2)
1825 * (sizeof yyor
- 1))];
1826 char const *yyprefix
= yyexpecting
;
1828 /* Start YYX at -YYN if negative to avoid negative indexes in
1830 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
1832 /* Stay within bounds of both yycheck and yytname. */
1833 int yychecklim
= YYLAST
- yyn
;
1834 int yyxend
= yychecklim
< YYNTOKENS
? yychecklim
: YYNTOKENS
;
1837 yyarg
[0] = yytokenName (*yytokenp
);
1838 yyfmt
= yystpcpy (yyformat
, yyunexpected
);
1840 for (yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
1841 if (yycheck
[yyx
+ yyn
] == yyx
&& yyx
!= YYTERROR
)
1843 if (yycount
== YYERROR_VERBOSE_ARGS_MAXIMUM
)
1847 yyformat
[sizeof yyunexpected
- 1] = '\0';
1850 yyarg
[yycount
++] = yytokenName (yyx
);
1851 yysize1
= yysize
+ yytnamerr (NULL
, yytokenName (yyx
));
1852 yysize_overflow
|= yysize1
< yysize
;
1854 yyfmt
= yystpcpy (yyfmt
, yyprefix
);
1858 yyf
= YY_(yyformat
);
1859 yysize1
= yysize
+ strlen (yyf
);
1860 yysize_overflow
|= yysize1
< yysize
;
1863 if (!yysize_overflow
)
1864 yymsg
= (char *) YYMALLOC (yysize
);
1870 while ((*yyp
= *yyf
))
1872 if (*yyp
== '%' && yyf
[1] == 's' && yyi
< yycount
)
1874 yyp
+= yytnamerr (yyp
, yyarg
[yyi
++]);
1883 yyerror (]b4_lyyerror_args
[yymsg
);
1888 yyerror (]b4_lyyerror_args
[YY_("syntax error"));
1889 yyMemoryExhausted (yystack
);
1893 #endif /* YYERROR_VERBOSE */
1894 yyerror (]b4_lyyerror_args
[YY_("syntax error"));
1899 /* Recover from a syntax error on YYSTACK, assuming that YYTOKENP,
1900 YYLVALP, and YYLLOCP point to the syntactic category, semantic
1901 value, and location of the look-ahead. */
1903 yyrecoverSyntaxError (yyGLRStack
* yystack
,
1905 YYLTYPE
* YYOPTIONAL_LOC (yyllocp
)
1908 yySymbol
* const yytokenp
= yystack
->yytokenp
;
1912 if (yystack
->yyerrState
== 3)
1913 /* We just shifted the error token and (perhaps) took some
1914 reductions. Skip tokens until we can proceed. */
1917 if (*yytokenp
== YYEOF
)
1918 yyFail (yystack
][]b4_lpure_args
[, NULL
);
1919 if (*yytokenp
!= YYEMPTY
)
1921 /* We throw away the lookahead, but the error range
1922 of the shifted error token must take it into account. */
1923 yyGLRState
*yys
= yystack
->yytops
.yystates
[0];
1924 yyGLRStackItem yyerror_range
[3];
1925 yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;
1926 yyerror_range
[2].yystate
.yyloc
= *yyllocp
;
1927 YYLLOC_DEFAULT (yys
->yyloc
, yyerror_range
, 2);]])[
1928 yydestruct ("Error: discarding",
1929 *yytokenp
, yylvalp
]b4_location_if([, yyllocp
])[);
1931 YYDPRINTF ((stderr
, "Reading a token: "));
1933 *yytokenp
= YYTRANSLATE (yychar
);
1934 YY_SYMBOL_PRINT ("Next token is", *yytokenp
, yylvalp
, yyllocp
);
1935 yyj
= yypact
[yystack
->yytops
.yystates
[0]->yylrState
];
1936 if (yyis_pact_ninf (yyj
))
1939 if (yyj
< 0 || YYLAST
< yyj
|| yycheck
[yyj
] != *yytokenp
)
1941 if (yydefact
[yystack
->yytops
.yystates
[0]->yylrState
] != 0)
1944 else if (yytable
[yyj
] != 0 && ! yyis_table_ninf (yytable
[yyj
]))
1948 /* Reduce to one stack. */
1949 for (yyk
= 0; yyk
< yystack
->yytops
.yysize
; yyk
+= 1)
1950 if (yystack
->yytops
.yystates
[yyk
] != NULL
)
1952 if (yyk
>= yystack
->yytops
.yysize
)
1953 yyFail (yystack
][]b4_lpure_args
[, NULL
);
1954 for (yyk
+= 1; yyk
< yystack
->yytops
.yysize
; yyk
+= 1)
1955 yymarkStackDeleted (yystack
, yyk
);
1956 yyremoveDeletes (yystack
);
1957 yycompressStack (yystack
);
1959 /* Now pop stack until we find a state that shifts the error token. */
1960 yystack
->yyerrState
= 3;
1961 while (yystack
->yytops
.yystates
[0] != NULL
)
1963 yyGLRState
*yys
= yystack
->yytops
.yystates
[0];
1964 yyj
= yypact
[yys
->yylrState
];
1965 if (! yyis_pact_ninf (yyj
))
1968 if (0 <= yyj
&& yyj
<= YYLAST
&& yycheck
[yyj
] == YYTERROR
1969 && yyisShiftAction (yytable
[yyj
]))
1971 /* Shift the error token having adjusted its location. */
1972 YYLTYPE yyerrloc
;]b4_location_if([[
1973 yystack
->yyerror_range
[2].yystate
.yyloc
= *yyllocp
;
1974 YYLLOC_DEFAULT (yyerrloc
, yystack
->yyerror_range
, 2);]])[
1975 YY_SYMBOL_PRINT ("Shifting", yystos
[yytable
[yyj
]],
1976 yylvalp
, &yyerrloc
);
1977 yyglrShift (yystack
, 0, yytable
[yyj
],
1978 yys
->yyposn
, *yylvalp
, &yyerrloc
);
1979 yys
= yystack
->yytops
.yystates
[0];
1983 ]b4_location_if([[ yystack
->yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;]])[
1984 yydestruct ("Error: popping",
1985 yystos
[yys
->yylrState
],
1986 &yys
->yysemantics
.yysval
]b4_location_if([, &yys
->yyloc
])[);
1987 yystack
->yytops
.yystates
[0] = yys
->yypred
;
1988 yystack
->yynextFree
-= 1;
1989 yystack
->yyspaceLeft
+= 1;
1991 if (yystack
->yytops
.yystates
[0] == NULL
)
1992 yyFail (yystack
][]b4_lpure_args
[, NULL
);
1995 #define YYCHK1(YYE) \
2005 goto yyuser_error; \
2014 ]b4_c_ansi_function_def([yyparse
], [int], b4_parse_param
)[
2025 #define yychar (yystack.yyrawchar)
2028 YYSTYPE
* const yylvalp
= &yylval
;
2029 YYLTYPE
* const yyllocp
= &yylloc
;
2031 YYDPRINTF ((stderr
, "Starting parse\n"));
2034 yylval
= yyval_default
;
2036 #if YYLTYPE_IS_TRIVIAL
2037 yylloc
.first_line
= yylloc
.last_line
= 1;
2038 yylloc
.first_column
= yylloc
.last_column
= 0;
2041 m4_ifdef([b4_initial_action
], [
2042 m4_pushdef([b4_at_dollar
], [yylloc
])dnl
2043 m4_pushdef([b4_dollar_dollar
], [yylval
])dnl
2044 /* User initialization code. */
2046 m4_popdef([b4_dollar_dollar
])dnl
2047 m4_popdef([b4_at_dollar
])dnl
2048 /* Line __line__ of glr.c. */
2049 b4_syncline([@oline@
], [@ofile@
])])dnl
2051 if (! yyinitGLRStack (&yystack
, YYINITDEPTH
))
2052 goto yyexhaustedlab
;
2053 switch (setjmp (yystack
.yyexception_buffer
))
2055 case 1: goto yyabortlab
;
2056 case 2: goto yyexhaustedlab
;
2058 yystack
.yytokenp
= &yytoken
;
2059 yyglrShift (&yystack
, 0, 0, 0, yylval
, &yylloc
);
2064 /* For efficiency, we have two loops, the first of which is
2065 specialized to deterministic operation (single stack, no
2066 potential ambiguity). */
2072 const short int* yyconflicts
;
2074 yyStateNum yystate
= yystack
.yytops
.yystates
[0]->yylrState
;
2075 YYDPRINTF ((stderr
, "Entering state %d\n", yystate
));
2076 if (yystate
== YYFINAL
)
2078 if (yyisDefaultedState (yystate
))
2080 yyrule
= yydefaultAction (yystate
);
2083 ]b4_location_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= *yyllocp
;]])[
2084 yyreportSyntaxError (&yystack
, yylvalp
, yyllocp
]b4_user_args
[);
2087 YYCHK1 (yyglrReduce (&yystack
, 0, yyrule
, yytrue
]b4_user_args
[));
2091 if (yytoken
== YYEMPTY
)
2093 YYDPRINTF ((stderr
, "Reading a token: "));
2095 yytoken
= YYTRANSLATE (yychar
);
2096 YY_SYMBOL_PRINT ("Next token is", yytoken
, yylvalp
, yyllocp
);
2098 yygetLRActions (yystate
, yytoken
, &yyaction
, &yyconflicts
);
2099 if (*yyconflicts
!= 0)
2101 if (yyisShiftAction (yyaction
))
2103 YY_SYMBOL_PRINT ("Shifting", yytoken
, yylvalp
, yyllocp
);
2104 if (yytoken
!= YYEOF
)
2107 yyglrShift (&yystack
, 0, yyaction
, yyposn
, yylval
, yyllocp
);
2108 if (0 < yystack
.yyerrState
)
2109 yystack
.yyerrState
-= 1;
2111 else if (yyisErrorAction (yyaction
))
2113 ]b4_location_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= *yyllocp
;]])[
2114 yyreportSyntaxError (&yystack
, yylvalp
, yyllocp
]b4_user_args
[);
2118 YYCHK1 (yyglrReduce (&yystack
, 0, -yyaction
, yytrue
]b4_user_args
[));
2125 size_t yyn
= yystack
.yytops
.yysize
;
2126 for (yys
= 0; yys
< yyn
; yys
+= 1)
2127 YYCHK1 (yyprocessOneStack (&yystack
, yys
, yyposn
,
2128 yylvalp
, yyllocp
]b4_lpure_args
[));
2131 yyremoveDeletes (&yystack
);
2132 if (yystack
.yytops
.yysize
== 0)
2134 yyundeleteLastStack (&yystack
);
2135 if (yystack
.yytops
.yysize
== 0)
2136 yyFail (&yystack
][]b4_lpure_args
[, YY_("syntax error"));
2137 YYCHK1 (yyresolveStack (&yystack
]b4_user_args
[));
2138 YYDPRINTF ((stderr
, "Returning to deterministic operation.\n"));
2139 ]b4_location_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= *yyllocp
;]])[
2140 yyreportSyntaxError (&yystack
, yylvalp
, yyllocp
]b4_user_args
[);
2143 else if (yystack
.yytops
.yysize
== 1)
2145 YYCHK1 (yyresolveStack (&yystack
]b4_user_args
[));
2146 YYDPRINTF ((stderr
, "Returning to deterministic operation.\n"));
2147 yycompressStack (&yystack
);
2153 yyrecoverSyntaxError (&yystack
, yylvalp
, yyllocp
]b4_user_args
[);
2154 yyposn
= yystack
.yytops
.yystates
[0]->yyposn
;
2166 yyerror (]b4_lyyerror_args
[YY_("memory exhausted"));
2171 if (yytoken
!= YYEOF
&& yytoken
!= YYEMPTY
)
2172 yydestruct ("Error: discarding lookahead",
2173 yytoken
, yylvalp
]b4_location_if([, yyllocp
])[);
2175 /* If the stack is well-formed, pop the stack until it is empty,
2176 destroying its entries as we go. But free the stack regardless
2177 of whether it is well-formed. */
2178 if (yystack
.yyitems
)
2180 yyGLRState
** yystates
= yystack
.yytops
.yystates
;
2184 yyGLRState
*yys
= yystates
[0];
2185 ]b4_location_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;]]
2186 )[ yydestruct ("Error: popping",
2187 yystos
[yys
->yylrState
],
2188 &yys
->yysemantics
.yysval
]b4_location_if([, &yys
->yyloc
])[);
2189 yystates
[0] = yys
->yypred
;
2190 yystack
.yynextFree
-= 1;
2191 yystack
.yyspaceLeft
+= 1;
2193 yyfreeGLRStack (&yystack
);
2199 /* DEBUGGING ONLY */
2201 static void yypstack (yyGLRStack
* yystack
, size_t yyk
)
2202 __attribute__ ((__unused__
));
2203 static void yypdumpstack (yyGLRStack
* yystack
) __attribute__ ((__unused__
));
2206 yy_yypstack (yyGLRState
* yys
)
2210 yy_yypstack (yys
->yypred
);
2211 fprintf (stderr
, " -> ");
2213 fprintf (stderr
, "%d@@%lu", yys
->yylrState
, (unsigned long int) yys
->yyposn
);
2217 yypstates (yyGLRState
* yyst
)
2220 fprintf (stderr
, "<null>");
2223 fprintf (stderr
, "\n");
2227 yypstack (yyGLRStack
* yystack
, size_t yyk
)
2229 yypstates (yystack
->yytops
.yystates
[yyk
]);
2232 #define YYINDEX(YYX) \
2233 ((YYX) == NULL ? -1 : (yyGLRStackItem*) (YYX) - yystack->yyitems)
2237 yypdumpstack (yyGLRStack
* yystack
)
2239 yyGLRStackItem
* yyp
;
2241 for (yyp
= yystack
->yyitems
; yyp
< yystack
->yynextFree
; yyp
+= 1)
2243 fprintf (stderr
, "%3lu. ", (unsigned long int) (yyp
- yystack
->yyitems
));
2244 if (*(yybool
*) yyp
)
2246 fprintf (stderr
, "Res: %d, LR State: %d, posn: %lu, pred: %ld",
2247 yyp
->yystate
.yyresolved
, yyp
->yystate
.yylrState
,
2248 (unsigned long int) yyp
->yystate
.yyposn
,
2249 (long int) YYINDEX (yyp
->yystate
.yypred
));
2250 if (! yyp
->yystate
.yyresolved
)
2251 fprintf (stderr
, ", firstVal: %ld",
2252 (long int) YYINDEX (yyp
->yystate
.yysemantics
.yyfirstVal
));
2256 fprintf (stderr
, "Option. rule: %d, state: %ld, next: %ld",
2257 yyp
->yyoption
.yyrule
,
2258 (long int) YYINDEX (yyp
->yyoption
.yystate
),
2259 (long int) YYINDEX (yyp
->yyoption
.yynext
));
2261 fprintf (stderr
, "\n");
2263 fprintf (stderr
, "Tops:");
2264 for (yyi
= 0; yyi
< yystack
->yytops
.yysize
; yyi
+= 1)
2265 fprintf (stderr
, "%lu: %ld; ", (unsigned long int) yyi
,
2266 (long int) YYINDEX (yystack
->yytops
.yystates
[yyi
]));
2267 fprintf (stderr
, "\n");
2273 m4_if(b4_defines_flag
, 0, [],
2274 [@output @output_header_name@
2275 b4_copyright([Skeleton parser
for GLR parsing with Bison
],
2276 [2002, 2003, 2004, 2005])
2278 b4_token_defines(b4_tokens
)
2280 #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
2281 m4_ifdef([b4_stype
],
2282 [b4_syncline([b4_stype_line
], [b4_filename
])
2283 typedef union m4_bregexp(b4_stype
, [^{], [YYSTYPE
])b4_stype YYSTYPE
;
2284 /* Line __line__ of glr.c. */
2285 b4_syncline([@oline@
], [@ofile@
])],
2286 [typedef int YYSTYPE
;])
2287 # define YYSTYPE_IS_DECLARED 1
2288 # define YYSTYPE_IS_TRIVIAL 1
2292 [extern YYSTYPE b4_prefix
[]lval
;])
2294 #if ! defined (YYLTYPE) && ! defined (YYLTYPE_IS_DECLARED)
2295 typedef struct YYLTYPE
2306 # define YYLTYPE_IS_DECLARED 1
2307 # define YYLTYPE_IS_TRIVIAL 1
2310 b4_location_if([b4_pure_if([],
2311 [extern YYLTYPE b4_prefix
[]lloc
;])