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