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