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