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