]> git.saurik.com Git - bison.git/blob - data/glr.c
Do not use date ranges in copyright notices.
[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 /* 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[] =
410 {
411 ]b4_conflict_list_heads[
412 };
413
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[] =
420 {
421 ]b4_conflicting_rules[
422 };
423 \f
424 /* Prevent warning if -Wmissing-prototypes. */
425 ]b4_c_ansi_function_decl([yyparse], [int], b4_parse_param)[
426
427 /* Error token number */
428 #define YYTERROR 1
429
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). */
433
434 ]b4_locations_if([[
435 #define YYRHSLOC(Rhs, K) ((Rhs)[K].yystate.yyloc)
436 #ifndef YYLLOC_DEFAULT
437 # define YYLLOC_DEFAULT(Current, Rhs, N) \
438 do \
439 if (YYID (N)) \
440 { \
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; \
445 } \
446 else \
447 { \
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; \
452 } \
453 while (YYID (0))
454
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. */
458
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)
463 #endif
464 ]],[
465 #ifndef YYLLOC_DEFAULT
466 # define YYLLOC_DEFAULT(Current, Rhs, N) ((void) 0)
467 #endif
468 ])[
469
470 #ifndef YY_LOCATION_PRINT
471 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
472 #endif
473
474
475 /* YYLEX -- calling `yylex' with the right arguments. */
476 #define YYLEX ]b4_c_function_call([yylex], [int], b4_lex_param)[
477
478 ]b4_pure_if(
479 [
480 #undef yynerrs
481 #define yynerrs (yystackp->yyerrcnt)
482 #undef yychar
483 #define yychar (yystackp->yyrawchar)
484 #undef yylval
485 #define yylval (yystackp->yyval)
486 #undef yylloc
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])],
493 [YYSTYPE yylval;
494
495 YYLTYPE yylloc;
496
497 int yynerrs;
498 int yychar;])[
499
500 static const int YYEOF = 0;
501 static const int YYEMPTY = -2;
502
503 typedef enum { yyok, yyaccept, yyabort, yyerr } YYRESULTTAG;
504
505 #define YYCHK(YYE) \
506 do { \
507 YYRESULTTAG yyflag = YYE; \
508 if (yyflag != yyok) \
509 return yyflag; \
510 } while (YYID (0))
511
512 #if YYDEBUG
513
514 # ifndef YYFPRINTF
515 # define YYFPRINTF fprintf
516 # endif
517
518 # define YYDPRINTF(Args) \
519 do { \
520 if (yydebug) \
521 YYFPRINTF Args; \
522 } while (YYID (0))
523
524 ]b4_yy_symbol_print_generate([b4_c_ansi_function_def])[
525
526 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
527 do { \
528 if (yydebug) \
529 { \
530 YYFPRINTF (stderr, "%s ", Title); \
531 yy_symbol_print (stderr, Type, \
532 Value]b4_locations_if([, Location])[]b4_user_args[); \
533 YYFPRINTF (stderr, "\n"); \
534 } \
535 } while (YYID (0))
536
537 /* Nonzero means print parse trace. It is left uninitialized so that
538 multiple parsers can coexist. */
539 int yydebug;
540
541 #else /* !YYDEBUG */
542
543 # define YYDPRINTF(Args)
544 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
545
546 #endif /* !YYDEBUG */
547
548 /* YYINITDEPTH -- initial size of the parser's stacks. */
549 #ifndef YYINITDEPTH
550 # define YYINITDEPTH ]b4_stack_depth_init[
551 #endif
552
553 /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
554 if the built-in stack extension method is used).
555
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. */
559
560 #ifndef YYMAXDEPTH
561 # define YYMAXDEPTH ]b4_stack_depth_max[
562 #endif
563
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. */
569 #define YYHEADROOM 2
570
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
576 # else
577 # define YYSTACKEXPANDABLE 0
578 # endif
579 #endif
580
581 #if YYSTACKEXPANDABLE
582 # define YY_RESERVE_GLRSTACK(Yystack) \
583 do { \
584 if (Yystack->yyspaceLeft < YYHEADROOM) \
585 yyexpandGLRStack (Yystack); \
586 } while (YYID (0))
587 #else
588 # define YY_RESERVE_GLRSTACK(Yystack) \
589 do { \
590 if (Yystack->yyspaceLeft < YYHEADROOM) \
591 yyMemoryExhausted (Yystack); \
592 } while (YYID (0))
593 #endif
594
595
596 #if YYERROR_VERBOSE
597
598 # ifndef yystpcpy
599 # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
600 # define yystpcpy stpcpy
601 # else
602 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
603 YYDEST. */
604 static char *
605 yystpcpy (char *yydest, const char *yysrc)
606 {
607 char *yyd = yydest;
608 const char *yys = yysrc;
609
610 while ((*yyd++ = *yys++) != '\0')
611 continue;
612
613 return yyd - 1;
614 }
615 # endif
616 # endif
617
618 # ifndef yytnamerr
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
625 would have been. */
626 static size_t
627 yytnamerr (char *yyres, const char *yystr)
628 {
629 if (*yystr == '"')
630 {
631 size_t yyn = 0;
632 char const *yyp = yystr;
633
634 for (;;)
635 switch (*++yyp)
636 {
637 case '\'':
638 case ',':
639 goto do_not_strip_quotes;
640
641 case '\\':
642 if (*++yyp != '\\')
643 goto do_not_strip_quotes;
644 /* Fall through. */
645 default:
646 if (yyres)
647 yyres[yyn] = *yyp;
648 yyn++;
649 break;
650
651 case '"':
652 if (yyres)
653 yyres[yyn] = '\0';
654 return yyn;
655 }
656 do_not_strip_quotes: ;
657 }
658
659 if (! yyres)
660 return strlen (yystr);
661
662 return yystpcpy (yyres, yystr) - yyres;
663 }
664 # endif
665
666 #endif /* !YYERROR_VERBOSE */
667
668 /** State numbers, as in LALR(1) machine */
669 typedef int yyStateNum;
670
671 /** Rule numbers, as in LALR(1) machine */
672 typedef int yyRuleNum;
673
674 /** Grammar symbol */
675 typedef short int yySymbol;
676
677 /** Item references, as in LALR(1) machine */
678 typedef short int yyItemNum;
679
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;
685
686 struct yyGLRState {
687 /** Type tag: always true. */
688 yybool yyisState;
689 /** Type tag for yysemantics. If true, yysval applies, otherwise
690 * yyfirstVal applies. */
691 yybool yyresolved;
692 /** Number of corresponding LALR(1) machine state. */
693 yyStateNum yylrState;
694 /** Preceding state in this stack */
695 yyGLRState* yypred;
696 /** Source position of the first token produced by my symbol */
697 size_t yyposn;
698 union {
699 /** First in a chain of alternative reductions producing the
700 * non-terminal corresponding to this state, threaded through
701 * yynext. */
702 yySemanticOption* yyfirstVal;
703 /** Semantic value for this state. */
704 YYSTYPE yysval;
705 } yysemantics;
706 /** Source location for this state. */
707 YYLTYPE yyloc;
708 };
709
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;
718 };
719
720 struct yySemanticOption {
721 /** Type tag: always false. */
722 yybool yyisState;
723 /** Rule number for this reduction */
724 yyRuleNum yyrule;
725 /** The last RHS state in the list of states to be reduced. */
726 yyGLRState* yystate;
727 /** The lookahead for this reduction. */
728 int yyrawchar;
729 YYSTYPE yyval;
730 YYLTYPE yyloc;
731 /** Next sibling in chain of options. To facilitate merging,
732 * options are chained in decreasing order by address. */
733 yySemanticOption* yynext;
734 };
735
736 /** Type of the items in the GLR stack. The yyisState field
737 * indicates which item of the union is valid. */
738 union yyGLRStackItem {
739 yyGLRState yystate;
740 yySemanticOption yyoption;
741 };
742
743 struct yyGLRStack {
744 int yyerrState;
745 ]b4_locations_if([[ /* To compute the location of the error token. */
746 yyGLRStackItem yyerror_range[3];]])[
747 ]b4_pure_if(
748 [
749 int yyerrcnt;
750 int yyrawchar;
751 YYSTYPE yyval;
752 YYLTYPE yyloc;
753 ])[
754 YYJMP_BUF yyexception_buffer;
755 yyGLRStackItem* yyitems;
756 yyGLRStackItem* yynextFree;
757 size_t yyspaceLeft;
758 yyGLRState* yysplitPoint;
759 yyGLRState* yylastDeleted;
760 yyGLRStateSet yytops;
761 };
762
763 #if YYSTACKEXPANDABLE
764 static void yyexpandGLRStack (yyGLRStack* yystackp);
765 #endif
766
767 static void yyFail (yyGLRStack* yystackp]b4_pure_formals[, const char* yymsg)
768 __attribute__ ((__noreturn__));
769 static void
770 yyFail (yyGLRStack* yystackp]b4_pure_formals[, const char* yymsg)
771 {
772 if (yymsg != NULL)
773 yyerror (]b4_yyerror_args[yymsg);
774 YYLONGJMP (yystackp->yyexception_buffer, 1);
775 }
776
777 static void yyMemoryExhausted (yyGLRStack* yystackp)
778 __attribute__ ((__noreturn__));
779 static void
780 yyMemoryExhausted (yyGLRStack* yystackp)
781 {
782 YYLONGJMP (yystackp->yyexception_buffer, 2);
783 }
784
785 #if YYDEBUG || YYERROR_VERBOSE
786 /** A printable representation of TOKEN. */
787 static inline const char*
788 yytokenName (yySymbol yytoken)
789 {
790 if (yytoken == YYEMPTY)
791 return "";
792
793 return yytname[yytoken];
794 }
795 #endif
796
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__));
801 static void
802 yyfillin (yyGLRStackItem *yyvsp, int yylow0, int yylow1)
803 {
804 yyGLRState* s;
805 int i;
806 s = yyvsp[yylow0].yystate.yypred;
807 for (i = yylow0-1; i >= yylow1; i -= 1)
808 {
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;
814 }
815 }
816
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__));
822 static inline int
823 yyfill (yyGLRStackItem *yyvsp, int *yylow, int yylow1, yybool yynormal)
824 {
825 if (!yynormal && yylow1 < *yylow)
826 {
827 yyfillin (yyvsp, *yylow, yylow1);
828 *yylow = yylow1;
829 }
830 return yylow1;
831 }
832
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,
840 YYSTYPE* yyvalp,
841 YYLTYPE* YYOPTIONAL_LOC (yylocp),
842 yyGLRStack* yystackp
843 ]b4_user_formals[)
844 {
845 yybool yynormal __attribute__ ((__unused__)) =
846 (yystackp->yysplitPoint == NULL);
847 int yylow;
848 ]b4_parse_param_use[]dnl
849 [# undef yyerrok
850 # define yyerrok (yystackp->yyerrState = 0)
851 # undef YYACCEPT
852 # define YYACCEPT return yyaccept
853 # undef YYABORT
854 # define YYABORT return yyabort
855 # undef YYERROR
856 # define YYERROR return yyerrok, yyerr
857 # undef YYRECOVERING
858 # define YYRECOVERING() (yystackp->yyerrState != 0)
859 # undef yyclearin
860 # define yyclearin (yychar = YYEMPTY)
861 # undef YYFILL
862 # define YYFILL(N) yyfill (yyvsp, &yylow, N, yynormal)
863 # undef YYBACKUP
864 # define YYBACKUP(Token, Value) \
865 return yyerror (]b4_yyerror_args[YY_("syntax error: cannot back up")), \
866 yyerrok, yyerr
867
868 yylow = 1;
869 if (yyrhslen == 0)
870 *yyvalp = yyval_default;
871 else
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;
875 ]])[
876 switch (yyn)
877 {
878 ]b4_user_actions[
879 default: break;
880 }
881
882 return yyok;
883 # undef yyerrok
884 # undef YYABORT
885 # undef YYACCEPT
886 # undef YYERROR
887 # undef YYBACKUP
888 # undef yyclearin
889 # undef YYRECOVERING
890 }
891 \f
892
893 /*ARGSUSED*/ static void
894 yyuserMerge (int yyn, YYSTYPE* yy0, YYSTYPE* yy1)
895 {
896 YYUSE (yy0);
897 YYUSE (yy1);
898
899 switch (yyn)
900 {
901 ]b4_mergers[
902 default: break;
903 }
904 }
905
906 /* Bison grammar-table manipulation. */
907
908 ]b4_yydestruct_generate([b4_c_ansi_function_def])[
909
910 /** Number of symbols composing the right hand side of rule #RULE. */
911 static inline int
912 yyrhsLength (yyRuleNum yyrule)
913 {
914 return yyr2[yyrule];
915 }
916
917 static void
918 yydestroyGLRState (char const *yymsg, yyGLRState *yys]b4_user_formals[)
919 {
920 if (yys->yyresolved)
921 yydestruct (yymsg, yystos[yys->yylrState],
922 &yys->yysemantics.yysval]b4_locations_if([, &yys->yyloc])[]b4_user_args[);
923 else
924 {
925 #if YYDEBUG
926 if (yydebug)
927 {
928 if (yys->yysemantics.yyfirstVal)
929 YYFPRINTF (stderr, "%s unresolved ", yymsg);
930 else
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");
935 }
936 #endif
937
938 if (yys->yysemantics.yyfirstVal)
939 {
940 yySemanticOption *yyoption = yys->yysemantics.yyfirstVal;
941 yyGLRState *yyrh;
942 int yyn;
943 for (yyrh = yyoption->yystate, yyn = yyrhsLength (yyoption->yyrule);
944 yyn > 0;
945 yyrh = yyrh->yypred, yyn -= 1)
946 yydestroyGLRState (yymsg, yyrh]b4_user_args[);
947 }
948 }
949 }
950
951 /** Left-hand-side symbol for rule #RULE. */
952 static inline yySymbol
953 yylhsNonterm (yyRuleNum yyrule)
954 {
955 return yyr1[yyrule];
956 }
957
958 #define yypact_value_is_default(yystate) \
959 ]b4_table_value_equals([[pact]], [[yystate]], [b4_pact_ninf])[
960
961 /** True iff LR state STATE has only a default reduction (regardless
962 * of token). */
963 static inline yybool
964 yyisDefaultedState (yyStateNum yystate)
965 {
966 return yypact_value_is_default (yypact[yystate]);
967 }
968
969 /** The default reduction for STATE, assuming it has one. */
970 static inline yyRuleNum
971 yydefaultAction (yyStateNum yystate)
972 {
973 return yydefact[yystate];
974 }
975
976 #define yytable_value_is_error(yytable_value) \
977 ]b4_table_value_equals([[table]], [[yytable_value]], [b4_table_ninf])[
978
979 /** Set *YYACTION to the action to take in YYSTATE on seeing YYTOKEN.
980 * Result R means
981 * R < 0: Reduce on rule -R.
982 * R = 0: Error.
983 * R > 0: Shift to state R.
984 * Set *CONFLICTS to a pointer into yyconfl to 0-terminated list of
985 * conflicting reductions.
986 */
987 static inline void
988 yygetLRActions (yyStateNum yystate, int yytoken,
989 int* yyaction, const short int** yyconflicts)
990 {
991 int yyindex = yypact[yystate] + yytoken;
992 if (yypact_value_is_default (yypact[yystate])
993 || yyindex < 0 || YYLAST < yyindex || yycheck[yyindex] != yytoken)
994 {
995 *yyaction = -yydefact[yystate];
996 *yyconflicts = yyconfl;
997 }
998 else if (! yytable_value_is_error (yytable[yyindex]))
999 {
1000 *yyaction = yytable[yyindex];
1001 *yyconflicts = yyconfl + yyconflp[yyindex];
1002 }
1003 else
1004 {
1005 *yyaction = 0;
1006 *yyconflicts = yyconfl + yyconflp[yyindex];
1007 }
1008 }
1009
1010 static inline yyStateNum
1011 yyLRgotoState (yyStateNum yystate, yySymbol yylhs)
1012 {
1013 int yyr = yypgoto[yylhs - YYNTOKENS] + yystate;
1014 if (0 <= yyr && yyr <= YYLAST && yycheck[yyr] == yystate)
1015 return yytable[yyr];
1016 else
1017 return yydefgoto[yylhs - YYNTOKENS];
1018 }
1019
1020 static inline yybool
1021 yyisShiftAction (int yyaction)
1022 {
1023 return 0 < yyaction;
1024 }
1025
1026 static inline yybool
1027 yyisErrorAction (int yyaction)
1028 {
1029 return yyaction == 0;
1030 }
1031
1032 /* GLRStates */
1033
1034 /** Return a fresh GLRStackItem. Callers should call
1035 * YY_RESERVE_GLRSTACK afterwards to make sure there is sufficient
1036 * headroom. */
1037
1038 static inline yyGLRStackItem*
1039 yynewGLRStackItem (yyGLRStack* yystackp, yybool yyisState)
1040 {
1041 yyGLRStackItem* yynewItem = yystackp->yynextFree;
1042 yystackp->yyspaceLeft -= 1;
1043 yystackp->yynextFree += 1;
1044 yynewItem->yystate.yyisState = yyisState;
1045 return yynewItem;
1046 }
1047
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. */
1052 static void
1053 yyaddDeferredAction (yyGLRStack* yystackp, size_t yyk, yyGLRState* yystate,
1054 yyGLRState* yyrhs, yyRuleNum yyrule)
1055 {
1056 yySemanticOption* yynewOption =
1057 &yynewGLRStackItem (yystackp, yyfalse)->yyoption;
1058 yynewOption->yystate = yyrhs;
1059 yynewOption->yyrule = yyrule;
1060 if (yystackp->yytops.yylookaheadNeeds[yyk])
1061 {
1062 yynewOption->yyrawchar = yychar;
1063 yynewOption->yyval = yylval;
1064 yynewOption->yyloc = yylloc;
1065 }
1066 else
1067 yynewOption->yyrawchar = YYEMPTY;
1068 yynewOption->yynext = yystate->yysemantics.yyfirstVal;
1069 yystate->yysemantics.yyfirstVal = yynewOption;
1070
1071 YY_RESERVE_GLRSTACK (yystackp);
1072 }
1073
1074 /* GLRStacks */
1075
1076 /** Initialize SET to a singleton set containing an empty stack. */
1077 static yybool
1078 yyinitStateSet (yyGLRStateSet* yyset)
1079 {
1080 yyset->yysize = 1;
1081 yyset->yycapacity = 16;
1082 yyset->yystates = (yyGLRState**) YYMALLOC (16 * sizeof yyset->yystates[0]);
1083 if (! yyset->yystates)
1084 return yyfalse;
1085 yyset->yystates[0] = NULL;
1086 yyset->yylookaheadNeeds =
1087 (yybool*) YYMALLOC (16 * sizeof yyset->yylookaheadNeeds[0]);
1088 if (! yyset->yylookaheadNeeds)
1089 {
1090 YYFREE (yyset->yystates);
1091 return yyfalse;
1092 }
1093 return yytrue;
1094 }
1095
1096 static void yyfreeStateSet (yyGLRStateSet* yyset)
1097 {
1098 YYFREE (yyset->yystates);
1099 YYFREE (yyset->yylookaheadNeeds);
1100 }
1101
1102 /** Initialize STACK to a single empty stack, with total maximum
1103 * capacity for all stacks of SIZE. */
1104 static yybool
1105 yyinitGLRStack (yyGLRStack* yystackp, size_t yysize)
1106 {
1107 yystackp->yyerrState = 0;
1108 yynerrs = 0;
1109 yystackp->yyspaceLeft = yysize;
1110 yystackp->yyitems =
1111 (yyGLRStackItem*) YYMALLOC (yysize * sizeof yystackp->yynextFree[0]);
1112 if (!yystackp->yyitems)
1113 return yyfalse;
1114 yystackp->yynextFree = yystackp->yyitems;
1115 yystackp->yysplitPoint = NULL;
1116 yystackp->yylastDeleted = NULL;
1117 return yyinitStateSet (&yystackp->yytops);
1118 }
1119
1120
1121 #if YYSTACKEXPANDABLE
1122 # define YYRELOC(YYFROMITEMS,YYTOITEMS,YYX,YYTYPE) \
1123 &((YYTOITEMS) - ((YYFROMITEMS) - (yyGLRStackItem*) (YYX)))->YYTYPE
1124
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. */
1130 static void
1131 yyexpandGLRStack (yyGLRStack* yystackp)
1132 {
1133 yyGLRStackItem* yynewItems;
1134 yyGLRStackItem* yyp0, *yyp1;
1135 size_t yysize, yynewSize;
1136 size_t yyn;
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]);
1144 if (! yynewItems)
1145 yyMemoryExhausted (yystackp);
1146 for (yyp0 = yystackp->yyitems, yyp1 = yynewItems, yyn = yysize;
1147 0 < yyn;
1148 yyn -= 1, yyp0 += 1, yyp1 += 1)
1149 {
1150 *yyp1 = *yyp0;
1151 if (*(yybool *) yyp0)
1152 {
1153 yyGLRState* yys0 = &yyp0->yystate;
1154 yyGLRState* yys1 = &yyp1->yystate;
1155 if (yys0->yypred != NULL)
1156 yys1->yypred =
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);
1161 }
1162 else
1163 {
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);
1170 }
1171 }
1172 if (yystackp->yysplitPoint != NULL)
1173 yystackp->yysplitPoint = YYRELOC (yystackp->yyitems, yynewItems,
1174 yystackp->yysplitPoint, yystate);
1175
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;
1185 }
1186 #endif
1187
1188 static void
1189 yyfreeGLRStack (yyGLRStack* yystackp)
1190 {
1191 YYFREE (yystackp->yyitems);
1192 yyfreeStateSet (&yystackp->yytops);
1193 }
1194
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
1197 * S. */
1198 static inline void
1199 yyupdateSplit (yyGLRStack* yystackp, yyGLRState* yys)
1200 {
1201 if (yystackp->yysplitPoint != NULL && yystackp->yysplitPoint > yys)
1202 yystackp->yysplitPoint = yys;
1203 }
1204
1205 /** Invalidate stack #K in STACK. */
1206 static inline void
1207 yymarkStackDeleted (yyGLRStack* yystackp, size_t yyk)
1208 {
1209 if (yystackp->yytops.yystates[yyk] != NULL)
1210 yystackp->yylastDeleted = yystackp->yytops.yystates[yyk];
1211 yystackp->yytops.yystates[yyk] = NULL;
1212 }
1213
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
1216 been deleted. */
1217 static void
1218 yyundeleteLastStack (yyGLRStack* yystackp)
1219 {
1220 if (yystackp->yylastDeleted == NULL || yystackp->yytops.yysize != 0)
1221 return;
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;
1226 }
1227
1228 static inline void
1229 yyremoveDeletes (yyGLRStack* yystackp)
1230 {
1231 size_t yyi, yyj;
1232 yyi = yyj = 0;
1233 while (yyj < yystackp->yytops.yysize)
1234 {
1235 if (yystackp->yytops.yystates[yyi] == NULL)
1236 {
1237 if (yyi == yyj)
1238 {
1239 YYDPRINTF ((stderr, "Removing dead stacks.\n"));
1240 }
1241 yystackp->yytops.yysize -= 1;
1242 }
1243 else
1244 {
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];
1253 if (yyj != yyi)
1254 {
1255 YYDPRINTF ((stderr, "Rename stack %lu -> %lu.\n",
1256 (unsigned long int) yyi, (unsigned long int) yyj));
1257 }
1258 yyj += 1;
1259 }
1260 yyi += 1;
1261 }
1262 }
1263
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. */
1266 static inline void
1267 yyglrShift (yyGLRStack* yystackp, size_t yyk, yyStateNum yylrState,
1268 size_t yyposn,
1269 YYSTYPE* yyvalp, YYLTYPE* yylocp)
1270 {
1271 yyGLRState* yynewState = &yynewGLRStackItem (yystackp, yytrue)->yystate;
1272
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;
1280
1281 YY_RESERVE_GLRSTACK (yystackp);
1282 }
1283
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. */
1287 static inline void
1288 yyglrShiftDefer (yyGLRStack* yystackp, size_t yyk, yyStateNum yylrState,
1289 size_t yyposn, yyGLRState* yyrhs, yyRuleNum yyrule)
1290 {
1291 yyGLRState* yynewState = &yynewGLRStackItem (yystackp, yytrue)->yystate;
1292
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;
1299
1300 /* Invokes YY_RESERVE_GLRSTACK. */
1301 yyaddDeferredAction (yystackp, yyk, yynewState, yyrhs, yyrule);
1302 }
1303
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[)
1313 {
1314 int yynrhs = yyrhsLength (yyrule);
1315
1316 if (yystackp->yysplitPoint == NULL)
1317 {
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[);
1326 }
1327 else
1328 {
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. */
1333 int yyi;
1334 yyGLRState* yys;
1335 yyGLRStackItem yyrhsVals[YYMAXRHS + YYMAXLEFT + 1];
1336 yys = yyrhsVals[YYMAXRHS + YYMAXLEFT].yystate.yypred
1337 = yystackp->yytops.yystates[yyk];]b4_locations_if([[
1338 if (yynrhs == 0)
1339 /* Set default location. */
1340 yyrhsVals[YYMAXRHS + YYMAXLEFT - 1].yystate.yyloc = yys->yyloc;]])[
1341 for (yyi = 0; yyi < yynrhs; yyi += 1)
1342 {
1343 yys = yys->yypred;
1344 YYASSERT (yys);
1345 }
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[);
1350 }
1351 }
1352
1353 #if !YYDEBUG
1354 # define YY_REDUCE_PRINT(Args)
1355 #else
1356 # define YY_REDUCE_PRINT(Args) \
1357 do { \
1358 if (yydebug) \
1359 yy_reduce_print Args; \
1360 } while (YYID (0))
1361
1362 /*----------------------------------------------------------.
1363 | Report that the RULE is going to be reduced on stack #K. |
1364 `----------------------------------------------------------*/
1365
1366 /*ARGSUSED*/ static inline void
1367 yy_reduce_print (yyGLRStack* yystackp, size_t yyk, yyRuleNum yyrule]b4_user_formals[)
1368 {
1369 int yynrhs = yyrhsLength (yyrule);
1370 yybool yynormal __attribute__ ((__unused__)) =
1371 (yystackp->yysplitPoint == NULL);
1372 yyGLRStackItem* yyvsp = (yyGLRStackItem*) yystackp->yytops.yystates[yyk];
1373 int yylow = 1;
1374 int yyi;
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++)
1381 {
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
1387 b4_user_args[);
1388 YYFPRINTF (stderr, "\n");
1389 }
1390 }
1391 #endif
1392
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.
1403 */
1404 static inline YYRESULTTAG
1405 yyglrReduce (yyGLRStack* yystackp, size_t yyk, yyRuleNum yyrule,
1406 yybool yyforceEval]b4_user_formals[)
1407 {
1408 size_t yyposn = yystackp->yytops.yystates[yyk]->yyposn;
1409
1410 if (yyforceEval || yystackp->yysplitPoint == NULL)
1411 {
1412 YYSTYPE yysval;
1413 YYLTYPE yyloc;
1414
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);
1423 }
1424 else
1425 {
1426 size_t yyi;
1427 int yyn;
1428 yyGLRState* yys, *yys0 = yystackp->yytops.yystates[yyk];
1429 yyStateNum yynewLRState;
1430
1431 for (yys = yystackp->yytops.yystates[yyk], yyn = yyrhsLength (yyrule);
1432 0 < yyn; yyn -= 1)
1433 {
1434 yys = yys->yypred;
1435 YYASSERT (yys);
1436 }
1437 yyupdateSplit (yystackp, yys);
1438 yynewLRState = yyLRgotoState (yys->yylrState, yylhsNonterm (yyrule));
1439 YYDPRINTF ((stderr,
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)
1444 {
1445 yyGLRState* yyp, *yysplit = yystackp->yysplitPoint;
1446 yyp = yystackp->yytops.yystates[yyi];
1447 while (yyp != yys && yyp != yysplit && yyp->yyposn >= yyposn)
1448 {
1449 if (yyp->yylrState == yynewLRState && yyp->yypred == yys)
1450 {
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));
1456 return yyok;
1457 }
1458 yyp = yyp->yypred;
1459 }
1460 }
1461 yystackp->yytops.yystates[yyk] = yys;
1462 yyglrShiftDefer (yystackp, yyk, yynewLRState, yyposn, yys0, yyrule);
1463 }
1464 return yyok;
1465 }
1466
1467 static size_t
1468 yysplitStack (yyGLRStack* yystackp, size_t yyk)
1469 {
1470 if (yystackp->yysplitPoint == NULL)
1471 {
1472 YYASSERT (yyk == 0);
1473 yystackp->yysplitPoint = yystackp->yytops.yystates[yyk];
1474 }
1475 if (yystackp->yytops.yysize >= yystackp->yytops.yycapacity)
1476 {
1477 yyGLRState** yynewStates;
1478 yybool* yynewLookaheadNeeds;
1479
1480 yynewStates = NULL;
1481
1482 if (yystackp->yytops.yycapacity
1483 > (YYSIZEMAX / (2 * sizeof yynewStates[0])))
1484 yyMemoryExhausted (yystackp);
1485 yystackp->yytops.yycapacity *= 2;
1486
1487 yynewStates =
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;
1494
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;
1502 }
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;
1509 }
1510
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. */
1514 static yybool
1515 yyidenticalOptions (yySemanticOption* yyy0, yySemanticOption* yyy1)
1516 {
1517 if (yyy0->yyrule == yyy1->yyrule)
1518 {
1519 yyGLRState *yys0, *yys1;
1520 int yyn;
1521 for (yys0 = yyy0->yystate, yys1 = yyy1->yystate,
1522 yyn = yyrhsLength (yyy0->yyrule);
1523 yyn > 0;
1524 yys0 = yys0->yypred, yys1 = yys1->yypred, yyn -= 1)
1525 if (yys0->yyposn != yys1->yyposn)
1526 return yyfalse;
1527 return yytrue;
1528 }
1529 else
1530 return yyfalse;
1531 }
1532
1533 /** Assuming identicalOptions (Y0,Y1), destructively merge the
1534 * alternative semantic values for the RHS-symbols of Y1 and Y0. */
1535 static void
1536 yymergeOptionSets (yySemanticOption* yyy0, yySemanticOption* yyy1)
1537 {
1538 yyGLRState *yys0, *yys1;
1539 int yyn;
1540 for (yys0 = yyy0->yystate, yys1 = yyy1->yystate,
1541 yyn = yyrhsLength (yyy0->yyrule);
1542 yyn > 0;
1543 yys0 = yys0->yypred, yys1 = yys1->yypred, yyn -= 1)
1544 {
1545 if (yys0 == yys1)
1546 break;
1547 else if (yys0->yyresolved)
1548 {
1549 yys1->yyresolved = yytrue;
1550 yys1->yysemantics.yysval = yys0->yysemantics.yysval;
1551 }
1552 else if (yys1->yyresolved)
1553 {
1554 yys0->yyresolved = yytrue;
1555 yys0->yysemantics.yysval = yys1->yysemantics.yysval;
1556 }
1557 else
1558 {
1559 yySemanticOption** yyz0p;
1560 yySemanticOption* yyz1;
1561 yyz0p = &yys0->yysemantics.yyfirstVal;
1562 yyz1 = yys1->yysemantics.yyfirstVal;
1563 while (YYID (yytrue))
1564 {
1565 if (yyz1 == *yyz0p || yyz1 == NULL)
1566 break;
1567 else if (*yyz0p == NULL)
1568 {
1569 *yyz0p = yyz1;
1570 break;
1571 }
1572 else if (*yyz0p < yyz1)
1573 {
1574 yySemanticOption* yyz = *yyz0p;
1575 *yyz0p = yyz1;
1576 yyz1 = yyz1->yynext;
1577 (*yyz0p)->yynext = yyz;
1578 }
1579 yyz0p = &(*yyz0p)->yynext;
1580 }
1581 yys1->yysemantics.yyfirstVal = yys0->yysemantics.yyfirstVal;
1582 }
1583 }
1584 }
1585
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. */
1589 static int
1590 yypreference (yySemanticOption* y0, yySemanticOption* y1)
1591 {
1592 yyRuleNum r0 = y0->yyrule, r1 = y1->yyrule;
1593 int p0 = yydprec[r0], p1 = yydprec[r1];
1594
1595 if (p0 == p1)
1596 {
1597 if (yymerger[r0] == 0 || yymerger[r0] != yymerger[r1])
1598 return 0;
1599 else
1600 return 1;
1601 }
1602 if (p0 == 0 || p1 == 0)
1603 return 0;
1604 if (p0 < p1)
1605 return 3;
1606 if (p1 < p0)
1607 return 2;
1608 return 0;
1609 }
1610
1611 static YYRESULTTAG yyresolveValue (yyGLRState* yys,
1612 yyGLRStack* yystackp]b4_user_formals[);
1613
1614
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
1619 * if necessary. */
1620 static YYRESULTTAG
1621 yyresolveStates (yyGLRState* yys, int yyn,
1622 yyGLRStack* yystackp]b4_user_formals[)
1623 {
1624 if (0 < yyn)
1625 {
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[));
1630 }
1631 return yyok;
1632 }
1633
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). */
1638 static YYRESULTTAG
1639 yyresolveAction (yySemanticOption* yyopt, yyGLRStack* yystackp,
1640 YYSTYPE* yyvalp, YYLTYPE* yylocp]b4_user_formals[)
1641 {
1642 yyGLRStackItem yyrhsVals[YYMAXRHS + YYMAXLEFT + 1];
1643 int yynrhs;
1644 int yychar_current;
1645 YYSTYPE yylval_current;
1646 YYLTYPE yylloc_current;
1647 YYRESULTTAG yyflag;
1648
1649 yynrhs = yyrhsLength (yyopt->yyrule);
1650 yyflag = yyresolveStates (yyopt->yystate, yynrhs, yystackp]b4_user_args[);
1651 if (yyflag != yyok)
1652 {
1653 yyGLRState *yys;
1654 for (yys = yyopt->yystate; yynrhs > 0; yys = yys->yypred, yynrhs -= 1)
1655 yydestroyGLRState ("Cleanup: popping", yys]b4_user_args[);
1656 return yyflag;
1657 }
1658
1659 yyrhsVals[YYMAXRHS + YYMAXLEFT].yystate.yypred = yyopt->yystate;]b4_locations_if([[
1660 if (yynrhs == 0)
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;
1675 return yyflag;
1676 }
1677
1678 #if YYDEBUG
1679 static void
1680 yyreportTree (yySemanticOption* yyx, int yyindent)
1681 {
1682 int yynrhs = yyrhsLength (yyx->yyrule);
1683 int yyi;
1684 yyGLRState* yys;
1685 yyGLRState* yystates[1 + YYMAXRHS];
1686 yyGLRState yyleftmost_state;
1687
1688 for (yyi = yynrhs, yys = yyx->yystate; 0 < yyi; yyi -= 1, yys = yys->yypred)
1689 yystates[yyi] = yys;
1690 if (yys == NULL)
1691 {
1692 yyleftmost_state.yyposn = 0;
1693 yystates[0] = &yyleftmost_state;
1694 }
1695 else
1696 yystates[0] = yys;
1697
1698 if (yyx->yystate->yyposn < yys->yyposn + 1)
1699 YYFPRINTF (stderr, "%*s%s -> <Rule %d, empty>\n",
1700 yyindent, "", yytokenName (yylhsNonterm (yyx->yyrule)),
1701 yyx->yyrule - 1);
1702 else
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)
1708 {
1709 if (yystates[yyi]->yyresolved)
1710 {
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]));
1714 else
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);
1719 }
1720 else
1721 yyreportTree (yystates[yyi]->yysemantics.yyfirstVal, yyindent+2);
1722 }
1723 }
1724 #endif
1725
1726 /*ARGSUSED*/ static YYRESULTTAG
1727 yyreportAmbiguity (yySemanticOption* yyx0,
1728 yySemanticOption* yyx1]b4_pure_formals[)
1729 {
1730 YYUSE (yyx0);
1731 YYUSE (yyx1);
1732
1733 #if YYDEBUG
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");
1740 #endif
1741
1742 yyerror (]b4_yyerror_args[YY_("syntax is ambiguous"));
1743 return yyabort;
1744 }
1745
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. */
1749 static void
1750 yyresolveLocations (yyGLRState* yys1, int yyn1,
1751 yyGLRStack *yystackp]b4_user_formals[)
1752 {
1753 if (0 < yyn1)
1754 {
1755 yyresolveLocations (yys1->yypred, yyn1 - 1, yystackp]b4_user_args[);
1756 if (!yys1->yyresolved)
1757 {
1758 yySemanticOption *yyoption;
1759 yyGLRStackItem yyrhsloc[1 + YYMAXRHS];
1760 int yynrhs;
1761 int yychar_current;
1762 YYSTYPE yylval_current;
1763 YYLTYPE yylloc_current;
1764 yyoption = yys1->yysemantics.yyfirstVal;
1765 YYASSERT (yyoption != NULL);
1766 yynrhs = yyrhsLength (yyoption->yyrule);
1767 if (yynrhs > 0)
1768 {
1769 yyGLRState *yys;
1770 int yyn;
1771 yyresolveLocations (yyoption->yystate, yynrhs,
1772 yystackp]b4_user_args[);
1773 for (yys = yyoption->yystate, yyn = yynrhs;
1774 yyn > 0;
1775 yys = yys->yypred, yyn -= 1)
1776 yyrhsloc[yyn].yystate.yyloc = yys->yyloc;
1777 }
1778 else
1779 {
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;
1789 }
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;
1800 }
1801 }
1802 }
1803
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. */
1810 static YYRESULTTAG
1811 yyresolveValue (yyGLRState* yys, yyGLRStack* yystackp]b4_user_formals[)
1812 {
1813 yySemanticOption* yyoptionList = yys->yysemantics.yyfirstVal;
1814 yySemanticOption* yybest;
1815 yySemanticOption** yypp;
1816 yybool yymerge;
1817 YYSTYPE yysval;
1818 YYRESULTTAG yyflag;
1819 YYLTYPE *yylocp = &yys->yyloc;
1820
1821 yybest = yyoptionList;
1822 yymerge = yyfalse;
1823 for (yypp = &yyoptionList->yynext; *yypp != NULL; )
1824 {
1825 yySemanticOption* yyp = *yypp;
1826
1827 if (yyidenticalOptions (yybest, yyp))
1828 {
1829 yymergeOptionSets (yybest, yyp);
1830 *yypp = yyp->yynext;
1831 }
1832 else
1833 {
1834 switch (yypreference (yybest, yyp))
1835 {
1836 case 0:
1837 yyresolveLocations (yys, 1, yystackp]b4_user_args[);
1838 return yyreportAmbiguity (yybest, yyp]b4_pure_args[);
1839 break;
1840 case 1:
1841 yymerge = yytrue;
1842 break;
1843 case 2:
1844 break;
1845 case 3:
1846 yybest = yyp;
1847 yymerge = yyfalse;
1848 break;
1849 default:
1850 /* This cannot happen so it is not worth a YYASSERT (yyfalse),
1851 but some compilers complain if the default case is
1852 omitted. */
1853 break;
1854 }
1855 yypp = &yyp->yynext;
1856 }
1857 }
1858
1859 if (yymerge)
1860 {
1861 yySemanticOption* yyp;
1862 int yyprec = yydprec[yybest->yyrule];
1863 yyflag = yyresolveAction (yybest, yystackp, &yysval,
1864 yylocp]b4_user_args[);
1865 if (yyflag == yyok)
1866 for (yyp = yybest->yynext; yyp != NULL; yyp = yyp->yynext)
1867 {
1868 if (yyprec == yydprec[yyp->yyrule])
1869 {
1870 YYSTYPE yysval_other;
1871 YYLTYPE yydummy;
1872 yyflag = yyresolveAction (yyp, yystackp, &yysval_other,
1873 &yydummy]b4_user_args[);
1874 if (yyflag != yyok)
1875 {
1876 yydestruct ("Cleanup: discarding incompletely merged value for",
1877 yystos[yys->yylrState],
1878 &yysval]b4_locations_if([, yylocp])[]b4_user_args[);
1879 break;
1880 }
1881 yyuserMerge (yymerger[yyp->yyrule], &yysval, &yysval_other);
1882 }
1883 }
1884 }
1885 else
1886 yyflag = yyresolveAction (yybest, yystackp, &yysval, yylocp]b4_user_args[);
1887
1888 if (yyflag == yyok)
1889 {
1890 yys->yyresolved = yytrue;
1891 yys->yysemantics.yysval = yysval;
1892 }
1893 else
1894 yys->yysemantics.yyfirstVal = NULL;
1895 return yyflag;
1896 }
1897
1898 static YYRESULTTAG
1899 yyresolveStack (yyGLRStack* yystackp]b4_user_formals[)
1900 {
1901 if (yystackp->yysplitPoint != NULL)
1902 {
1903 yyGLRState* yys;
1904 int yyn;
1905
1906 for (yyn = 0, yys = yystackp->yytops.yystates[0];
1907 yys != yystackp->yysplitPoint;
1908 yys = yys->yypred, yyn += 1)
1909 continue;
1910 YYCHK (yyresolveStates (yystackp->yytops.yystates[0], yyn, yystackp
1911 ]b4_user_args[));
1912 }
1913 return yyok;
1914 }
1915
1916 static void
1917 yycompressStack (yyGLRStack* yystackp)
1918 {
1919 yyGLRState* yyp, *yyq, *yyr;
1920
1921 if (yystackp->yytops.yysize != 1 || yystackp->yysplitPoint == NULL)
1922 return;
1923
1924 for (yyp = yystackp->yytops.yystates[0], yyq = yyp->yypred, yyr = NULL;
1925 yyp != yystackp->yysplitPoint;
1926 yyr = yyp, yyp = yyq, yyq = yyp->yypred)
1927 yyp->yypred = yyr;
1928
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;
1934
1935 while (yyr != NULL)
1936 {
1937 yystackp->yynextFree->yystate = *yyr;
1938 yyr = yyr->yypred;
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;
1943 }
1944 }
1945
1946 static YYRESULTTAG
1947 yyprocessOneStack (yyGLRStack* yystackp, size_t yyk,
1948 size_t yyposn]b4_pure_formals[)
1949 {
1950 int yyaction;
1951 const short int* yyconflicts;
1952 yyRuleNum yyrule;
1953
1954 while (yystackp->yytops.yystates[yyk] != NULL)
1955 {
1956 yyStateNum yystate = yystackp->yytops.yystates[yyk]->yylrState;
1957 YYDPRINTF ((stderr, "Stack %lu Entering state %d\n",
1958 (unsigned long int) yyk, yystate));
1959
1960 YYASSERT (yystate != YYFINAL);
1961
1962 if (yyisDefaultedState (yystate))
1963 {
1964 yyrule = yydefaultAction (yystate);
1965 if (yyrule == 0)
1966 {
1967 YYDPRINTF ((stderr, "Stack %lu dies.\n",
1968 (unsigned long int) yyk));
1969 yymarkStackDeleted (yystackp, yyk);
1970 return yyok;
1971 }
1972 YYCHK (yyglrReduce (yystackp, yyk, yyrule, yyfalse]b4_user_args[));
1973 }
1974 else
1975 {
1976 yySymbol yytoken;
1977 yystackp->yytops.yylookaheadNeeds[yyk] = yytrue;
1978 if (yychar == YYEMPTY)
1979 {
1980 YYDPRINTF ((stderr, "Reading a token: "));
1981 yychar = YYLEX;
1982 }
1983
1984 if (yychar <= YYEOF)
1985 {
1986 yychar = yytoken = YYEOF;
1987 YYDPRINTF ((stderr, "Now at end of input.\n"));
1988 }
1989 else
1990 {
1991 yytoken = YYTRANSLATE (yychar);
1992 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
1993 }
1994
1995 yygetLRActions (yystate, yytoken, &yyaction, &yyconflicts);
1996
1997 while (*yyconflicts != 0)
1998 {
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[));
2007 yyconflicts += 1;
2008 }
2009
2010 if (yyisShiftAction (yyaction))
2011 break;
2012 else if (yyisErrorAction (yyaction))
2013 {
2014 YYDPRINTF ((stderr, "Stack %lu dies.\n",
2015 (unsigned long int) yyk));
2016 yymarkStackDeleted (yystackp, yyk);
2017 break;
2018 }
2019 else
2020 YYCHK (yyglrReduce (yystackp, yyk, -yyaction,
2021 yyfalse]b4_user_args[));
2022 }
2023 }
2024 return yyok;
2025 }
2026
2027 /*ARGSUSED*/ static void
2028 yyreportSyntaxError (yyGLRStack* yystackp]b4_user_formals[)
2029 {
2030 if (yystackp->yyerrState == 0)
2031 {
2032 #if YYERROR_VERBOSE
2033 int yyn;
2034 yyn = yypact[yystackp->yytops.yystates[0]->yylrState];
2035 if (YYPACT_NINF < yyn && yyn <= YYLAST)
2036 {
2037 yySymbol yytoken = YYTRANSLATE (yychar);
2038 size_t yysize0 = yytnamerr (NULL, yytokenName (yytoken));
2039 size_t yysize = yysize0;
2040 size_t yysize1;
2041 yybool yysize_overflow = yyfalse;
2042 char* yymsg = NULL;
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];
2048
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;
2053
2054 /* Stay within bounds of both yycheck and yytname. */
2055 int yychecklim = YYLAST - yyn + 1;
2056 int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
2057
2058 /* Number of reported tokens (one for the "unexpected", one per
2059 "expected"). */
2060 int yycount = 0;
2061 int yyx;
2062
2063 yyarg[yycount++] = yytokenName (yytoken);
2064
2065 for (yyx = yyxbegin; yyx < yyxend; ++yyx)
2066 if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
2067 && !yytable_value_is_error (yytable[yyx + yyn]))
2068 {
2069 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
2070 {
2071 yycount = 1;
2072 yysize = yysize0;
2073 break;
2074 }
2075 yyarg[yycount++] = yytokenName (yyx);
2076 yysize1 = yysize + yytnamerr (NULL, yytokenName (yyx));
2077 yysize_overflow |= yysize1 < yysize;
2078 yysize = yysize1;
2079 }
2080
2081 switch (yycount)
2082 {
2083 #define YYCASE_(N, S) \
2084 case N: \
2085 yyformat = S; \
2086 break
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"));
2092 #undef YYCASE_
2093 }
2094
2095 yysize1 = yysize + strlen (yyformat);
2096 yysize_overflow |= yysize1 < yysize;
2097 yysize = yysize1;
2098
2099 if (!yysize_overflow)
2100 yymsg = (char *) YYMALLOC (yysize);
2101
2102 if (yymsg)
2103 {
2104 char *yyp = yymsg;
2105 int yyi = 0;
2106 while ((*yyp = *yyformat))
2107 {
2108 if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
2109 {
2110 yyp += yytnamerr (yyp, yyarg[yyi++]);
2111 yyformat += 2;
2112 }
2113 else
2114 {
2115 yyp++;
2116 yyformat++;
2117 }
2118 }
2119 yyerror (]b4_lyyerror_args[yymsg);
2120 YYFREE (yymsg);
2121 }
2122 else
2123 {
2124 yyerror (]b4_lyyerror_args[YY_("syntax error"));
2125 yyMemoryExhausted (yystackp);
2126 }
2127 }
2128 else
2129 #endif /* YYERROR_VERBOSE */
2130 yyerror (]b4_lyyerror_args[YY_("syntax error"));
2131 yynerrs += 1;
2132 }
2133 }
2134
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[)
2140 {
2141 size_t yyk;
2142 int yyj;
2143
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))
2148 {
2149 yySymbol yytoken;
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[);
2164 }
2165 YYDPRINTF ((stderr, "Reading a token: "));
2166 yychar = YYLEX;
2167 if (yychar <= YYEOF)
2168 {
2169 yychar = yytoken = YYEOF;
2170 YYDPRINTF ((stderr, "Now at end of input.\n"));
2171 }
2172 else
2173 {
2174 yytoken = YYTRANSLATE (yychar);
2175 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
2176 }
2177 yyj = yypact[yystackp->yytops.yystates[0]->yylrState];
2178 if (yypact_value_is_default (yyj))
2179 return;
2180 yyj += yytoken;
2181 if (yyj < 0 || YYLAST < yyj || yycheck[yyj] != yytoken)
2182 {
2183 if (yydefact[yystackp->yytops.yystates[0]->yylrState] != 0)
2184 return;
2185 }
2186 else if (! yytable_value_is_error (yytable[yyj]))
2187 return;
2188 }
2189
2190 /* Reduce to one stack. */
2191 for (yyk = 0; yyk < yystackp->yytops.yysize; yyk += 1)
2192 if (yystackp->yytops.yystates[yyk] != NULL)
2193 break;
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);
2200
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)
2204 {
2205 yyGLRState *yys = yystackp->yytops.yystates[0];
2206 yyj = yypact[yys->yylrState];
2207 if (! yypact_value_is_default (yyj))
2208 {
2209 yyj += YYTERROR;
2210 if (0 <= yyj && yyj <= YYLAST && yycheck[yyj] == YYTERROR
2211 && yyisShiftAction (yytable[yyj]))
2212 {
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];
2222 break;
2223 }
2224 }
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;
2231 }
2232 if (yystackp->yytops.yystates[0] == NULL)
2233 yyFail (yystackp][]b4_lpure_args[, NULL);
2234 }
2235
2236 #define YYCHK1(YYE) \
2237 do { \
2238 switch (YYE) { \
2239 case yyok: \
2240 break; \
2241 case yyabort: \
2242 goto yyabortlab; \
2243 case yyaccept: \
2244 goto yyacceptlab; \
2245 case yyerr: \
2246 goto yyuser_error; \
2247 default: \
2248 goto yybuglab; \
2249 } \
2250 } while (YYID (0))
2251
2252
2253 /*----------.
2254 | yyparse. |
2255 `----------*/
2256
2257 ]b4_c_ansi_function_def([yyparse], [int], b4_parse_param)[
2258 {
2259 int yyresult;
2260 yyGLRStack yystack;
2261 yyGLRStack* const yystackp = &yystack;
2262 size_t yyposn;
2263
2264 YYDPRINTF ((stderr, "Starting parse\n"));
2265
2266 yychar = YYEMPTY;
2267 yylval = yyval_default;
2268 ]b4_locations_if([
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[;
2272 #endif
2273 ])
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
2281 [
2282 if (! yyinitGLRStack (yystackp, YYINITDEPTH))
2283 goto yyexhaustedlab;
2284 switch (YYSETJMP (yystack.yyexception_buffer))
2285 {
2286 case 0: break;
2287 case 1: goto yyabortlab;
2288 case 2: goto yyexhaustedlab;
2289 default: goto yybuglab;
2290 }
2291 yyglrShift (&yystack, 0, 0, 0, &yylval, &yylloc);
2292 yyposn = 0;
2293
2294 while (YYID (yytrue))
2295 {
2296 /* For efficiency, we have two loops, the first of which is
2297 specialized to deterministic operation (single stack, no
2298 potential ambiguity). */
2299 /* Standard mode */
2300 while (YYID (yytrue))
2301 {
2302 yyRuleNum yyrule;
2303 int yyaction;
2304 const short int* yyconflicts;
2305
2306 yyStateNum yystate = yystack.yytops.yystates[0]->yylrState;
2307 YYDPRINTF ((stderr, "Entering state %d\n", yystate));
2308 if (yystate == YYFINAL)
2309 goto yyacceptlab;
2310 if (yyisDefaultedState (yystate))
2311 {
2312 yyrule = yydefaultAction (yystate);
2313 if (yyrule == 0)
2314 {
2315 ]b4_locations_if([[ yystack.yyerror_range[1].yystate.yyloc = yylloc;]])[
2316 yyreportSyntaxError (&yystack]b4_user_args[);
2317 goto yyuser_error;
2318 }
2319 YYCHK1 (yyglrReduce (&yystack, 0, yyrule, yytrue]b4_user_args[));
2320 }
2321 else
2322 {
2323 yySymbol yytoken;
2324 if (yychar == YYEMPTY)
2325 {
2326 YYDPRINTF ((stderr, "Reading a token: "));
2327 yychar = YYLEX;
2328 }
2329
2330 if (yychar <= YYEOF)
2331 {
2332 yychar = yytoken = YYEOF;
2333 YYDPRINTF ((stderr, "Now at end of input.\n"));
2334 }
2335 else
2336 {
2337 yytoken = YYTRANSLATE (yychar);
2338 YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
2339 }
2340
2341 yygetLRActions (yystate, yytoken, &yyaction, &yyconflicts);
2342 if (*yyconflicts != 0)
2343 break;
2344 if (yyisShiftAction (yyaction))
2345 {
2346 YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
2347 yychar = YYEMPTY;
2348 yyposn += 1;
2349 yyglrShift (&yystack, 0, yyaction, yyposn, &yylval, &yylloc);
2350 if (0 < yystack.yyerrState)
2351 yystack.yyerrState -= 1;
2352 }
2353 else if (yyisErrorAction (yyaction))
2354 {
2355 ]b4_locations_if([[ yystack.yyerror_range[1].yystate.yyloc = yylloc;]])[
2356 yyreportSyntaxError (&yystack]b4_user_args[);
2357 goto yyuser_error;
2358 }
2359 else
2360 YYCHK1 (yyglrReduce (&yystack, 0, -yyaction, yytrue]b4_user_args[));
2361 }
2362 }
2363
2364 while (YYID (yytrue))
2365 {
2366 yySymbol yytoken_to_shift;
2367 size_t yys;
2368
2369 for (yys = 0; yys < yystack.yytops.yysize; yys += 1)
2370 yystackp->yytops.yylookaheadNeeds[yys] = yychar != YYEMPTY;
2371
2372 /* yyprocessOneStack returns one of three things:
2373
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.
2377
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
2381 the stack.
2382
2383 - yyok, when ready to shift a token.
2384
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. */
2390
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)
2395 {
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[);
2403 goto yyuser_error;
2404 }
2405
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
2410 called twice. */
2411 yytoken_to_shift = YYTRANSLATE (yychar);
2412 yychar = YYEMPTY;
2413 yyposn += 1;
2414 for (yys = 0; yys < yystack.yytops.yysize; yys += 1)
2415 {
2416 int yyaction;
2417 const short int* yyconflicts;
2418 yyStateNum yystate = yystack.yytops.yystates[yys]->yylrState;
2419 yygetLRActions (yystate, yytoken_to_shift, &yyaction,
2420 &yyconflicts);
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,
2425 &yylval, &yylloc);
2426 YYDPRINTF ((stderr, "Stack %lu now in state #%d\n",
2427 (unsigned long int) yys,
2428 yystack.yytops.yystates[yys]->yylrState));
2429 }
2430
2431 if (yystack.yytops.yysize == 1)
2432 {
2433 YYCHK1 (yyresolveStack (&yystack]b4_user_args[));
2434 YYDPRINTF ((stderr, "Returning to deterministic operation.\n"));
2435 yycompressStack (&yystack);
2436 break;
2437 }
2438 }
2439 continue;
2440 yyuser_error:
2441 yyrecoverSyntaxError (&yystack]b4_user_args[);
2442 yyposn = yystack.yytops.yystates[0]->yyposn;
2443 }
2444
2445 yyacceptlab:
2446 yyresult = 0;
2447 goto yyreturn;
2448
2449 yybuglab:
2450 YYASSERT (yyfalse);
2451 goto yyabortlab;
2452
2453 yyabortlab:
2454 yyresult = 1;
2455 goto yyreturn;
2456
2457 yyexhaustedlab:
2458 yyerror (]b4_lyyerror_args[YY_("memory exhausted"));
2459 yyresult = 2;
2460 goto yyreturn;
2461
2462 yyreturn:
2463 if (yychar != YYEMPTY)
2464 yydestruct ("Cleanup: discarding lookahead",
2465 YYTRANSLATE (yychar),
2466 &yylval]b4_locations_if([, &yylloc])[]b4_user_args[);
2467
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)
2472 {
2473 yyGLRState** yystates = yystack.yytops.yystates;
2474 if (yystates)
2475 {
2476 size_t yysize = yystack.yytops.yysize;
2477 size_t yyk;
2478 for (yyk = 0; yyk < yysize; yyk += 1)
2479 if (yystates[yyk])
2480 {
2481 while (yystates[yyk])
2482 {
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;
2490 }
2491 break;
2492 }
2493 }
2494 yyfreeGLRStack (&yystack);
2495 }
2496
2497 /* Make sure YYID is used. */
2498 return YYID (yyresult);
2499 }
2500
2501 /* DEBUGGING ONLY */
2502 #if YYDEBUG
2503 static void yypstack (yyGLRStack* yystackp, size_t yyk)
2504 __attribute__ ((__unused__));
2505 static void yypdumpstack (yyGLRStack* yystackp) __attribute__ ((__unused__));
2506
2507 static void
2508 yy_yypstack (yyGLRState* yys)
2509 {
2510 if (yys->yypred)
2511 {
2512 yy_yypstack (yys->yypred);
2513 YYFPRINTF (stderr, " -> ");
2514 }
2515 YYFPRINTF (stderr, "%d@@%lu", yys->yylrState,
2516 (unsigned long int) yys->yyposn);
2517 }
2518
2519 static void
2520 yypstates (yyGLRState* yyst)
2521 {
2522 if (yyst == NULL)
2523 YYFPRINTF (stderr, "<null>");
2524 else
2525 yy_yypstack (yyst);
2526 YYFPRINTF (stderr, "\n");
2527 }
2528
2529 static void
2530 yypstack (yyGLRStack* yystackp, size_t yyk)
2531 {
2532 yypstates (yystackp->yytops.yystates[yyk]);
2533 }
2534
2535 #define YYINDEX(YYX) \
2536 ((YYX) == NULL ? -1 : (yyGLRStackItem*) (YYX) - yystackp->yyitems)
2537
2538
2539 static void
2540 yypdumpstack (yyGLRStack* yystackp)
2541 {
2542 yyGLRStackItem* yyp;
2543 size_t yyi;
2544 for (yyp = yystackp->yyitems; yyp < yystackp->yynextFree; yyp += 1)
2545 {
2546 YYFPRINTF (stderr, "%3lu. ",
2547 (unsigned long int) (yyp - yystackp->yyitems));
2548 if (*(yybool *) yyp)
2549 {
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));
2558 }
2559 else
2560 {
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));
2565 }
2566 YYFPRINTF (stderr, "\n");
2567 }
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");
2573 }
2574 #endif
2575 ]b4_epilogue[]dnl
2576 dnl
2577 dnl glr.cc produces its own header.
2578 dnl
2579 m4_if(b4_skeleton, ["glr.c"],
2580 [b4_defines_if(
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])
2584
2585 b4_shared_declarations
2586
2587 b4_pure_if([],
2588 [[extern YYSTYPE ]b4_prefix[lval;]])
2589
2590 b4_locations_if([b4_pure_if([],
2591 [extern YYLTYPE ]b4_prefix[lloc;])
2592 ])
2593 ])])[]dnl
2594 m4_divert_pop(0)