3 # GLR skeleton for Bison
4 # Copyright (C) 2002, 2003, 2004, 2005, 2006 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 m4_include(b4_pkgdatadir
/[c
.m4
])
25 b4_complain([[non
-deterministic push parsers are
not yet supported
]])])
27 ## ---------------- ##
29 ## ---------------- ##
32 m4_define_default([b4_stack_depth_max
], [10000])
33 m4_define_default([b4_stack_depth_init
], [200])
37 ## ------------------------ ##
38 ## Pure/impure interfaces. ##
39 ## ------------------------ ##
44 # The possible parse-params formal arguments preceded by a comma.
46 # This is not shared with yacc.c in c.m4 because GLR relies on ISO C
47 # formal argument declarations.
48 m4_define([b4_user_formals
],
49 [m4_ifset([b4_parse_param
], [, b4_c_ansi_formals(b4_parse_param
)])])
54 # Accumule in b4_lex_param all the yylex arguments.
55 # Yes, this is quite ugly...
56 m4_define([b4_lex_param
],
57 m4_dquote(b4_pure_if([[[[YYSTYPE
*]], [[&yylval
]]][]dnl
58 b4_locations_if([, [[YYLTYPE
*], [&yylloc
]]])])dnl
59 m4_ifdef([b4_lex_param
], [, ]b4_lex_param
)))
64 # Optional effective arguments passed to yyerror: user args plus yylloc, and
66 m4_define([b4_yyerror_args
],
67 [b4_pure_if([b4_locations_if([yylocp
, ])])dnl
68 m4_ifset([b4_parse_param
], [b4_c_args(b4_parse_param
), ])])
73 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
74 m4_define([b4_lyyerror_args
],
75 [b4_pure_if([b4_locations_if([&yylloc
, ])])dnl
76 m4_ifset([b4_parse_param
], [b4_c_args(b4_parse_param
), ])])
81 # Same as b4_yyerror_args, but with a leading comma.
82 m4_define([b4_pure_args
],
83 [b4_pure_if([b4_locations_if([, yylocp
])])[]b4_user_args
])
88 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
89 m4_define([b4_lpure_args
],
90 [b4_pure_if([b4_locations_if([, &yylloc
])])[]b4_user_args
])
95 # Arguments passed to yyerror: user formals plus yylocp.
96 m4_define([b4_pure_formals
],
97 [b4_pure_if([b4_locations_if([, YYLTYPE
*yylocp
])])[]b4_user_formals
])
100 ## ----------------- ##
101 ## Semantic Values. ##
102 ## ----------------- ##
105 # b4_lhs_value([TYPE])
106 # --------------------
107 # Expansion of $<TYPE>$.
108 m4_define([b4_lhs_value
],
109 [((*yyvalp
)[]m4_ifval([$
1], [.$
1]))])
112 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
113 # --------------------------------------
114 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
116 m4_define([b4_rhs_value
],
117 [(((yyGLRStackItem
const *)yyvsp
)@
{YYFILL (($
2) - ($
1))@
}.yystate
.yysemantics
.yysval
[]m4_ifval([$
3], [.$
3]))])
128 m4_define([b4_lhs_location
],
132 # b4_rhs_location(RULE-LENGTH, NUM)
133 # ---------------------------------
134 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
136 m4_define([b4_rhs_location
],
137 [(((yyGLRStackItem
const *)yyvsp
)@
{YYFILL (($
2) - ($
1))@
}.yystate
.yyloc
)])
145 # We do want M4 expansion after # for CPP macros.
148 @
output(b4_parser_file_name@
)
149 b4_copyright([Skeleton implementation
for Bison GLR parsers in C
],
150 [2002, 2003, 2004, 2005, 2006])
152 /* C GLR parser skeleton written by Paul Hilfinger. */
156 b4_get_percent_code([[top]])[]dnl
157 m4_if(b4_prefix
, [yy
], [],
158 [/* Substitute the variable and function names. */
159 #define yyparse b4_prefix[]parse
160 #define yylex b4_prefix[]lex
161 #define yyerror b4_prefix[]error
162 #define yylval b4_prefix[]lval
163 #define yychar b4_prefix[]char
164 #define yydebug b4_prefix[]debug
165 #define yynerrs b4_prefix[]nerrs
166 #define yylloc b4_prefix[]lloc])[
168 /* Copy the first part of user declarations. */
169 ]b4_user_pre_prologue
171 dnl
# b4_shared_declarations
172 dnl
# ----------------------
173 dnl
# Declaration that might either go into the header (if --defines)
174 dnl
# or open coded in the parser body.
175 m4_define([b4_shared_declarations
],
176 [b4_get_percent_code([[requires]])[]dnl
178 b4_token_enums(b4_tokens
)
181 ]m4_ifdef([b4_stype
],
182 [[typedef union ]b4_union_name
[
186 # define YYSTYPE_IS_TRIVIAL 1]],
187 [m4_if(b4_tag_seen_flag
, 0,
188 [[typedef int YYSTYPE
;
189 # define YYSTYPE_IS_TRIVIAL 1]])])[
192 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
193 typedef struct YYLTYPE
204 # define YYLTYPE_IS_DECLARED 1
205 # define YYLTYPE_IS_TRIVIAL 1
208 ]b4_get_percent_code([[provides]])[]dnl
211 b4_defines_if([[#include "@basename(]b4_spec_defines_file[@)"]],
212 [b4_shared_declarations
])[
214 /* Enabling traces. */
216 # define YYDEBUG ]b4_debug_flag[
219 /* Enabling verbose error messages. */
220 #ifdef YYERROR_VERBOSE
221 # undef YYERROR_VERBOSE
222 # define YYERROR_VERBOSE 1
224 # define YYERROR_VERBOSE ]b4_error_verbose_flag[
227 /* Enabling the token table. */
228 #ifndef YYTOKEN_TABLE
229 # define YYTOKEN_TABLE ]b4_token_table[
232 /* Default (constant) value used for initialization for null
233 right-hand sides. Unlike the standard yacc.c template,
234 here we set the default value of $$ to a zeroed-out value.
235 Since the default value is undefined, this behavior is
236 technically correct. */
237 static YYSTYPE yyval_default
;
239 /* Copy the second part of user declarations. */
240 ]b4_user_post_prologue
241 b4_get_percent_code
[]dnl
250 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
251 # define YY_(msgid) dgettext ("bison-runtime", msgid)
255 # define YY_(msgid) msgid
259 /* Suppress unused-variable warnings by "using" E. */
260 #if ! defined lint || defined __GNUC__
261 # define YYUSE(e) ((void) (e))
263 # define YYUSE(e) /* empty */
266 /* Identity function, used to suppress warnings about constant conditions. */
270 ]b4_c_function_def([YYID
], [static int], [[int i
], [i
]])[
280 # define YYMALLOC malloc
283 # define YYREALLOC realloc
286 #define YYSIZEMAX ((size_t) -1)
291 typedef unsigned char yybool
;
298 # define YYJMP_BUF jmp_buf
299 # define YYSETJMP(env) setjmp (env)
300 # define YYLONGJMP(env, val) longjmp (env, val)
307 #ifndef __attribute__
308 /* This feature is available in gcc versions 2.5 and later. */
309 # if (! defined __GNUC__ || __GNUC__ < 2 \
310 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__)
311 # define __attribute__(Spec) /* empty */
315 ]b4_locations_if([#define YYOPTIONAL_LOC(Name) Name],[
317 # define YYOPTIONAL_LOC(Name) /* empty */
319 # define YYOPTIONAL_LOC(Name) Name __attribute__ ((__unused__))
323 # define YYASSERT(condition) ((void) ((condition) || (abort (), 0)))
326 /* YYFINAL -- State number of the termination state. */
327 #define YYFINAL ]b4_final_state_number[
328 /* YYLAST -- Last index in YYTABLE. */
329 #define YYLAST ]b4_last[
331 /* YYNTOKENS -- Number of terminals. */
332 #define YYNTOKENS ]b4_tokens_number[
333 /* YYNNTS -- Number of nonterminals. */
334 #define YYNNTS ]b4_nterms_number[
335 /* YYNRULES -- Number of rules. */
336 #define YYNRULES ]b4_rules_number[
337 /* YYNRULES -- Number of states. */
338 #define YYNSTATES ]b4_states_number[
339 /* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */
340 #define YYMAXRHS ]b4_r2_max[
341 /* YYMAXLEFT -- Maximum number of symbols to the left of a handle
342 accessed by $0, $-1, etc., in any rule. */
343 #define YYMAXLEFT ]b4_max_left_semantic_context[
345 /* YYTRANSLATE(X) -- Bison symbol number corresponding to X. */
346 #define YYUNDEFTOK ]b4_undef_token_number[
347 #define YYMAXUTOK ]b4_user_token_number_max[
349 #define YYTRANSLATE(YYX) \
350 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
352 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
353 static const ]b4_int_type_for([b4_translate
])[ yytranslate
[] =
359 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
361 static const ]b4_int_type_for([b4_prhs
])[ yyprhs
[] =
366 /* YYRHS -- A `-1'-separated list of the rules' RHS. */
367 static const ]b4_int_type_for([b4_rhs
])[ yyrhs
[] =
372 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */
373 static const ]b4_int_type_for([b4_rline
])[ yyrline
[] =
379 #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
380 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
381 First, the terminals, then, starting at YYNTOKENS, nonterminals. */
382 static const char *const yytname
[] =
388 /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
389 static const ]b4_int_type_for([b4_r1
])[ yyr1
[] =
394 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
395 static const ]b4_int_type_for([b4_r2
])[ yyr2
[] =
400 /* YYDPREC[RULE-NUM] -- Dynamic precedence of rule #RULE-NUM (0 if none). */
401 static const ]b4_int_type_for([b4_dprec
])[ yydprec
[] =
406 /* YYMERGER[RULE-NUM] -- Index of merging function for rule #RULE-NUM. */
407 static const ]b4_int_type_for([b4_merger
])[ yymerger
[] =
412 /* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
413 doesn't specify something else to do. Zero means the default is an
415 static const ]b4_int_type_for([b4_defact
])[ yydefact
[] =
420 /* YYPDEFGOTO[NTERM-NUM]. */
421 static const ]b4_int_type_for([b4_defgoto
])[ yydefgoto
[] =
426 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
428 #define YYPACT_NINF ]b4_pact_ninf[
429 static const ]b4_int_type_for([b4_pact
])[ yypact
[] =
434 /* YYPGOTO[NTERM-NUM]. */
435 static const ]b4_int_type_for([b4_pgoto
])[ yypgoto
[] =
440 /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
441 positive, shift that token. If negative, reduce the rule which
442 number is the opposite. If zero, do what YYDEFACT says.
443 If YYTABLE_NINF, syntax error. */
444 #define YYTABLE_NINF ]b4_table_ninf[
445 static const ]b4_int_type_for([b4_table
])[ yytable
[] =
450 /* YYCONFLP[YYPACT[STATE-NUM]] -- Pointer into YYCONFL of start of
451 list of conflicting reductions corresponding to action entry for
452 state STATE-NUM in yytable. 0 means no conflicts. The list in
453 yyconfl is terminated by a rule number of 0. */
454 static const ]b4_int_type_for([b4_conflict_list_heads
])[ yyconflp
[] =
456 ]b4_conflict_list_heads
[
459 /* YYCONFL[I] -- lists of conflicting rule numbers, each terminated by
460 0, pointed into by YYCONFLP. */
461 ]dnl Do
not use b4_int_type_for here
, since there are places where
462 dnl pointers onto yyconfl are taken
, which type is
"short int *".
463 dnl We probably ought to introduce a type
for confl
.
464 [static const short int yyconfl
[] =
466 ]b4_conflicting_rules
[
469 static const ]b4_int_type_for([b4_check
])[ yycheck
[] =
474 /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
475 symbol of state STATE-NUM. */
476 static const ]b4_int_type_for([b4_stos
])[ yystos
[] =
482 /* Prevent warning if -Wmissing-prototypes. */
483 ]b4_c_ansi_function_decl([yyparse
], [int], b4_parse_param
)[
485 /* Error token number */
488 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
489 If N is 0, then set CURRENT to the empty location which ends
490 the previous symbol: RHS[0] (always defined). */
493 #define YYRHSLOC(Rhs, K) ((Rhs)[K].yystate.yyloc)
494 #ifndef YYLLOC_DEFAULT
495 # define YYLLOC_DEFAULT(Current, Rhs, N) \
499 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
500 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
501 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
502 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
506 (Current).first_line = (Current).last_line = \
507 YYRHSLOC (Rhs, 0).last_line; \
508 (Current).first_column = (Current).last_column = \
509 YYRHSLOC (Rhs, 0).last_column; \
513 /* YY_LOCATION_PRINT -- Print the location on the stream.
514 This macro was not mandated originally: define only if we know
515 we won't break user code: when these are the locations we know. */
517 # define YY_LOCATION_PRINT(File, Loc) \
518 fprintf (File, "%d.%d-%d.%d", \
519 (Loc).first_line, (Loc).first_column, \
520 (Loc).last_line, (Loc).last_column)
523 #ifndef YYLLOC_DEFAULT
524 # define YYLLOC_DEFAULT(Current, Rhs, N) ((void) 0)
528 #ifndef YY_LOCATION_PRINT
529 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
533 /* YYLEX -- calling `yylex' with the right arguments. */
534 #define YYLEX ]b4_c_function_call([yylex], [int], b4_lex_param)[
539 #define yynerrs (yystackp->yyerrcnt)
541 #define yychar (yystackp->yyrawchar)
543 #define yylval (yystackp->yyval)
545 #define yylloc (yystackp->yyloc)
546 m4_if(b4_prefix
[], [yy
], [],
547 [#define b4_prefix[]nerrs yynerrs
548 #define b4_prefix[]char yychar
549 #define b4_prefix[]lval yylval
550 #define b4_prefix[]lloc yylloc])],
558 static const int YYEOF
= 0;
559 static const int YYEMPTY
= -2;
561 typedef enum { yyok
, yyaccept
, yyabort
, yyerr
} YYRESULTTAG
;
564 do { YYRESULTTAG yyflag = YYE; if (yyflag != yyok) return yyflag; } \
570 # define YYFPRINTF fprintf
573 # define YYDPRINTF(Args) \
579 ]b4_yy_symbol_print_generate([b4_c_ansi_function_def
])[
581 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
585 YYFPRINTF (stderr, "%s ", Title); \
586 yy_symbol_print (stderr, Type, \
587 Value]b4_locations_if([, Location])[]b4_user_args[); \
588 YYFPRINTF (stderr, "\n"); \
592 /* Nonzero means print parse trace. It is left uninitialized so that
593 multiple parsers can coexist. */
598 # define YYDPRINTF(Args)
599 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
601 #endif /* !YYDEBUG */
603 /* YYINITDEPTH -- initial size of the parser's stacks. */
605 # define YYINITDEPTH ]b4_stack_depth_init[
608 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
609 if the built-in stack extension method is used).
611 Do not make this value too large; the results are undefined if
612 SIZE_MAX < YYMAXDEPTH * sizeof (GLRStackItem)
613 evaluated with infinite-precision integer arithmetic. */
616 # define YYMAXDEPTH ]b4_stack_depth_max[
619 /* Minimum number of free items on the stack allowed after an
620 allocation. This is to allow allocation and initialization
621 to be completed by functions that call yyexpandGLRStack before the
622 stack is expanded, thus insuring that all necessary pointers get
623 properly redirected to new data. */
626 #ifndef YYSTACKEXPANDABLE
627 # if (! defined __cplusplus \
628 || (]b4_locations_if([[defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
629 && ]])[defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))
630 # define YYSTACKEXPANDABLE 1
632 # define YYSTACKEXPANDABLE 0
636 #if YYSTACKEXPANDABLE
637 # define YY_RESERVE_GLRSTACK(Yystack) \
639 if (Yystack->yyspaceLeft < YYHEADROOM) \
640 yyexpandGLRStack (Yystack); \
643 # define YY_RESERVE_GLRSTACK(Yystack) \
645 if (Yystack->yyspaceLeft < YYHEADROOM) \
646 yyMemoryExhausted (Yystack); \
654 # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
655 # define yystpcpy stpcpy
657 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
660 yystpcpy (char *yydest
, const char *yysrc
)
663 const char *yys
= yysrc
;
665 while ((*yyd
++ = *yys
++) != '\0')
674 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
675 quotes and backslashes, so that it's suitable for yyerror. The
676 heuristic is that double-quoting is unnecessary unless the string
677 contains an apostrophe, a comma, or backslash (other than
678 backslash-backslash). YYSTR is taken from yytname. If YYRES is
679 null, do not copy; instead, return the length of what the result
682 yytnamerr (char *yyres
, const char *yystr
)
687 char const *yyp
= yystr
;
694 goto do_not_strip_quotes
;
698 goto do_not_strip_quotes
;
711 do_not_strip_quotes
: ;
715 return strlen (yystr
);
717 return yystpcpy (yyres
, yystr
) - yyres
;
721 #endif /* !YYERROR_VERBOSE */
723 /** State numbers, as in LALR(1) machine */
724 typedef int yyStateNum
;
726 /** Rule numbers, as in LALR(1) machine */
727 typedef int yyRuleNum
;
729 /** Grammar symbol */
730 typedef short int yySymbol
;
732 /** Item references, as in LALR(1) machine */
733 typedef short int yyItemNum
;
735 typedef struct yyGLRState yyGLRState
;
736 typedef struct yyGLRStateSet yyGLRStateSet
;
737 typedef struct yySemanticOption yySemanticOption
;
738 typedef union yyGLRStackItem yyGLRStackItem
;
739 typedef struct yyGLRStack yyGLRStack
;
742 /** Type tag: always true. */
744 /** Type tag for yysemantics. If true, yysval applies, otherwise
745 * yyfirstVal applies. */
747 /** Number of corresponding LALR(1) machine state. */
748 yyStateNum yylrState
;
749 /** Preceding state in this stack */
751 /** Source position of the first token produced by my symbol */
754 /** First in a chain of alternative reductions producing the
755 * non-terminal corresponding to this state, threaded through
757 yySemanticOption
* yyfirstVal
;
758 /** Semantic value for this state. */
761 /** Source location for this state. */
765 struct yyGLRStateSet
{
766 yyGLRState
** yystates
;
767 /** During nondeterministic operation, yylookaheadNeeds tracks which
768 * stacks have actually needed the current lookahead. During deterministic
769 * operation, yylookaheadNeeds[0] is not maintained since it would merely
770 * duplicate yychar != YYEMPTY. */
771 yybool
* yylookaheadNeeds
;
772 size_t yysize
, yycapacity
;
775 struct yySemanticOption
{
776 /** Type tag: always false. */
778 /** Rule number for this reduction */
780 /** The last RHS state in the list of states to be reduced. */
782 /** The lookahead for this reduction. */
786 /** Next sibling in chain of options. To facilitate merging,
787 * options are chained in decreasing order by address. */
788 yySemanticOption
* yynext
;
791 /** Type of the items in the GLR stack. The yyisState field
792 * indicates which item of the union is valid. */
793 union yyGLRStackItem
{
795 yySemanticOption yyoption
;
800 ]b4_locations_if([[ /* To compute the location of the error token. */
801 yyGLRStackItem yyerror_range
[3];]])[
809 YYJMP_BUF yyexception_buffer
;
810 yyGLRStackItem
* yyitems
;
811 yyGLRStackItem
* yynextFree
;
813 yyGLRState
* yysplitPoint
;
814 yyGLRState
* yylastDeleted
;
815 yyGLRStateSet yytops
;
818 #if YYSTACKEXPANDABLE
819 static void yyexpandGLRStack (yyGLRStack
* yystackp
);
822 static void yyFail (yyGLRStack
* yystackp
]b4_pure_formals
[, const char* yymsg
)
823 __attribute__ ((__noreturn__
));
825 yyFail (yyGLRStack
* yystackp
]b4_pure_formals
[, const char* yymsg
)
828 yyerror (]b4_yyerror_args
[yymsg
);
829 YYLONGJMP (yystackp
->yyexception_buffer
, 1);
832 static void yyMemoryExhausted (yyGLRStack
* yystackp
)
833 __attribute__ ((__noreturn__
));
835 yyMemoryExhausted (yyGLRStack
* yystackp
)
837 YYLONGJMP (yystackp
->yyexception_buffer
, 2);
840 #if YYDEBUG || YYERROR_VERBOSE
841 /** A printable representation of TOKEN. */
842 static inline const char*
843 yytokenName (yySymbol yytoken
)
845 if (yytoken
== YYEMPTY
)
848 return yytname
[yytoken
];
852 /** Fill in YYVSP[YYLOW1 .. YYLOW0-1] from the chain of states starting
853 * at YYVSP[YYLOW0].yystate.yypred. Leaves YYVSP[YYLOW1].yystate.yypred
854 * containing the pointer to the next state in the chain. */
855 static void yyfillin (yyGLRStackItem
*, int, int) __attribute__ ((__unused__
));
857 yyfillin (yyGLRStackItem
*yyvsp
, int yylow0
, int yylow1
)
861 s
= yyvsp
[yylow0
].yystate
.yypred
;
862 for (i
= yylow0
-1; i
>= yylow1
; i
-= 1)
864 YYASSERT (s
->yyresolved
);
865 yyvsp
[i
].yystate
.yyresolved
= yytrue
;
866 yyvsp
[i
].yystate
.yysemantics
.yysval
= s
->yysemantics
.yysval
;
867 yyvsp
[i
].yystate
.yyloc
= s
->yyloc
;
868 s
= yyvsp
[i
].yystate
.yypred
= s
->yypred
;
872 /* Do nothing if YYNORMAL or if *YYLOW <= YYLOW1. Otherwise, fill in
873 * YYVSP[YYLOW1 .. *YYLOW-1] as in yyfillin and set *YYLOW = YYLOW1.
874 * For convenience, always return YYLOW1. */
875 static inline int yyfill (yyGLRStackItem
*, int *, int, yybool
)
876 __attribute__ ((__unused__
));
878 yyfill (yyGLRStackItem
*yyvsp
, int *yylow
, int yylow1
, yybool yynormal
)
880 if (!yynormal
&& yylow1
< *yylow
)
882 yyfillin (yyvsp
, *yylow
, yylow1
);
888 /** Perform user action for rule number YYN, with RHS length YYRHSLEN,
889 * and top stack item YYVSP. YYLVALP points to place to put semantic
890 * value ($$), and yylocp points to place for location information
891 * (@@$). Returns yyok for normal return, yyaccept for YYACCEPT,
892 * yyerr for YYERROR, yyabort for YYABORT. */
893 /*ARGSUSED*/ static YYRESULTTAG
894 yyuserAction (yyRuleNum yyn
, int yyrhslen
, yyGLRStackItem
* yyvsp
,
896 YYLTYPE
* YYOPTIONAL_LOC (yylocp
),
900 yybool yynormal
__attribute__ ((__unused__
)) =
901 (yystackp
->yysplitPoint
== NULL
);
903 ]b4_parse_param_use
[]dnl
905 # define yyerrok (yystackp->yyerrState = 0)
907 # define YYACCEPT return yyaccept
909 # define YYABORT return yyabort
911 # define YYERROR return yyerrok, yyerr
913 # define YYRECOVERING() (yystackp->yyerrState != 0)
915 # define yyclearin (yychar = YYEMPTY)
917 # define YYFILL(N) yyfill (yyvsp, &yylow, N, yynormal)
919 # define YYBACKUP(Token, Value) \
920 return yyerror (]b4_yyerror_args[YY_("syntax error: cannot back up")), \
925 *yyvalp
= yyval_default
;
927 *yyvalp
= yyvsp
[YYFILL (1-yyrhslen
)].yystate
.yysemantics
.yysval
;
928 YYLLOC_DEFAULT ((*yylocp
), (yyvsp
- yyrhslen
), yyrhslen
);
929 ]b4_locations_if([[ yystackp
->yyerror_range
[1].yystate
.yyloc
= *yylocp
;
948 /*ARGSUSED*/ static void
949 yyuserMerge (int yyn
, YYSTYPE
* yy0
, YYSTYPE
* yy1
)
961 /* Bison grammar-table manipulation. */
963 ]b4_yydestruct_generate([b4_c_ansi_function_def
])[
965 /** Number of symbols composing the right hand side of rule #RULE. */
967 yyrhsLength (yyRuleNum yyrule
)
973 yydestroyGLRState (char const *yymsg
, yyGLRState
*yys
]b4_user_formals
[)
976 yydestruct (yymsg
, yystos
[yys
->yylrState
],
977 &yys
->yysemantics
.yysval
]b4_locations_if([, &yys
->yyloc
])[]b4_user_args
[);
983 if (yys
->yysemantics
.yyfirstVal
)
984 YYFPRINTF (stderr
, "%s unresolved ", yymsg
);
986 YYFPRINTF (stderr
, "%s incomplete ", yymsg
);
987 yy_symbol_print (stderr
, yystos
[yys
->yylrState
],
988 NULL
]b4_locations_if([, &yys
->yyloc
])[]b4_user_args
[);
989 YYFPRINTF (stderr
, "\n");
993 if (yys
->yysemantics
.yyfirstVal
)
995 yySemanticOption
*yyoption
= yys
->yysemantics
.yyfirstVal
;
998 for (yyrh
= yyoption
->yystate
, yyn
= yyrhsLength (yyoption
->yyrule
);
1000 yyrh
= yyrh
->yypred
, yyn
-= 1)
1001 yydestroyGLRState (yymsg
, yyrh
]b4_user_args
[);
1006 /** Left-hand-side symbol for rule #RULE. */
1007 static inline yySymbol
1008 yylhsNonterm (yyRuleNum yyrule
)
1010 return yyr1
[yyrule
];
1013 #define yyis_pact_ninf(yystate) \
1014 ]m4_if(m4_eval(b4_pact_ninf < b4_pact_min), [1],
1016 [((yystate
) == YYPACT_NINF
)])[
1018 /** True iff LR state STATE has only a default reduction (regardless
1020 static inline yybool
1021 yyisDefaultedState (yyStateNum yystate
)
1023 return yyis_pact_ninf (yypact
[yystate
]);
1026 /** The default reduction for STATE, assuming it has one. */
1027 static inline yyRuleNum
1028 yydefaultAction (yyStateNum yystate
)
1030 return yydefact
[yystate
];
1033 #define yyis_table_ninf(yytable_value) \
1034 ]m4_if(m4_eval(b4_table_ninf < b4_table_min), [1],
1036 [((yytable_value
) == YYTABLE_NINF
)])[
1038 /** Set *YYACTION to the action to take in YYSTATE on seeing YYTOKEN.
1040 * R < 0: Reduce on rule -R.
1042 * R > 0: Shift to state R.
1043 * Set *CONFLICTS to a pointer into yyconfl to 0-terminated list of
1044 * conflicting reductions.
1047 yygetLRActions (yyStateNum yystate
, int yytoken
,
1048 int* yyaction
, const short int** yyconflicts
)
1050 int yyindex
= yypact
[yystate
] + yytoken
;
1051 if (yyindex
< 0 || YYLAST
< yyindex
|| yycheck
[yyindex
] != yytoken
)
1053 *yyaction
= -yydefact
[yystate
];
1054 *yyconflicts
= yyconfl
;
1056 else if (! yyis_table_ninf (yytable
[yyindex
]))
1058 *yyaction
= yytable
[yyindex
];
1059 *yyconflicts
= yyconfl
+ yyconflp
[yyindex
];
1064 *yyconflicts
= yyconfl
+ yyconflp
[yyindex
];
1068 static inline yyStateNum
1069 yyLRgotoState (yyStateNum yystate
, yySymbol yylhs
)
1072 yyr
= yypgoto
[yylhs
- YYNTOKENS
] + yystate
;
1073 if (0 <= yyr
&& yyr
<= YYLAST
&& yycheck
[yyr
] == yystate
)
1074 return yytable
[yyr
];
1076 return yydefgoto
[yylhs
- YYNTOKENS
];
1079 static inline yybool
1080 yyisShiftAction (int yyaction
)
1082 return 0 < yyaction
;
1085 static inline yybool
1086 yyisErrorAction (int yyaction
)
1088 return yyaction
== 0;
1093 /** Return a fresh GLRStackItem. Callers should call
1094 * YY_RESERVE_GLRSTACK afterwards to make sure there is sufficient
1097 static inline yyGLRStackItem
*
1098 yynewGLRStackItem (yyGLRStack
* yystackp
, yybool yyisState
)
1100 yyGLRStackItem
* yynewItem
= yystackp
->yynextFree
;
1101 yystackp
->yyspaceLeft
-= 1;
1102 yystackp
->yynextFree
+= 1;
1103 yynewItem
->yystate
.yyisState
= yyisState
;
1107 /** Add a new semantic action that will execute the action for rule
1108 * RULENUM on the semantic values in RHS to the list of
1109 * alternative actions for STATE. Assumes that RHS comes from
1110 * stack #K of *STACKP. */
1112 yyaddDeferredAction (yyGLRStack
* yystackp
, size_t yyk
, yyGLRState
* yystate
,
1113 yyGLRState
* rhs
, yyRuleNum yyrule
)
1115 yySemanticOption
* yynewOption
=
1116 &yynewGLRStackItem (yystackp
, yyfalse
)->yyoption
;
1117 yynewOption
->yystate
= rhs
;
1118 yynewOption
->yyrule
= yyrule
;
1119 if (yystackp
->yytops
.yylookaheadNeeds
[yyk
])
1121 yynewOption
->yyrawchar
= yychar
;
1122 yynewOption
->yyval
= yylval
;
1123 yynewOption
->yyloc
= yylloc
;
1126 yynewOption
->yyrawchar
= YYEMPTY
;
1127 yynewOption
->yynext
= yystate
->yysemantics
.yyfirstVal
;
1128 yystate
->yysemantics
.yyfirstVal
= yynewOption
;
1130 YY_RESERVE_GLRSTACK (yystackp
);
1135 /** Initialize SET to a singleton set containing an empty stack. */
1137 yyinitStateSet (yyGLRStateSet
* yyset
)
1140 yyset
->yycapacity
= 16;
1141 yyset
->yystates
= (yyGLRState
**) YYMALLOC (16 * sizeof yyset
->yystates
[0]);
1142 if (! yyset
->yystates
)
1144 yyset
->yystates
[0] = NULL
;
1145 yyset
->yylookaheadNeeds
=
1146 (yybool
*) YYMALLOC (16 * sizeof yyset
->yylookaheadNeeds
[0]);
1147 if (! yyset
->yylookaheadNeeds
)
1149 YYFREE (yyset
->yystates
);
1155 static void yyfreeStateSet (yyGLRStateSet
* yyset
)
1157 YYFREE (yyset
->yystates
);
1158 YYFREE (yyset
->yylookaheadNeeds
);
1161 /** Initialize STACK to a single empty stack, with total maximum
1162 * capacity for all stacks of SIZE. */
1164 yyinitGLRStack (yyGLRStack
* yystackp
, size_t yysize
)
1166 yystackp
->yyerrState
= 0;
1168 yystackp
->yyspaceLeft
= yysize
;
1170 (yyGLRStackItem
*) YYMALLOC (yysize
* sizeof yystackp
->yynextFree
[0]);
1171 if (!yystackp
->yyitems
)
1173 yystackp
->yynextFree
= yystackp
->yyitems
;
1174 yystackp
->yysplitPoint
= NULL
;
1175 yystackp
->yylastDeleted
= NULL
;
1176 return yyinitStateSet (&yystackp
->yytops
);
1180 #if YYSTACKEXPANDABLE
1181 # define YYRELOC(YYFROMITEMS,YYTOITEMS,YYX,YYTYPE) \
1182 &((YYTOITEMS) - ((YYFROMITEMS) - (yyGLRStackItem*) (YYX)))->YYTYPE
1184 /** If STACK is expandable, extend it. WARNING: Pointers into the
1185 stack from outside should be considered invalid after this call.
1186 We always expand when there are 1 or fewer items left AFTER an
1187 allocation, so that we can avoid having external pointers exist
1188 across an allocation. */
1190 yyexpandGLRStack (yyGLRStack
* yystackp
)
1192 yyGLRStackItem
* yynewItems
;
1193 yyGLRStackItem
* yyp0
, *yyp1
;
1194 size_t yysize
, yynewSize
;
1196 yysize
= yystackp
->yynextFree
- yystackp
->yyitems
;
1197 if (YYMAXDEPTH
- YYHEADROOM
< yysize
)
1198 yyMemoryExhausted (yystackp
);
1199 yynewSize
= 2*yysize
;
1200 if (YYMAXDEPTH
< yynewSize
)
1201 yynewSize
= YYMAXDEPTH
;
1202 yynewItems
= (yyGLRStackItem
*) YYMALLOC (yynewSize
* sizeof yynewItems
[0]);
1204 yyMemoryExhausted (yystackp
);
1205 for (yyp0
= yystackp
->yyitems
, yyp1
= yynewItems
, yyn
= yysize
;
1207 yyn
-= 1, yyp0
+= 1, yyp1
+= 1)
1210 if (*(yybool
*) yyp0
)
1212 yyGLRState
* yys0
= &yyp0
->yystate
;
1213 yyGLRState
* yys1
= &yyp1
->yystate
;
1214 if (yys0
->yypred
!= NULL
)
1216 YYRELOC (yyp0
, yyp1
, yys0
->yypred
, yystate
);
1217 if (! yys0
->yyresolved
&& yys0
->yysemantics
.yyfirstVal
!= NULL
)
1218 yys1
->yysemantics
.yyfirstVal
=
1219 YYRELOC(yyp0
, yyp1
, yys0
->yysemantics
.yyfirstVal
, yyoption
);
1223 yySemanticOption
* yyv0
= &yyp0
->yyoption
;
1224 yySemanticOption
* yyv1
= &yyp1
->yyoption
;
1225 if (yyv0
->yystate
!= NULL
)
1226 yyv1
->yystate
= YYRELOC (yyp0
, yyp1
, yyv0
->yystate
, yystate
);
1227 if (yyv0
->yynext
!= NULL
)
1228 yyv1
->yynext
= YYRELOC (yyp0
, yyp1
, yyv0
->yynext
, yyoption
);
1231 if (yystackp
->yysplitPoint
!= NULL
)
1232 yystackp
->yysplitPoint
= YYRELOC (yystackp
->yyitems
, yynewItems
,
1233 yystackp
->yysplitPoint
, yystate
);
1235 for (yyn
= 0; yyn
< yystackp
->yytops
.yysize
; yyn
+= 1)
1236 if (yystackp
->yytops
.yystates
[yyn
] != NULL
)
1237 yystackp
->yytops
.yystates
[yyn
] =
1238 YYRELOC (yystackp
->yyitems
, yynewItems
,
1239 yystackp
->yytops
.yystates
[yyn
], yystate
);
1240 YYFREE (yystackp
->yyitems
);
1241 yystackp
->yyitems
= yynewItems
;
1242 yystackp
->yynextFree
= yynewItems
+ yysize
;
1243 yystackp
->yyspaceLeft
= yynewSize
- yysize
;
1248 yyfreeGLRStack (yyGLRStack
* yystackp
)
1250 YYFREE (yystackp
->yyitems
);
1251 yyfreeStateSet (&yystackp
->yytops
);
1254 /** Assuming that S is a GLRState somewhere on STACK, update the
1255 * splitpoint of STACK, if needed, so that it is at least as deep as
1258 yyupdateSplit (yyGLRStack
* yystackp
, yyGLRState
* yys
)
1260 if (yystackp
->yysplitPoint
!= NULL
&& yystackp
->yysplitPoint
> yys
)
1261 yystackp
->yysplitPoint
= yys
;
1264 /** Invalidate stack #K in STACK. */
1266 yymarkStackDeleted (yyGLRStack
* yystackp
, size_t yyk
)
1268 if (yystackp
->yytops
.yystates
[yyk
] != NULL
)
1269 yystackp
->yylastDeleted
= yystackp
->yytops
.yystates
[yyk
];
1270 yystackp
->yytops
.yystates
[yyk
] = NULL
;
1273 /** Undelete the last stack that was marked as deleted. Can only be
1274 done once after a deletion, and only when all other stacks have
1277 yyundeleteLastStack (yyGLRStack
* yystackp
)
1279 if (yystackp
->yylastDeleted
== NULL
|| yystackp
->yytops
.yysize
!= 0)
1281 yystackp
->yytops
.yystates
[0] = yystackp
->yylastDeleted
;
1282 yystackp
->yytops
.yysize
= 1;
1283 YYDPRINTF ((stderr
, "Restoring last deleted stack as stack #0.\n"));
1284 yystackp
->yylastDeleted
= NULL
;
1288 yyremoveDeletes (yyGLRStack
* yystackp
)
1292 while (yyj
< yystackp
->yytops
.yysize
)
1294 if (yystackp
->yytops
.yystates
[yyi
] == NULL
)
1298 YYDPRINTF ((stderr
, "Removing dead stacks.\n"));
1300 yystackp
->yytops
.yysize
-= 1;
1304 yystackp
->yytops
.yystates
[yyj
] = yystackp
->yytops
.yystates
[yyi
];
1305 /* In the current implementation, it's unnecessary to copy
1306 yystackp->yytops.yylookaheadNeeds[yyi] since, after
1307 yyremoveDeletes returns, the parser immediately either enters
1308 deterministic operation or shifts a token. However, it doesn't
1309 hurt, and the code might evolve to need it. */
1310 yystackp
->yytops
.yylookaheadNeeds
[yyj
] =
1311 yystackp
->yytops
.yylookaheadNeeds
[yyi
];
1314 YYDPRINTF ((stderr
, "Rename stack %lu -> %lu.\n",
1315 (unsigned long int) yyi
, (unsigned long int) yyj
));
1323 /** Shift to a new state on stack #K of STACK, corresponding to LR state
1324 * LRSTATE, at input position POSN, with (resolved) semantic value SVAL. */
1326 yyglrShift (yyGLRStack
* yystackp
, size_t yyk
, yyStateNum yylrState
,
1328 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
)
1330 yyGLRState
* yynewState
= &yynewGLRStackItem (yystackp
, yytrue
)->yystate
;
1332 yynewState
->yylrState
= yylrState
;
1333 yynewState
->yyposn
= yyposn
;
1334 yynewState
->yyresolved
= yytrue
;
1335 yynewState
->yypred
= yystackp
->yytops
.yystates
[yyk
];
1336 yynewState
->yysemantics
.yysval
= *yyvalp
;
1337 yynewState
->yyloc
= *yylocp
;
1338 yystackp
->yytops
.yystates
[yyk
] = yynewState
;
1340 YY_RESERVE_GLRSTACK (yystackp
);
1343 /** Shift stack #K of YYSTACK, to a new state corresponding to LR
1344 * state YYLRSTATE, at input position YYPOSN, with the (unresolved)
1345 * semantic value of YYRHS under the action for YYRULE. */
1347 yyglrShiftDefer (yyGLRStack
* yystackp
, size_t yyk
, yyStateNum yylrState
,
1348 size_t yyposn
, yyGLRState
* rhs
, yyRuleNum yyrule
)
1350 yyGLRState
* yynewState
= &yynewGLRStackItem (yystackp
, yytrue
)->yystate
;
1352 yynewState
->yylrState
= yylrState
;
1353 yynewState
->yyposn
= yyposn
;
1354 yynewState
->yyresolved
= yyfalse
;
1355 yynewState
->yypred
= yystackp
->yytops
.yystates
[yyk
];
1356 yynewState
->yysemantics
.yyfirstVal
= NULL
;
1357 yystackp
->yytops
.yystates
[yyk
] = yynewState
;
1359 /* Invokes YY_RESERVE_GLRSTACK. */
1360 yyaddDeferredAction (yystackp
, yyk
, yynewState
, rhs
, yyrule
);
1363 /** Pop the symbols consumed by reduction #RULE from the top of stack
1364 * #K of STACK, and perform the appropriate semantic action on their
1365 * semantic values. Assumes that all ambiguities in semantic values
1366 * have been previously resolved. Set *VALP to the resulting value,
1367 * and *LOCP to the computed location (if any). Return value is as
1368 * for userAction. */
1369 static inline YYRESULTTAG
1370 yydoAction (yyGLRStack
* yystackp
, size_t yyk
, yyRuleNum yyrule
,
1371 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1373 int yynrhs
= yyrhsLength (yyrule
);
1375 if (yystackp
->yysplitPoint
== NULL
)
1377 /* Standard special case: single stack. */
1378 yyGLRStackItem
* rhs
= (yyGLRStackItem
*) yystackp
->yytops
.yystates
[yyk
];
1379 YYASSERT (yyk
== 0);
1380 yystackp
->yynextFree
-= yynrhs
;
1381 yystackp
->yyspaceLeft
+= yynrhs
;
1382 yystackp
->yytops
.yystates
[0] = & yystackp
->yynextFree
[-1].yystate
;
1383 return yyuserAction (yyrule
, yynrhs
, rhs
,
1384 yyvalp
, yylocp
, yystackp
]b4_user_args
[);
1388 /* At present, doAction is never called in nondeterministic
1389 * mode, so this branch is never taken. It is here in
1390 * anticipation of a future feature that will allow immediate
1391 * evaluation of selected actions in nondeterministic mode. */
1394 yyGLRStackItem yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
+ 1];
1395 yys
= yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
].yystate
.yypred
1396 = yystackp
->yytops
.yystates
[yyk
];]b4_locations_if([[
1398 /* Set default location. */
1399 yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
- 1].yystate
.yyloc
= yys
->yyloc
;]])[
1400 for (yyi
= 0; yyi
< yynrhs
; yyi
+= 1)
1405 yyupdateSplit (yystackp
, yys
);
1406 yystackp
->yytops
.yystates
[yyk
] = yys
;
1407 return yyuserAction (yyrule
, yynrhs
, yyrhsVals
+ YYMAXRHS
+ YYMAXLEFT
- 1,
1408 yyvalp
, yylocp
, yystackp
]b4_user_args
[);
1413 # define YY_REDUCE_PRINT(Args)
1415 # define YY_REDUCE_PRINT(Args) \
1418 yy_reduce_print Args; \
1421 /*----------------------------------------------------------.
1422 | Report that the RULE is going to be reduced on stack #K. |
1423 `----------------------------------------------------------*/
1425 /*ARGSUSED*/ static inline void
1426 yy_reduce_print (yyGLRStack
* yystackp
, size_t yyk
, yyRuleNum yyrule
,
1427 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1429 int yynrhs
= yyrhsLength (yyrule
);
1430 yybool yynormal
__attribute__ ((__unused__
)) =
1431 (yystackp
->yysplitPoint
== NULL
);
1432 yyGLRStackItem
* yyvsp
= (yyGLRStackItem
*) yystackp
->yytops
.yystates
[yyk
];
1437 ]b4_parse_param_use
[]dnl
1438 [ YYFPRINTF (stderr
, "Reducing stack %lu by rule %d (line %lu):\n",
1439 (unsigned long int) yyk
, yyrule
- 1,
1440 (unsigned long int) yyrline
[yyrule
]);
1441 /* The symbols being reduced. */
1442 for (yyi
= 0; yyi
< yynrhs
; yyi
++)
1444 fprintf (stderr
, " $%d = ", yyi
+ 1);
1445 yy_symbol_print (stderr
, yyrhs
[yyprhs
[yyrule
] + yyi
],
1446 &]b4_rhs_value(yynrhs
, yyi
+ 1)[
1447 ]b4_locations_if([, &]b4_rhs_location(yynrhs
, yyi
+ 1))[]dnl
1449 fprintf (stderr
, "\n");
1454 /** Pop items off stack #K of STACK according to grammar rule RULE,
1455 * and push back on the resulting nonterminal symbol. Perform the
1456 * semantic action associated with RULE and store its value with the
1457 * newly pushed state, if FORCEEVAL or if STACK is currently
1458 * unambiguous. Otherwise, store the deferred semantic action with
1459 * the new state. If the new state would have an identical input
1460 * position, LR state, and predecessor to an existing state on the stack,
1461 * it is identified with that existing state, eliminating stack #K from
1462 * the STACK. In this case, the (necessarily deferred) semantic value is
1463 * added to the options for the existing state's semantic value.
1465 static inline YYRESULTTAG
1466 yyglrReduce (yyGLRStack
* yystackp
, size_t yyk
, yyRuleNum yyrule
,
1467 yybool yyforceEval
]b4_user_formals
[)
1469 size_t yyposn
= yystackp
->yytops
.yystates
[yyk
]->yyposn
;
1471 if (yyforceEval
|| yystackp
->yysplitPoint
== NULL
)
1476 YY_REDUCE_PRINT ((yystackp
, yyk
, yyrule
, &yysval
, &yyloc
]b4_user_args
[));
1477 YYCHK (yydoAction (yystackp
, yyk
, yyrule
, &yysval
,
1478 &yyloc
]b4_user_args
[));
1479 YY_SYMBOL_PRINT ("-> $$ =", yyr1
[yyrule
], &yysval
, &yyloc
);
1480 yyglrShift (yystackp
, yyk
,
1481 yyLRgotoState (yystackp
->yytops
.yystates
[yyk
]->yylrState
,
1482 yylhsNonterm (yyrule
)),
1483 yyposn
, &yysval
, &yyloc
);
1489 yyGLRState
* yys
, *yys0
= yystackp
->yytops
.yystates
[yyk
];
1490 yyStateNum yynewLRState
;
1492 for (yys
= yystackp
->yytops
.yystates
[yyk
], yyn
= yyrhsLength (yyrule
);
1498 yyupdateSplit (yystackp
, yys
);
1499 yynewLRState
= yyLRgotoState (yys
->yylrState
, yylhsNonterm (yyrule
));
1501 "Reduced stack %lu by rule #%d; action deferred. Now in state %d.\n",
1502 (unsigned long int) yyk
, yyrule
- 1, yynewLRState
));
1503 for (yyi
= 0; yyi
< yystackp
->yytops
.yysize
; yyi
+= 1)
1504 if (yyi
!= yyk
&& yystackp
->yytops
.yystates
[yyi
] != NULL
)
1506 yyGLRState
* yyp
, *yysplit
= yystackp
->yysplitPoint
;
1507 yyp
= yystackp
->yytops
.yystates
[yyi
];
1508 while (yyp
!= yys
&& yyp
!= yysplit
&& yyp
->yyposn
>= yyposn
)
1510 if (yyp
->yylrState
== yynewLRState
&& yyp
->yypred
== yys
)
1512 yyaddDeferredAction (yystackp
, yyk
, yyp
, yys0
, yyrule
);
1513 yymarkStackDeleted (yystackp
, yyk
);
1514 YYDPRINTF ((stderr
, "Merging stack %lu into stack %lu.\n",
1515 (unsigned long int) yyk
,
1516 (unsigned long int) yyi
));
1522 yystackp
->yytops
.yystates
[yyk
] = yys
;
1523 yyglrShiftDefer (yystackp
, yyk
, yynewLRState
, yyposn
, yys0
, yyrule
);
1529 yysplitStack (yyGLRStack
* yystackp
, size_t yyk
)
1531 if (yystackp
->yysplitPoint
== NULL
)
1533 YYASSERT (yyk
== 0);
1534 yystackp
->yysplitPoint
= yystackp
->yytops
.yystates
[yyk
];
1536 if (yystackp
->yytops
.yysize
>= yystackp
->yytops
.yycapacity
)
1538 yyGLRState
** yynewStates
;
1539 yybool
* yynewLookaheadNeeds
;
1543 if (yystackp
->yytops
.yycapacity
1544 > (YYSIZEMAX
/ (2 * sizeof yynewStates
[0])))
1545 yyMemoryExhausted (yystackp
);
1546 yystackp
->yytops
.yycapacity
*= 2;
1549 (yyGLRState
**) YYREALLOC (yystackp
->yytops
.yystates
,
1550 (yystackp
->yytops
.yycapacity
1551 * sizeof yynewStates
[0]));
1552 if (yynewStates
== NULL
)
1553 yyMemoryExhausted (yystackp
);
1554 yystackp
->yytops
.yystates
= yynewStates
;
1556 yynewLookaheadNeeds
=
1557 (yybool
*) YYREALLOC (yystackp
->yytops
.yylookaheadNeeds
,
1558 (yystackp
->yytops
.yycapacity
1559 * sizeof yynewLookaheadNeeds
[0]));
1560 if (yynewLookaheadNeeds
== NULL
)
1561 yyMemoryExhausted (yystackp
);
1562 yystackp
->yytops
.yylookaheadNeeds
= yynewLookaheadNeeds
;
1564 yystackp
->yytops
.yystates
[yystackp
->yytops
.yysize
]
1565 = yystackp
->yytops
.yystates
[yyk
];
1566 yystackp
->yytops
.yylookaheadNeeds
[yystackp
->yytops
.yysize
]
1567 = yystackp
->yytops
.yylookaheadNeeds
[yyk
];
1568 yystackp
->yytops
.yysize
+= 1;
1569 return yystackp
->yytops
.yysize
-1;
1572 /** True iff Y0 and Y1 represent identical options at the top level.
1573 * That is, they represent the same rule applied to RHS symbols
1574 * that produce the same terminal symbols. */
1576 yyidenticalOptions (yySemanticOption
* yyy0
, yySemanticOption
* yyy1
)
1578 if (yyy0
->yyrule
== yyy1
->yyrule
)
1580 yyGLRState
*yys0
, *yys1
;
1582 for (yys0
= yyy0
->yystate
, yys1
= yyy1
->yystate
,
1583 yyn
= yyrhsLength (yyy0
->yyrule
);
1585 yys0
= yys0
->yypred
, yys1
= yys1
->yypred
, yyn
-= 1)
1586 if (yys0
->yyposn
!= yys1
->yyposn
)
1594 /** Assuming identicalOptions (Y0,Y1), destructively merge the
1595 * alternative semantic values for the RHS-symbols of Y1 and Y0. */
1597 yymergeOptionSets (yySemanticOption
* yyy0
, yySemanticOption
* yyy1
)
1599 yyGLRState
*yys0
, *yys1
;
1601 for (yys0
= yyy0
->yystate
, yys1
= yyy1
->yystate
,
1602 yyn
= yyrhsLength (yyy0
->yyrule
);
1604 yys0
= yys0
->yypred
, yys1
= yys1
->yypred
, yyn
-= 1)
1608 else if (yys0
->yyresolved
)
1610 yys1
->yyresolved
= yytrue
;
1611 yys1
->yysemantics
.yysval
= yys0
->yysemantics
.yysval
;
1613 else if (yys1
->yyresolved
)
1615 yys0
->yyresolved
= yytrue
;
1616 yys0
->yysemantics
.yysval
= yys1
->yysemantics
.yysval
;
1620 yySemanticOption
** yyz0p
;
1621 yySemanticOption
* yyz1
;
1622 yyz0p
= &yys0
->yysemantics
.yyfirstVal
;
1623 yyz1
= yys1
->yysemantics
.yyfirstVal
;
1624 while (YYID (yytrue
))
1626 if (yyz1
== *yyz0p
|| yyz1
== NULL
)
1628 else if (*yyz0p
== NULL
)
1633 else if (*yyz0p
< yyz1
)
1635 yySemanticOption
* yyz
= *yyz0p
;
1637 yyz1
= yyz1
->yynext
;
1638 (*yyz0p
)->yynext
= yyz
;
1640 yyz0p
= &(*yyz0p
)->yynext
;
1642 yys1
->yysemantics
.yyfirstVal
= yys0
->yysemantics
.yyfirstVal
;
1647 /** Y0 and Y1 represent two possible actions to take in a given
1648 * parsing state; return 0 if no combination is possible,
1649 * 1 if user-mergeable, 2 if Y0 is preferred, 3 if Y1 is preferred. */
1651 yypreference (yySemanticOption
* y0
, yySemanticOption
* y1
)
1653 yyRuleNum r0
= y0
->yyrule
, r1
= y1
->yyrule
;
1654 int p0
= yydprec
[r0
], p1
= yydprec
[r1
];
1658 if (yymerger
[r0
] == 0 || yymerger
[r0
] != yymerger
[r1
])
1663 if (p0
== 0 || p1
== 0)
1672 static YYRESULTTAG
yyresolveValue (yyGLRState
* yys
,
1673 yyGLRStack
* yystackp
]b4_user_formals
[);
1676 /** Resolve the previous N states starting at and including state S. If result
1677 * != yyok, some states may have been left unresolved possibly with empty
1678 * semantic option chains. Regardless of whether result = yyok, each state
1679 * has been left with consistent data so that yydestroyGLRState can be invoked
1682 yyresolveStates (yyGLRState
* yys
, int yyn
,
1683 yyGLRStack
* yystackp
]b4_user_formals
[)
1687 YYASSERT (yys
->yypred
);
1688 YYCHK (yyresolveStates (yys
->yypred
, yyn
-1, yystackp
]b4_user_args
[));
1689 if (! yys
->yyresolved
)
1690 YYCHK (yyresolveValue (yys
, yystackp
]b4_user_args
[));
1695 /** Resolve the states for the RHS of OPT, perform its user action, and return
1696 * the semantic value and location. Regardless of whether result = yyok, all
1697 * RHS states have been destroyed (assuming the user action destroys all RHS
1698 * semantic values if invoked). */
1700 yyresolveAction (yySemanticOption
* yyopt
, yyGLRStack
* yystackp
,
1701 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1703 yyGLRStackItem yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
+ 1];
1706 YYSTYPE yylval_current
;
1707 YYLTYPE yylloc_current
;
1710 yynrhs
= yyrhsLength (yyopt
->yyrule
);
1711 yyflag
= yyresolveStates (yyopt
->yystate
, yynrhs
, yystackp
]b4_user_args
[);
1715 for (yys
= yyopt
->yystate
; yynrhs
> 0; yys
= yys
->yypred
, yynrhs
-= 1)
1716 yydestroyGLRState ("Cleanup: popping", yys
]b4_user_args
[);
1720 yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
].yystate
.yypred
= yyopt
->yystate
;]b4_locations_if([[
1722 /* Set default location. */
1723 yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
- 1].yystate
.yyloc
= yyopt
->yystate
->yyloc
;]])[
1724 yychar_current
= yychar
;
1725 yylval_current
= yylval
;
1726 yylloc_current
= yylloc
;
1727 yychar
= yyopt
->yyrawchar
;
1728 yylval
= yyopt
->yyval
;
1729 yylloc
= yyopt
->yyloc
;
1730 yyflag
= yyuserAction (yyopt
->yyrule
, yynrhs
,
1731 yyrhsVals
+ YYMAXRHS
+ YYMAXLEFT
- 1,
1732 yyvalp
, yylocp
, yystackp
]b4_user_args
[);
1733 yychar
= yychar_current
;
1734 yylval
= yylval_current
;
1735 yylloc
= yylloc_current
;
1741 yyreportTree (yySemanticOption
* yyx
, int yyindent
)
1743 int yynrhs
= yyrhsLength (yyx
->yyrule
);
1746 yyGLRState
* yystates
[1 + YYMAXRHS
];
1747 yyGLRState yyleftmost_state
;
1749 for (yyi
= yynrhs
, yys
= yyx
->yystate
; 0 < yyi
; yyi
-= 1, yys
= yys
->yypred
)
1750 yystates
[yyi
] = yys
;
1753 yyleftmost_state
.yyposn
= 0;
1754 yystates
[0] = &yyleftmost_state
;
1759 if (yyx
->yystate
->yyposn
< yys
->yyposn
+ 1)
1760 YYFPRINTF (stderr
, "%*s%s -> <Rule %d, empty>\n",
1761 yyindent
, "", yytokenName (yylhsNonterm (yyx
->yyrule
)),
1764 YYFPRINTF (stderr
, "%*s%s -> <Rule %d, tokens %lu .. %lu>\n",
1765 yyindent
, "", yytokenName (yylhsNonterm (yyx
->yyrule
)),
1766 yyx
->yyrule
- 1, (unsigned long int) (yys
->yyposn
+ 1),
1767 (unsigned long int) yyx
->yystate
->yyposn
);
1768 for (yyi
= 1; yyi
<= yynrhs
; yyi
+= 1)
1770 if (yystates
[yyi
]->yyresolved
)
1772 if (yystates
[yyi
-1]->yyposn
+1 > yystates
[yyi
]->yyposn
)
1773 YYFPRINTF (stderr
, "%*s%s <empty>\n", yyindent
+2, "",
1774 yytokenName (yyrhs
[yyprhs
[yyx
->yyrule
]+yyi
-1]));
1776 YYFPRINTF (stderr
, "%*s%s <tokens %lu .. %lu>\n", yyindent
+2, "",
1777 yytokenName (yyrhs
[yyprhs
[yyx
->yyrule
]+yyi
-1]),
1778 (unsigned long int) (yystates
[yyi
- 1]->yyposn
+ 1),
1779 (unsigned long int) yystates
[yyi
]->yyposn
);
1782 yyreportTree (yystates
[yyi
]->yysemantics
.yyfirstVal
, yyindent
+2);
1787 /*ARGSUSED*/ static YYRESULTTAG
1788 yyreportAmbiguity (yySemanticOption
* yyx0
,
1789 yySemanticOption
* yyx1
]b4_pure_formals
[)
1795 YYFPRINTF (stderr
, "Ambiguity detected.\n");
1796 YYFPRINTF (stderr
, "Option 1,\n");
1797 yyreportTree (yyx0
, 2);
1798 YYFPRINTF (stderr
, "\nOption 2,\n");
1799 yyreportTree (yyx1
, 2);
1800 YYFPRINTF (stderr
, "\n");
1803 yyerror (]b4_yyerror_args
[YY_("syntax is ambiguous"));
1807 /** Starting at and including state S1, resolve the location for each of the
1808 * previous N1 states that is unresolved. The first semantic option of a state
1809 * is always chosen. */
1811 yyresolveLocations (yyGLRState
* yys1
, int yyn1
,
1812 yyGLRStack
*yystackp
]b4_user_formals
[)
1816 yyresolveLocations (yys1
->yypred
, yyn1
- 1, yystackp
]b4_user_args
[);
1817 if (!yys1
->yyresolved
)
1819 yySemanticOption
*yyoption
;
1820 yyGLRStackItem yyrhsloc
[1 + YYMAXRHS
];
1823 YYSTYPE yylval_current
;
1824 YYLTYPE yylloc_current
;
1825 yyoption
= yys1
->yysemantics
.yyfirstVal
;
1826 YYASSERT (yyoption
!= NULL
);
1827 yynrhs
= yyrhsLength (yyoption
->yyrule
);
1832 yyresolveLocations (yyoption
->yystate
, yynrhs
,
1833 yystackp
]b4_user_args
[);
1834 for (yys
= yyoption
->yystate
, yyn
= yynrhs
;
1836 yys
= yys
->yypred
, yyn
-= 1)
1837 yyrhsloc
[yyn
].yystate
.yyloc
= yys
->yyloc
;
1841 /* Both yyresolveAction and yyresolveLocations traverse the GSS
1842 in reverse rightmost order. It is only necessary to invoke
1843 yyresolveLocations on a subforest for which yyresolveAction
1844 would have been invoked next had an ambiguity not been
1845 detected. Thus the location of the previous state (but not
1846 necessarily the previous state itself) is guaranteed to be
1847 resolved already. */
1848 yyGLRState
*yyprevious
= yyoption
->yystate
;
1849 yyrhsloc
[0].yystate
.yyloc
= yyprevious
->yyloc
;
1851 yychar_current
= yychar
;
1852 yylval_current
= yylval
;
1853 yylloc_current
= yylloc
;
1854 yychar
= yyoption
->yyrawchar
;
1855 yylval
= yyoption
->yyval
;
1856 yylloc
= yyoption
->yyloc
;
1857 YYLLOC_DEFAULT ((yys1
->yyloc
), yyrhsloc
, yynrhs
);
1858 yychar
= yychar_current
;
1859 yylval
= yylval_current
;
1860 yylloc
= yylloc_current
;
1865 /** Resolve the ambiguity represented in state S, perform the indicated
1866 * actions, and set the semantic value of S. If result != yyok, the chain of
1867 * semantic options in S has been cleared instead or it has been left
1868 * unmodified except that redundant options may have been removed. Regardless
1869 * of whether result = yyok, S has been left with consistent data so that
1870 * yydestroyGLRState can be invoked if necessary. */
1872 yyresolveValue (yyGLRState
* yys
, yyGLRStack
* yystackp
]b4_user_formals
[)
1874 yySemanticOption
* yyoptionList
= yys
->yysemantics
.yyfirstVal
;
1875 yySemanticOption
* yybest
;
1876 yySemanticOption
** yypp
;
1880 YYLTYPE
*yylocp
= &yys
->yyloc
;
1882 yybest
= yyoptionList
;
1884 for (yypp
= &yyoptionList
->yynext
; *yypp
!= NULL
; )
1886 yySemanticOption
* yyp
= *yypp
;
1888 if (yyidenticalOptions (yybest
, yyp
))
1890 yymergeOptionSets (yybest
, yyp
);
1891 *yypp
= yyp
->yynext
;
1895 switch (yypreference (yybest
, yyp
))
1898 yyresolveLocations (yys
, 1, yystackp
]b4_user_args
[);
1899 return yyreportAmbiguity (yybest
, yyp
]b4_pure_args
[);
1911 /* This cannot happen so it is not worth a YYASSERT (yyfalse),
1912 but some compilers complain if the default case is
1916 yypp
= &yyp
->yynext
;
1922 yySemanticOption
* yyp
;
1923 int yyprec
= yydprec
[yybest
->yyrule
];
1924 yyflag
= yyresolveAction (yybest
, yystackp
, &yysval
,
1925 yylocp
]b4_user_args
[);
1927 for (yyp
= yybest
->yynext
; yyp
!= NULL
; yyp
= yyp
->yynext
)
1929 if (yyprec
== yydprec
[yyp
->yyrule
])
1931 YYSTYPE yysval_other
;
1933 yyflag
= yyresolveAction (yyp
, yystackp
, &yysval_other
,
1934 &yydummy
]b4_user_args
[);
1937 yydestruct ("Cleanup: discarding incompletely merged value for",
1938 yystos
[yys
->yylrState
],
1939 &yysval
]b4_locations_if([, yylocp
])[]b4_user_args
[);
1942 yyuserMerge (yymerger
[yyp
->yyrule
], &yysval
, &yysval_other
);
1947 yyflag
= yyresolveAction (yybest
, yystackp
, &yysval
, yylocp
]b4_user_args
[);
1951 yys
->yyresolved
= yytrue
;
1952 yys
->yysemantics
.yysval
= yysval
;
1955 yys
->yysemantics
.yyfirstVal
= NULL
;
1960 yyresolveStack (yyGLRStack
* yystackp
]b4_user_formals
[)
1962 if (yystackp
->yysplitPoint
!= NULL
)
1967 for (yyn
= 0, yys
= yystackp
->yytops
.yystates
[0];
1968 yys
!= yystackp
->yysplitPoint
;
1969 yys
= yys
->yypred
, yyn
+= 1)
1971 YYCHK (yyresolveStates (yystackp
->yytops
.yystates
[0], yyn
, yystackp
1978 yycompressStack (yyGLRStack
* yystackp
)
1980 yyGLRState
* yyp
, *yyq
, *yyr
;
1982 if (yystackp
->yytops
.yysize
!= 1 || yystackp
->yysplitPoint
== NULL
)
1985 for (yyp
= yystackp
->yytops
.yystates
[0], yyq
= yyp
->yypred
, yyr
= NULL
;
1986 yyp
!= yystackp
->yysplitPoint
;
1987 yyr
= yyp
, yyp
= yyq
, yyq
= yyp
->yypred
)
1990 yystackp
->yyspaceLeft
+= yystackp
->yynextFree
- yystackp
->yyitems
;
1991 yystackp
->yynextFree
= ((yyGLRStackItem
*) yystackp
->yysplitPoint
) + 1;
1992 yystackp
->yyspaceLeft
-= yystackp
->yynextFree
- yystackp
->yyitems
;
1993 yystackp
->yysplitPoint
= NULL
;
1994 yystackp
->yylastDeleted
= NULL
;
1998 yystackp
->yynextFree
->yystate
= *yyr
;
2000 yystackp
->yynextFree
->yystate
.yypred
= &yystackp
->yynextFree
[-1].yystate
;
2001 yystackp
->yytops
.yystates
[0] = &yystackp
->yynextFree
->yystate
;
2002 yystackp
->yynextFree
+= 1;
2003 yystackp
->yyspaceLeft
-= 1;
2008 yyprocessOneStack (yyGLRStack
* yystackp
, size_t yyk
,
2009 size_t yyposn
]b4_pure_formals
[)
2012 const short int* yyconflicts
;
2015 while (yystackp
->yytops
.yystates
[yyk
] != NULL
)
2017 yyStateNum yystate
= yystackp
->yytops
.yystates
[yyk
]->yylrState
;
2018 YYDPRINTF ((stderr
, "Stack %lu Entering state %d\n",
2019 (unsigned long int) yyk
, yystate
));
2021 YYASSERT (yystate
!= YYFINAL
);
2023 if (yyisDefaultedState (yystate
))
2025 yyrule
= yydefaultAction (yystate
);
2028 YYDPRINTF ((stderr
, "Stack %lu dies.\n",
2029 (unsigned long int) yyk
));
2030 yymarkStackDeleted (yystackp
, yyk
);
2033 YYCHK (yyglrReduce (yystackp
, yyk
, yyrule
, yyfalse
]b4_user_args
[));
2038 yystackp
->yytops
.yylookaheadNeeds
[yyk
] = yytrue
;
2039 if (yychar
== YYEMPTY
)
2041 YYDPRINTF ((stderr
, "Reading a token: "));
2045 if (yychar
<= YYEOF
)
2047 yychar
= yytoken
= YYEOF
;
2048 YYDPRINTF ((stderr
, "Now at end of input.\n"));
2052 yytoken
= YYTRANSLATE (yychar
);
2053 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
2056 yygetLRActions (yystate
, yytoken
, &yyaction
, &yyconflicts
);
2058 while (*yyconflicts
!= 0)
2060 size_t yynewStack
= yysplitStack (yystackp
, yyk
);
2061 YYDPRINTF ((stderr
, "Splitting off stack %lu from %lu.\n",
2062 (unsigned long int) yynewStack
,
2063 (unsigned long int) yyk
));
2064 YYCHK (yyglrReduce (yystackp
, yynewStack
,
2065 *yyconflicts
, yyfalse
]b4_user_args
[));
2066 YYCHK (yyprocessOneStack (yystackp
, yynewStack
,
2067 yyposn
]b4_pure_args
[));
2071 if (yyisShiftAction (yyaction
))
2073 else if (yyisErrorAction (yyaction
))
2075 YYDPRINTF ((stderr
, "Stack %lu dies.\n",
2076 (unsigned long int) yyk
));
2077 yymarkStackDeleted (yystackp
, yyk
);
2081 YYCHK (yyglrReduce (yystackp
, yyk
, -yyaction
,
2082 yyfalse
]b4_user_args
[));
2088 /*ARGSUSED*/ static void
2089 yyreportSyntaxError (yyGLRStack
* yystackp
]b4_user_formals
[)
2091 if (yystackp
->yyerrState
== 0)
2095 yyn
= yypact
[yystackp
->yytops
.yystates
[0]->yylrState
];
2096 if (YYPACT_NINF
< yyn
&& yyn
<= YYLAST
)
2098 yySymbol yytoken
= YYTRANSLATE (yychar
);
2099 size_t yysize0
= yytnamerr (NULL
, yytokenName (yytoken
));
2100 size_t yysize
= yysize0
;
2102 yybool yysize_overflow
= yyfalse
;
2104 enum { YYERROR_VERBOSE_ARGS_MAXIMUM
= 5 };
2105 char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
];
2109 static char const yyunexpected
[] = "syntax error, unexpected %s";
2110 static char const yyexpecting
[] = ", expecting %s";
2111 static char const yyor
[] = " or %s";
2112 char yyformat
[sizeof yyunexpected
2113 + sizeof yyexpecting
- 1
2114 + ((YYERROR_VERBOSE_ARGS_MAXIMUM
- 2)
2115 * (sizeof yyor
- 1))];
2116 char const *yyprefix
= yyexpecting
;
2118 /* Start YYX at -YYN if negative to avoid negative indexes in
2120 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
2122 /* Stay within bounds of both yycheck and yytname. */
2123 int yychecklim
= YYLAST
- yyn
+ 1;
2124 int yyxend
= yychecklim
< YYNTOKENS
? yychecklim
: YYNTOKENS
;
2127 yyarg
[0] = yytokenName (yytoken
);
2128 yyfmt
= yystpcpy (yyformat
, yyunexpected
);
2130 for (yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
2131 if (yycheck
[yyx
+ yyn
] == yyx
&& yyx
!= YYTERROR
)
2133 if (yycount
== YYERROR_VERBOSE_ARGS_MAXIMUM
)
2137 yyformat
[sizeof yyunexpected
- 1] = '\0';
2140 yyarg
[yycount
++] = yytokenName (yyx
);
2141 yysize1
= yysize
+ yytnamerr (NULL
, yytokenName (yyx
));
2142 yysize_overflow
|= yysize1
< yysize
;
2144 yyfmt
= yystpcpy (yyfmt
, yyprefix
);
2148 yyf
= YY_(yyformat
);
2149 yysize1
= yysize
+ strlen (yyf
);
2150 yysize_overflow
|= yysize1
< yysize
;
2153 if (!yysize_overflow
)
2154 yymsg
= (char *) YYMALLOC (yysize
);
2160 while ((*yyp
= *yyf
))
2162 if (*yyp
== '%' && yyf
[1] == 's' && yyi
< yycount
)
2164 yyp
+= yytnamerr (yyp
, yyarg
[yyi
++]);
2173 yyerror (]b4_lyyerror_args
[yymsg
);
2178 yyerror (]b4_lyyerror_args
[YY_("syntax error"));
2179 yyMemoryExhausted (yystackp
);
2183 #endif /* YYERROR_VERBOSE */
2184 yyerror (]b4_lyyerror_args
[YY_("syntax error"));
2189 /* Recover from a syntax error on *YYSTACKP, assuming that *YYSTACKP->YYTOKENP,
2190 yylval, and yylloc are the syntactic category, semantic value, and location
2191 of the lookahead. */
2192 /*ARGSUSED*/ static void
2193 yyrecoverSyntaxError (yyGLRStack
* yystackp
]b4_user_formals
[)
2198 if (yystackp
->yyerrState
== 3)
2199 /* We just shifted the error token and (perhaps) took some
2200 reductions. Skip tokens until we can proceed. */
2201 while (YYID (yytrue
))
2204 if (yychar
== YYEOF
)
2205 yyFail (yystackp
][]b4_lpure_args
[, NULL
);
2206 if (yychar
!= YYEMPTY
)
2207 {]b4_locations_if([[
2208 /* We throw away the lookahead, but the error range
2209 of the shifted error token must take it into account. */
2210 yyGLRState
*yys
= yystackp
->yytops
.yystates
[0];
2211 yyGLRStackItem yyerror_range
[3];
2212 yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;
2213 yyerror_range
[2].yystate
.yyloc
= yylloc
;
2214 YYLLOC_DEFAULT ((yys
->yyloc
), yyerror_range
, 2);]])[
2215 yytoken
= YYTRANSLATE (yychar
);
2216 yydestruct ("Error: discarding",
2217 yytoken
, &yylval
]b4_locations_if([, &yylloc
])[]b4_user_args
[);
2219 YYDPRINTF ((stderr
, "Reading a token: "));
2221 if (yychar
<= YYEOF
)
2223 yychar
= yytoken
= YYEOF
;
2224 YYDPRINTF ((stderr
, "Now at end of input.\n"));
2228 yytoken
= YYTRANSLATE (yychar
);
2229 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
2231 yyj
= yypact
[yystackp
->yytops
.yystates
[0]->yylrState
];
2232 if (yyis_pact_ninf (yyj
))
2235 if (yyj
< 0 || YYLAST
< yyj
|| yycheck
[yyj
] != yytoken
)
2237 if (yydefact
[yystackp
->yytops
.yystates
[0]->yylrState
] != 0)
2240 else if (yytable
[yyj
] != 0 && ! yyis_table_ninf (yytable
[yyj
]))
2244 /* Reduce to one stack. */
2245 for (yyk
= 0; yyk
< yystackp
->yytops
.yysize
; yyk
+= 1)
2246 if (yystackp
->yytops
.yystates
[yyk
] != NULL
)
2248 if (yyk
>= yystackp
->yytops
.yysize
)
2249 yyFail (yystackp
][]b4_lpure_args
[, NULL
);
2250 for (yyk
+= 1; yyk
< yystackp
->yytops
.yysize
; yyk
+= 1)
2251 yymarkStackDeleted (yystackp
, yyk
);
2252 yyremoveDeletes (yystackp
);
2253 yycompressStack (yystackp
);
2255 /* Now pop stack until we find a state that shifts the error token. */
2256 yystackp
->yyerrState
= 3;
2257 while (yystackp
->yytops
.yystates
[0] != NULL
)
2259 yyGLRState
*yys
= yystackp
->yytops
.yystates
[0];
2260 yyj
= yypact
[yys
->yylrState
];
2261 if (! yyis_pact_ninf (yyj
))
2264 if (0 <= yyj
&& yyj
<= YYLAST
&& yycheck
[yyj
] == YYTERROR
2265 && yyisShiftAction (yytable
[yyj
]))
2267 /* Shift the error token having adjusted its location. */
2268 YYLTYPE yyerrloc
;]b4_locations_if([[
2269 yystackp
->yyerror_range
[2].yystate
.yyloc
= yylloc
;
2270 YYLLOC_DEFAULT (yyerrloc
, (yystackp
->yyerror_range
), 2);]])[
2271 YY_SYMBOL_PRINT ("Shifting", yystos
[yytable
[yyj
]],
2272 &yylval
, &yyerrloc
);
2273 yyglrShift (yystackp
, 0, yytable
[yyj
],
2274 yys
->yyposn
, &yylval
, &yyerrloc
);
2275 yys
= yystackp
->yytops
.yystates
[0];
2279 ]b4_locations_if([[ yystackp
->yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;]])[
2280 if (yys
->yypred
!= NULL
)
2281 yydestroyGLRState ("Error: popping", yys
]b4_user_args
[);
2282 yystackp
->yytops
.yystates
[0] = yys
->yypred
;
2283 yystackp
->yynextFree
-= 1;
2284 yystackp
->yyspaceLeft
+= 1;
2286 if (yystackp
->yytops
.yystates
[0] == NULL
)
2287 yyFail (yystackp
][]b4_lpure_args
[, NULL
);
2290 #define YYCHK1(YYE) \
2300 goto yyuser_error; \
2311 ]b4_c_ansi_function_def([yyparse
], [int], b4_parse_param
)[
2315 yyGLRStack
* const yystackp
= &yystack
;
2318 YYDPRINTF ((stderr
, "Starting parse\n"));
2321 yylval
= yyval_default
;
2323 #if YYLTYPE_IS_TRIVIAL
2324 yylloc
.first_line
= yylloc
.last_line
= ]b4_location_initial_line
[;
2325 yylloc
.first_column
= yylloc
.last_column
= ]b4_location_initial_column
[;
2328 m4_ifdef([b4_initial_action
], [
2329 m4_pushdef([b4_at_dollar
], [yylloc
])dnl
2330 m4_pushdef([b4_dollar_dollar
], [yylval
])dnl
2331 /* User initialization code. */
2332 b4_user_initial_action
2333 m4_popdef([b4_dollar_dollar
])dnl
2334 m4_popdef([b4_at_dollar
])])dnl
2336 if (! yyinitGLRStack (yystackp
, YYINITDEPTH
))
2337 goto yyexhaustedlab
;
2338 switch (YYSETJMP (yystack
.yyexception_buffer
))
2341 case 1: goto yyabortlab
;
2342 case 2: goto yyexhaustedlab
;
2343 default: goto yybuglab
;
2345 yyglrShift (&yystack
, 0, 0, 0, &yylval
, &yylloc
);
2348 while (YYID (yytrue
))
2350 /* For efficiency, we have two loops, the first of which is
2351 specialized to deterministic operation (single stack, no
2352 potential ambiguity). */
2354 while (YYID (yytrue
))
2358 const short int* yyconflicts
;
2360 yyStateNum yystate
= yystack
.yytops
.yystates
[0]->yylrState
;
2361 YYDPRINTF ((stderr
, "Entering state %d\n", yystate
));
2362 if (yystate
== YYFINAL
)
2364 if (yyisDefaultedState (yystate
))
2366 yyrule
= yydefaultAction (yystate
);
2369 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yylloc
;]])[
2370 yyreportSyntaxError (&yystack
]b4_user_args
[);
2373 YYCHK1 (yyglrReduce (&yystack
, 0, yyrule
, yytrue
]b4_user_args
[));
2378 if (yychar
== YYEMPTY
)
2380 YYDPRINTF ((stderr
, "Reading a token: "));
2384 if (yychar
<= YYEOF
)
2386 yychar
= yytoken
= YYEOF
;
2387 YYDPRINTF ((stderr
, "Now at end of input.\n"));
2391 yytoken
= YYTRANSLATE (yychar
);
2392 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
2395 yygetLRActions (yystate
, yytoken
, &yyaction
, &yyconflicts
);
2396 if (*yyconflicts
!= 0)
2398 if (yyisShiftAction (yyaction
))
2400 YY_SYMBOL_PRINT ("Shifting", yytoken
, &yylval
, &yylloc
);
2403 yyglrShift (&yystack
, 0, yyaction
, yyposn
, &yylval
, &yylloc
);
2404 if (0 < yystack
.yyerrState
)
2405 yystack
.yyerrState
-= 1;
2407 else if (yyisErrorAction (yyaction
))
2409 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yylloc
;]])[
2410 yyreportSyntaxError (&yystack
]b4_user_args
[);
2414 YYCHK1 (yyglrReduce (&yystack
, 0, -yyaction
, yytrue
]b4_user_args
[));
2418 while (YYID (yytrue
))
2420 yySymbol yytoken_to_shift
;
2423 for (yys
= 0; yys
< yystack
.yytops
.yysize
; yys
+= 1)
2424 yystackp
->yytops
.yylookaheadNeeds
[yys
] = yychar
!= YYEMPTY
;
2426 /* yyprocessOneStack returns one of three things:
2428 - An error flag. If the caller is yyprocessOneStack, it
2429 immediately returns as well. When the caller is finally
2430 yyparse, it jumps to an error label via YYCHK1.
2432 - yyok, but yyprocessOneStack has invoked yymarkStackDeleted
2433 (&yystack, yys), which sets the top state of yys to NULL. Thus,
2434 yyparse's following invocation of yyremoveDeletes will remove
2437 - yyok, when ready to shift a token.
2439 Except in the first case, yyparse will invoke yyremoveDeletes and
2440 then shift the next token onto all remaining stacks. This
2441 synchronization of the shift (that is, after all preceding
2442 reductions on all stacks) helps prevent double destructor calls
2443 on yylval in the event of memory exhaustion. */
2445 for (yys
= 0; yys
< yystack
.yytops
.yysize
; yys
+= 1)
2446 YYCHK1 (yyprocessOneStack (&yystack
, yys
, yyposn
]b4_lpure_args
[));
2447 yyremoveDeletes (&yystack
);
2448 if (yystack
.yytops
.yysize
== 0)
2450 yyundeleteLastStack (&yystack
);
2451 if (yystack
.yytops
.yysize
== 0)
2452 yyFail (&yystack
][]b4_lpure_args
[, YY_("syntax error"));
2453 YYCHK1 (yyresolveStack (&yystack
]b4_user_args
[));
2454 YYDPRINTF ((stderr
, "Returning to deterministic operation.\n"));
2455 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yylloc
;]])[
2456 yyreportSyntaxError (&yystack
]b4_user_args
[);
2460 /* If any yyglrShift call fails, it will fail after shifting. Thus,
2461 a copy of yylval will already be on stack 0 in the event of a
2462 failure in the following loop. Thus, yychar is set to YYEMPTY
2463 before the loop to make sure the user destructor for yylval isn't
2465 yytoken_to_shift
= YYTRANSLATE (yychar
);
2468 for (yys
= 0; yys
< yystack
.yytops
.yysize
; yys
+= 1)
2471 const short int* yyconflicts
;
2472 yyStateNum yystate
= yystack
.yytops
.yystates
[yys
]->yylrState
;
2473 yygetLRActions (yystate
, yytoken_to_shift
, &yyaction
,
2475 /* Note that yyconflicts were handled by yyprocessOneStack. */
2476 YYDPRINTF ((stderr
, "On stack %lu, ", (unsigned long int) yys
));
2477 YY_SYMBOL_PRINT ("shifting", yytoken_to_shift
, &yylval
, &yylloc
);
2478 yyglrShift (&yystack
, yys
, yyaction
, yyposn
,
2480 YYDPRINTF ((stderr
, "Stack %lu now in state #%d\n",
2481 (unsigned long int) yys
,
2482 yystack
.yytops
.yystates
[yys
]->yylrState
));
2485 if (yystack
.yytops
.yysize
== 1)
2487 YYCHK1 (yyresolveStack (&yystack
]b4_user_args
[));
2488 YYDPRINTF ((stderr
, "Returning to deterministic operation.\n"));
2489 yycompressStack (&yystack
);
2495 yyrecoverSyntaxError (&yystack
]b4_user_args
[);
2496 yyposn
= yystack
.yytops
.yystates
[0]->yyposn
;
2512 yyerror (]b4_lyyerror_args
[YY_("memory exhausted"));
2517 if (yychar
!= YYEMPTY
)
2518 yydestruct ("Cleanup: discarding lookahead",
2519 YYTRANSLATE (yychar
),
2520 &yylval
]b4_locations_if([, &yylloc
])[]b4_user_args
[);
2522 /* If the stack is well-formed, pop the stack until it is empty,
2523 destroying its entries as we go. But free the stack regardless
2524 of whether it is well-formed. */
2525 if (yystack
.yyitems
)
2527 yyGLRState
** yystates
= yystack
.yytops
.yystates
;
2530 size_t yysize
= yystack
.yytops
.yysize
;
2532 for (yyk
= 0; yyk
< yysize
; yyk
+= 1)
2535 while (yystates
[yyk
])
2537 yyGLRState
*yys
= yystates
[yyk
];
2538 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;]]
2539 )[ if (yys
->yypred
!= NULL
)
2540 yydestroyGLRState ("Cleanup: popping", yys
]b4_user_args
[);
2541 yystates
[yyk
] = yys
->yypred
;
2542 yystack
.yynextFree
-= 1;
2543 yystack
.yyspaceLeft
+= 1;
2548 yyfreeGLRStack (&yystack
);
2551 /* Make sure YYID is used. */
2552 return YYID (yyresult
);
2555 /* DEBUGGING ONLY */
2557 static void yypstack (yyGLRStack
* yystackp
, size_t yyk
)
2558 __attribute__ ((__unused__
));
2559 static void yypdumpstack (yyGLRStack
* yystackp
) __attribute__ ((__unused__
));
2562 yy_yypstack (yyGLRState
* yys
)
2566 yy_yypstack (yys
->yypred
);
2567 fprintf (stderr
, " -> ");
2569 fprintf (stderr
, "%d@@%lu", yys
->yylrState
, (unsigned long int) yys
->yyposn
);
2573 yypstates (yyGLRState
* yyst
)
2576 fprintf (stderr
, "<null>");
2579 fprintf (stderr
, "\n");
2583 yypstack (yyGLRStack
* yystackp
, size_t yyk
)
2585 yypstates (yystackp
->yytops
.yystates
[yyk
]);
2588 #define YYINDEX(YYX) \
2589 ((YYX) == NULL ? -1 : (yyGLRStackItem*) (YYX) - yystackp->yyitems)
2593 yypdumpstack (yyGLRStack
* yystackp
)
2595 yyGLRStackItem
* yyp
;
2597 for (yyp
= yystackp
->yyitems
; yyp
< yystackp
->yynextFree
; yyp
+= 1)
2599 fprintf (stderr
, "%3lu. ", (unsigned long int) (yyp
- yystackp
->yyitems
));
2600 if (*(yybool
*) yyp
)
2602 fprintf (stderr
, "Res: %d, LR State: %d, posn: %lu, pred: %ld",
2603 yyp
->yystate
.yyresolved
, yyp
->yystate
.yylrState
,
2604 (unsigned long int) yyp
->yystate
.yyposn
,
2605 (long int) YYINDEX (yyp
->yystate
.yypred
));
2606 if (! yyp
->yystate
.yyresolved
)
2607 fprintf (stderr
, ", firstVal: %ld",
2608 (long int) YYINDEX (yyp
->yystate
.yysemantics
.yyfirstVal
));
2612 fprintf (stderr
, "Option. rule: %d, state: %ld, next: %ld",
2613 yyp
->yyoption
.yyrule
- 1,
2614 (long int) YYINDEX (yyp
->yyoption
.yystate
),
2615 (long int) YYINDEX (yyp
->yyoption
.yynext
));
2617 fprintf (stderr
, "\n");
2619 fprintf (stderr
, "Tops:");
2620 for (yyi
= 0; yyi
< yystackp
->yytops
.yysize
; yyi
+= 1)
2621 fprintf (stderr
, "%lu: %ld; ", (unsigned long int) yyi
,
2622 (long int) YYINDEX (yystackp
->yytops
.yystates
[yyi
]));
2623 fprintf (stderr
, "\n");
2630 dnl glr
.cc produces its own header
.
2632 m4_if(b4_skeleton
, ["glr.c"],
2634 [@
output(b4_spec_defines_file@
)
2635 b4_copyright([Skeleton interface
for Bison GLR parsers in C
],
2636 [2002, 2003, 2004, 2005, 2006])
2638 b4_shared_declarations
2640 extern YYSTYPE b4_prefix
[]lval
;
2642 b4_locations_if([b4_pure_if([],
2643 [extern YYLTYPE b4_prefix
[]lloc
;])