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