]> git.saurik.com Git - bison.git/blame - data/c.m4
Update to latest gnulib and gettext versions.
[bison.git] / data / c.m4
CommitLineData
55b929ca 1m4_divert(-1) -*- Autoconf -*-
fb8135fa
AD
2
3# C M4 Macros for Bison.
e2a21b6f 4# Copyright (C) 2002, 2004, 2005, 2006 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 30
6e93d810
PE
31/* $1
32
33m4_text_wrap([Copyright (C) $2 Free Software Foundation, Inc.], [ ])
fb8135fa
AD
34
35 This program is free software; you can redistribute it and/or modify
36 it under the terms of the GNU General Public License as published by
37 the Free Software Foundation; either version 2, or (at your option)
38 any later version.
39
40 This program is distributed in the hope that it will be useful,
41 but WITHOUT ANY WARRANTY; without even the implied warranty of
42 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
43 GNU General Public License for more details.
44
45 You should have received a copy of the GNU General Public License
46 along with this program; if not, write to the Free Software
0fb669f9 47 Foundation, Inc., 51 Franklin Street, Fifth Floor,
6e93d810
PE
48 Boston, MA 02110-1301, USA. */
49
50/* As a special exception, you may create a larger work that contains
51 part or all of the Bison parser skeleton and distribute that work
52 under terms of your choice, so long as that work isn't itself a
53 parser generator using the skeleton or a modified version thereof
54 as a parser skeleton. Alternatively, if you modify or redistribute
55 the parser skeleton itself, you may (at your option) remove this
56 special exception, which will cause the skeleton and the resulting
57 Bison output files to be licensed under the GNU General Public
58 License without this special exception.
59
60 This special exception was added by the Free Software Foundation in
61 version 2.2 of Bison. */])
fb8135fa
AD
62
63
2a8d363a
AD
64# b4_identification
65# -----------------
66m4_define([b4_identification],
67[/* Identify Bison output. */
68[#]define YYBISON 1
69
55f64b82
PE
70/* Bison version. */
71[#]define YYBISON_VERSION "b4_version"
72
2a8d363a 73/* Skeleton name. */
fa3f2a88 74[#]define YYSKELETON_NAME b4_skeleton
2a8d363a
AD
75
76/* Pure parsers. */
327afc7c 77[#]define YYPURE b4_pure_flag
2a8d363a
AD
78
79/* Using locations. */
80[#]define YYLSP_NEEDED b4_locations_flag
81])
82
83
84
7ec2d4cd
AD
85## ---------------- ##
86## Default values. ##
87## ---------------- ##
88
89m4_define_default([b4_epilogue], [])
90
1b818f33
AD
91# If the %union is not named, its name is YYSTYPE.
92m4_define_default([b4_union_name], [YYSTYPE])
7ec2d4cd 93
cd48d21d
AD
94# The initial column and line.
95m4_define_default([b4_location_initial_column], [1])
96m4_define_default([b4_location_initial_line], [1])
97
98
2a8d363a
AD
99## ------------------------ ##
100## Pure/impure interfaces. ##
101## ------------------------ ##
102
103
104# b4_user_args
105# ------------
106m4_define([b4_user_args],
107[m4_ifset([b4_parse_param], [, b4_c_args(b4_parse_param)])])
108
109
110# b4_parse_param
111# --------------
112# If defined, b4_parse_param arrives double quoted, but below we prefer
113# it to be single quoted.
114m4_define_default([b4_parse_param])
115m4_define([b4_parse_param],
116b4_parse_param))
117
8f7e3cf9 118
613d8952
AD
119# b4_parse_param_for(DECL, FORMAL, BODY)
120# ---------------------------------------
121# Iterate over the user parameters, binding the declaration to DECL,
122# the formal name to FORMAL, and evaluating the BODY.
123m4_define([b4_parse_param_for],
124[m4_foreach([$1_$2], m4_defn([b4_parse_param]),
125[m4_pushdef([$1], m4_fst($1_$2))dnl
126m4_pushdef([$2], m4_shift($1_$2))dnl
127$3[]dnl
128m4_popdef([$2])dnl
129m4_popdef([$1])dnl
130])])
131
132# b4_parse_param_use
133# ------------------
134# `YYUSE' all the parse-params.
613d8952
AD
135m4_define([b4_parse_param_use],
136[b4_parse_param_for([Decl], [Formal], [ YYUSE (Formal);
137])dnl
138])
2a8d363a 139
fb8135fa
AD
140## ------------ ##
141## Data Types. ##
142## ------------ ##
143
fb8135fa 144
a762e609
AD
145# b4_ints_in(INT1, INT2, LOW, HIGH)
146# ---------------------------------
147# Return 1 iff both INT1 and INT2 are in [LOW, HIGH], 0 otherwise.
148m4_define([b4_ints_in],
149[m4_eval([$3 <= $1 && $1 <= $4 && $3 <= $2 && $2 <= $4])])
150
151
152# b4_int_type(MIN, MAX)
153# ---------------------
154# Return the smallest int type able to handle numbers ranging from
155# MIN to MAX (included).
156m4_define([b4_int_type],
157[m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char],
f1886bb2 158 b4_ints_in($@, [-128], [127]), [1], [signed char],
a762e609 159
779e7ceb
PE
160 b4_ints_in($@, [0], [65535]), [1], [unsigned short int],
161 b4_ints_in($@, [-32768], [32767]), [1], [short int],
a762e609
AD
162
163 m4_eval([0 <= $1]), [1], [unsigned int],
164
02650b7f 165 [int])])
a762e609 166
f1886bb2 167
a762e609
AD
168# b4_int_type_for(NAME)
169# ---------------------
170# Return the smallest int type able to handle numbers ranging from
171# `NAME_min' to `NAME_max' (included).
172m4_define([b4_int_type_for],
173[b4_int_type($1_min, $1_max)])
fb8135fa
AD
174
175
0245f82d
AD
176## ------------------ ##
177## Decoding options. ##
178## ------------------ ##
179
327afc7c
AD
180# b4_flag_if(FLAG, IF-TRUE, IF-FALSE)
181# -----------------------------------
182# Run IF-TRUE if b4_FLAG_flag is 1, IF-FALSE if FLAG is 0, otherwise fail.
183m4_define([b4_flag_if],
184[m4_case(b4_$1_flag,
185 [0], [$3],
186 [1], [$2],
187 [m4_fatal([invalid $1 value: ]$1)])])
0245f82d
AD
188
189
327afc7c
AD
190# b4_define_flag_if(FLAG)
191# -----------------------
192# Define "b4_FLAG_if(IF-TRUE, IF-FALSE)" that depends on the
193# value of the Boolean FLAG.
194m4_define([b4_define_flag_if],
195[_b4_define_flag_if($[1], $[2], [$1])])
196
197# _b4_define_flag_if($1, $2, FLAG)
198# --------------------------------
199# This macro works around the impossibility to define macros
200# inside macros, because issuing `[$1]' is not possible in M4 :(.
201# This sucks hard, GNU M4 should really provide M5 like $$1.
202m4_define([_b4_define_flag_if],
203[m4_if([$1$2], $[1]$[2], [],
204 [m4_fatal([$0: Invalid arguments: $@])])dnl
1b818f33 205m4_define([b4_$3_if],
327afc7c
AD
206 [b4_flag_if([$3], [$1], [$2])])])
207
208
209# b4_FLAG_if(IF-TRUE, IF-FALSE)
0245f82d 210# -----------------------------
327afc7c
AD
211# Expand IF-TRUE, if FLAG is true, IF-FALSE otherwise.
212b4_define_flag_if([defines]) # Whether headers are requested.
a5d80ba5 213b4_define_flag_if([error_verbose]) # Whether error are verbose.
327afc7c
AD
214b4_define_flag_if([locations]) # Whether locations are tracked.
215b4_define_flag_if([pure]) # Whether the interface is pure.
b931235e 216b4_define_flag_if([yacc]) # Whether POSIX Yacc is emulated.
0245f82d
AD
217
218
219
fb8135fa
AD
220## ------------------------- ##
221## Assigning token numbers. ##
222## ------------------------- ##
223
224# b4_token_define(TOKEN-NAME, TOKEN-NUMBER)
225# -----------------------------------------
226# Output the definition of this token as #define.
227m4_define([b4_token_define],
228[#define $1 $2
229])
230
231
cf147260
AD
232# b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
233# -------------------------------------------------------
234# Output the definition of the tokens (if there are) as #defines.
235m4_define([b4_token_defines],
236[m4_if([$@], [[]], [],
237[/* Tokens. */
238m4_map([b4_token_define], [$@])])
239])
240
241
fb8135fa
AD
242# b4_token_enum(TOKEN-NAME, TOKEN-NUMBER)
243# ---------------------------------------
244# Output the definition of this token as an enum.
245m4_define([b4_token_enum],
246[$1 = $2])
247
248
cf147260
AD
249# b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
250# -----------------------------------------------------
251# Output the definition of the tokens (if there are) as enums.
252m4_define([b4_token_enums],
fb8135fa
AD
253[m4_if([$@], [[]], [],
254[/* Tokens. */
6b8c3254
PE
255#ifndef YYTOKENTYPE
256# define YYTOKENTYPE
fb8135fa
AD
257 /* Put the tokens into the symbol table, so that GDB and other debuggers
258 know about them. */
259 enum yytokentype {
260m4_map_sep([ b4_token_enum], [,
261],
02650b7f 262 [$@])
fb8135fa 263 };
095b9f05 264#endif
cf147260
AD
265])])
266
267
268# b4_token_enums_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
269# -------------------------------------------------------------
b931235e
JD
270# Output the definition of the tokens (if there are any) as enums and, if POSIX
271# Yacc is enabled, as #defines.
cf147260 272m4_define([b4_token_enums_defines],
b931235e 273[b4_token_enums($@)b4_yacc_if([b4_token_defines($@)], [])
fb8135fa 274])
4a2a22f4
AD
275
276
ae7453f2 277
0245f82d
AD
278## --------------------------------------------- ##
279## Defining C functions in both K&R and ANSI-C. ##
280## --------------------------------------------- ##
4a2a22f4
AD
281
282
1b9c21fb
PE
283# b4_modern_c
284# -----------
285# A predicate useful in #if to determine whether C is ancient or modern.
286#
287# If __STDC__ is defined, the compiler is modern. IBM xlc 7.0 when run
288# as 'cc' doesn't define __STDC__ (or __STDC_VERSION__) for pedantic
289# reasons, but it defines __C99__FUNC__ so check that as well.
290# Microsoft C normally doesn't define these macros, but it defines _MSC_VER.
7a0db73e 291# Consider a C++ compiler to be modern if it defines __cplusplus.
1b9c21fb
PE
292#
293m4_define([b4_c_modern],
02650b7f
PE
294 [[(defined __STDC__ || defined __C99__FUNC__ \
295 || defined __cplusplus || defined _MSC_VER)]])
1b9c21fb 296
0245f82d
AD
297# b4_c_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
298# ----------------------------------------------------------
4a2a22f4 299# Declare the function NAME.
0245f82d 300m4_define([b4_c_function_def],
1b9c21fb 301[#if b4_c_modern
0245f82d 302b4_c_ansi_function_def($@)
4a2a22f4 303#else
0245f82d
AD
304$2
305$1 (b4_c_knr_formal_names(m4_shiftn(2, $@)))
306b4_c_knr_formal_decls(m4_shiftn(2, $@))
4a2a22f4
AD
307#endif[]dnl
308])
309
310
0245f82d
AD
311# b4_c_ansi_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
312# ---------------------------------------------------------------
313# Declare the function NAME in ANSI.
314m4_define([b4_c_ansi_function_def],
315[$2
316$1 (b4_c_ansi_formals(m4_shiftn(2, $@)))[]dnl
317])
318
319
320# b4_c_ansi_formals([DECL1, NAME1], ...)
321# --------------------------------------
4a2a22f4 322# Output the arguments ANSI-C definition.
0245f82d
AD
323m4_define([b4_c_ansi_formals],
324[m4_case([$@],
02650b7f
PE
325 [], [void],
326 [[]], [void],
327 [m4_map_sep([b4_c_ansi_formal], [, ], [$@])])])
4a2a22f4 328
0245f82d
AD
329m4_define([b4_c_ansi_formal],
330[$1])
4a2a22f4
AD
331
332
0245f82d
AD
333# b4_c_knr_formal_names([DECL1, NAME1], ...)
334# ------------------------------------------
4a2a22f4 335# Output the argument names.
0245f82d
AD
336m4_define([b4_c_knr_formal_names],
337[m4_map_sep([b4_c_knr_formal_name], [, ], [$@])])
4a2a22f4 338
0245f82d 339m4_define([b4_c_knr_formal_name],
4a2a22f4
AD
340[$2])
341
342
0245f82d
AD
343# b4_c_knr_formal_decls([DECL1, NAME1], ...)
344# ------------------------------------------
4a2a22f4 345# Output the K&R argument declarations.
0245f82d
AD
346m4_define([b4_c_knr_formal_decls],
347[m4_map_sep([b4_c_knr_formal_decl],
02650b7f 348 [
4a2a22f4 349],
02650b7f 350 [$@])])
4a2a22f4 351
0245f82d
AD
352m4_define([b4_c_knr_formal_decl],
353[ $1;])
21964f43
AD
354
355
356
0245f82d
AD
357## ------------------------------------------------------------ ##
358## Declaring (prototyping) C functions in both K&R and ANSI-C. ##
359## ------------------------------------------------------------ ##
21964f43
AD
360
361
0245f82d
AD
362# b4_c_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
363# -----------------------------------------------------------
364# Declare the function NAME.
365m4_define([b4_c_function_decl],
02650b7f 366[#if defined __STDC__ || defined __cplusplus
0245f82d
AD
367b4_c_ansi_function_decl($@)
368#else
369$2 $1 ();
370#endif[]dnl
371])
21964f43
AD
372
373
0245f82d
AD
374# b4_c_ansi_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
375# ----------------------------------------------------------------
376# Declare the function NAME.
377m4_define([b4_c_ansi_function_decl],
378[$2 $1 (b4_c_ansi_formals(m4_shiftn(2, $@)));[]dnl
379])
380
381
382
383
384## --------------------- ##
385## Calling C functions. ##
386## --------------------- ##
387
388
389# b4_c_function_call(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
390# -----------------------------------------------------------
391# Call the function NAME with arguments NAME1, NAME2 etc.
392m4_define([b4_c_function_call],
393[$1 (b4_c_args(m4_shiftn(2, $@)))[]dnl
394])
395
396
397# b4_c_args([DECL1, NAME1], ...)
398# ------------------------------
399# Output the arguments NAME1, NAME2...
400m4_define([b4_c_args],
401[m4_map_sep([b4_c_arg], [, ], [$@])])
402
403m4_define([b4_c_arg],
404[$2])
437c2d80
AD
405
406
407## ----------- ##
408## Synclines. ##
409## ----------- ##
410
8ec0a172
AD
411# b4_basename(NAME)
412# -----------------
b8445a15 413# Similar to POSIX basename; the differences don't matter here.
8ec0a172
AD
414# Beware that NAME is not evaluated.
415m4_define([b4_basename],
b8445a15
PE
416[m4_bpatsubst([$1], [^.*/\([^/]+\)/*$], [\1])])
417
8ec0a172 418
437c2d80
AD
419# b4_syncline(LINE, FILE)
420# -----------------------
421m4_define([b4_syncline],
b8445a15 422[b4_flag_if([synclines],
8ec0a172
AD
423[/* Line __line__ of b4_basename(m4_quote(__file__)). */
424[#]line $1 $2])])
b0400cc6
AD
425
426
8ec0a172
AD
427# b4_user_code(USER-CODE)
428# -----------------------
429# Emit code from the user, ending it with synclines.
430m4_define([b4_user_code],
431[$1
432b4_syncline([@oline@], [@ofile@])])
433
434
435# b4_define_user_code(MACRO)
436# --------------------------
437# From b4_MACRO, build b4_user_MACRO that includes the synclines.
438m4_define([b4_define_user_code],
439[m4_define([b4_user_$1],
440[b4_user_code([b4_$1])])])
441
442
443# b4_user_actions
444# b4_user_initial_action
445# b4_user_post_prologue
446# b4_user_start_header
447# b4_user_stype
448# ----------------------
449# Macros that issue user code, ending with synclines.
450b4_define_user_code([actions])
451b4_define_user_code([initial_action])
452b4_define_user_code([post_prologue])
453b4_define_user_code([start_header])
454b4_define_user_code([stype])
455
613d8952
AD
456
457## -------------- ##
458## User actions. ##
459## -------------- ##
460
b0400cc6
AD
461# b4_symbol_actions(FILENAME, LINENO,
462# SYMBOL-TAG, SYMBOL-NUM,
463# SYMBOL-ACTION, SYMBOL-TYPENAME)
464# -------------------------------------------------
465m4_define([b4_symbol_actions],
60c82948
PE
466[m4_pushdef([b4_dollar_dollar],
467 [m4_ifval([$6], [(yyvaluep->$6)], [(*yyvaluep)])])dnl
7bd6c77e 468m4_pushdef([b4_at_dollar], [(*yylocationp)])dnl
b0400cc6
AD
469 case $4: /* $3 */
470b4_syncline([$2], [$1])
02650b7f 471 $5;
b0400cc6 472b4_syncline([@oline@], [@ofile@])
02650b7f 473 break;
b0400cc6
AD
474m4_popdef([b4_at_dollar])dnl
475m4_popdef([b4_dollar_dollar])dnl
476])
477
478
14740648
PE
479# b4_yydestruct_generate(FUNCTION-DECLARATOR)
480# -------------------------------------------
b0400cc6 481# Generate the "yydestruct" function, which declaration is issued using
14740648 482# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
b0400cc6 483# or "b4_c_function_def" for K&R.
cf147260 484m4_define_default([b4_yydestruct_generate],
b0400cc6
AD
485[[/*-----------------------------------------------.
486| Release the memory associated to this symbol. |
487`-----------------------------------------------*/
488
12ce2df6 489/*ARGSUSED*/
b0400cc6
AD
490]$1([yydestruct],
491 [static void],
a0e68930 492 [[const char *yymsg], [yymsg]],
7bd6c77e 493 [[int yytype], [yytype]],
4b367315 494 [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl
327afc7c 495b4_locations_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl
4b367315 496m4_ifset([b4_parse_param], [, b4_parse_param]))[
b0400cc6 497{
2a4647a3 498 YYUSE (yyvaluep);
327afc7c 499]b4_locations_if([ YYUSE (yylocationp);
613d8952
AD
500])dnl
501b4_parse_param_use[]dnl
502[
a0e68930
AD
503 if (!yymsg)
504 yymsg = "Deleting";
505 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
506
b0400cc6
AD
507 switch (yytype)
508 {
509]m4_map([b4_symbol_actions], m4_defn([b4_symbol_destructors]))[
510 default:
02650b7f 511 break;
b0400cc6
AD
512 }
513}]dnl
514])
7bd6c77e
AD
515
516
a0af42fc
AD
517# b4_yy_symbol_print_generate(FUNCTION-DECLARATOR)
518# ------------------------------------------------
519# Generate the "yy_symbol_print" function, which declaration is issued using
14740648 520# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
7bd6c77e 521# or "b4_c_function_def" for K&R.
a0af42fc
AD
522m4_define_default([b4_yy_symbol_print_generate],
523[[
524/*--------------------------------.
14740648
PE
525| Print this symbol on YYOUTPUT. |
526`--------------------------------*/
7bd6c77e 527
12ce2df6 528/*ARGSUSED*/
a0af42fc 529]$1([yy_symbol_value_print],
7bd6c77e 530 [static void],
02650b7f
PE
531 [[FILE *yyoutput], [yyoutput]],
532 [[int yytype], [yytype]],
50cce58e
PE
533 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
534b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
4b367315 535m4_ifset([b4_parse_param], [, b4_parse_param]))[
7bd6c77e 536{
05449a2c
JD
537 if (!yyvaluep)
538 return;
327afc7c 539]b4_locations_if([ YYUSE (yylocationp);
7bd6c77e 540])dnl
613d8952 541b4_parse_param_use[]dnl
a0af42fc 542[# ifdef YYPRINT
619404e3
AD
543 if (yytype < YYNTOKENS)
544 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
c66dfadd
PE
545# else
546 YYUSE (yyoutput);
619404e3 547# endif
7bd6c77e
AD
548 switch (yytype)
549 {
3fc16193
AD
550]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
551[ default:
02650b7f 552 break;
7bd6c77e 553 }
a0af42fc
AD
554}
555
556
557/*--------------------------------.
558| Print this symbol on YYOUTPUT. |
559`--------------------------------*/
560
561]$1([yy_symbol_print],
562 [static void],
02650b7f
PE
563 [[FILE *yyoutput], [yyoutput]],
564 [[int yytype], [yytype]],
50cce58e
PE
565 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
566b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
a0af42fc
AD
567m4_ifset([b4_parse_param], [, b4_parse_param]))[
568{
569 if (yytype < YYNTOKENS)
570 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
571 else
572 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
573
327afc7c 574]b4_locations_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp);
a0af42fc
AD
575 YYFPRINTF (yyoutput, ": ");
576])dnl
577[ yy_symbol_value_print (yyoutput, yytype, yyvaluep]dnl
327afc7c 578b4_locations_if([, yylocationp])[]b4_user_args[);
2f4f028d 579 YYFPRINTF (yyoutput, ")");
4b367315
AD
580}]dnl
581])