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