]> git.saurik.com Git - bison.git/blame - data/c.m4
doc: mfcalc: demonstrate %printer.
[bison.git] / data / c.m4
CommitLineData
08af01c2 1 -*- Autoconf -*-
fb8135fa
AD
2
3# C M4 Macros for Bison.
6e30ede8 4
c932d613 5# Copyright (C) 2002, 2004-2012 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
2a8d363a
AD
20## ---------------- ##
21## Identification. ##
22## ---------------- ##
fb8135fa 23
90b9908d
PB
24# b4_comment(TEXT)
25# ----------------
26m4_define([b4_comment], [/* m4_bpatsubst([$1], [
27], [
28 ]) */])
fb8135fa 29
2a8d363a
AD
30# b4_identification
31# -----------------
d9df47b6
JD
32# Depends on individual skeletons to define b4_pure_flag, b4_push_flag, or
33# b4_pull_flag if they use the values of the %define variables api.pure or
812775a0 34# api.push-pull.
2a8d363a 35m4_define([b4_identification],
d9df47b6
JD
36[[/* Identify Bison output. */
37#define YYBISON 1
2a8d363a 38
55f64b82 39/* Bison version. */
d9df47b6 40#define YYBISON_VERSION "]b4_version["
55f64b82 41
2a8d363a 42/* Skeleton name. */
d9df47b6 43#define YYSKELETON_NAME ]b4_skeleton[]m4_ifdef([b4_pure_flag], [[
2a8d363a
AD
44
45/* Pure parsers. */
d9df47b6
JD
46#define YYPURE ]b4_pure_flag])[]m4_ifdef([b4_push_flag], [[
47
48/* Push parsers. */
49#define YYPUSH ]b4_push_flag])[]m4_ifdef([b4_pull_flag], [[
50
51/* Pull parsers. */
52#define YYPULL ]b4_pull_flag])[
2a8d363a
AD
53
54/* Using locations. */
d9df47b6
JD
55#define YYLSP_NEEDED ]b4_locations_flag[
56]])
2a8d363a
AD
57
58
7ec2d4cd
AD
59## ---------------- ##
60## Default values. ##
61## ---------------- ##
62
1b818f33
AD
63# If the %union is not named, its name is YYSTYPE.
64m4_define_default([b4_union_name], [YYSTYPE])
7ec2d4cd 65
90b9908d
PB
66# If the %name-prefix is not given, it is yy.
67m4_define_default([b4_prefix], [yy])
cd48d21d 68
2a8d363a
AD
69## ------------------------ ##
70## Pure/impure interfaces. ##
71## ------------------------ ##
72
2a8d363a
AD
73# b4_user_args
74# ------------
75m4_define([b4_user_args],
76[m4_ifset([b4_parse_param], [, b4_c_args(b4_parse_param)])])
77
78
79# b4_parse_param
80# --------------
81# If defined, b4_parse_param arrives double quoted, but below we prefer
82# it to be single quoted.
2a8d363a 83m4_define([b4_parse_param],
7ecec4dd 84b4_parse_param)
2a8d363a 85
8f7e3cf9 86
613d8952
AD
87# b4_parse_param_for(DECL, FORMAL, BODY)
88# ---------------------------------------
89# Iterate over the user parameters, binding the declaration to DECL,
90# the formal name to FORMAL, and evaluating the BODY.
91m4_define([b4_parse_param_for],
92[m4_foreach([$1_$2], m4_defn([b4_parse_param]),
6bbb2ed5 93[m4_pushdef([$1], m4_unquote(m4_car($1_$2)))dnl
613d8952
AD
94m4_pushdef([$2], m4_shift($1_$2))dnl
95$3[]dnl
96m4_popdef([$2])dnl
97m4_popdef([$1])dnl
98])])
99
100# b4_parse_param_use
101# ------------------
102# `YYUSE' all the parse-params.
613d8952
AD
103m4_define([b4_parse_param_use],
104[b4_parse_param_for([Decl], [Formal], [ YYUSE (Formal);
105])dnl
106])
2a8d363a 107
8e1687ae 108
fb8135fa
AD
109## ------------ ##
110## Data Types. ##
111## ------------ ##
112
a762e609
AD
113# b4_int_type(MIN, MAX)
114# ---------------------
115# Return the smallest int type able to handle numbers ranging from
116# MIN to MAX (included).
117m4_define([b4_int_type],
118[m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char],
f1886bb2 119 b4_ints_in($@, [-128], [127]), [1], [signed char],
a762e609 120
779e7ceb
PE
121 b4_ints_in($@, [0], [65535]), [1], [unsigned short int],
122 b4_ints_in($@, [-32768], [32767]), [1], [short int],
a762e609
AD
123
124 m4_eval([0 <= $1]), [1], [unsigned int],
125
02650b7f 126 [int])])
a762e609 127
f1886bb2 128
a762e609
AD
129# b4_int_type_for(NAME)
130# ---------------------
131# Return the smallest int type able to handle numbers ranging from
132# `NAME_min' to `NAME_max' (included).
133m4_define([b4_int_type_for],
134[b4_int_type($1_min, $1_max)])
fb8135fa 135
cf98343c 136
77373efa
JD
137# b4_table_value_equals(TABLE, VALUE, LITERAL)
138# --------------------------------------------
139# Without inducing a comparison warning from the compiler, check if the
140# literal value LITERAL equals VALUE from table TABLE, which must have
d5eb0826
JD
141# TABLE_min and TABLE_max defined. YYID must be defined as an identity
142# function that suppresses warnings about constant conditions.
77373efa
JD
143m4_define([b4_table_value_equals],
144[m4_if(m4_eval($3 < m4_indir([b4_]$1[_min])
145 || m4_indir([b4_]$1[_max]) < $3), [1],
146 [[YYID (0)]],
147 [[((]$2[) == (]$3[))]])])
cf98343c 148
ef51bfa7 149
8e1687ae
PE
150## ---------##
151## Values. ##
152## ---------##
153
8e1687ae 154
ef51bfa7
AD
155# b4_null_define
156# --------------
157# Portability issues: define a YY_NULL appropriate for the current
158# language (C, C++98, or C++11).
159m4_define([b4_null_define],
160[# ifndef YY_NULL
161# if defined __cplusplus && 201103L <= __cplusplus
162# define YY_NULL nullptr
163# else
164# define YY_NULL 0
165# endif
166# endif[]dnl
167])
168
169
170# b4_null
171# -------
172# Return a null pointer constant.
173m4_define([b4_null], [YY_NULL])
8e1687ae 174
cf98343c
AD
175
176
fb8135fa
AD
177## ------------------------- ##
178## Assigning token numbers. ##
179## ------------------------- ##
180
181# b4_token_define(TOKEN-NAME, TOKEN-NUMBER)
182# -----------------------------------------
183# Output the definition of this token as #define.
184m4_define([b4_token_define],
185[#define $1 $2
186])
187
188
cf147260
AD
189# b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
190# -------------------------------------------------------
191# Output the definition of the tokens (if there are) as #defines.
192m4_define([b4_token_defines],
6bbb2ed5 193[m4_if([$#$1], [1], [],
cf147260
AD
194[/* Tokens. */
195m4_map([b4_token_define], [$@])])
196])
197
198
fb8135fa
AD
199# b4_token_enum(TOKEN-NAME, TOKEN-NUMBER)
200# ---------------------------------------
201# Output the definition of this token as an enum.
202m4_define([b4_token_enum],
203[$1 = $2])
204
205
cf147260
AD
206# b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
207# -----------------------------------------------------
208# Output the definition of the tokens (if there are) as enums.
209m4_define([b4_token_enums],
6bbb2ed5 210[m4_if([$#$1], [1], [],
fb8135fa 211[/* Tokens. */
6b8c3254
PE
212#ifndef YYTOKENTYPE
213# define YYTOKENTYPE
fb8135fa
AD
214 /* Put the tokens into the symbol table, so that GDB and other debuggers
215 know about them. */
216 enum yytokentype {
217m4_map_sep([ b4_token_enum], [,
218],
02650b7f 219 [$@])
fb8135fa 220 };
095b9f05 221#endif
cf147260
AD
222])])
223
224
225# b4_token_enums_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
226# -------------------------------------------------------------
b931235e
JD
227# Output the definition of the tokens (if there are any) as enums and, if POSIX
228# Yacc is enabled, as #defines.
cf147260 229m4_define([b4_token_enums_defines],
b931235e 230[b4_token_enums($@)b4_yacc_if([b4_token_defines($@)], [])
fb8135fa 231])
4a2a22f4
AD
232
233
ae7453f2 234
0245f82d
AD
235## --------------------------------------------- ##
236## Defining C functions in both K&R and ANSI-C. ##
237## --------------------------------------------- ##
4a2a22f4
AD
238
239
1b9c21fb
PE
240# b4_modern_c
241# -----------
242# A predicate useful in #if to determine whether C is ancient or modern.
243#
244# If __STDC__ is defined, the compiler is modern. IBM xlc 7.0 when run
245# as 'cc' doesn't define __STDC__ (or __STDC_VERSION__) for pedantic
246# reasons, but it defines __C99__FUNC__ so check that as well.
247# Microsoft C normally doesn't define these macros, but it defines _MSC_VER.
7a0db73e 248# Consider a C++ compiler to be modern if it defines __cplusplus.
1b9c21fb
PE
249#
250m4_define([b4_c_modern],
02650b7f
PE
251 [[(defined __STDC__ || defined __C99__FUNC__ \
252 || defined __cplusplus || defined _MSC_VER)]])
1b9c21fb 253
0245f82d
AD
254# b4_c_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
255# ----------------------------------------------------------
4a2a22f4 256# Declare the function NAME.
0245f82d 257m4_define([b4_c_function_def],
1b9c21fb 258[#if b4_c_modern
0245f82d 259b4_c_ansi_function_def($@)
4a2a22f4 260#else
0245f82d 261$2
a3764451
EB
262$1 (b4_c_knr_formal_names(m4_shift2($@)))
263b4_c_knr_formal_decls(m4_shift2($@))
4a2a22f4
AD
264#endif[]dnl
265])
266
267
0245f82d
AD
268# b4_c_ansi_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
269# ---------------------------------------------------------------
270# Declare the function NAME in ANSI.
271m4_define([b4_c_ansi_function_def],
272[$2
a3764451 273$1 (b4_c_ansi_formals(m4_shift2($@)))[]dnl
0245f82d
AD
274])
275
276
277# b4_c_ansi_formals([DECL1, NAME1], ...)
278# --------------------------------------
4a2a22f4 279# Output the arguments ANSI-C definition.
0245f82d 280m4_define([b4_c_ansi_formals],
6bbb2ed5
EB
281[m4_if([$#], [0], [void],
282 [$#$1], [1], [void],
02650b7f 283 [m4_map_sep([b4_c_ansi_formal], [, ], [$@])])])
4a2a22f4 284
0245f82d
AD
285m4_define([b4_c_ansi_formal],
286[$1])
4a2a22f4
AD
287
288
0245f82d
AD
289# b4_c_knr_formal_names([DECL1, NAME1], ...)
290# ------------------------------------------
4a2a22f4 291# Output the argument names.
0245f82d
AD
292m4_define([b4_c_knr_formal_names],
293[m4_map_sep([b4_c_knr_formal_name], [, ], [$@])])
4a2a22f4 294
0245f82d 295m4_define([b4_c_knr_formal_name],
4a2a22f4
AD
296[$2])
297
298
0245f82d
AD
299# b4_c_knr_formal_decls([DECL1, NAME1], ...)
300# ------------------------------------------
4a2a22f4 301# Output the K&R argument declarations.
0245f82d
AD
302m4_define([b4_c_knr_formal_decls],
303[m4_map_sep([b4_c_knr_formal_decl],
02650b7f 304 [
4a2a22f4 305],
02650b7f 306 [$@])])
4a2a22f4 307
0245f82d
AD
308m4_define([b4_c_knr_formal_decl],
309[ $1;])
21964f43
AD
310
311
312
0245f82d
AD
313## ------------------------------------------------------------ ##
314## Declaring (prototyping) C functions in both K&R and ANSI-C. ##
315## ------------------------------------------------------------ ##
21964f43
AD
316
317
0245f82d
AD
318# b4_c_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
319# -----------------------------------------------------------
320# Declare the function NAME.
321m4_define([b4_c_function_decl],
02650b7f 322[#if defined __STDC__ || defined __cplusplus
0245f82d
AD
323b4_c_ansi_function_decl($@)
324#else
325$2 $1 ();
326#endif[]dnl
327])
21964f43
AD
328
329
0245f82d
AD
330# b4_c_ansi_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
331# ----------------------------------------------------------------
332# Declare the function NAME.
333m4_define([b4_c_ansi_function_decl],
a3764451 334[$2 $1 (b4_c_ansi_formals(m4_shift2($@)));[]dnl
0245f82d
AD
335])
336
337
338
339
340## --------------------- ##
341## Calling C functions. ##
342## --------------------- ##
343
344
345# b4_c_function_call(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
346# -----------------------------------------------------------
347# Call the function NAME with arguments NAME1, NAME2 etc.
348m4_define([b4_c_function_call],
a3764451 349[$1 (b4_c_args(m4_shift2($@)))[]dnl
0245f82d
AD
350])
351
352
353# b4_c_args([DECL1, NAME1], ...)
354# ------------------------------
355# Output the arguments NAME1, NAME2...
356m4_define([b4_c_args],
357[m4_map_sep([b4_c_arg], [, ], [$@])])
358
359m4_define([b4_c_arg],
360[$2])
437c2d80
AD
361
362
363## ----------- ##
364## Synclines. ##
365## ----------- ##
366
90b9908d 367# b4_sync_start(LINE, FILE)
8ec0a172 368# -----------------------
90b9908d 369m4_define([b4_sync_start], [[#]line $1 $2])
8ec0a172 370
613d8952
AD
371
372## -------------- ##
373## User actions. ##
374## -------------- ##
375
8e1687ae
PE
376# b4_case(LABEL, STATEMENTS)
377# --------------------------
378m4_define([b4_case],
379[ case $1:
380$2
381 break;])
382
b0400cc6
AD
383# b4_symbol_actions(FILENAME, LINENO,
384# SYMBOL-TAG, SYMBOL-NUM,
385# SYMBOL-ACTION, SYMBOL-TYPENAME)
386# -------------------------------------------------
387m4_define([b4_symbol_actions],
60c82948
PE
388[m4_pushdef([b4_dollar_dollar],
389 [m4_ifval([$6], [(yyvaluep->$6)], [(*yyvaluep)])])dnl
7bd6c77e 390m4_pushdef([b4_at_dollar], [(*yylocationp)])dnl
b0400cc6
AD
391 case $4: /* $3 */
392b4_syncline([$2], [$1])
02650b7f 393 $5;
b0400cc6 394b4_syncline([@oline@], [@ofile@])
02650b7f 395 break;
b0400cc6
AD
396m4_popdef([b4_at_dollar])dnl
397m4_popdef([b4_dollar_dollar])dnl
398])
399
400
14740648
PE
401# b4_yydestruct_generate(FUNCTION-DECLARATOR)
402# -------------------------------------------
b0400cc6 403# Generate the "yydestruct" function, which declaration is issued using
14740648 404# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
b0400cc6 405# or "b4_c_function_def" for K&R.
cf147260 406m4_define_default([b4_yydestruct_generate],
b0400cc6
AD
407[[/*-----------------------------------------------.
408| Release the memory associated to this symbol. |
409`-----------------------------------------------*/
410
12ce2df6 411/*ARGSUSED*/
b0400cc6
AD
412]$1([yydestruct],
413 [static void],
a0e68930 414 [[const char *yymsg], [yymsg]],
7bd6c77e 415 [[int yytype], [yytype]],
4b367315 416 [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl
327afc7c 417b4_locations_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl
4b367315 418m4_ifset([b4_parse_param], [, b4_parse_param]))[
b0400cc6 419{
2a4647a3 420 YYUSE (yyvaluep);
327afc7c 421]b4_locations_if([ YYUSE (yylocationp);
613d8952
AD
422])dnl
423b4_parse_param_use[]dnl
424[
a0e68930
AD
425 if (!yymsg)
426 yymsg = "Deleting";
427 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
428
b0400cc6
AD
429 switch (yytype)
430 {
431]m4_map([b4_symbol_actions], m4_defn([b4_symbol_destructors]))[
432 default:
02650b7f 433 break;
b0400cc6
AD
434 }
435}]dnl
436])
7bd6c77e
AD
437
438
a0af42fc
AD
439# b4_yy_symbol_print_generate(FUNCTION-DECLARATOR)
440# ------------------------------------------------
441# Generate the "yy_symbol_print" function, which declaration is issued using
14740648 442# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
7bd6c77e 443# or "b4_c_function_def" for K&R.
a0af42fc
AD
444m4_define_default([b4_yy_symbol_print_generate],
445[[
446/*--------------------------------.
14740648
PE
447| Print this symbol on YYOUTPUT. |
448`--------------------------------*/
7bd6c77e 449
12ce2df6 450/*ARGSUSED*/
a0af42fc 451]$1([yy_symbol_value_print],
7bd6c77e 452 [static void],
02650b7f
PE
453 [[FILE *yyoutput], [yyoutput]],
454 [[int yytype], [yytype]],
50cce58e
PE
455 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
456b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
4b367315 457m4_ifset([b4_parse_param], [, b4_parse_param]))[
7bd6c77e 458{
05449a2c
JD
459 if (!yyvaluep)
460 return;
327afc7c 461]b4_locations_if([ YYUSE (yylocationp);
7bd6c77e 462])dnl
613d8952 463b4_parse_param_use[]dnl
a0af42fc 464[# ifdef YYPRINT
619404e3
AD
465 if (yytype < YYNTOKENS)
466 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
c66dfadd
PE
467# else
468 YYUSE (yyoutput);
619404e3 469# endif
7bd6c77e
AD
470 switch (yytype)
471 {
3fc16193
AD
472]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
473[ default:
02650b7f 474 break;
7bd6c77e 475 }
a0af42fc
AD
476}
477
478
479/*--------------------------------.
480| Print this symbol on YYOUTPUT. |
481`--------------------------------*/
482
483]$1([yy_symbol_print],
484 [static void],
02650b7f
PE
485 [[FILE *yyoutput], [yyoutput]],
486 [[int yytype], [yytype]],
50cce58e
PE
487 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
488b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
a0af42fc
AD
489m4_ifset([b4_parse_param], [, b4_parse_param]))[
490{
491 if (yytype < YYNTOKENS)
492 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
493 else
494 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
495
327afc7c 496]b4_locations_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp);
a0af42fc
AD
497 YYFPRINTF (yyoutput, ": ");
498])dnl
499[ yy_symbol_value_print (yyoutput, yytype, yyvaluep]dnl
327afc7c 500b4_locations_if([, yylocationp])[]b4_user_args[);
2f4f028d 501 YYFPRINTF (yyoutput, ")");
4b367315
AD
502}]dnl
503])