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