]>
Commit | Line | Data |
---|---|---|
08af01c2 | 1 | -*- Autoconf -*- |
fb8135fa AD |
2 | |
3 | # C M4 Macros for Bison. | |
7d424de1 | 4 | |
7d6bad19 | 5 | # Copyright (C) 2002, 2004-2013 Free Software Foundation, Inc. |
fb8135fa | 6 | |
f16b0819 | 7 | # This program is free software: you can redistribute it and/or modify |
fb8135fa | 8 | # it under the terms of the GNU General Public License as published by |
f16b0819 | 9 | # the Free Software Foundation, either version 3 of the License, or |
fb8135fa | 10 | # (at your option) any later version. |
f16b0819 | 11 | # |
fb8135fa AD |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | # GNU General Public License for more details. | |
f16b0819 | 16 | # |
fb8135fa | 17 | # You should have received a copy of the GNU General Public License |
f16b0819 | 18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
fb8135fa | 19 | |
cd735a8c | 20 | m4_include(b4_pkgdatadir/[c-like.m4]) |
22172d47 AD |
21 | |
22 | # b4_tocpp(STRING) | |
23 | # ---------------- | |
24 | # Convert STRING into a valid C macro name. | |
25 | m4_define([b4_tocpp], | |
26 | [m4_toupper(m4_bpatsubst(m4_quote($1), [[^a-zA-Z0-9]+], [_]))]) | |
27 | ||
28 | ||
29 | # b4_cpp_guard(FILE) | |
30 | # ------------------ | |
31 | # A valid C macro name to use as a CPP header guard for FILE. | |
32 | m4_define([b4_cpp_guard], | |
c9d5bcc9 | 33 | [[YY_]b4_tocpp(m4_defn([b4_prefix])/[$1])[_INCLUDED]]) |
22172d47 AD |
34 | |
35 | ||
36 | # b4_cpp_guard_open(FILE) | |
37 | # b4_cpp_guard_close(FILE) | |
38 | # ------------------------ | |
6b4cb804 | 39 | # If FILE does not expand to nothing, open/close CPP inclusion guards for FILE. |
22172d47 | 40 | m4_define([b4_cpp_guard_open], |
6b4cb804 | 41 | [m4_ifval(m4_quote($1), |
22172d47 | 42 | [#ifndef b4_cpp_guard([$1]) |
6b4cb804 | 43 | # define b4_cpp_guard([$1])])]) |
22172d47 AD |
44 | |
45 | m4_define([b4_cpp_guard_close], | |
6b4cb804 AD |
46 | [m4_ifval(m4_quote($1), |
47 | [#endif b4_comment([!b4_cpp_guard([$1])])])]) | |
22172d47 AD |
48 | |
49 | ||
2a8d363a AD |
50 | ## ---------------- ## |
51 | ## Identification. ## | |
52 | ## ---------------- ## | |
fb8135fa | 53 | |
2a8d363a AD |
54 | # b4_identification |
55 | # ----------------- | |
d9df47b6 JD |
56 | # Depends on individual skeletons to define b4_pure_flag, b4_push_flag, or |
57 | # b4_pull_flag if they use the values of the %define variables api.pure or | |
67212941 | 58 | # api.push-pull. |
2a8d363a | 59 | m4_define([b4_identification], |
d9df47b6 JD |
60 | [[/* Identify Bison output. */ |
61 | #define YYBISON 1 | |
2a8d363a | 62 | |
55f64b82 | 63 | /* Bison version. */ |
d9df47b6 | 64 | #define YYBISON_VERSION "]b4_version[" |
55f64b82 | 65 | |
2a8d363a | 66 | /* Skeleton name. */ |
d9df47b6 | 67 | #define YYSKELETON_NAME ]b4_skeleton[]m4_ifdef([b4_pure_flag], [[ |
2a8d363a AD |
68 | |
69 | /* Pure parsers. */ | |
d9df47b6 JD |
70 | #define YYPURE ]b4_pure_flag])[]m4_ifdef([b4_push_flag], [[ |
71 | ||
72 | /* Push parsers. */ | |
73 | #define YYPUSH ]b4_push_flag])[]m4_ifdef([b4_pull_flag], [[ | |
74 | ||
75 | /* Pull parsers. */ | |
76 | #define YYPULL ]b4_pull_flag])[ | |
d9df47b6 | 77 | ]]) |
2a8d363a AD |
78 | |
79 | ||
7ec2d4cd AD |
80 | ## ---------------- ## |
81 | ## Default values. ## | |
82 | ## ---------------- ## | |
83 | ||
4b3847c3 AD |
84 | # b4_api_prefix, b4_api_PREFIX |
85 | # ---------------------------- | |
86 | # Corresponds to %define api.prefix | |
87 | b4_percent_define_default([[api.prefix]], [[yy]]) | |
88 | m4_define([b4_api_prefix], | |
89 | [b4_percent_define_get([[api.prefix]])]) | |
90 | m4_define([b4_api_PREFIX], | |
91 | [m4_toupper(b4_api_prefix)]) | |
92 | ||
93 | ||
94 | # b4_prefix | |
95 | # --------- | |
96 | # If the %name-prefix is not given, it is api.prefix. | |
97 | m4_define_default([b4_prefix], [b4_api_prefix]) | |
98 | ||
1b818f33 | 99 | # If the %union is not named, its name is YYSTYPE. |
4b3847c3 | 100 | m4_define_default([b4_union_name], [b4_api_PREFIX[]STYPE]) |
7ec2d4cd | 101 | |
cd48d21d | 102 | |
2a8d363a AD |
103 | ## ------------------------ ## |
104 | ## Pure/impure interfaces. ## | |
105 | ## ------------------------ ## | |
106 | ||
64b3612a AD |
107 | # b4_lex_formals |
108 | # -------------- | |
109 | # All the yylex formal arguments. | |
110 | # b4_lex_param arrives quoted twice, but we want to keep only one level. | |
111 | m4_define([b4_lex_formals], | |
112 | [b4_pure_if([[[[YYSTYPE *yylvalp]], [[&yylval]]][]dnl | |
113 | b4_locations_if([, [[YYLTYPE *yyllocp], [&yylloc]]])])dnl | |
114 | m4_ifdef([b4_lex_param], [, ]b4_lex_param)]) | |
115 | ||
116 | ||
117 | # b4_lex | |
118 | # ------ | |
119 | # Call yylex. | |
120 | m4_define([b4_lex], | |
121 | [b4_function_call([yylex], [int], b4_lex_formals)]) | |
122 | ||
123 | ||
2a8d363a AD |
124 | # b4_user_args |
125 | # ------------ | |
126 | m4_define([b4_user_args], | |
15f66669 | 127 | [m4_ifset([b4_parse_param], [, b4_args(b4_parse_param)])]) |
2a8d363a AD |
128 | |
129 | ||
130 | # b4_parse_param | |
131 | # -------------- | |
132 | # If defined, b4_parse_param arrives double quoted, but below we prefer | |
133 | # it to be single quoted. | |
2a8d363a | 134 | m4_define([b4_parse_param], |
7ecec4dd | 135 | b4_parse_param) |
2a8d363a | 136 | |
8f7e3cf9 | 137 | |
613d8952 AD |
138 | # b4_parse_param_for(DECL, FORMAL, BODY) |
139 | # --------------------------------------- | |
140 | # Iterate over the user parameters, binding the declaration to DECL, | |
141 | # the formal name to FORMAL, and evaluating the BODY. | |
142 | m4_define([b4_parse_param_for], | |
143 | [m4_foreach([$1_$2], m4_defn([b4_parse_param]), | |
6bbb2ed5 | 144 | [m4_pushdef([$1], m4_unquote(m4_car($1_$2)))dnl |
613d8952 AD |
145 | m4_pushdef([$2], m4_shift($1_$2))dnl |
146 | $3[]dnl | |
147 | m4_popdef([$2])dnl | |
148 | m4_popdef([$1])dnl | |
149 | ])]) | |
150 | ||
beadb220 AD |
151 | # b4_parse_param_use([VAL], [LOC]) |
152 | # -------------------------------- | |
45eebca4 | 153 | # 'YYUSE' VAL, LOC if locations are enabled, and all the parse-params. |
613d8952 | 154 | m4_define([b4_parse_param_use], |
1092d69c | 155 | [m4_ifvaln([$1], [ YYUSE ([$1]);])dnl |
1e5d6540 | 156 | b4_locations_if([m4_ifvaln([$2], [ YYUSE ([$2]);])])dnl |
beadb220 | 157 | b4_parse_param_for([Decl], [Formal], [ YYUSE (Formal); |
613d8952 AD |
158 | ])dnl |
159 | ]) | |
2a8d363a | 160 | |
8e1687ae | 161 | |
fb8135fa AD |
162 | ## ------------ ## |
163 | ## Data Types. ## | |
164 | ## ------------ ## | |
165 | ||
a762e609 AD |
166 | # b4_int_type(MIN, MAX) |
167 | # --------------------- | |
168 | # Return the smallest int type able to handle numbers ranging from | |
169 | # MIN to MAX (included). | |
170 | m4_define([b4_int_type], | |
171 | [m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char], | |
f1886bb2 | 172 | b4_ints_in($@, [-128], [127]), [1], [signed char], |
a762e609 | 173 | |
779e7ceb PE |
174 | b4_ints_in($@, [0], [65535]), [1], [unsigned short int], |
175 | b4_ints_in($@, [-32768], [32767]), [1], [short int], | |
a762e609 AD |
176 | |
177 | m4_eval([0 <= $1]), [1], [unsigned int], | |
178 | ||
e9690142 | 179 | [int])]) |
a762e609 | 180 | |
f1886bb2 | 181 | |
a762e609 AD |
182 | # b4_int_type_for(NAME) |
183 | # --------------------- | |
184 | # Return the smallest int type able to handle numbers ranging from | |
45eebca4 | 185 | # 'NAME_min' to 'NAME_max' (included). |
a762e609 AD |
186 | m4_define([b4_int_type_for], |
187 | [b4_int_type($1_min, $1_max)]) | |
fb8135fa | 188 | |
cf98343c | 189 | |
87412882 JD |
190 | # b4_table_value_equals(TABLE, VALUE, LITERAL) |
191 | # -------------------------------------------- | |
192 | # Without inducing a comparison warning from the compiler, check if the | |
193 | # literal value LITERAL equals VALUE from table TABLE, which must have | |
56f8d560 | 194 | # TABLE_min and TABLE_max defined. |
87412882 JD |
195 | m4_define([b4_table_value_equals], |
196 | [m4_if(m4_eval($3 < m4_indir([b4_]$1[_min]) | |
197 | || m4_indir([b4_]$1[_max]) < $3), [1], | |
56f8d560 | 198 | [[0]], |
34076080 | 199 | [(!!(($2) == ($3)))])]) |
cf98343c | 200 | |
ef51bfa7 | 201 | |
80a2826e AD |
202 | ## ----------------- ## |
203 | ## Compiler issues. ## | |
204 | ## ----------------- ## | |
205 | ||
206 | # b4_attribute_define | |
207 | # ------------------- | |
208 | # Provide portability for __attribute__. | |
209 | m4_define([b4_attribute_define], | |
210 | [#ifndef __attribute__ | |
211 | /* This feature is available in gcc versions 2.5 and later. */ | |
212 | # if (! defined __GNUC__ || __GNUC__ < 2 \ | |
213 | || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)) | |
214 | # define __attribute__(Spec) /* empty */ | |
215 | # endif | |
216 | #endif | |
217 | ||
218 | /* Suppress unused-variable warnings by "using" E. */ | |
219 | #if ! defined lint || defined __GNUC__ | |
220 | # define YYUSE(E) ((void) (E)) | |
221 | #else | |
222 | # define YYUSE(E) /* empty */ | |
223 | #endif | |
d3ae5af6 AD |
224 | |
225 | #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ | |
226 | /* Suppress an incorrect diagnostic about yylval being uninitialized. */ | |
227 | # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ | |
228 | _Pragma ("GCC diagnostic push") \ | |
229 | _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ | |
230 | _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") | |
231 | # define YY_IGNORE_MAYBE_UNINITIALIZED_END \ | |
232 | _Pragma ("GCC diagnostic pop") | |
233 | #else | |
234 | # define YY_INITIAL_VALUE(Value) Value | |
235 | #endif | |
236 | #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN | |
237 | # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN | |
238 | # define YY_IGNORE_MAYBE_UNINITIALIZED_END | |
239 | #endif | |
240 | #ifndef YY_INITIAL_VALUE | |
241 | # define YY_INITIAL_VALUE(Value) /* Nothing. */ | |
242 | #endif | |
80a2826e | 243 | ]) |
8e1687ae | 244 | |
8e1687ae | 245 | |
8e1687ae PE |
246 | ## ---------## |
247 | ## Values. ## | |
248 | ## ---------## | |
249 | ||
8e1687ae | 250 | |
ef51bfa7 AD |
251 | # b4_null_define |
252 | # -------------- | |
253 | # Portability issues: define a YY_NULL appropriate for the current | |
254 | # language (C, C++98, or C++11). | |
255 | m4_define([b4_null_define], | |
256 | [# ifndef YY_NULL | |
257 | # if defined __cplusplus && 201103L <= __cplusplus | |
258 | # define YY_NULL nullptr | |
259 | # else | |
260 | # define YY_NULL 0 | |
261 | # endif | |
262 | # endif[]dnl | |
263 | ]) | |
264 | ||
265 | ||
266 | # b4_null | |
267 | # ------- | |
268 | # Return a null pointer constant. | |
269 | m4_define([b4_null], [YY_NULL]) | |
8e1687ae | 270 | |
ba206cf4 AD |
271 | # b4_integral_parser_table_define(TABLE-NAME, CONTENT, COMMENT) |
272 | # ------------------------------------------------------------- | |
e672a4ba | 273 | # Define "yy<TABLE-NAME>" whose contents is CONTENT. |
ba206cf4 | 274 | m4_define([b4_integral_parser_table_define], |
15f66669 | 275 | [m4_ifvaln([$3], [b4_comment([$3], [ ])])dnl |
0991e29b AD |
276 | static const b4_int_type_for([$2]) yy$1[[]] = |
277 | { | |
278 | $2 | |
279 | };dnl | |
280 | ]) | |
cf98343c AD |
281 | |
282 | ||
fb8135fa AD |
283 | ## ------------------------- ## |
284 | ## Assigning token numbers. ## | |
285 | ## ------------------------- ## | |
286 | ||
e3990e3c AD |
287 | # b4_token_define(TOKEN-NUM) |
288 | # -------------------------- | |
fb8135fa AD |
289 | # Output the definition of this token as #define. |
290 | m4_define([b4_token_define], | |
e3990e3c | 291 | [b4_token_format([#define %s %s], [$1])]) |
fb8135fa | 292 | |
e3990e3c AD |
293 | # b4_token_defines |
294 | # ---------------- | |
295 | # Output the definition of the tokens. | |
cf147260 | 296 | m4_define([b4_token_defines], |
e3990e3c AD |
297 | [b4_any_token_visible_if([/* Tokens. */ |
298 | m4_join([ | |
299 | ], b4_symbol_map([b4_token_define])) | |
300 | ])]) | |
cf147260 AD |
301 | |
302 | ||
e3990e3c AD |
303 | # b4_token_enum(TOKEN-NUM) |
304 | # ------------------------ | |
fb8135fa AD |
305 | # Output the definition of this token as an enum. |
306 | m4_define([b4_token_enum], | |
e3990e3c | 307 | [b4_token_format([%s = %s], [$1])]) |
fb8135fa AD |
308 | |
309 | ||
e3990e3c AD |
310 | # b4_token_enums |
311 | # -------------- | |
cf147260 AD |
312 | # Output the definition of the tokens (if there are) as enums. |
313 | m4_define([b4_token_enums], | |
4d9bdbe3 | 314 | [b4_any_token_visible_if([[/* Token type. */ |
4b3847c3 AD |
315 | #ifndef ]b4_api_PREFIX[TOKENTYPE |
316 | # define ]b4_api_PREFIX[TOKENTYPE | |
e3990e3c AD |
317 | enum ]b4_api_prefix[tokentype |
318 | { | |
319 | ]m4_join([, | |
320 | ], | |
321 | b4_symbol_map([b4_token_enum]))[ | |
322 | }; | |
095b9f05 | 323 | #endif |
4b3847c3 | 324 | ]])]) |
cf147260 AD |
325 | |
326 | ||
e3990e3c AD |
327 | # b4_token_enums_defines |
328 | # ---------------------- | |
329 | # Output the definition of the tokens (if there are any) as enums and, | |
330 | # if POSIX Yacc is enabled, as #defines. | |
cf147260 | 331 | m4_define([b4_token_enums_defines], |
e3990e3c | 332 | [b4_token_enums[]b4_yacc_if([b4_token_defines])]) |
4a2a22f4 AD |
333 | |
334 | ||
1fa5d8bb AD |
335 | ## ----------------- ## |
336 | ## Semantic Values. ## | |
337 | ## ----------------- ## | |
338 | ||
339 | ||
340 | # b4_symbol_value(VAL, [TYPE]) | |
341 | # ---------------------------- | |
342 | # Given a semantic value VAL ($$, $1 etc.), extract its value of type | |
343 | # TYPE if TYPE is given, otherwise just return VAL. The result can be | |
344 | # used safetly, it is put in parens to avoid nasty precedence issues. | |
345 | # TYPE is *not* put in braces, provide some if needed. | |
346 | m4_define([b4_symbol_value], | |
347 | [($1[]m4_ifval([$2], [.$2]))]) | |
348 | ||
349 | ||
ae7453f2 | 350 | |
71b56f46 AD |
351 | ## ---------------------- ## |
352 | ## Defining C functions. ## | |
353 | ## ---------------------- ## | |
4a2a22f4 AD |
354 | |
355 | ||
15f66669 AD |
356 | # b4_function_define(NAME, RETURN-VALUE, [DECL1, NAME1], ...) |
357 | # ----------------------------------------------------------- | |
71b56f46 | 358 | # Declare the function NAME in C. |
15f66669 | 359 | m4_define([b4_function_define], |
0245f82d | 360 | [$2 |
15f66669 | 361 | $1 (b4_formals(m4_shift2($@)))[]dnl |
0245f82d AD |
362 | ]) |
363 | ||
364 | ||
15f66669 AD |
365 | # b4_formals([DECL1, NAME1], ...) |
366 | # ------------------------------- | |
71b56f46 | 367 | # The formal arguments of a C function definition. |
15f66669 | 368 | m4_define([b4_formals], |
6bbb2ed5 EB |
369 | [m4_if([$#], [0], [void], |
370 | [$#$1], [1], [void], | |
15f66669 | 371 | [m4_map_sep([b4_formal], [, ], [$@])])]) |
4a2a22f4 | 372 | |
15f66669 | 373 | m4_define([b4_formal], |
0245f82d | 374 | [$1]) |
4a2a22f4 AD |
375 | |
376 | ||
4a2a22f4 | 377 | |
71b56f46 AD |
378 | ## ----------------------- ## |
379 | ## Declaring C functions. ## | |
380 | ## ----------------------- ## | |
21964f43 AD |
381 | |
382 | ||
15f66669 AD |
383 | # b4_function_declare(NAME, RETURN-VALUE, [DECL1, NAME1], ...) |
384 | # ------------------------------------------------------------ | |
0245f82d | 385 | # Declare the function NAME. |
15f66669 AD |
386 | m4_define([b4_function_declare], |
387 | [$2 $1 (b4_formals(m4_shift2($@)));[]dnl | |
0245f82d AD |
388 | ]) |
389 | ||
390 | ||
391 | ||
392 | ||
393 | ## --------------------- ## | |
394 | ## Calling C functions. ## | |
395 | ## --------------------- ## | |
396 | ||
397 | ||
15f66669 | 398 | # b4_function_call(NAME, RETURN-VALUE, [DECL1, NAME1], ...) |
0245f82d AD |
399 | # ----------------------------------------------------------- |
400 | # Call the function NAME with arguments NAME1, NAME2 etc. | |
15f66669 AD |
401 | m4_define([b4_function_call], |
402 | [$1 (b4_args(m4_shift2($@)))[]dnl | |
0245f82d AD |
403 | ]) |
404 | ||
405 | ||
15f66669 AD |
406 | # b4_args([DECL1, NAME1], ...) |
407 | # ---------------------------- | |
0245f82d | 408 | # Output the arguments NAME1, NAME2... |
15f66669 AD |
409 | m4_define([b4_args], |
410 | [m4_map_sep([b4_arg], [, ], [$@])]) | |
0245f82d | 411 | |
15f66669 | 412 | m4_define([b4_arg], |
0245f82d | 413 | [$2]) |
437c2d80 AD |
414 | |
415 | ||
416 | ## ----------- ## | |
417 | ## Synclines. ## | |
418 | ## ----------- ## | |
419 | ||
90b9908d | 420 | # b4_sync_start(LINE, FILE) |
15f66669 | 421 | # ------------------------- |
90b9908d | 422 | m4_define([b4_sync_start], [[#]line $1 $2]) |
8ec0a172 | 423 | |
613d8952 AD |
424 | |
425 | ## -------------- ## | |
426 | ## User actions. ## | |
427 | ## -------------- ## | |
428 | ||
8e1687ae PE |
429 | # b4_case(LABEL, STATEMENTS) |
430 | # -------------------------- | |
431 | m4_define([b4_case], | |
432 | [ case $1: | |
433 | $2 | |
2141aded | 434 | b4_syncline([@oline@], [@ofile@]) |
8e1687ae PE |
435 | break;]) |
436 | ||
b0400cc6 | 437 | |
ca2a6d15 PH |
438 | # b4_predicate_case(LABEL, CONDITIONS) |
439 | # ------------------------------------ | |
440 | m4_define([b4_predicate_case], | |
441 | [ case $1: | |
442 | if (! ($2)) YYERROR; | |
443 | b4_syncline([@oline@], [@ofile@]) | |
444 | break;]) | |
445 | ||
446 | ||
e3f12e08 AD |
447 | # b4_yydestruct_define |
448 | # -------------------- | |
d00ff612 | 449 | # Define the "yydestruct" function. |
e3f12e08 | 450 | m4_define_default([b4_yydestruct_define], |
b0400cc6 AD |
451 | [[/*-----------------------------------------------. |
452 | | Release the memory associated to this symbol. | | |
453 | `-----------------------------------------------*/ | |
454 | ||
d00ff612 | 455 | ]b4_function_define([yydestruct], |
b0400cc6 | 456 | [static void], |
a0e68930 | 457 | [[const char *yymsg], [yymsg]], |
7bd6c77e | 458 | [[int yytype], [yytype]], |
4b367315 | 459 | [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl |
327afc7c | 460 | b4_locations_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl |
4b367315 | 461 | m4_ifset([b4_parse_param], [, b4_parse_param]))[ |
b0400cc6 | 462 | { |
1e5d6540 AD |
463 | ]b4_parse_param_use([yyvaluep], [yylocationp])dnl |
464 | [ if (!yymsg) | |
a0e68930 AD |
465 | yymsg = "Deleting"; |
466 | YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); | |
467 | ||
d3ae5af6 | 468 | YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN |
cc8962bd | 469 | ]b4_symbol_actions([destructor])[ |
d3ae5af6 | 470 | YY_IGNORE_MAYBE_UNINITIALIZED_END |
b0400cc6 AD |
471 | }]dnl |
472 | ]) | |
7bd6c77e AD |
473 | |
474 | ||
e3f12e08 AD |
475 | # b4_yy_symbol_print_define |
476 | # ------------------------- | |
d00ff612 | 477 | # Define the "yy_symbol_print" function. |
e3f12e08 | 478 | m4_define_default([b4_yy_symbol_print_define], |
a0af42fc | 479 | [[ |
d3ae5af6 AD |
480 | /*----------------------------------------. |
481 | | Print this symbol's value on YYOUTPUT. | | |
482 | `----------------------------------------*/ | |
7bd6c77e | 483 | |
d00ff612 | 484 | ]b4_function_define([yy_symbol_value_print], |
7bd6c77e | 485 | [static void], |
e9690142 JD |
486 | [[FILE *yyoutput], [yyoutput]], |
487 | [[int yytype], [yytype]], | |
488 | [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl | |
50cce58e | 489 | b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl |
4b367315 | 490 | m4_ifset([b4_parse_param], [, b4_parse_param]))[ |
7bd6c77e | 491 | { |
c5026327 AD |
492 | FILE *yyo = yyoutput; |
493 | ]b4_parse_param_use([yyo], [yylocationp])dnl | |
1e5d6540 | 494 | [ if (!yyvaluep) |
fc257703 AD |
495 | return;] |
496 | dnl glr.c does not feature yytoknum. | |
497 | m4_if(b4_skeleton, ["yacc.c"], | |
498 | [[# ifdef YYPRINT | |
619404e3 AD |
499 | if (yytype < YYNTOKENS) |
500 | YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); | |
501 | # endif | |
fc257703 | 502 | ]])dnl |
cc8962bd | 503 | b4_symbol_actions([printer])[ |
a0af42fc AD |
504 | } |
505 | ||
506 | ||
507 | /*--------------------------------. | |
508 | | Print this symbol on YYOUTPUT. | | |
509 | `--------------------------------*/ | |
510 | ||
d00ff612 | 511 | ]b4_function_define([yy_symbol_print], |
a0af42fc | 512 | [static void], |
e9690142 JD |
513 | [[FILE *yyoutput], [yyoutput]], |
514 | [[int yytype], [yytype]], | |
515 | [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl | |
50cce58e | 516 | b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl |
a0af42fc AD |
517 | m4_ifset([b4_parse_param], [, b4_parse_param]))[ |
518 | { | |
d9fa1b7c AD |
519 | YYFPRINTF (yyoutput, "%s %s (", |
520 | yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); | |
a0af42fc | 521 | |
327afc7c | 522 | ]b4_locations_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp); |
a0af42fc AD |
523 | YYFPRINTF (yyoutput, ": "); |
524 | ])dnl | |
525 | [ yy_symbol_value_print (yyoutput, yytype, yyvaluep]dnl | |
327afc7c | 526 | b4_locations_if([, yylocationp])[]b4_user_args[); |
2f4f028d | 527 | YYFPRINTF (yyoutput, ")"); |
4b367315 AD |
528 | }]dnl |
529 | ]) | |
c0828abf | 530 | |
6574576c AD |
531 | |
532 | ## ---------------- ## | |
533 | ## api.value.type. ## | |
534 | ## ---------------- ## | |
535 | ||
536 | ||
537 | # ---------------------- # | |
538 | # api.value.type=union. # | |
539 | # ---------------------- # | |
540 | ||
541 | # b4_symbol_type_register(SYMBOL-NUM) | |
542 | # ----------------------------------- | |
543 | # Symbol SYMBOL-NUM has a type (for variant) instead of a type-tag. | |
544 | # Extend the definition of %union's body with a field of that type, | |
545 | # and extend the symbol's "type" field to point to the field name, | |
546 | # instead of the type name. | |
547 | m4_define([b4_symbol_type_register], | |
548 | [m4_define([b4_symbol($1, type_tag)], | |
549 | [b4_symbol_if([$1], [has_id], | |
550 | [b4_symbol([$1], [id])], | |
551 | [yytype_[]b4_symbol([$1], [number])])])dnl | |
552 | m4_append([b4_user_union_members], | |
553 | m4_expand([ | |
554 | b4_symbol_tag_comment([$1])dnl | |
555 | b4_symbol([$1], [type]) b4_symbol([$1], [type_tag]);])) | |
556 | ]) | |
557 | ||
558 | ||
559 | # b4_type_define_tag(SYMBOL1-NUM, ...) | |
560 | # ------------------------------------ | |
561 | # For the batch of symbols SYMBOL1-NUM... (which all have the same | |
562 | # type), enhance the %union definition for each of them, and set | |
563 | # there "type" field to the field tag name, instead of the type name. | |
564 | m4_define([b4_type_define_tag], | |
565 | [b4_symbol_if([$1], [has_type], | |
566 | [m4_map([b4_symbol_type_register], [$@])]) | |
567 | ]) | |
568 | ||
569 | ||
570 | # b4_symbol_value_union(VAL, [TYPE]) | |
571 | # ---------------------------------- | |
572 | # Same of b4_symbol_value, but when api.value.type=union. | |
573 | m4_define([b4_symbol_value_union], | |
574 | [m4_ifval([$2], | |
575 | [(*($2*)(&$1))], | |
576 | [$1])]) | |
577 | ]) | |
578 | ||
579 | ||
580 | # b4_value_type_setup_union | |
581 | # ------------------------- | |
582 | # Setup support for api.value.type=union. Symbols are defined with a | |
583 | # type instead of a union member name: build the corresponding union, | |
584 | # and give the symbols their tag. | |
585 | m4_define([b4_value_type_setup_union], | |
586 | [m4_define([b4_union_members]) | |
587 | b4_type_foreach([b4_type_define_tag]) | |
588 | m4_copy_force([b4_symbol_value_union], [b4_symbol_value]) | |
589 | ]) | |
590 | ||
591 | ||
592 | # ---------------- # | |
593 | # api.value.type. # | |
594 | # ---------------- # | |
595 | ||
596 | ||
597 | # b4_value_type_setup_variant | |
598 | # --------------------------- | |
599 | # Setup support for api.value.type=variant. By default, fail, specialized | |
600 | # by other skeletons. | |
601 | m4_define([b4_value_type_setup_variant], | |
435575cb | 602 | [b4_complain_at(b4_percent_define_get_loc([[api.value.type]]), |
6574576c AD |
603 | [['%s' does not support '%s']], |
604 | [b4_skeleton], | |
605 | [%define api.value.type variant])]) | |
606 | ||
607 | ||
435575cb AD |
608 | # _b4_value_type_setup_keyword |
609 | # ---------------------------- | |
610 | # api.value.type is defined with a keyword/string syntax. Check if | |
611 | # that is properly defined, and prepare its use. | |
612 | m4_define([_b4_value_type_setup_keyword], | |
613 | [b4_percent_define_check_values([[[[api.value.type]], | |
614 | [[none]], | |
615 | [[union]], | |
616 | [[union-directive]], | |
617 | [[variant]], | |
618 | [[yystype]]]])dnl | |
619 | m4_case(b4_percent_define_get([[api.value.type]]), | |
620 | [union], [b4_value_type_setup_union], | |
621 | [variant], [b4_value_type_setup_variant])]) | |
622 | ||
623 | ||
6574576c AD |
624 | # b4_value_type_setup |
625 | # ------------------- | |
626 | # Check if api.value.type is properly defined, and possibly prepare | |
627 | # its use. | |
435575cb AD |
628 | b4_define_silent([b4_value_type_setup], |
629 | [# Define default value. | |
630 | b4_percent_define_ifdef([[api.value.type]], [], | |
631 | [# %union => api.value.type=union-directive | |
632 | m4_ifdef([b4_union_members], | |
633 | [m4_define([b4_percent_define_kind(api.value.type)], [keyword]) | |
634 | m4_define([b4_percent_define(api.value.type)], [union-directive])], | |
635 | [# no tag seen => api.value.type={int} | |
636 | m4_if(b4_tag_seen_flag, 0, | |
637 | [m4_define([b4_percent_define_kind(api.value.type)], [code]) | |
638 | m4_define([b4_percent_define(api.value.type)], [int])], | |
639 | [# otherwise api.value.type=yystype | |
640 | m4_define([b4_percent_define_kind(api.value.type)], [keyword]) | |
641 | m4_define([b4_percent_define(api.value.type)], [yystype])])])]) | |
642 | ||
643 | # Set up. | |
644 | m4_bmatch(b4_percent_define_get_kind([[api.value.type]]), | |
645 | [keyword\|string], [_b4_value_type_setup_keyword]) | |
646 | ]) | |
6574576c AD |
647 | |
648 | ||
c0828abf AD |
649 | ## -------------- ## |
650 | ## Declarations. ## | |
651 | ## -------------- ## | |
652 | ||
6574576c | 653 | |
4d9bdbe3 AD |
654 | # b4_value_type_define |
655 | # -------------------- | |
656 | m4_define([b4_value_type_define], | |
6574576c AD |
657 | [b4_value_type_setup[]dnl |
658 | /* Value type. */ | |
435575cb AD |
659 | m4_bmatch(b4_percent_define_get_kind([[api.value.type]]), |
660 | [code], | |
6574576c | 661 | [[#if ! defined ]b4_api_PREFIX[STYPE && ! defined ]b4_api_PREFIX[STYPE_IS_DECLARED |
435575cb | 662 | typedef ]b4_percent_define_get([[api.value.type]])[ ]b4_api_PREFIX[STYPE; |
6574576c | 663 | # define ]b4_api_PREFIX[STYPE_IS_TRIVIAL 1 |
4b3847c3 | 664 | # define ]b4_api_PREFIX[STYPE_IS_DECLARED 1 |
4d9bdbe3 | 665 | #endif |
6574576c | 666 | ]], |
435575cb AD |
667 | [m4_bmatch(b4_percent_define_get([[api.value.type]]), |
668 | [union\|union-directive], | |
6574576c | 669 | [[#if ! defined ]b4_api_PREFIX[STYPE && ! defined ]b4_api_PREFIX[STYPE_IS_DECLARED |
435575cb AD |
670 | typedef union ]b4_union_name[ ]b4_api_PREFIX[STYPE; |
671 | union ]b4_union_name[ | |
672 | { | |
673 | ]b4_user_union_members[ | |
674 | }; | |
6574576c AD |
675 | # define ]b4_api_PREFIX[STYPE_IS_TRIVIAL 1 |
676 | # define ]b4_api_PREFIX[STYPE_IS_DECLARED 1 | |
677 | #endif | |
435575cb | 678 | ]])])]) |
c0828abf | 679 | |
4d9bdbe3 AD |
680 | |
681 | # b4_location_type_define | |
682 | # ----------------------- | |
683 | m4_define([b4_location_type_define], | |
684 | [[/* Location type. */ | |
4b3847c3 | 685 | #if ! defined ]b4_api_PREFIX[LTYPE && ! defined ]b4_api_PREFIX[LTYPE_IS_DECLARED |
4d9bdbe3 AD |
686 | typedef struct ]b4_api_PREFIX[LTYPE ]b4_api_PREFIX[LTYPE; |
687 | struct ]b4_api_PREFIX[LTYPE | |
c0828abf AD |
688 | { |
689 | int first_line; | |
690 | int first_column; | |
691 | int last_line; | |
692 | int last_column; | |
4d9bdbe3 | 693 | }; |
4b3847c3 AD |
694 | # define ]b4_api_PREFIX[LTYPE_IS_DECLARED 1 |
695 | # define ]b4_api_PREFIX[LTYPE_IS_TRIVIAL 1 | |
4d9bdbe3 AD |
696 | #endif |
697 | ]]) | |
698 | ||
699 | ||
700 | # b4_declare_yylstype | |
701 | # ------------------- | |
702 | # Declarations that might either go into the header (if --defines) or | |
703 | # in the parser body. Declare YYSTYPE/YYLTYPE, and yylval/yylloc. | |
704 | m4_define([b4_declare_yylstype], | |
705 | [b4_value_type_define[]b4_locations_if([ | |
706 | b4_location_type_define]) | |
756257ee | 707 | |
4b3847c3 AD |
708 | b4_pure_if([], [[extern ]b4_api_PREFIX[STYPE ]b4_prefix[lval; |
709 | ]b4_locations_if([[extern ]b4_api_PREFIX[LTYPE ]b4_prefix[lloc;]])])[]dnl | |
c0828abf | 710 | ]) |
56ca3d8f | 711 | |
4d9bdbe3 | 712 | |
5f108727 | 713 | # b4_YYDEBUG_define |
dde95ca4 | 714 | # ----------------- |
5f108727 | 715 | m4_define([b4_YYDEBUG_define], |
4d9bdbe3 | 716 | [[/* Debug traces. */ |
5f108727 AD |
717 | ]m4_if(b4_api_prefix, [yy], |
718 | [[#ifndef YYDEBUG | |
e436fa67 | 719 | # define YYDEBUG ]b4_parse_trace_if([1], [0])[ |
5f108727 AD |
720 | #endif]], |
721 | [[#ifndef ]b4_api_PREFIX[DEBUG | |
722 | # if defined YYDEBUG | |
56ca3d8f | 723 | #if YYDEBUG |
5f108727 AD |
724 | # define ]b4_api_PREFIX[DEBUG 1 |
725 | # else | |
726 | # define ]b4_api_PREFIX[DEBUG 0 | |
727 | # endif | |
728 | # else /* ! defined YYDEBUG */ | |
ccdc1577 | 729 | # define ]b4_api_PREFIX[DEBUG ]b4_parse_trace_if([1], [0])[ |
851e3f84 | 730 | # endif /* ! defined YYDEBUG */ |
5f108727 AD |
731 | #endif /* ! defined ]b4_api_PREFIX[DEBUG */]])[]dnl |
732 | ]) | |
733 | ||
734 | # b4_declare_yydebug | |
735 | # ------------------ | |
736 | m4_define([b4_declare_yydebug], | |
737 | [b4_YYDEBUG_define[ | |
738 | #if ]b4_api_PREFIX[DEBUG | |
56ca3d8f AD |
739 | extern int ]b4_prefix[debug; |
740 | #endif][]dnl | |
741 | ]) | |
426903aa AD |
742 | |
743 | # b4_yylloc_default_define | |
744 | # ------------------------ | |
745 | # Define YYLLOC_DEFAULT. | |
746 | m4_define([b4_yylloc_default_define], | |
747 | [[/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. | |
748 | If N is 0, then set CURRENT to the empty location which ends | |
749 | the previous symbol: RHS[0] (always defined). */ | |
750 | ||
751 | #ifndef YYLLOC_DEFAULT | |
752 | # define YYLLOC_DEFAULT(Current, Rhs, N) \ | |
753 | do \ | |
56f8d560 | 754 | if (N) \ |
426903aa AD |
755 | { \ |
756 | (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ | |
757 | (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ | |
758 | (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ | |
759 | (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ | |
760 | } \ | |
761 | else \ | |
762 | { \ | |
763 | (Current).first_line = (Current).last_line = \ | |
764 | YYRHSLOC (Rhs, 0).last_line; \ | |
765 | (Current).first_column = (Current).last_column = \ | |
766 | YYRHSLOC (Rhs, 0).last_column; \ | |
767 | } \ | |
56f8d560 | 768 | while (0) |
426903aa AD |
769 | #endif |
770 | ]]) | |
a68b1f23 | 771 | |
3237f570 AD |
772 | # b4_yy_location_print_define |
773 | # --------------------------- | |
774 | # Define YY_LOCATION_PRINT. | |
775 | m4_define([b4_yy_location_print_define], | |
776 | [b4_locations_if([[ | |
777 | /* YY_LOCATION_PRINT -- Print the location on the stream. | |
778 | This macro was not mandated originally: define only if we know | |
779 | we won't break user code: when these are the locations we know. */ | |
780 | ||
781 | #ifndef YY_LOCATION_PRINT | |
782 | # if defined ]b4_api_PREFIX[LTYPE_IS_TRIVIAL && ]b4_api_PREFIX[LTYPE_IS_TRIVIAL | |
3804aa26 AD |
783 | |
784 | /* Print *YYLOCP on YYO. Private, do not rely on its existence. */ | |
785 | ||
786 | __attribute__((__unused__)) | |
064e42b0 | 787 | ]b4_function_define([yy_location_print_], |
3804aa26 AD |
788 | [static unsigned], |
789 | [[FILE *yyo], [yyo]], | |
790 | [[YYLTYPE const * const yylocp], [yylocp]])[ | |
791 | { | |
792 | unsigned res = 0; | |
793 | int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; | |
794 | if (0 <= yylocp->first_line) | |
795 | { | |
f0f95a50 | 796 | res += YYFPRINTF (yyo, "%d", yylocp->first_line); |
3804aa26 | 797 | if (0 <= yylocp->first_column) |
f0f95a50 | 798 | res += YYFPRINTF (yyo, ".%d", yylocp->first_column); |
3804aa26 AD |
799 | } |
800 | if (0 <= yylocp->last_line) | |
801 | { | |
802 | if (yylocp->first_line < yylocp->last_line) | |
803 | { | |
f0f95a50 | 804 | res += YYFPRINTF (yyo, "-%d", yylocp->last_line); |
3804aa26 | 805 | if (0 <= end_col) |
f0f95a50 | 806 | res += YYFPRINTF (yyo, ".%d", end_col); |
3804aa26 AD |
807 | } |
808 | else if (0 <= end_col && yylocp->first_column < end_col) | |
f0f95a50 | 809 | res += YYFPRINTF (yyo, "-%d", end_col); |
3804aa26 AD |
810 | } |
811 | return res; | |
812 | } | |
813 | ||
f0f95a50 | 814 | # define YY_LOCATION_PRINT(File, Loc) \ |
3804aa26 AD |
815 | yy_location_print_ (File, &(Loc)) |
816 | ||
3237f570 AD |
817 | # else |
818 | # define YY_LOCATION_PRINT(File, Loc) ((void) 0) | |
819 | # endif | |
820 | #endif]], | |
821 | [[/* This macro is provided for backward compatibility. */ | |
822 | #ifndef YY_LOCATION_PRINT | |
823 | # define YY_LOCATION_PRINT(File, Loc) ((void) 0) | |
824 | #endif]]) | |
825 | ]) | |
826 | ||
a1d1ab50 AD |
827 | # b4_yyloc_default |
828 | # ---------------- | |
829 | # Expand to a possible default value for yylloc. | |
830 | m4_define([b4_yyloc_default], | |
831 | [[ | |
a68b1f23 AD |
832 | # if defined ]b4_api_PREFIX[LTYPE_IS_TRIVIAL && ]b4_api_PREFIX[LTYPE_IS_TRIVIAL |
833 | = { ]m4_join([, ], | |
834 | m4_defn([b4_location_initial_line]), | |
835 | m4_defn([b4_location_initial_column]), | |
836 | m4_defn([b4_location_initial_line]), | |
837 | m4_defn([b4_location_initial_column]))[ } | |
838 | # endif | |
a1d1ab50 | 839 | ]]) |