]> git.saurik.com Git - bison.git/blame - data/c.m4
"Use" parse parameters.
[bison.git] / data / c.m4
CommitLineData
55b929ca 1m4_divert(-1) -*- Autoconf -*-
fb8135fa
AD
2
3# C M4 Macros for Bison.
9662b512 4# Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.
fb8135fa
AD
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
0fb669f9
PE
18# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19# 02110-1301 USA
fb8135fa
AD
20
21
2a8d363a
AD
22## ---------------- ##
23## Identification. ##
24## ---------------- ##
fb8135fa
AD
25
26# b4_copyright(TITLE, YEARS)
27# --------------------------
28m4_define([b4_copyright],
fa3f2a88 29[/* A Bison parser, made by GNU Bison b4_version. */
fb8135fa
AD
30
31/* $1,
c76e14da 32 Copyright (C) $2 Free Software Foundation, Inc.
fb8135fa
AD
33
34 This program is free software; you can redistribute it and/or modify
35 it under the terms of the GNU General Public License as published by
36 the Free Software Foundation; either version 2, or (at your option)
37 any later version.
38
39 This program is distributed in the hope that it will be useful,
40 but WITHOUT ANY WARRANTY; without even the implied warranty of
41 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
42 GNU General Public License for more details.
43
44 You should have received a copy of the GNU General Public License
45 along with this program; if not, write to the Free Software
0fb669f9
PE
46 Foundation, Inc., 51 Franklin Street, Fifth Floor,
47 Boston, MA 02110-1301, USA. */])
fb8135fa
AD
48
49
2a8d363a
AD
50# b4_identification
51# -----------------
52m4_define([b4_identification],
53[/* Identify Bison output. */
54[#]define YYBISON 1
55
55f64b82
PE
56/* Bison version. */
57[#]define YYBISON_VERSION "b4_version"
58
2a8d363a 59/* Skeleton name. */
fa3f2a88 60[#]define YYSKELETON_NAME b4_skeleton
2a8d363a
AD
61
62/* Pure parsers. */
63[#]define YYPURE b4_pure
64
65/* Using locations. */
66[#]define YYLSP_NEEDED b4_locations_flag
67])
68
69
70
7ec2d4cd
AD
71## ---------------- ##
72## Default values. ##
73## ---------------- ##
74
75m4_define_default([b4_epilogue], [])
76
77
78
2a8d363a
AD
79## ------------------------ ##
80## Pure/impure interfaces. ##
81## ------------------------ ##
82
83
84# b4_user_args
85# ------------
86m4_define([b4_user_args],
87[m4_ifset([b4_parse_param], [, b4_c_args(b4_parse_param)])])
88
89
90# b4_parse_param
91# --------------
92# If defined, b4_parse_param arrives double quoted, but below we prefer
93# it to be single quoted.
94m4_define_default([b4_parse_param])
95m4_define([b4_parse_param],
96b4_parse_param))
97
613d8952
AD
98# b4_parse_param_for(DECL, FORMAL, BODY)
99# ---------------------------------------
100# Iterate over the user parameters, binding the declaration to DECL,
101# the formal name to FORMAL, and evaluating the BODY.
102m4_define([b4_parse_param_for],
103[m4_foreach([$1_$2], m4_defn([b4_parse_param]),
104[m4_pushdef([$1], m4_fst($1_$2))dnl
105m4_pushdef([$2], m4_shift($1_$2))dnl
106$3[]dnl
107m4_popdef([$2])dnl
108m4_popdef([$1])dnl
109])])
110
111# b4_parse_param_use
112# ------------------
113# `YYUSE' all the parse-params.
114# WARNING: Ends with a dnl, there must be nothing behind it.
115m4_define([b4_parse_param_use],
116[b4_parse_param_for([Decl], [Formal], [ YYUSE (Formal);
117])dnl
118])
2a8d363a 119
fb8135fa
AD
120## ------------ ##
121## Data Types. ##
122## ------------ ##
123
fb8135fa 124
a762e609
AD
125# b4_ints_in(INT1, INT2, LOW, HIGH)
126# ---------------------------------
127# Return 1 iff both INT1 and INT2 are in [LOW, HIGH], 0 otherwise.
128m4_define([b4_ints_in],
129[m4_eval([$3 <= $1 && $1 <= $4 && $3 <= $2 && $2 <= $4])])
130
131
132# b4_int_type(MIN, MAX)
133# ---------------------
134# Return the smallest int type able to handle numbers ranging from
135# MIN to MAX (included).
136m4_define([b4_int_type],
137[m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char],
f1886bb2 138 b4_ints_in($@, [-128], [127]), [1], [signed char],
a762e609 139
779e7ceb
PE
140 b4_ints_in($@, [0], [65535]), [1], [unsigned short int],
141 b4_ints_in($@, [-32768], [32767]), [1], [short int],
a762e609
AD
142
143 m4_eval([0 <= $1]), [1], [unsigned int],
144
04098407 145 [int])])
a762e609 146
f1886bb2 147
a762e609
AD
148# b4_int_type_for(NAME)
149# ---------------------
150# Return the smallest int type able to handle numbers ranging from
151# `NAME_min' to `NAME_max' (included).
152m4_define([b4_int_type_for],
153[b4_int_type($1_min, $1_max)])
fb8135fa
AD
154
155
0245f82d
AD
156## ------------------ ##
157## Decoding options. ##
158## ------------------ ##
159
160
d4fb5e3c
AD
161# b4_error_verbose_if(IF-TRUE, IF-FALSE)
162# --------------------------------------
163# Expand IF-TRUE, if errors are verbose, IF-FALSE otherwise.
164m4_define([b4_error_verbose_if],
165[m4_if(b4_error_verbose, [1],
166 [$1],
167 [$2])])
168
169
0245f82d
AD
170# b4_location_if(IF-TRUE, IF-FALSE)
171# ---------------------------------
172# Expand IF-TRUE, if locations are used, IF-FALSE otherwise.
173m4_define([b4_location_if],
174[m4_if(b4_locations_flag, [1],
175 [$1],
176 [$2])])
177
178
179# b4_pure_if(IF-TRUE, IF-FALSE)
180# -----------------------------
181# Expand IF-TRUE, if %pure-parser, IF-FALSE otherwise.
182m4_define([b4_pure_if],
183[m4_if(b4_pure, [1],
184 [$1],
185 [$2])])
186
187
188
fb8135fa
AD
189## ------------------------- ##
190## Assigning token numbers. ##
191## ------------------------- ##
192
193# b4_token_define(TOKEN-NAME, TOKEN-NUMBER)
194# -----------------------------------------
195# Output the definition of this token as #define.
196m4_define([b4_token_define],
197[#define $1 $2
198])
199
200
cf147260
AD
201# b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
202# -------------------------------------------------------
203# Output the definition of the tokens (if there are) as #defines.
204m4_define([b4_token_defines],
205[m4_if([$@], [[]], [],
206[/* Tokens. */
207m4_map([b4_token_define], [$@])])
208])
209
210
fb8135fa
AD
211# b4_token_enum(TOKEN-NAME, TOKEN-NUMBER)
212# ---------------------------------------
213# Output the definition of this token as an enum.
214m4_define([b4_token_enum],
215[$1 = $2])
216
217
cf147260
AD
218# b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
219# -----------------------------------------------------
220# Output the definition of the tokens (if there are) as enums.
221m4_define([b4_token_enums],
fb8135fa
AD
222[m4_if([$@], [[]], [],
223[/* Tokens. */
6b8c3254
PE
224#ifndef YYTOKENTYPE
225# define YYTOKENTYPE
fb8135fa
AD
226 /* Put the tokens into the symbol table, so that GDB and other debuggers
227 know about them. */
228 enum yytokentype {
229m4_map_sep([ b4_token_enum], [,
230],
231 [$@])
232 };
095b9f05 233#endif
cf147260
AD
234])])
235
236
237# b4_token_enums_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
238# -------------------------------------------------------------
239# Output the definition of the tokens (if there are) as enums and #defines.
240m4_define([b4_token_enums_defines],
241[b4_token_enums($@)b4_token_defines($@)
fb8135fa 242])
4a2a22f4
AD
243
244
ae7453f2 245
0245f82d
AD
246## --------------------------------------------- ##
247## Defining C functions in both K&R and ANSI-C. ##
248## --------------------------------------------- ##
4a2a22f4
AD
249
250
0245f82d
AD
251# b4_c_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
252# ----------------------------------------------------------
4a2a22f4 253# Declare the function NAME.
0245f82d 254m4_define([b4_c_function_def],
ba0fe3c7 255[#if defined (__STDC__) || defined (__C99__FUNC__) || defined (__cplusplus)
0245f82d 256b4_c_ansi_function_def($@)
4a2a22f4 257#else
0245f82d
AD
258$2
259$1 (b4_c_knr_formal_names(m4_shiftn(2, $@)))
260b4_c_knr_formal_decls(m4_shiftn(2, $@))
4a2a22f4
AD
261#endif[]dnl
262])
263
264
0245f82d
AD
265# b4_c_ansi_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
266# ---------------------------------------------------------------
267# Declare the function NAME in ANSI.
268m4_define([b4_c_ansi_function_def],
269[$2
270$1 (b4_c_ansi_formals(m4_shiftn(2, $@)))[]dnl
271])
272
273
274# b4_c_ansi_formals([DECL1, NAME1], ...)
275# --------------------------------------
4a2a22f4 276# Output the arguments ANSI-C definition.
0245f82d
AD
277m4_define([b4_c_ansi_formals],
278[m4_case([$@],
279 [], [void],
280 [[]], [void],
281 [m4_map_sep([b4_c_ansi_formal], [, ], [$@])])])
4a2a22f4 282
0245f82d
AD
283m4_define([b4_c_ansi_formal],
284[$1])
4a2a22f4
AD
285
286
0245f82d
AD
287# b4_c_knr_formal_names([DECL1, NAME1], ...)
288# ------------------------------------------
4a2a22f4 289# Output the argument names.
0245f82d
AD
290m4_define([b4_c_knr_formal_names],
291[m4_map_sep([b4_c_knr_formal_name], [, ], [$@])])
4a2a22f4 292
0245f82d 293m4_define([b4_c_knr_formal_name],
4a2a22f4
AD
294[$2])
295
296
0245f82d
AD
297# b4_c_knr_formal_decls([DECL1, NAME1], ...)
298# ------------------------------------------
4a2a22f4 299# Output the K&R argument declarations.
0245f82d
AD
300m4_define([b4_c_knr_formal_decls],
301[m4_map_sep([b4_c_knr_formal_decl],
4a2a22f4
AD
302 [
303],
304 [$@])])
305
0245f82d
AD
306m4_define([b4_c_knr_formal_decl],
307[ $1;])
21964f43
AD
308
309
310
0245f82d
AD
311## ------------------------------------------------------------ ##
312## Declaring (prototyping) C functions in both K&R and ANSI-C. ##
313## ------------------------------------------------------------ ##
21964f43
AD
314
315
0245f82d
AD
316# b4_c_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
317# -----------------------------------------------------------
318# Declare the function NAME.
319m4_define([b4_c_function_decl],
320[#if defined (__STDC__) || defined (__cplusplus)
321b4_c_ansi_function_decl($@)
322#else
323$2 $1 ();
324#endif[]dnl
325])
21964f43
AD
326
327
0245f82d
AD
328# b4_c_ansi_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
329# ----------------------------------------------------------------
330# Declare the function NAME.
331m4_define([b4_c_ansi_function_decl],
332[$2 $1 (b4_c_ansi_formals(m4_shiftn(2, $@)));[]dnl
333])
334
335
336
337
338## --------------------- ##
339## Calling C functions. ##
340## --------------------- ##
341
342
343# b4_c_function_call(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
344# -----------------------------------------------------------
345# Call the function NAME with arguments NAME1, NAME2 etc.
346m4_define([b4_c_function_call],
347[$1 (b4_c_args(m4_shiftn(2, $@)))[]dnl
348])
349
350
351# b4_c_args([DECL1, NAME1], ...)
352# ------------------------------
353# Output the arguments NAME1, NAME2...
354m4_define([b4_c_args],
355[m4_map_sep([b4_c_arg], [, ], [$@])])
356
357m4_define([b4_c_arg],
358[$2])
437c2d80
AD
359
360
361## ----------- ##
362## Synclines. ##
363## ----------- ##
364
437c2d80
AD
365# b4_syncline(LINE, FILE)
366# -----------------------
367m4_define([b4_syncline],
368[m4_if(b4_synclines_flag, 1,
fa3f2a88 369 [[#]line $1 $2])])
b0400cc6
AD
370
371
613d8952
AD
372
373## -------------- ##
374## User actions. ##
375## -------------- ##
376
b0400cc6
AD
377# b4_symbol_actions(FILENAME, LINENO,
378# SYMBOL-TAG, SYMBOL-NUM,
379# SYMBOL-ACTION, SYMBOL-TYPENAME)
380# -------------------------------------------------
381m4_define([b4_symbol_actions],
60c82948
PE
382[m4_pushdef([b4_dollar_dollar],
383 [m4_ifval([$6], [(yyvaluep->$6)], [(*yyvaluep)])])dnl
7bd6c77e 384m4_pushdef([b4_at_dollar], [(*yylocationp)])dnl
b0400cc6
AD
385 case $4: /* $3 */
386b4_syncline([$2], [$1])
387 $5;
388b4_syncline([@oline@], [@ofile@])
389 break;
390m4_popdef([b4_at_dollar])dnl
391m4_popdef([b4_dollar_dollar])dnl
392])
393
394
14740648
PE
395# b4_yydestruct_generate(FUNCTION-DECLARATOR)
396# -------------------------------------------
b0400cc6 397# Generate the "yydestruct" function, which declaration is issued using
14740648 398# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
b0400cc6 399# or "b4_c_function_def" for K&R.
cf147260 400m4_define_default([b4_yydestruct_generate],
b0400cc6
AD
401[[/*-----------------------------------------------.
402| Release the memory associated to this symbol. |
403`-----------------------------------------------*/
404
405]$1([yydestruct],
406 [static void],
a0e68930 407 [[const char *yymsg], [yymsg]],
7bd6c77e 408 [[int yytype], [yytype]],
4b367315
AD
409 [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl
410b4_location_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl
411m4_ifset([b4_parse_param], [, b4_parse_param]))[
b0400cc6 412{
2a4647a3
PE
413 YYUSE (yyvaluep);
414]b4_location_if([ YYUSE (yylocationp);
613d8952
AD
415])dnl
416b4_parse_param_use[]dnl
417[
a0e68930
AD
418 if (!yymsg)
419 yymsg = "Deleting";
420 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
421
b0400cc6
AD
422 switch (yytype)
423 {
424]m4_map([b4_symbol_actions], m4_defn([b4_symbol_destructors]))[
425 default:
426 break;
427 }
428}]dnl
429])
7bd6c77e
AD
430
431
14740648
PE
432# b4_yysymprint_generate(FUNCTION-DECLARATOR)
433# -------------------------------------------
7bd6c77e 434# Generate the "yysymprint" function, which declaration is issued using
14740648 435# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
7bd6c77e 436# or "b4_c_function_def" for K&R.
cf147260 437m4_define_default([b4_yysymprint_generate],
14740648
PE
438[[/*--------------------------------.
439| Print this symbol on YYOUTPUT. |
440`--------------------------------*/
7bd6c77e
AD
441
442]$1([yysymprint],
443 [static void],
62b08cfc
AD
444 [[FILE *yyoutput], [yyoutput]],
445 [[int yytype], [yytype]],
446 [[const YYSTYPE * const yyvaluep], [yyvaluep]][]dnl
447b4_location_if([, [[const YYLTYPE * const yylocationp], [yylocationp]]])[]dnl
4b367315 448m4_ifset([b4_parse_param], [, b4_parse_param]))[
7bd6c77e 449{
2a4647a3 450 YYUSE (yyvaluep);
4b367315 451]b4_location_if([ YYUSE (yylocationp);
7bd6c77e 452])dnl
613d8952
AD
453b4_parse_param_use[]dnl
454[ if (yytype < YYNTOKENS)
619404e3 455 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
7bd6c77e 456 else
3fc16193 457 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
7bd6c77e 458
3fc16193 459]b4_location_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp);
2f4f028d 460 YYFPRINTF (yyoutput, ": ");
3fc16193
AD
461])dnl
462[
619404e3
AD
463# ifdef YYPRINT
464 if (yytype < YYNTOKENS)
465 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
466# endif
7bd6c77e
AD
467 switch (yytype)
468 {
3fc16193
AD
469]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
470[ default:
7bd6c77e
AD
471 break;
472 }
2f4f028d 473 YYFPRINTF (yyoutput, ")");
4b367315
AD
474}]dnl
475])