3 # GLR skeleton for Bison
5 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
6 # 2010 Free Software Foundation, Inc.
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 m4_include(b4_pkgdatadir
/[c
.m4
])
24 ## ---------------- ##
26 ## ---------------- ##
29 m4_define_default([b4_stack_depth_max
], [10000])
30 m4_define_default([b4_stack_depth_init
], [200])
34 ## ------------------------ ##
35 ## Pure/impure interfaces. ##
36 ## ------------------------ ##
38 b4_define_flag_if([pure
])
39 # If glr.cc is including this file and thus has already set b4_pure_flag, don't
40 # change the value of b4_pure_flag, and don't record a use of api.pure.
41 m4_ifndef([b4_pure_flag
],
42 [b4_percent_define_default([[api
.pure
]], [[false]])
43 m4_define([b4_pure_flag
],
44 [b4_percent_define_flag_if([[api
.pure
]], [[1]], [[0]])])])
48 # The possible parse-params formal arguments preceded by a comma.
50 # This is not shared with yacc.c in c.m4 because GLR relies on ISO C
51 # formal argument declarations.
52 m4_define([b4_user_formals
],
53 [m4_ifset([b4_parse_param
], [, b4_c_ansi_formals(b4_parse_param
)])])
58 # Accumule in b4_lex_param all the yylex arguments.
59 # Yes, this is quite ugly...
60 m4_define([b4_lex_param
],
61 m4_dquote(b4_pure_if([[[[YYSTYPE
*]], [[&yylval
]]][]dnl
62 b4_locations_if([, [[YYLTYPE
*], [&yylloc
]]])])dnl
63 m4_ifdef([b4_lex_param
], [, ]b4_lex_param
)))
68 # Optional effective arguments passed to yyerror: user args plus yylloc, and
70 m4_define([b4_yyerror_args
],
71 [b4_pure_if([b4_locations_if([yylocp
, ])])dnl
72 m4_ifset([b4_parse_param
], [b4_c_args(b4_parse_param
), ])])
77 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
78 m4_define([b4_lyyerror_args
],
79 [b4_pure_if([b4_locations_if([&yylloc
, ])])dnl
80 m4_ifset([b4_parse_param
], [b4_c_args(b4_parse_param
), ])])
85 # Same as b4_yyerror_args, but with a leading comma.
86 m4_define([b4_pure_args
],
87 [b4_pure_if([b4_locations_if([, yylocp
])])[]b4_user_args
])
92 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
93 m4_define([b4_lpure_args
],
94 [b4_pure_if([b4_locations_if([, &yylloc
])])[]b4_user_args
])
99 # Arguments passed to yyerror: user formals plus yylocp.
100 m4_define([b4_pure_formals
],
101 [b4_pure_if([b4_locations_if([, YYLTYPE
*yylocp
])])[]b4_user_formals
])
104 ## ----------------- ##
105 ## Semantic Values. ##
106 ## ----------------- ##
109 # b4_lhs_value([TYPE])
110 # --------------------
111 # Expansion of $<TYPE>$.
112 m4_define([b4_lhs_value
],
113 [b4_symbol_value([(*yyvalp
)], [$
1])])
116 # b4_rhs_data(RULE-LENGTH, NUM)
117 # -----------------------------
118 # Expand to the semantic stack place that contains value and location
119 # of symbol number NUM in a rule of length RULE-LENGTH.
120 m4_define([b4_rhs_data
],
121 [((yyGLRStackItem
const *)yyvsp
)@
{YYFILL (b4_subtract([$
2], [$
1]))@
}.yystate
])
124 # b4_rhs_value(RULE-LENGTH, NUM, [TYPE])
125 # --------------------------------------
126 # Expansion of $<TYPE>NUM, where the current rule has RULE-LENGTH
128 m4_define([b4_rhs_value
],
129 [b4_symbol_value([b4_rhs_data([$
1], [$
2]).yysemantics
.yysval
], [$
3])])
140 m4_define([b4_lhs_location
],
144 # b4_rhs_location(RULE-LENGTH, NUM)
145 # ---------------------------------
146 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols
148 m4_define([b4_rhs_location
],
149 [(b4_rhs_data([$
1], [$
2]).yyloc
)])
157 # We do want M4 expansion after # for CPP macros.
160 @
output(b4_parser_file_name@
)@
161 b4_copyright([Skeleton implementation
for Bison GLR parsers in C
],
162 [2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010])
164 /* C GLR parser skeleton written by Paul Hilfinger. */
168 b4_percent_code_get([[top]])[]dnl
169 m4_if(b4_prefix
, [yy
], [],
170 [/* Substitute the variable and function names. */
171 #define yyparse b4_prefix[]parse
172 #define yylex b4_prefix[]lex
173 #define yyerror b4_prefix[]error
174 #define yylval b4_prefix[]lval
175 #define yychar b4_prefix[]char
176 #define yydebug b4_prefix[]debug
177 #define yynerrs b4_prefix[]nerrs
178 #define yylloc b4_prefix[]lloc])[
180 /* Copy the first part of user declarations. */
181 ]b4_user_pre_prologue
183 dnl
# b4_shared_declarations
184 dnl
# ----------------------
185 dnl
# Declaration that might either go into the header (if --defines)
186 dnl
# or open coded in the parser body.
187 m4_define([b4_shared_declarations
],
188 [b4_percent_code_get([[requires]])[]dnl
190 b4_token_enums(b4_tokens
)
193 ]m4_ifdef([b4_stype
],
194 [[typedef union ]b4_union_name
[
198 # define YYSTYPE_IS_TRIVIAL 1]],
199 [m4_if(b4_tag_seen_flag
, 0,
200 [[typedef int YYSTYPE
;
201 # define YYSTYPE_IS_TRIVIAL 1]])])[
204 #if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
205 typedef struct YYLTYPE
216 # define YYLTYPE_IS_DECLARED 1
217 # define YYLTYPE_IS_TRIVIAL 1
220 ]b4_percent_code_get([[provides]])[]dnl
223 b4_defines_if([[#include "@basename(]b4_spec_defines_file[@)"]],
224 [b4_shared_declarations
])[
226 /* Enabling traces. */
228 # define YYDEBUG ]b4_parse_trace_if([1], [0])[
231 /* Enabling verbose error messages. */
232 #ifdef YYERROR_VERBOSE
233 # undef YYERROR_VERBOSE
234 # define YYERROR_VERBOSE 1
236 # define YYERROR_VERBOSE ]b4_error_verbose_if([1], [0])[
239 /* Enabling the token table. */
240 #ifndef YYTOKEN_TABLE
241 # define YYTOKEN_TABLE ]b4_token_table[
244 /* Default (constant) value used for initialization for null
245 right-hand sides. Unlike the standard yacc.c template,
246 here we set the default value of $$ to a zeroed-out value.
247 Since the default value is undefined, this behavior is
248 technically correct. */
249 static YYSTYPE yyval_default
;
251 /* Copy the second part of user declarations. */
252 ]b4_user_post_prologue
253 b4_percent_code_get
[]dnl
260 # if defined YYENABLE_NLS && YYENABLE_NLS
262 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
263 # define YY_(msgid) dgettext ("bison-runtime", msgid)
267 # define YY_(msgid) msgid
271 /* Suppress unused-variable warnings by "using" E. */
272 #if ! defined lint || defined __GNUC__
273 # define YYUSE(e) ((void) (e))
275 # define YYUSE(e) /* empty */
278 /* Identity function, used to suppress warnings about constant conditions. */
282 ]b4_c_function_def([YYID
], [static int], [[int i
], [i
]])[
292 # define YYMALLOC malloc
295 # define YYREALLOC realloc
298 #define YYSIZEMAX ((size_t) -1)
303 typedef unsigned char yybool
;
310 # define YYJMP_BUF jmp_buf
311 # define YYSETJMP(env) setjmp (env)
312 # define YYLONGJMP(env, val) longjmp (env, val)
319 #ifndef __attribute__
320 /* This feature is available in gcc versions 2.5 and later. */
321 # if (! defined __GNUC__ || __GNUC__ < 2 \
322 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) \
323 || (defined __STRICT_ANSI__ && __STRICT_ANSI__))
324 # define __attribute__(Spec) /* empty */
328 ]b4_locations_if([#define YYOPTIONAL_LOC(Name) Name],[
330 # define YYOPTIONAL_LOC(Name) /* empty */
332 # define YYOPTIONAL_LOC(Name) Name __attribute__ ((__unused__))
336 # define YYASSERT(condition) ((void) ((condition) || (abort (), 0)))
339 /* YYFINAL -- State number of the termination state. */
340 #define YYFINAL ]b4_final_state_number[
341 /* YYLAST -- Last index in YYTABLE. */
342 #define YYLAST ]b4_last[
344 /* YYNTOKENS -- Number of terminals. */
345 #define YYNTOKENS ]b4_tokens_number[
346 /* YYNNTS -- Number of nonterminals. */
347 #define YYNNTS ]b4_nterms_number[
348 /* YYNRULES -- Number of rules. */
349 #define YYNRULES ]b4_rules_number[
350 /* YYNRULES -- Number of states. */
351 #define YYNSTATES ]b4_states_number[
352 /* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */
353 #define YYMAXRHS ]b4_r2_max[
354 /* YYMAXLEFT -- Maximum number of symbols to the left of a handle
355 accessed by $0, $-1, etc., in any rule. */
356 #define YYMAXLEFT ]b4_max_left_semantic_context[
358 /* YYTRANSLATE(X) -- Bison symbol number corresponding to X. */
359 #define YYUNDEFTOK ]b4_undef_token_number[
360 #define YYMAXUTOK ]b4_user_token_number_max[
362 #define YYTRANSLATE(YYX) \
363 ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
365 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
366 static const ]b4_int_type_for([b4_translate
])[ yytranslate
[] =
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 #define YYPACT_NINF ]b4_pact_ninf[
389 #define YYTABLE_NINF ]b4_table_ninf[
391 ]b4_parser_tables_define
[
393 /* YYDPREC[RULE-NUM] -- Dynamic precedence of rule #RULE-NUM (0 if none). */
394 static const ]b4_int_type_for([b4_dprec
])[ yydprec
[] =
399 /* YYMERGER[RULE-NUM] -- Index of merging function for rule #RULE-NUM. */
400 static const ]b4_int_type_for([b4_merger
])[ yymerger
[] =
405 /* YYCONFLP[YYPACT[STATE-NUM]] -- Pointer into YYCONFL of start of
406 list of conflicting reductions corresponding to action entry for
407 state STATE-NUM in yytable. 0 means no conflicts. The list in
408 yyconfl is terminated by a rule number of 0. */
409 static const ]b4_int_type_for([b4_conflict_list_heads
])[ yyconflp
[] =
411 ]b4_conflict_list_heads
[
414 /* YYCONFL[I] -- lists of conflicting rule numbers, each terminated by
415 0, pointed into by YYCONFLP. */
416 ]dnl Do
not use b4_int_type_for here
, since there are places where
417 dnl pointers onto yyconfl are taken
, which type is
"short int *".
418 dnl We probably ought to introduce a type
for confl
.
419 [static const short int yyconfl
[] =
421 ]b4_conflicting_rules
[
424 /* Prevent warning if -Wmissing-prototypes. */
425 ]b4_c_ansi_function_decl([yyparse
], [int], b4_parse_param
)[
427 /* Error token number */
430 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
431 If N is 0, then set CURRENT to the empty location which ends
432 the previous symbol: RHS[0] (always defined). */
435 #define YYRHSLOC(Rhs, K) ((Rhs)[K].yystate.yyloc)
436 #ifndef YYLLOC_DEFAULT
437 # define YYLLOC_DEFAULT(Current, Rhs, N) \
441 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
442 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
443 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
444 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
448 (Current).first_line = (Current).last_line = \
449 YYRHSLOC (Rhs, 0).last_line; \
450 (Current).first_column = (Current).last_column = \
451 YYRHSLOC (Rhs, 0).last_column; \
455 /* YY_LOCATION_PRINT -- Print the location on the stream.
456 This macro was not mandated originally: define only if we know
457 we won't break user code: when these are the locations we know. */
459 # define YY_LOCATION_PRINT(File, Loc) \
460 fprintf (File, "%d.%d-%d.%d", \
461 (Loc).first_line, (Loc).first_column, \
462 (Loc).last_line, (Loc).last_column)
465 #ifndef YYLLOC_DEFAULT
466 # define YYLLOC_DEFAULT(Current, Rhs, N) ((void) 0)
470 #ifndef YY_LOCATION_PRINT
471 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
475 /* YYLEX -- calling `yylex' with the right arguments. */
476 #define YYLEX ]b4_c_function_call([yylex], [int], b4_lex_param)[
481 #define yynerrs (yystackp->yyerrcnt)
483 #define yychar (yystackp->yyrawchar)
485 #define yylval (yystackp->yyval)
487 #define yylloc (yystackp->yyloc)
488 m4_if(b4_prefix
[], [yy
], [],
489 [#define b4_prefix[]nerrs yynerrs
490 #define b4_prefix[]char yychar
491 #define b4_prefix[]lval yylval
492 #define b4_prefix[]lloc yylloc])],
500 static const int YYEOF
= 0;
501 static const int YYEMPTY
= -2;
503 typedef enum { yyok
, yyaccept
, yyabort
, yyerr
} YYRESULTTAG
;
507 YYRESULTTAG yyflag = YYE; \
508 if (yyflag != yyok) \
515 # define YYFPRINTF fprintf
518 # define YYDPRINTF(Args) \
524 ]b4_yy_symbol_print_generate([b4_c_ansi_function_def
])[
526 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
530 YYFPRINTF (stderr, "%s ", Title); \
531 yy_symbol_print (stderr, Type, \
532 Value]b4_locations_if([, Location])[]b4_user_args[); \
533 YYFPRINTF (stderr, "\n"); \
537 /* Nonzero means print parse trace. It is left uninitialized so that
538 multiple parsers can coexist. */
543 # define YYDPRINTF(Args)
544 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
546 #endif /* !YYDEBUG */
548 /* YYINITDEPTH -- initial size of the parser's stacks. */
550 # define YYINITDEPTH ]b4_stack_depth_init[
553 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
554 if the built-in stack extension method is used).
556 Do not make this value too large; the results are undefined if
557 SIZE_MAX < YYMAXDEPTH * sizeof (GLRStackItem)
558 evaluated with infinite-precision integer arithmetic. */
561 # define YYMAXDEPTH ]b4_stack_depth_max[
564 /* Minimum number of free items on the stack allowed after an
565 allocation. This is to allow allocation and initialization
566 to be completed by functions that call yyexpandGLRStack before the
567 stack is expanded, thus insuring that all necessary pointers get
568 properly redirected to new data. */
571 #ifndef YYSTACKEXPANDABLE
572 # if (! defined __cplusplus \
573 || (]b4_locations_if([[defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \
574 && ]])[defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))
575 # define YYSTACKEXPANDABLE 1
577 # define YYSTACKEXPANDABLE 0
581 #if YYSTACKEXPANDABLE
582 # define YY_RESERVE_GLRSTACK(Yystack) \
584 if (Yystack->yyspaceLeft < YYHEADROOM) \
585 yyexpandGLRStack (Yystack); \
588 # define YY_RESERVE_GLRSTACK(Yystack) \
590 if (Yystack->yyspaceLeft < YYHEADROOM) \
591 yyMemoryExhausted (Yystack); \
599 # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
600 # define yystpcpy stpcpy
602 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
605 yystpcpy (char *yydest
, const char *yysrc
)
608 const char *yys
= yysrc
;
610 while ((*yyd
++ = *yys
++) != '\0')
619 /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
620 quotes and backslashes, so that it's suitable for yyerror. The
621 heuristic is that double-quoting is unnecessary unless the string
622 contains an apostrophe, a comma, or backslash (other than
623 backslash-backslash). YYSTR is taken from yytname. If YYRES is
624 null, do not copy; instead, return the length of what the result
627 yytnamerr (char *yyres
, const char *yystr
)
632 char const *yyp
= yystr
;
639 goto do_not_strip_quotes
;
643 goto do_not_strip_quotes
;
656 do_not_strip_quotes
: ;
660 return strlen (yystr
);
662 return yystpcpy (yyres
, yystr
) - yyres
;
666 #endif /* !YYERROR_VERBOSE */
668 /** State numbers, as in LALR(1) machine */
669 typedef int yyStateNum
;
671 /** Rule numbers, as in LALR(1) machine */
672 typedef int yyRuleNum
;
674 /** Grammar symbol */
675 typedef short int yySymbol
;
677 /** Item references, as in LALR(1) machine */
678 typedef short int yyItemNum
;
680 typedef struct yyGLRState yyGLRState
;
681 typedef struct yyGLRStateSet yyGLRStateSet
;
682 typedef struct yySemanticOption yySemanticOption
;
683 typedef union yyGLRStackItem yyGLRStackItem
;
684 typedef struct yyGLRStack yyGLRStack
;
687 /** Type tag: always true. */
689 /** Type tag for yysemantics. If true, yysval applies, otherwise
690 * yyfirstVal applies. */
692 /** Number of corresponding LALR(1) machine state. */
693 yyStateNum yylrState
;
694 /** Preceding state in this stack */
696 /** Source position of the first token produced by my symbol */
699 /** First in a chain of alternative reductions producing the
700 * non-terminal corresponding to this state, threaded through
702 yySemanticOption
* yyfirstVal
;
703 /** Semantic value for this state. */
706 /** Source location for this state. */
710 struct yyGLRStateSet
{
711 yyGLRState
** yystates
;
712 /** During nondeterministic operation, yylookaheadNeeds tracks which
713 * stacks have actually needed the current lookahead. During deterministic
714 * operation, yylookaheadNeeds[0] is not maintained since it would merely
715 * duplicate yychar != YYEMPTY. */
716 yybool
* yylookaheadNeeds
;
717 size_t yysize
, yycapacity
;
720 struct yySemanticOption
{
721 /** Type tag: always false. */
723 /** Rule number for this reduction */
725 /** The last RHS state in the list of states to be reduced. */
727 /** The lookahead for this reduction. */
731 /** Next sibling in chain of options. To facilitate merging,
732 * options are chained in decreasing order by address. */
733 yySemanticOption
* yynext
;
736 /** Type of the items in the GLR stack. The yyisState field
737 * indicates which item of the union is valid. */
738 union yyGLRStackItem
{
740 yySemanticOption yyoption
;
745 ]b4_locations_if([[ /* To compute the location of the error token. */
746 yyGLRStackItem yyerror_range
[3];]])[
754 YYJMP_BUF yyexception_buffer
;
755 yyGLRStackItem
* yyitems
;
756 yyGLRStackItem
* yynextFree
;
758 yyGLRState
* yysplitPoint
;
759 yyGLRState
* yylastDeleted
;
760 yyGLRStateSet yytops
;
763 #if YYSTACKEXPANDABLE
764 static void yyexpandGLRStack (yyGLRStack
* yystackp
);
767 static void yyFail (yyGLRStack
* yystackp
]b4_pure_formals
[, const char* yymsg
)
768 __attribute__ ((__noreturn__
));
770 yyFail (yyGLRStack
* yystackp
]b4_pure_formals
[, const char* yymsg
)
773 yyerror (]b4_yyerror_args
[yymsg
);
774 YYLONGJMP (yystackp
->yyexception_buffer
, 1);
777 static void yyMemoryExhausted (yyGLRStack
* yystackp
)
778 __attribute__ ((__noreturn__
));
780 yyMemoryExhausted (yyGLRStack
* yystackp
)
782 YYLONGJMP (yystackp
->yyexception_buffer
, 2);
785 #if YYDEBUG || YYERROR_VERBOSE
786 /** A printable representation of TOKEN. */
787 static inline const char*
788 yytokenName (yySymbol yytoken
)
790 if (yytoken
== YYEMPTY
)
793 return yytname
[yytoken
];
797 /** Fill in YYVSP[YYLOW1 .. YYLOW0-1] from the chain of states starting
798 * at YYVSP[YYLOW0].yystate.yypred. Leaves YYVSP[YYLOW1].yystate.yypred
799 * containing the pointer to the next state in the chain. */
800 static void yyfillin (yyGLRStackItem
*, int, int) __attribute__ ((__unused__
));
802 yyfillin (yyGLRStackItem
*yyvsp
, int yylow0
, int yylow1
)
806 s
= yyvsp
[yylow0
].yystate
.yypred
;
807 for (i
= yylow0
-1; i
>= yylow1
; i
-= 1)
809 YYASSERT (s
->yyresolved
);
810 yyvsp
[i
].yystate
.yyresolved
= yytrue
;
811 yyvsp
[i
].yystate
.yysemantics
.yysval
= s
->yysemantics
.yysval
;
812 yyvsp
[i
].yystate
.yyloc
= s
->yyloc
;
813 s
= yyvsp
[i
].yystate
.yypred
= s
->yypred
;
817 /* Do nothing if YYNORMAL or if *YYLOW <= YYLOW1. Otherwise, fill in
818 * YYVSP[YYLOW1 .. *YYLOW-1] as in yyfillin and set *YYLOW = YYLOW1.
819 * For convenience, always return YYLOW1. */
820 static inline int yyfill (yyGLRStackItem
*, int *, int, yybool
)
821 __attribute__ ((__unused__
));
823 yyfill (yyGLRStackItem
*yyvsp
, int *yylow
, int yylow1
, yybool yynormal
)
825 if (!yynormal
&& yylow1
< *yylow
)
827 yyfillin (yyvsp
, *yylow
, yylow1
);
833 /** Perform user action for rule number YYN, with RHS length YYRHSLEN,
834 * and top stack item YYVSP. YYLVALP points to place to put semantic
835 * value ($$), and yylocp points to place for location information
836 * (@@$). Returns yyok for normal return, yyaccept for YYACCEPT,
837 * yyerr for YYERROR, yyabort for YYABORT. */
838 /*ARGSUSED*/ static YYRESULTTAG
839 yyuserAction (yyRuleNum yyn
, int yyrhslen
, yyGLRStackItem
* yyvsp
,
841 YYLTYPE
* YYOPTIONAL_LOC (yylocp
),
845 yybool yynormal
__attribute__ ((__unused__
)) =
846 (yystackp
->yysplitPoint
== NULL
);
848 ]b4_parse_param_use
[]dnl
850 # define yyerrok (yystackp->yyerrState = 0)
852 # define YYACCEPT return yyaccept
854 # define YYABORT return yyabort
856 # define YYERROR return yyerrok, yyerr
858 # define YYRECOVERING() (yystackp->yyerrState != 0)
860 # define yyclearin (yychar = YYEMPTY)
862 # define YYFILL(N) yyfill (yyvsp, &yylow, N, yynormal)
864 # define YYBACKUP(Token, Value) \
865 return yyerror (]b4_yyerror_args[YY_("syntax error: cannot back up")), \
870 *yyvalp
= yyval_default
;
872 *yyvalp
= yyvsp
[YYFILL (1-yyrhslen
)].yystate
.yysemantics
.yysval
;
873 YYLLOC_DEFAULT ((*yylocp
), (yyvsp
- yyrhslen
), yyrhslen
);
874 ]b4_locations_if([[ yystackp
->yyerror_range
[1].yystate
.yyloc
= *yylocp
;
893 /*ARGSUSED*/ static void
894 yyuserMerge (int yyn
, YYSTYPE
* yy0
, YYSTYPE
* yy1
)
906 /* Bison grammar-table manipulation. */
908 ]b4_yydestruct_generate([b4_c_ansi_function_def
])[
910 /** Number of symbols composing the right hand side of rule #RULE. */
912 yyrhsLength (yyRuleNum yyrule
)
918 yydestroyGLRState (char const *yymsg
, yyGLRState
*yys
]b4_user_formals
[)
921 yydestruct (yymsg
, yystos
[yys
->yylrState
],
922 &yys
->yysemantics
.yysval
]b4_locations_if([, &yys
->yyloc
])[]b4_user_args
[);
928 if (yys
->yysemantics
.yyfirstVal
)
929 YYFPRINTF (stderr
, "%s unresolved ", yymsg
);
931 YYFPRINTF (stderr
, "%s incomplete ", yymsg
);
932 yy_symbol_print (stderr
, yystos
[yys
->yylrState
],
933 NULL
]b4_locations_if([, &yys
->yyloc
])[]b4_user_args
[);
934 YYFPRINTF (stderr
, "\n");
938 if (yys
->yysemantics
.yyfirstVal
)
940 yySemanticOption
*yyoption
= yys
->yysemantics
.yyfirstVal
;
943 for (yyrh
= yyoption
->yystate
, yyn
= yyrhsLength (yyoption
->yyrule
);
945 yyrh
= yyrh
->yypred
, yyn
-= 1)
946 yydestroyGLRState (yymsg
, yyrh
]b4_user_args
[);
951 /** Left-hand-side symbol for rule #RULE. */
952 static inline yySymbol
953 yylhsNonterm (yyRuleNum yyrule
)
958 #define yypact_value_is_default(yystate) \
959 ]b4_table_value_equals([[pact]], [[yystate]], [b4_pact_ninf])[
961 /** True iff LR state STATE has only a default reduction (regardless
964 yyisDefaultedState (yyStateNum yystate
)
966 return yypact_value_is_default (yypact
[yystate
]);
969 /** The default reduction for STATE, assuming it has one. */
970 static inline yyRuleNum
971 yydefaultAction (yyStateNum yystate
)
973 return yydefact
[yystate
];
976 #define yytable_value_is_error(yytable_value) \
977 ]b4_table_value_equals([[table]], [[yytable_value]], [b4_table_ninf])[
979 /** Set *YYACTION to the action to take in YYSTATE on seeing YYTOKEN.
981 * R < 0: Reduce on rule -R.
983 * R > 0: Shift to state R.
984 * Set *CONFLICTS to a pointer into yyconfl to 0-terminated list of
985 * conflicting reductions.
988 yygetLRActions (yyStateNum yystate
, int yytoken
,
989 int* yyaction
, const short int** yyconflicts
)
991 int yyindex
= yypact
[yystate
] + yytoken
;
992 if (yypact_value_is_default (yypact
[yystate
])
993 || yyindex
< 0 || YYLAST
< yyindex
|| yycheck
[yyindex
] != yytoken
)
995 *yyaction
= -yydefact
[yystate
];
996 *yyconflicts
= yyconfl
;
998 else if (! yytable_value_is_error (yytable
[yyindex
]))
1000 *yyaction
= yytable
[yyindex
];
1001 *yyconflicts
= yyconfl
+ yyconflp
[yyindex
];
1006 *yyconflicts
= yyconfl
+ yyconflp
[yyindex
];
1010 static inline yyStateNum
1011 yyLRgotoState (yyStateNum yystate
, yySymbol yylhs
)
1013 int yyr
= yypgoto
[yylhs
- YYNTOKENS
] + yystate
;
1014 if (0 <= yyr
&& yyr
<= YYLAST
&& yycheck
[yyr
] == yystate
)
1015 return yytable
[yyr
];
1017 return yydefgoto
[yylhs
- YYNTOKENS
];
1020 static inline yybool
1021 yyisShiftAction (int yyaction
)
1023 return 0 < yyaction
;
1026 static inline yybool
1027 yyisErrorAction (int yyaction
)
1029 return yyaction
== 0;
1034 /** Return a fresh GLRStackItem. Callers should call
1035 * YY_RESERVE_GLRSTACK afterwards to make sure there is sufficient
1038 static inline yyGLRStackItem
*
1039 yynewGLRStackItem (yyGLRStack
* yystackp
, yybool yyisState
)
1041 yyGLRStackItem
* yynewItem
= yystackp
->yynextFree
;
1042 yystackp
->yyspaceLeft
-= 1;
1043 yystackp
->yynextFree
+= 1;
1044 yynewItem
->yystate
.yyisState
= yyisState
;
1048 /** Add a new semantic action that will execute the action for rule
1049 * RULENUM on the semantic values in RHS to the list of
1050 * alternative actions for STATE. Assumes that RHS comes from
1051 * stack #K of *STACKP. */
1053 yyaddDeferredAction (yyGLRStack
* yystackp
, size_t yyk
, yyGLRState
* yystate
,
1054 yyGLRState
* yyrhs
, yyRuleNum yyrule
)
1056 yySemanticOption
* yynewOption
=
1057 &yynewGLRStackItem (yystackp
, yyfalse
)->yyoption
;
1058 yynewOption
->yystate
= yyrhs
;
1059 yynewOption
->yyrule
= yyrule
;
1060 if (yystackp
->yytops
.yylookaheadNeeds
[yyk
])
1062 yynewOption
->yyrawchar
= yychar
;
1063 yynewOption
->yyval
= yylval
;
1064 yynewOption
->yyloc
= yylloc
;
1067 yynewOption
->yyrawchar
= YYEMPTY
;
1068 yynewOption
->yynext
= yystate
->yysemantics
.yyfirstVal
;
1069 yystate
->yysemantics
.yyfirstVal
= yynewOption
;
1071 YY_RESERVE_GLRSTACK (yystackp
);
1076 /** Initialize SET to a singleton set containing an empty stack. */
1078 yyinitStateSet (yyGLRStateSet
* yyset
)
1081 yyset
->yycapacity
= 16;
1082 yyset
->yystates
= (yyGLRState
**) YYMALLOC (16 * sizeof yyset
->yystates
[0]);
1083 if (! yyset
->yystates
)
1085 yyset
->yystates
[0] = NULL
;
1086 yyset
->yylookaheadNeeds
=
1087 (yybool
*) YYMALLOC (16 * sizeof yyset
->yylookaheadNeeds
[0]);
1088 if (! yyset
->yylookaheadNeeds
)
1090 YYFREE (yyset
->yystates
);
1096 static void yyfreeStateSet (yyGLRStateSet
* yyset
)
1098 YYFREE (yyset
->yystates
);
1099 YYFREE (yyset
->yylookaheadNeeds
);
1102 /** Initialize STACK to a single empty stack, with total maximum
1103 * capacity for all stacks of SIZE. */
1105 yyinitGLRStack (yyGLRStack
* yystackp
, size_t yysize
)
1107 yystackp
->yyerrState
= 0;
1109 yystackp
->yyspaceLeft
= yysize
;
1111 (yyGLRStackItem
*) YYMALLOC (yysize
* sizeof yystackp
->yynextFree
[0]);
1112 if (!yystackp
->yyitems
)
1114 yystackp
->yynextFree
= yystackp
->yyitems
;
1115 yystackp
->yysplitPoint
= NULL
;
1116 yystackp
->yylastDeleted
= NULL
;
1117 return yyinitStateSet (&yystackp
->yytops
);
1121 #if YYSTACKEXPANDABLE
1122 # define YYRELOC(YYFROMITEMS,YYTOITEMS,YYX,YYTYPE) \
1123 &((YYTOITEMS) - ((YYFROMITEMS) - (yyGLRStackItem*) (YYX)))->YYTYPE
1125 /** If STACK is expandable, extend it. WARNING: Pointers into the
1126 stack from outside should be considered invalid after this call.
1127 We always expand when there are 1 or fewer items left AFTER an
1128 allocation, so that we can avoid having external pointers exist
1129 across an allocation. */
1131 yyexpandGLRStack (yyGLRStack
* yystackp
)
1133 yyGLRStackItem
* yynewItems
;
1134 yyGLRStackItem
* yyp0
, *yyp1
;
1135 size_t yysize
, yynewSize
;
1137 yysize
= yystackp
->yynextFree
- yystackp
->yyitems
;
1138 if (YYMAXDEPTH
- YYHEADROOM
< yysize
)
1139 yyMemoryExhausted (yystackp
);
1140 yynewSize
= 2*yysize
;
1141 if (YYMAXDEPTH
< yynewSize
)
1142 yynewSize
= YYMAXDEPTH
;
1143 yynewItems
= (yyGLRStackItem
*) YYMALLOC (yynewSize
* sizeof yynewItems
[0]);
1145 yyMemoryExhausted (yystackp
);
1146 for (yyp0
= yystackp
->yyitems
, yyp1
= yynewItems
, yyn
= yysize
;
1148 yyn
-= 1, yyp0
+= 1, yyp1
+= 1)
1151 if (*(yybool
*) yyp0
)
1153 yyGLRState
* yys0
= &yyp0
->yystate
;
1154 yyGLRState
* yys1
= &yyp1
->yystate
;
1155 if (yys0
->yypred
!= NULL
)
1157 YYRELOC (yyp0
, yyp1
, yys0
->yypred
, yystate
);
1158 if (! yys0
->yyresolved
&& yys0
->yysemantics
.yyfirstVal
!= NULL
)
1159 yys1
->yysemantics
.yyfirstVal
=
1160 YYRELOC(yyp0
, yyp1
, yys0
->yysemantics
.yyfirstVal
, yyoption
);
1164 yySemanticOption
* yyv0
= &yyp0
->yyoption
;
1165 yySemanticOption
* yyv1
= &yyp1
->yyoption
;
1166 if (yyv0
->yystate
!= NULL
)
1167 yyv1
->yystate
= YYRELOC (yyp0
, yyp1
, yyv0
->yystate
, yystate
);
1168 if (yyv0
->yynext
!= NULL
)
1169 yyv1
->yynext
= YYRELOC (yyp0
, yyp1
, yyv0
->yynext
, yyoption
);
1172 if (yystackp
->yysplitPoint
!= NULL
)
1173 yystackp
->yysplitPoint
= YYRELOC (yystackp
->yyitems
, yynewItems
,
1174 yystackp
->yysplitPoint
, yystate
);
1176 for (yyn
= 0; yyn
< yystackp
->yytops
.yysize
; yyn
+= 1)
1177 if (yystackp
->yytops
.yystates
[yyn
] != NULL
)
1178 yystackp
->yytops
.yystates
[yyn
] =
1179 YYRELOC (yystackp
->yyitems
, yynewItems
,
1180 yystackp
->yytops
.yystates
[yyn
], yystate
);
1181 YYFREE (yystackp
->yyitems
);
1182 yystackp
->yyitems
= yynewItems
;
1183 yystackp
->yynextFree
= yynewItems
+ yysize
;
1184 yystackp
->yyspaceLeft
= yynewSize
- yysize
;
1189 yyfreeGLRStack (yyGLRStack
* yystackp
)
1191 YYFREE (yystackp
->yyitems
);
1192 yyfreeStateSet (&yystackp
->yytops
);
1195 /** Assuming that S is a GLRState somewhere on STACK, update the
1196 * splitpoint of STACK, if needed, so that it is at least as deep as
1199 yyupdateSplit (yyGLRStack
* yystackp
, yyGLRState
* yys
)
1201 if (yystackp
->yysplitPoint
!= NULL
&& yystackp
->yysplitPoint
> yys
)
1202 yystackp
->yysplitPoint
= yys
;
1205 /** Invalidate stack #K in STACK. */
1207 yymarkStackDeleted (yyGLRStack
* yystackp
, size_t yyk
)
1209 if (yystackp
->yytops
.yystates
[yyk
] != NULL
)
1210 yystackp
->yylastDeleted
= yystackp
->yytops
.yystates
[yyk
];
1211 yystackp
->yytops
.yystates
[yyk
] = NULL
;
1214 /** Undelete the last stack that was marked as deleted. Can only be
1215 done once after a deletion, and only when all other stacks have
1218 yyundeleteLastStack (yyGLRStack
* yystackp
)
1220 if (yystackp
->yylastDeleted
== NULL
|| yystackp
->yytops
.yysize
!= 0)
1222 yystackp
->yytops
.yystates
[0] = yystackp
->yylastDeleted
;
1223 yystackp
->yytops
.yysize
= 1;
1224 YYDPRINTF ((stderr
, "Restoring last deleted stack as stack #0.\n"));
1225 yystackp
->yylastDeleted
= NULL
;
1229 yyremoveDeletes (yyGLRStack
* yystackp
)
1233 while (yyj
< yystackp
->yytops
.yysize
)
1235 if (yystackp
->yytops
.yystates
[yyi
] == NULL
)
1239 YYDPRINTF ((stderr
, "Removing dead stacks.\n"));
1241 yystackp
->yytops
.yysize
-= 1;
1245 yystackp
->yytops
.yystates
[yyj
] = yystackp
->yytops
.yystates
[yyi
];
1246 /* In the current implementation, it's unnecessary to copy
1247 yystackp->yytops.yylookaheadNeeds[yyi] since, after
1248 yyremoveDeletes returns, the parser immediately either enters
1249 deterministic operation or shifts a token. However, it doesn't
1250 hurt, and the code might evolve to need it. */
1251 yystackp
->yytops
.yylookaheadNeeds
[yyj
] =
1252 yystackp
->yytops
.yylookaheadNeeds
[yyi
];
1255 YYDPRINTF ((stderr
, "Rename stack %lu -> %lu.\n",
1256 (unsigned long int) yyi
, (unsigned long int) yyj
));
1264 /** Shift to a new state on stack #K of STACK, corresponding to LR state
1265 * LRSTATE, at input position POSN, with (resolved) semantic value SVAL. */
1267 yyglrShift (yyGLRStack
* yystackp
, size_t yyk
, yyStateNum yylrState
,
1269 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
)
1271 yyGLRState
* yynewState
= &yynewGLRStackItem (yystackp
, yytrue
)->yystate
;
1273 yynewState
->yylrState
= yylrState
;
1274 yynewState
->yyposn
= yyposn
;
1275 yynewState
->yyresolved
= yytrue
;
1276 yynewState
->yypred
= yystackp
->yytops
.yystates
[yyk
];
1277 yynewState
->yysemantics
.yysval
= *yyvalp
;
1278 yynewState
->yyloc
= *yylocp
;
1279 yystackp
->yytops
.yystates
[yyk
] = yynewState
;
1281 YY_RESERVE_GLRSTACK (yystackp
);
1284 /** Shift stack #K of YYSTACK, to a new state corresponding to LR
1285 * state YYLRSTATE, at input position YYPOSN, with the (unresolved)
1286 * semantic value of YYRHS under the action for YYRULE. */
1288 yyglrShiftDefer (yyGLRStack
* yystackp
, size_t yyk
, yyStateNum yylrState
,
1289 size_t yyposn
, yyGLRState
* yyrhs
, yyRuleNum yyrule
)
1291 yyGLRState
* yynewState
= &yynewGLRStackItem (yystackp
, yytrue
)->yystate
;
1293 yynewState
->yylrState
= yylrState
;
1294 yynewState
->yyposn
= yyposn
;
1295 yynewState
->yyresolved
= yyfalse
;
1296 yynewState
->yypred
= yystackp
->yytops
.yystates
[yyk
];
1297 yynewState
->yysemantics
.yyfirstVal
= NULL
;
1298 yystackp
->yytops
.yystates
[yyk
] = yynewState
;
1300 /* Invokes YY_RESERVE_GLRSTACK. */
1301 yyaddDeferredAction (yystackp
, yyk
, yynewState
, yyrhs
, yyrule
);
1304 /** Pop the symbols consumed by reduction #RULE from the top of stack
1305 * #K of STACK, and perform the appropriate semantic action on their
1306 * semantic values. Assumes that all ambiguities in semantic values
1307 * have been previously resolved. Set *VALP to the resulting value,
1308 * and *LOCP to the computed location (if any). Return value is as
1309 * for userAction. */
1310 static inline YYRESULTTAG
1311 yydoAction (yyGLRStack
* yystackp
, size_t yyk
, yyRuleNum yyrule
,
1312 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1314 int yynrhs
= yyrhsLength (yyrule
);
1316 if (yystackp
->yysplitPoint
== NULL
)
1318 /* Standard special case: single stack. */
1319 yyGLRStackItem
* yyrhs
= (yyGLRStackItem
*) yystackp
->yytops
.yystates
[yyk
];
1320 YYASSERT (yyk
== 0);
1321 yystackp
->yynextFree
-= yynrhs
;
1322 yystackp
->yyspaceLeft
+= yynrhs
;
1323 yystackp
->yytops
.yystates
[0] = & yystackp
->yynextFree
[-1].yystate
;
1324 return yyuserAction (yyrule
, yynrhs
, yyrhs
,
1325 yyvalp
, yylocp
, yystackp
]b4_user_args
[);
1329 /* At present, doAction is never called in nondeterministic
1330 * mode, so this branch is never taken. It is here in
1331 * anticipation of a future feature that will allow immediate
1332 * evaluation of selected actions in nondeterministic mode. */
1335 yyGLRStackItem yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
+ 1];
1336 yys
= yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
].yystate
.yypred
1337 = yystackp
->yytops
.yystates
[yyk
];]b4_locations_if([[
1339 /* Set default location. */
1340 yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
- 1].yystate
.yyloc
= yys
->yyloc
;]])[
1341 for (yyi
= 0; yyi
< yynrhs
; yyi
+= 1)
1346 yyupdateSplit (yystackp
, yys
);
1347 yystackp
->yytops
.yystates
[yyk
] = yys
;
1348 return yyuserAction (yyrule
, yynrhs
, yyrhsVals
+ YYMAXRHS
+ YYMAXLEFT
- 1,
1349 yyvalp
, yylocp
, yystackp
]b4_user_args
[);
1354 # define YY_REDUCE_PRINT(Args)
1356 # define YY_REDUCE_PRINT(Args) \
1359 yy_reduce_print Args; \
1362 /*----------------------------------------------------------.
1363 | Report that the RULE is going to be reduced on stack #K. |
1364 `----------------------------------------------------------*/
1366 /*ARGSUSED*/ static inline void
1367 yy_reduce_print (yyGLRStack
* yystackp
, size_t yyk
, yyRuleNum yyrule
]b4_user_formals
[)
1369 int yynrhs
= yyrhsLength (yyrule
);
1370 yybool yynormal
__attribute__ ((__unused__
)) =
1371 (yystackp
->yysplitPoint
== NULL
);
1372 yyGLRStackItem
* yyvsp
= (yyGLRStackItem
*) yystackp
->yytops
.yystates
[yyk
];
1375 ]b4_parse_param_use
[]dnl
1376 [ YYFPRINTF (stderr
, "Reducing stack %lu by rule %d (line %lu):\n",
1377 (unsigned long int) yyk
, yyrule
- 1,
1378 (unsigned long int) yyrline
[yyrule
]);
1379 /* The symbols being reduced. */
1380 for (yyi
= 0; yyi
< yynrhs
; yyi
++)
1382 YYFPRINTF (stderr
, " $%d = ", yyi
+ 1);
1383 yy_symbol_print (stderr
,
1384 ]yystos@
{b4_rhs_data(yynrhs
, yyi
+ 1).yylrState@
}[,
1385 &]b4_rhs_value(yynrhs
, yyi
+ 1)[
1386 ]b4_locations_if([, &]b4_rhs_location(yynrhs
, yyi
+ 1))[]dnl
1388 YYFPRINTF (stderr
, "\n");
1393 /** Pop items off stack #K of STACK according to grammar rule RULE,
1394 * and push back on the resulting nonterminal symbol. Perform the
1395 * semantic action associated with RULE and store its value with the
1396 * newly pushed state, if FORCEEVAL or if STACK is currently
1397 * unambiguous. Otherwise, store the deferred semantic action with
1398 * the new state. If the new state would have an identical input
1399 * position, LR state, and predecessor to an existing state on the stack,
1400 * it is identified with that existing state, eliminating stack #K from
1401 * the STACK. In this case, the (necessarily deferred) semantic value is
1402 * added to the options for the existing state's semantic value.
1404 static inline YYRESULTTAG
1405 yyglrReduce (yyGLRStack
* yystackp
, size_t yyk
, yyRuleNum yyrule
,
1406 yybool yyforceEval
]b4_user_formals
[)
1408 size_t yyposn
= yystackp
->yytops
.yystates
[yyk
]->yyposn
;
1410 if (yyforceEval
|| yystackp
->yysplitPoint
== NULL
)
1415 YY_REDUCE_PRINT ((yystackp
, yyk
, yyrule
]b4_user_args
[));
1416 YYCHK (yydoAction (yystackp
, yyk
, yyrule
, &yysval
,
1417 &yyloc
]b4_user_args
[));
1418 YY_SYMBOL_PRINT ("-> $$ =", yyr1
[yyrule
], &yysval
, &yyloc
);
1419 yyglrShift (yystackp
, yyk
,
1420 yyLRgotoState (yystackp
->yytops
.yystates
[yyk
]->yylrState
,
1421 yylhsNonterm (yyrule
)),
1422 yyposn
, &yysval
, &yyloc
);
1428 yyGLRState
* yys
, *yys0
= yystackp
->yytops
.yystates
[yyk
];
1429 yyStateNum yynewLRState
;
1431 for (yys
= yystackp
->yytops
.yystates
[yyk
], yyn
= yyrhsLength (yyrule
);
1437 yyupdateSplit (yystackp
, yys
);
1438 yynewLRState
= yyLRgotoState (yys
->yylrState
, yylhsNonterm (yyrule
));
1440 "Reduced stack %lu by rule #%d; action deferred. Now in state %d.\n",
1441 (unsigned long int) yyk
, yyrule
- 1, yynewLRState
));
1442 for (yyi
= 0; yyi
< yystackp
->yytops
.yysize
; yyi
+= 1)
1443 if (yyi
!= yyk
&& yystackp
->yytops
.yystates
[yyi
] != NULL
)
1445 yyGLRState
* yyp
, *yysplit
= yystackp
->yysplitPoint
;
1446 yyp
= yystackp
->yytops
.yystates
[yyi
];
1447 while (yyp
!= yys
&& yyp
!= yysplit
&& yyp
->yyposn
>= yyposn
)
1449 if (yyp
->yylrState
== yynewLRState
&& yyp
->yypred
== yys
)
1451 yyaddDeferredAction (yystackp
, yyk
, yyp
, yys0
, yyrule
);
1452 yymarkStackDeleted (yystackp
, yyk
);
1453 YYDPRINTF ((stderr
, "Merging stack %lu into stack %lu.\n",
1454 (unsigned long int) yyk
,
1455 (unsigned long int) yyi
));
1461 yystackp
->yytops
.yystates
[yyk
] = yys
;
1462 yyglrShiftDefer (yystackp
, yyk
, yynewLRState
, yyposn
, yys0
, yyrule
);
1468 yysplitStack (yyGLRStack
* yystackp
, size_t yyk
)
1470 if (yystackp
->yysplitPoint
== NULL
)
1472 YYASSERT (yyk
== 0);
1473 yystackp
->yysplitPoint
= yystackp
->yytops
.yystates
[yyk
];
1475 if (yystackp
->yytops
.yysize
>= yystackp
->yytops
.yycapacity
)
1477 yyGLRState
** yynewStates
;
1478 yybool
* yynewLookaheadNeeds
;
1482 if (yystackp
->yytops
.yycapacity
1483 > (YYSIZEMAX
/ (2 * sizeof yynewStates
[0])))
1484 yyMemoryExhausted (yystackp
);
1485 yystackp
->yytops
.yycapacity
*= 2;
1488 (yyGLRState
**) YYREALLOC (yystackp
->yytops
.yystates
,
1489 (yystackp
->yytops
.yycapacity
1490 * sizeof yynewStates
[0]));
1491 if (yynewStates
== NULL
)
1492 yyMemoryExhausted (yystackp
);
1493 yystackp
->yytops
.yystates
= yynewStates
;
1495 yynewLookaheadNeeds
=
1496 (yybool
*) YYREALLOC (yystackp
->yytops
.yylookaheadNeeds
,
1497 (yystackp
->yytops
.yycapacity
1498 * sizeof yynewLookaheadNeeds
[0]));
1499 if (yynewLookaheadNeeds
== NULL
)
1500 yyMemoryExhausted (yystackp
);
1501 yystackp
->yytops
.yylookaheadNeeds
= yynewLookaheadNeeds
;
1503 yystackp
->yytops
.yystates
[yystackp
->yytops
.yysize
]
1504 = yystackp
->yytops
.yystates
[yyk
];
1505 yystackp
->yytops
.yylookaheadNeeds
[yystackp
->yytops
.yysize
]
1506 = yystackp
->yytops
.yylookaheadNeeds
[yyk
];
1507 yystackp
->yytops
.yysize
+= 1;
1508 return yystackp
->yytops
.yysize
-1;
1511 /** True iff Y0 and Y1 represent identical options at the top level.
1512 * That is, they represent the same rule applied to RHS symbols
1513 * that produce the same terminal symbols. */
1515 yyidenticalOptions (yySemanticOption
* yyy0
, yySemanticOption
* yyy1
)
1517 if (yyy0
->yyrule
== yyy1
->yyrule
)
1519 yyGLRState
*yys0
, *yys1
;
1521 for (yys0
= yyy0
->yystate
, yys1
= yyy1
->yystate
,
1522 yyn
= yyrhsLength (yyy0
->yyrule
);
1524 yys0
= yys0
->yypred
, yys1
= yys1
->yypred
, yyn
-= 1)
1525 if (yys0
->yyposn
!= yys1
->yyposn
)
1533 /** Assuming identicalOptions (Y0,Y1), destructively merge the
1534 * alternative semantic values for the RHS-symbols of Y1 and Y0. */
1536 yymergeOptionSets (yySemanticOption
* yyy0
, yySemanticOption
* yyy1
)
1538 yyGLRState
*yys0
, *yys1
;
1540 for (yys0
= yyy0
->yystate
, yys1
= yyy1
->yystate
,
1541 yyn
= yyrhsLength (yyy0
->yyrule
);
1543 yys0
= yys0
->yypred
, yys1
= yys1
->yypred
, yyn
-= 1)
1547 else if (yys0
->yyresolved
)
1549 yys1
->yyresolved
= yytrue
;
1550 yys1
->yysemantics
.yysval
= yys0
->yysemantics
.yysval
;
1552 else if (yys1
->yyresolved
)
1554 yys0
->yyresolved
= yytrue
;
1555 yys0
->yysemantics
.yysval
= yys1
->yysemantics
.yysval
;
1559 yySemanticOption
** yyz0p
;
1560 yySemanticOption
* yyz1
;
1561 yyz0p
= &yys0
->yysemantics
.yyfirstVal
;
1562 yyz1
= yys1
->yysemantics
.yyfirstVal
;
1563 while (YYID (yytrue
))
1565 if (yyz1
== *yyz0p
|| yyz1
== NULL
)
1567 else if (*yyz0p
== NULL
)
1572 else if (*yyz0p
< yyz1
)
1574 yySemanticOption
* yyz
= *yyz0p
;
1576 yyz1
= yyz1
->yynext
;
1577 (*yyz0p
)->yynext
= yyz
;
1579 yyz0p
= &(*yyz0p
)->yynext
;
1581 yys1
->yysemantics
.yyfirstVal
= yys0
->yysemantics
.yyfirstVal
;
1586 /** Y0 and Y1 represent two possible actions to take in a given
1587 * parsing state; return 0 if no combination is possible,
1588 * 1 if user-mergeable, 2 if Y0 is preferred, 3 if Y1 is preferred. */
1590 yypreference (yySemanticOption
* y0
, yySemanticOption
* y1
)
1592 yyRuleNum r0
= y0
->yyrule
, r1
= y1
->yyrule
;
1593 int p0
= yydprec
[r0
], p1
= yydprec
[r1
];
1597 if (yymerger
[r0
] == 0 || yymerger
[r0
] != yymerger
[r1
])
1602 if (p0
== 0 || p1
== 0)
1611 static YYRESULTTAG
yyresolveValue (yyGLRState
* yys
,
1612 yyGLRStack
* yystackp
]b4_user_formals
[);
1615 /** Resolve the previous N states starting at and including state S. If result
1616 * != yyok, some states may have been left unresolved possibly with empty
1617 * semantic option chains. Regardless of whether result = yyok, each state
1618 * has been left with consistent data so that yydestroyGLRState can be invoked
1621 yyresolveStates (yyGLRState
* yys
, int yyn
,
1622 yyGLRStack
* yystackp
]b4_user_formals
[)
1626 YYASSERT (yys
->yypred
);
1627 YYCHK (yyresolveStates (yys
->yypred
, yyn
-1, yystackp
]b4_user_args
[));
1628 if (! yys
->yyresolved
)
1629 YYCHK (yyresolveValue (yys
, yystackp
]b4_user_args
[));
1634 /** Resolve the states for the RHS of OPT, perform its user action, and return
1635 * the semantic value and location. Regardless of whether result = yyok, all
1636 * RHS states have been destroyed (assuming the user action destroys all RHS
1637 * semantic values if invoked). */
1639 yyresolveAction (yySemanticOption
* yyopt
, yyGLRStack
* yystackp
,
1640 YYSTYPE
* yyvalp
, YYLTYPE
* yylocp
]b4_user_formals
[)
1642 yyGLRStackItem yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
+ 1];
1645 YYSTYPE yylval_current
;
1646 YYLTYPE yylloc_current
;
1649 yynrhs
= yyrhsLength (yyopt
->yyrule
);
1650 yyflag
= yyresolveStates (yyopt
->yystate
, yynrhs
, yystackp
]b4_user_args
[);
1654 for (yys
= yyopt
->yystate
; yynrhs
> 0; yys
= yys
->yypred
, yynrhs
-= 1)
1655 yydestroyGLRState ("Cleanup: popping", yys
]b4_user_args
[);
1659 yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
].yystate
.yypred
= yyopt
->yystate
;]b4_locations_if([[
1661 /* Set default location. */
1662 yyrhsVals
[YYMAXRHS
+ YYMAXLEFT
- 1].yystate
.yyloc
= yyopt
->yystate
->yyloc
;]])[
1663 yychar_current
= yychar
;
1664 yylval_current
= yylval
;
1665 yylloc_current
= yylloc
;
1666 yychar
= yyopt
->yyrawchar
;
1667 yylval
= yyopt
->yyval
;
1668 yylloc
= yyopt
->yyloc
;
1669 yyflag
= yyuserAction (yyopt
->yyrule
, yynrhs
,
1670 yyrhsVals
+ YYMAXRHS
+ YYMAXLEFT
- 1,
1671 yyvalp
, yylocp
, yystackp
]b4_user_args
[);
1672 yychar
= yychar_current
;
1673 yylval
= yylval_current
;
1674 yylloc
= yylloc_current
;
1680 yyreportTree (yySemanticOption
* yyx
, int yyindent
)
1682 int yynrhs
= yyrhsLength (yyx
->yyrule
);
1685 yyGLRState
* yystates
[1 + YYMAXRHS
];
1686 yyGLRState yyleftmost_state
;
1688 for (yyi
= yynrhs
, yys
= yyx
->yystate
; 0 < yyi
; yyi
-= 1, yys
= yys
->yypred
)
1689 yystates
[yyi
] = yys
;
1692 yyleftmost_state
.yyposn
= 0;
1693 yystates
[0] = &yyleftmost_state
;
1698 if (yyx
->yystate
->yyposn
< yys
->yyposn
+ 1)
1699 YYFPRINTF (stderr
, "%*s%s -> <Rule %d, empty>\n",
1700 yyindent
, "", yytokenName (yylhsNonterm (yyx
->yyrule
)),
1703 YYFPRINTF (stderr
, "%*s%s -> <Rule %d, tokens %lu .. %lu>\n",
1704 yyindent
, "", yytokenName (yylhsNonterm (yyx
->yyrule
)),
1705 yyx
->yyrule
- 1, (unsigned long int) (yys
->yyposn
+ 1),
1706 (unsigned long int) yyx
->yystate
->yyposn
);
1707 for (yyi
= 1; yyi
<= yynrhs
; yyi
+= 1)
1709 if (yystates
[yyi
]->yyresolved
)
1711 if (yystates
[yyi
-1]->yyposn
+1 > yystates
[yyi
]->yyposn
)
1712 YYFPRINTF (stderr
, "%*s%s <empty>\n", yyindent
+2, "",
1713 yytokenName (yystos
[yystates
[yyi
-1]->yylrState
]));
1715 YYFPRINTF (stderr
, "%*s%s <tokens %lu .. %lu>\n", yyindent
+2, "",
1716 yytokenName (yystos
[yystates
[yyi
-1]->yylrState
]),
1717 (unsigned long int) (yystates
[yyi
-1]->yyposn
+ 1),
1718 (unsigned long int) yystates
[yyi
]->yyposn
);
1721 yyreportTree (yystates
[yyi
]->yysemantics
.yyfirstVal
, yyindent
+2);
1726 /*ARGSUSED*/ static YYRESULTTAG
1727 yyreportAmbiguity (yySemanticOption
* yyx0
,
1728 yySemanticOption
* yyx1
]b4_pure_formals
[)
1734 YYFPRINTF (stderr
, "Ambiguity detected.\n");
1735 YYFPRINTF (stderr
, "Option 1,\n");
1736 yyreportTree (yyx0
, 2);
1737 YYFPRINTF (stderr
, "\nOption 2,\n");
1738 yyreportTree (yyx1
, 2);
1739 YYFPRINTF (stderr
, "\n");
1742 yyerror (]b4_yyerror_args
[YY_("syntax is ambiguous"));
1746 /** Starting at and including state S1, resolve the location for each of the
1747 * previous N1 states that is unresolved. The first semantic option of a state
1748 * is always chosen. */
1750 yyresolveLocations (yyGLRState
* yys1
, int yyn1
,
1751 yyGLRStack
*yystackp
]b4_user_formals
[)
1755 yyresolveLocations (yys1
->yypred
, yyn1
- 1, yystackp
]b4_user_args
[);
1756 if (!yys1
->yyresolved
)
1758 yySemanticOption
*yyoption
;
1759 yyGLRStackItem yyrhsloc
[1 + YYMAXRHS
];
1762 YYSTYPE yylval_current
;
1763 YYLTYPE yylloc_current
;
1764 yyoption
= yys1
->yysemantics
.yyfirstVal
;
1765 YYASSERT (yyoption
!= NULL
);
1766 yynrhs
= yyrhsLength (yyoption
->yyrule
);
1771 yyresolveLocations (yyoption
->yystate
, yynrhs
,
1772 yystackp
]b4_user_args
[);
1773 for (yys
= yyoption
->yystate
, yyn
= yynrhs
;
1775 yys
= yys
->yypred
, yyn
-= 1)
1776 yyrhsloc
[yyn
].yystate
.yyloc
= yys
->yyloc
;
1780 /* Both yyresolveAction and yyresolveLocations traverse the GSS
1781 in reverse rightmost order. It is only necessary to invoke
1782 yyresolveLocations on a subforest for which yyresolveAction
1783 would have been invoked next had an ambiguity not been
1784 detected. Thus the location of the previous state (but not
1785 necessarily the previous state itself) is guaranteed to be
1786 resolved already. */
1787 yyGLRState
*yyprevious
= yyoption
->yystate
;
1788 yyrhsloc
[0].yystate
.yyloc
= yyprevious
->yyloc
;
1790 yychar_current
= yychar
;
1791 yylval_current
= yylval
;
1792 yylloc_current
= yylloc
;
1793 yychar
= yyoption
->yyrawchar
;
1794 yylval
= yyoption
->yyval
;
1795 yylloc
= yyoption
->yyloc
;
1796 YYLLOC_DEFAULT ((yys1
->yyloc
), yyrhsloc
, yynrhs
);
1797 yychar
= yychar_current
;
1798 yylval
= yylval_current
;
1799 yylloc
= yylloc_current
;
1804 /** Resolve the ambiguity represented in state S, perform the indicated
1805 * actions, and set the semantic value of S. If result != yyok, the chain of
1806 * semantic options in S has been cleared instead or it has been left
1807 * unmodified except that redundant options may have been removed. Regardless
1808 * of whether result = yyok, S has been left with consistent data so that
1809 * yydestroyGLRState can be invoked if necessary. */
1811 yyresolveValue (yyGLRState
* yys
, yyGLRStack
* yystackp
]b4_user_formals
[)
1813 yySemanticOption
* yyoptionList
= yys
->yysemantics
.yyfirstVal
;
1814 yySemanticOption
* yybest
;
1815 yySemanticOption
** yypp
;
1819 YYLTYPE
*yylocp
= &yys
->yyloc
;
1821 yybest
= yyoptionList
;
1823 for (yypp
= &yyoptionList
->yynext
; *yypp
!= NULL
; )
1825 yySemanticOption
* yyp
= *yypp
;
1827 if (yyidenticalOptions (yybest
, yyp
))
1829 yymergeOptionSets (yybest
, yyp
);
1830 *yypp
= yyp
->yynext
;
1834 switch (yypreference (yybest
, yyp
))
1837 yyresolveLocations (yys
, 1, yystackp
]b4_user_args
[);
1838 return yyreportAmbiguity (yybest
, yyp
]b4_pure_args
[);
1850 /* This cannot happen so it is not worth a YYASSERT (yyfalse),
1851 but some compilers complain if the default case is
1855 yypp
= &yyp
->yynext
;
1861 yySemanticOption
* yyp
;
1862 int yyprec
= yydprec
[yybest
->yyrule
];
1863 yyflag
= yyresolveAction (yybest
, yystackp
, &yysval
,
1864 yylocp
]b4_user_args
[);
1866 for (yyp
= yybest
->yynext
; yyp
!= NULL
; yyp
= yyp
->yynext
)
1868 if (yyprec
== yydprec
[yyp
->yyrule
])
1870 YYSTYPE yysval_other
;
1872 yyflag
= yyresolveAction (yyp
, yystackp
, &yysval_other
,
1873 &yydummy
]b4_user_args
[);
1876 yydestruct ("Cleanup: discarding incompletely merged value for",
1877 yystos
[yys
->yylrState
],
1878 &yysval
]b4_locations_if([, yylocp
])[]b4_user_args
[);
1881 yyuserMerge (yymerger
[yyp
->yyrule
], &yysval
, &yysval_other
);
1886 yyflag
= yyresolveAction (yybest
, yystackp
, &yysval
, yylocp
]b4_user_args
[);
1890 yys
->yyresolved
= yytrue
;
1891 yys
->yysemantics
.yysval
= yysval
;
1894 yys
->yysemantics
.yyfirstVal
= NULL
;
1899 yyresolveStack (yyGLRStack
* yystackp
]b4_user_formals
[)
1901 if (yystackp
->yysplitPoint
!= NULL
)
1906 for (yyn
= 0, yys
= yystackp
->yytops
.yystates
[0];
1907 yys
!= yystackp
->yysplitPoint
;
1908 yys
= yys
->yypred
, yyn
+= 1)
1910 YYCHK (yyresolveStates (yystackp
->yytops
.yystates
[0], yyn
, yystackp
1917 yycompressStack (yyGLRStack
* yystackp
)
1919 yyGLRState
* yyp
, *yyq
, *yyr
;
1921 if (yystackp
->yytops
.yysize
!= 1 || yystackp
->yysplitPoint
== NULL
)
1924 for (yyp
= yystackp
->yytops
.yystates
[0], yyq
= yyp
->yypred
, yyr
= NULL
;
1925 yyp
!= yystackp
->yysplitPoint
;
1926 yyr
= yyp
, yyp
= yyq
, yyq
= yyp
->yypred
)
1929 yystackp
->yyspaceLeft
+= yystackp
->yynextFree
- yystackp
->yyitems
;
1930 yystackp
->yynextFree
= ((yyGLRStackItem
*) yystackp
->yysplitPoint
) + 1;
1931 yystackp
->yyspaceLeft
-= yystackp
->yynextFree
- yystackp
->yyitems
;
1932 yystackp
->yysplitPoint
= NULL
;
1933 yystackp
->yylastDeleted
= NULL
;
1937 yystackp
->yynextFree
->yystate
= *yyr
;
1939 yystackp
->yynextFree
->yystate
.yypred
= &yystackp
->yynextFree
[-1].yystate
;
1940 yystackp
->yytops
.yystates
[0] = &yystackp
->yynextFree
->yystate
;
1941 yystackp
->yynextFree
+= 1;
1942 yystackp
->yyspaceLeft
-= 1;
1947 yyprocessOneStack (yyGLRStack
* yystackp
, size_t yyk
,
1948 size_t yyposn
]b4_pure_formals
[)
1951 const short int* yyconflicts
;
1954 while (yystackp
->yytops
.yystates
[yyk
] != NULL
)
1956 yyStateNum yystate
= yystackp
->yytops
.yystates
[yyk
]->yylrState
;
1957 YYDPRINTF ((stderr
, "Stack %lu Entering state %d\n",
1958 (unsigned long int) yyk
, yystate
));
1960 YYASSERT (yystate
!= YYFINAL
);
1962 if (yyisDefaultedState (yystate
))
1964 yyrule
= yydefaultAction (yystate
);
1967 YYDPRINTF ((stderr
, "Stack %lu dies.\n",
1968 (unsigned long int) yyk
));
1969 yymarkStackDeleted (yystackp
, yyk
);
1972 YYCHK (yyglrReduce (yystackp
, yyk
, yyrule
, yyfalse
]b4_user_args
[));
1977 yystackp
->yytops
.yylookaheadNeeds
[yyk
] = yytrue
;
1978 if (yychar
== YYEMPTY
)
1980 YYDPRINTF ((stderr
, "Reading a token: "));
1984 if (yychar
<= YYEOF
)
1986 yychar
= yytoken
= YYEOF
;
1987 YYDPRINTF ((stderr
, "Now at end of input.\n"));
1991 yytoken
= YYTRANSLATE (yychar
);
1992 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
1995 yygetLRActions (yystate
, yytoken
, &yyaction
, &yyconflicts
);
1997 while (*yyconflicts
!= 0)
1999 size_t yynewStack
= yysplitStack (yystackp
, yyk
);
2000 YYDPRINTF ((stderr
, "Splitting off stack %lu from %lu.\n",
2001 (unsigned long int) yynewStack
,
2002 (unsigned long int) yyk
));
2003 YYCHK (yyglrReduce (yystackp
, yynewStack
,
2004 *yyconflicts
, yyfalse
]b4_user_args
[));
2005 YYCHK (yyprocessOneStack (yystackp
, yynewStack
,
2006 yyposn
]b4_pure_args
[));
2010 if (yyisShiftAction (yyaction
))
2012 else if (yyisErrorAction (yyaction
))
2014 YYDPRINTF ((stderr
, "Stack %lu dies.\n",
2015 (unsigned long int) yyk
));
2016 yymarkStackDeleted (yystackp
, yyk
);
2020 YYCHK (yyglrReduce (yystackp
, yyk
, -yyaction
,
2021 yyfalse
]b4_user_args
[));
2027 /*ARGSUSED*/ static void
2028 yyreportSyntaxError (yyGLRStack
* yystackp
]b4_user_formals
[)
2030 if (yystackp
->yyerrState
== 0)
2034 yyn
= yypact
[yystackp
->yytops
.yystates
[0]->yylrState
];
2035 if (YYPACT_NINF
< yyn
&& yyn
<= YYLAST
)
2037 yySymbol yytoken
= YYTRANSLATE (yychar
);
2038 size_t yysize0
= yytnamerr (NULL
, yytokenName (yytoken
));
2039 size_t yysize
= yysize0
;
2041 yybool yysize_overflow
= yyfalse
;
2043 enum { YYERROR_VERBOSE_ARGS_MAXIMUM
= 5 };
2044 /* Internationalized format string. */
2045 const char *yyformat
= 0;
2046 /* Arguments of yyformat. */
2047 char const *yyarg
[YYERROR_VERBOSE_ARGS_MAXIMUM
];
2049 /* Start YYX at -YYN if negative to avoid negative indexes in
2050 YYCHECK. In other words, skip the first -YYN actions for this
2051 state because they are default actions. */
2052 int yyxbegin
= yyn
< 0 ? -yyn
: 0;
2054 /* Stay within bounds of both yycheck and yytname. */
2055 int yychecklim
= YYLAST
- yyn
+ 1;
2056 int yyxend
= yychecklim
< YYNTOKENS
? yychecklim
: YYNTOKENS
;
2058 /* Number of reported tokens (one for the "unexpected", one per
2063 yyarg
[yycount
++] = yytokenName (yytoken
);
2065 for (yyx
= yyxbegin
; yyx
< yyxend
; ++yyx
)
2066 if (yycheck
[yyx
+ yyn
] == yyx
&& yyx
!= YYTERROR
2067 && !yytable_value_is_error (yytable
[yyx
+ yyn
]))
2069 if (yycount
== YYERROR_VERBOSE_ARGS_MAXIMUM
)
2075 yyarg
[yycount
++] = yytokenName (yyx
);
2076 yysize1
= yysize
+ yytnamerr (NULL
, yytokenName (yyx
));
2077 yysize_overflow
|= yysize1
< yysize
;
2083 #define YYCASE_(N, S) \
2087 YYCASE_(1, YY_("syntax error, unexpected %s"));
2088 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
2089 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
2090 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
2091 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
2095 yysize1
= yysize
+ strlen (yyformat
);
2096 yysize_overflow
|= yysize1
< yysize
;
2099 if (!yysize_overflow
)
2100 yymsg
= (char *) YYMALLOC (yysize
);
2106 while ((*yyp
= *yyformat
))
2108 if (*yyp
== '%' && yyformat
[1] == 's' && yyi
< yycount
)
2110 yyp
+= yytnamerr (yyp
, yyarg
[yyi
++]);
2119 yyerror (]b4_lyyerror_args
[yymsg
);
2124 yyerror (]b4_lyyerror_args
[YY_("syntax error"));
2125 yyMemoryExhausted (yystackp
);
2129 #endif /* YYERROR_VERBOSE */
2130 yyerror (]b4_lyyerror_args
[YY_("syntax error"));
2135 /* Recover from a syntax error on *YYSTACKP, assuming that *YYSTACKP->YYTOKENP,
2136 yylval, and yylloc are the syntactic category, semantic value, and location
2137 of the lookahead. */
2138 /*ARGSUSED*/ static void
2139 yyrecoverSyntaxError (yyGLRStack
* yystackp
]b4_user_formals
[)
2144 if (yystackp
->yyerrState
== 3)
2145 /* We just shifted the error token and (perhaps) took some
2146 reductions. Skip tokens until we can proceed. */
2147 while (YYID (yytrue
))
2150 if (yychar
== YYEOF
)
2151 yyFail (yystackp
][]b4_lpure_args
[, NULL
);
2152 if (yychar
!= YYEMPTY
)
2153 {]b4_locations_if([[
2154 /* We throw away the lookahead, but the error range
2155 of the shifted error token must take it into account. */
2156 yyGLRState
*yys
= yystackp
->yytops
.yystates
[0];
2157 yyGLRStackItem yyerror_range
[3];
2158 yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;
2159 yyerror_range
[2].yystate
.yyloc
= yylloc
;
2160 YYLLOC_DEFAULT ((yys
->yyloc
), yyerror_range
, 2);]])[
2161 yytoken
= YYTRANSLATE (yychar
);
2162 yydestruct ("Error: discarding",
2163 yytoken
, &yylval
]b4_locations_if([, &yylloc
])[]b4_user_args
[);
2165 YYDPRINTF ((stderr
, "Reading a token: "));
2167 if (yychar
<= YYEOF
)
2169 yychar
= yytoken
= YYEOF
;
2170 YYDPRINTF ((stderr
, "Now at end of input.\n"));
2174 yytoken
= YYTRANSLATE (yychar
);
2175 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
2177 yyj
= yypact
[yystackp
->yytops
.yystates
[0]->yylrState
];
2178 if (yypact_value_is_default (yyj
))
2181 if (yyj
< 0 || YYLAST
< yyj
|| yycheck
[yyj
] != yytoken
)
2183 if (yydefact
[yystackp
->yytops
.yystates
[0]->yylrState
] != 0)
2186 else if (! yytable_value_is_error (yytable
[yyj
]))
2190 /* Reduce to one stack. */
2191 for (yyk
= 0; yyk
< yystackp
->yytops
.yysize
; yyk
+= 1)
2192 if (yystackp
->yytops
.yystates
[yyk
] != NULL
)
2194 if (yyk
>= yystackp
->yytops
.yysize
)
2195 yyFail (yystackp
][]b4_lpure_args
[, NULL
);
2196 for (yyk
+= 1; yyk
< yystackp
->yytops
.yysize
; yyk
+= 1)
2197 yymarkStackDeleted (yystackp
, yyk
);
2198 yyremoveDeletes (yystackp
);
2199 yycompressStack (yystackp
);
2201 /* Now pop stack until we find a state that shifts the error token. */
2202 yystackp
->yyerrState
= 3;
2203 while (yystackp
->yytops
.yystates
[0] != NULL
)
2205 yyGLRState
*yys
= yystackp
->yytops
.yystates
[0];
2206 yyj
= yypact
[yys
->yylrState
];
2207 if (! yypact_value_is_default (yyj
))
2210 if (0 <= yyj
&& yyj
<= YYLAST
&& yycheck
[yyj
] == YYTERROR
2211 && yyisShiftAction (yytable
[yyj
]))
2213 /* Shift the error token having adjusted its location. */
2214 YYLTYPE yyerrloc
;]b4_locations_if([[
2215 yystackp
->yyerror_range
[2].yystate
.yyloc
= yylloc
;
2216 YYLLOC_DEFAULT (yyerrloc
, (yystackp
->yyerror_range
), 2);]])[
2217 YY_SYMBOL_PRINT ("Shifting", yystos
[yytable
[yyj
]],
2218 &yylval
, &yyerrloc
);
2219 yyglrShift (yystackp
, 0, yytable
[yyj
],
2220 yys
->yyposn
, &yylval
, &yyerrloc
);
2221 yys
= yystackp
->yytops
.yystates
[0];
2225 ]b4_locations_if([[ yystackp
->yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;]])[
2226 if (yys
->yypred
!= NULL
)
2227 yydestroyGLRState ("Error: popping", yys
]b4_user_args
[);
2228 yystackp
->yytops
.yystates
[0] = yys
->yypred
;
2229 yystackp
->yynextFree
-= 1;
2230 yystackp
->yyspaceLeft
+= 1;
2232 if (yystackp
->yytops
.yystates
[0] == NULL
)
2233 yyFail (yystackp
][]b4_lpure_args
[, NULL
);
2236 #define YYCHK1(YYE) \
2246 goto yyuser_error; \
2257 ]b4_c_ansi_function_def([yyparse
], [int], b4_parse_param
)[
2261 yyGLRStack
* const yystackp
= &yystack
;
2264 YYDPRINTF ((stderr
, "Starting parse\n"));
2267 yylval
= yyval_default
;
2269 #if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
2270 yylloc
.first_line
= yylloc
.last_line
= ]b4_location_initial_line
[;
2271 yylloc
.first_column
= yylloc
.last_column
= ]b4_location_initial_column
[;
2274 m4_ifdef([b4_initial_action
], [
2275 m4_pushdef([b4_at_dollar
], [yylloc
])dnl
2276 m4_pushdef([b4_dollar_dollar
], [yylval
])dnl
2277 /* User initialization code. */
2278 b4_user_initial_action
2279 m4_popdef([b4_dollar_dollar
])dnl
2280 m4_popdef([b4_at_dollar
])])dnl
2282 if (! yyinitGLRStack (yystackp
, YYINITDEPTH
))
2283 goto yyexhaustedlab
;
2284 switch (YYSETJMP (yystack
.yyexception_buffer
))
2287 case 1: goto yyabortlab
;
2288 case 2: goto yyexhaustedlab
;
2289 default: goto yybuglab
;
2291 yyglrShift (&yystack
, 0, 0, 0, &yylval
, &yylloc
);
2294 while (YYID (yytrue
))
2296 /* For efficiency, we have two loops, the first of which is
2297 specialized to deterministic operation (single stack, no
2298 potential ambiguity). */
2300 while (YYID (yytrue
))
2304 const short int* yyconflicts
;
2306 yyStateNum yystate
= yystack
.yytops
.yystates
[0]->yylrState
;
2307 YYDPRINTF ((stderr
, "Entering state %d\n", yystate
));
2308 if (yystate
== YYFINAL
)
2310 if (yyisDefaultedState (yystate
))
2312 yyrule
= yydefaultAction (yystate
);
2315 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yylloc
;]])[
2316 yyreportSyntaxError (&yystack
]b4_user_args
[);
2319 YYCHK1 (yyglrReduce (&yystack
, 0, yyrule
, yytrue
]b4_user_args
[));
2324 if (yychar
== YYEMPTY
)
2326 YYDPRINTF ((stderr
, "Reading a token: "));
2330 if (yychar
<= YYEOF
)
2332 yychar
= yytoken
= YYEOF
;
2333 YYDPRINTF ((stderr
, "Now at end of input.\n"));
2337 yytoken
= YYTRANSLATE (yychar
);
2338 YY_SYMBOL_PRINT ("Next token is", yytoken
, &yylval
, &yylloc
);
2341 yygetLRActions (yystate
, yytoken
, &yyaction
, &yyconflicts
);
2342 if (*yyconflicts
!= 0)
2344 if (yyisShiftAction (yyaction
))
2346 YY_SYMBOL_PRINT ("Shifting", yytoken
, &yylval
, &yylloc
);
2349 yyglrShift (&yystack
, 0, yyaction
, yyposn
, &yylval
, &yylloc
);
2350 if (0 < yystack
.yyerrState
)
2351 yystack
.yyerrState
-= 1;
2353 else if (yyisErrorAction (yyaction
))
2355 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yylloc
;]])[
2356 yyreportSyntaxError (&yystack
]b4_user_args
[);
2360 YYCHK1 (yyglrReduce (&yystack
, 0, -yyaction
, yytrue
]b4_user_args
[));
2364 while (YYID (yytrue
))
2366 yySymbol yytoken_to_shift
;
2369 for (yys
= 0; yys
< yystack
.yytops
.yysize
; yys
+= 1)
2370 yystackp
->yytops
.yylookaheadNeeds
[yys
] = yychar
!= YYEMPTY
;
2372 /* yyprocessOneStack returns one of three things:
2374 - An error flag. If the caller is yyprocessOneStack, it
2375 immediately returns as well. When the caller is finally
2376 yyparse, it jumps to an error label via YYCHK1.
2378 - yyok, but yyprocessOneStack has invoked yymarkStackDeleted
2379 (&yystack, yys), which sets the top state of yys to NULL. Thus,
2380 yyparse's following invocation of yyremoveDeletes will remove
2383 - yyok, when ready to shift a token.
2385 Except in the first case, yyparse will invoke yyremoveDeletes and
2386 then shift the next token onto all remaining stacks. This
2387 synchronization of the shift (that is, after all preceding
2388 reductions on all stacks) helps prevent double destructor calls
2389 on yylval in the event of memory exhaustion. */
2391 for (yys
= 0; yys
< yystack
.yytops
.yysize
; yys
+= 1)
2392 YYCHK1 (yyprocessOneStack (&yystack
, yys
, yyposn
]b4_lpure_args
[));
2393 yyremoveDeletes (&yystack
);
2394 if (yystack
.yytops
.yysize
== 0)
2396 yyundeleteLastStack (&yystack
);
2397 if (yystack
.yytops
.yysize
== 0)
2398 yyFail (&yystack
][]b4_lpure_args
[, YY_("syntax error"));
2399 YYCHK1 (yyresolveStack (&yystack
]b4_user_args
[));
2400 YYDPRINTF ((stderr
, "Returning to deterministic operation.\n"));
2401 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yylloc
;]])[
2402 yyreportSyntaxError (&yystack
]b4_user_args
[);
2406 /* If any yyglrShift call fails, it will fail after shifting. Thus,
2407 a copy of yylval will already be on stack 0 in the event of a
2408 failure in the following loop. Thus, yychar is set to YYEMPTY
2409 before the loop to make sure the user destructor for yylval isn't
2411 yytoken_to_shift
= YYTRANSLATE (yychar
);
2414 for (yys
= 0; yys
< yystack
.yytops
.yysize
; yys
+= 1)
2417 const short int* yyconflicts
;
2418 yyStateNum yystate
= yystack
.yytops
.yystates
[yys
]->yylrState
;
2419 yygetLRActions (yystate
, yytoken_to_shift
, &yyaction
,
2421 /* Note that yyconflicts were handled by yyprocessOneStack. */
2422 YYDPRINTF ((stderr
, "On stack %lu, ", (unsigned long int) yys
));
2423 YY_SYMBOL_PRINT ("shifting", yytoken_to_shift
, &yylval
, &yylloc
);
2424 yyglrShift (&yystack
, yys
, yyaction
, yyposn
,
2426 YYDPRINTF ((stderr
, "Stack %lu now in state #%d\n",
2427 (unsigned long int) yys
,
2428 yystack
.yytops
.yystates
[yys
]->yylrState
));
2431 if (yystack
.yytops
.yysize
== 1)
2433 YYCHK1 (yyresolveStack (&yystack
]b4_user_args
[));
2434 YYDPRINTF ((stderr
, "Returning to deterministic operation.\n"));
2435 yycompressStack (&yystack
);
2441 yyrecoverSyntaxError (&yystack
]b4_user_args
[);
2442 yyposn
= yystack
.yytops
.yystates
[0]->yyposn
;
2458 yyerror (]b4_lyyerror_args
[YY_("memory exhausted"));
2463 if (yychar
!= YYEMPTY
)
2464 yydestruct ("Cleanup: discarding lookahead",
2465 YYTRANSLATE (yychar
),
2466 &yylval
]b4_locations_if([, &yylloc
])[]b4_user_args
[);
2468 /* If the stack is well-formed, pop the stack until it is empty,
2469 destroying its entries as we go. But free the stack regardless
2470 of whether it is well-formed. */
2471 if (yystack
.yyitems
)
2473 yyGLRState
** yystates
= yystack
.yytops
.yystates
;
2476 size_t yysize
= yystack
.yytops
.yysize
;
2478 for (yyk
= 0; yyk
< yysize
; yyk
+= 1)
2481 while (yystates
[yyk
])
2483 yyGLRState
*yys
= yystates
[yyk
];
2484 ]b4_locations_if([[ yystack
.yyerror_range
[1].yystate
.yyloc
= yys
->yyloc
;]]
2485 )[ if (yys
->yypred
!= NULL
)
2486 yydestroyGLRState ("Cleanup: popping", yys
]b4_user_args
[);
2487 yystates
[yyk
] = yys
->yypred
;
2488 yystack
.yynextFree
-= 1;
2489 yystack
.yyspaceLeft
+= 1;
2494 yyfreeGLRStack (&yystack
);
2497 /* Make sure YYID is used. */
2498 return YYID (yyresult
);
2501 /* DEBUGGING ONLY */
2503 static void yypstack (yyGLRStack
* yystackp
, size_t yyk
)
2504 __attribute__ ((__unused__
));
2505 static void yypdumpstack (yyGLRStack
* yystackp
) __attribute__ ((__unused__
));
2508 yy_yypstack (yyGLRState
* yys
)
2512 yy_yypstack (yys
->yypred
);
2513 YYFPRINTF (stderr
, " -> ");
2515 YYFPRINTF (stderr
, "%d@@%lu", yys
->yylrState
,
2516 (unsigned long int) yys
->yyposn
);
2520 yypstates (yyGLRState
* yyst
)
2523 YYFPRINTF (stderr
, "<null>");
2526 YYFPRINTF (stderr
, "\n");
2530 yypstack (yyGLRStack
* yystackp
, size_t yyk
)
2532 yypstates (yystackp
->yytops
.yystates
[yyk
]);
2535 #define YYINDEX(YYX) \
2536 ((YYX) == NULL ? -1 : (yyGLRStackItem*) (YYX) - yystackp->yyitems)
2540 yypdumpstack (yyGLRStack
* yystackp
)
2542 yyGLRStackItem
* yyp
;
2544 for (yyp
= yystackp
->yyitems
; yyp
< yystackp
->yynextFree
; yyp
+= 1)
2546 YYFPRINTF (stderr
, "%3lu. ",
2547 (unsigned long int) (yyp
- yystackp
->yyitems
));
2548 if (*(yybool
*) yyp
)
2550 YYFPRINTF (stderr
, "Res: %d, LR State: %d, posn: %lu, pred: %ld",
2551 yyp
->yystate
.yyresolved
, yyp
->yystate
.yylrState
,
2552 (unsigned long int) yyp
->yystate
.yyposn
,
2553 (long int) YYINDEX (yyp
->yystate
.yypred
));
2554 if (! yyp
->yystate
.yyresolved
)
2555 YYFPRINTF (stderr
, ", firstVal: %ld",
2556 (long int) YYINDEX (yyp
->yystate
2557 .yysemantics
.yyfirstVal
));
2561 YYFPRINTF (stderr
, "Option. rule: %d, state: %ld, next: %ld",
2562 yyp
->yyoption
.yyrule
- 1,
2563 (long int) YYINDEX (yyp
->yyoption
.yystate
),
2564 (long int) YYINDEX (yyp
->yyoption
.yynext
));
2566 YYFPRINTF (stderr
, "\n");
2568 YYFPRINTF (stderr
, "Tops:");
2569 for (yyi
= 0; yyi
< yystackp
->yytops
.yysize
; yyi
+= 1)
2570 YYFPRINTF (stderr
, "%lu: %ld; ", (unsigned long int) yyi
,
2571 (long int) YYINDEX (yystackp
->yytops
.yystates
[yyi
]));
2572 YYFPRINTF (stderr
, "\n");
2577 dnl glr
.cc produces its own header
.
2579 m4_if(b4_skeleton
, ["glr.c"],
2581 [@
output(b4_spec_defines_file@
)@
2582 b4_copyright([Skeleton interface
for Bison GLR parsers in C
],
2583 [2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010])
2585 b4_shared_declarations
2588 [[extern YYSTYPE
]b4_prefix
[lval
;]])
2590 b4_locations_if([b4_pure_if([],
2591 [extern YYLTYPE
]b4_prefix
[lloc
;])