]> git.saurik.com Git - bison.git/blame - data/c.m4
build: fix gen-ChangeLog call.
[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
22172d47
AD
20
21# b4_tocpp(STRING)
22# ----------------
23# Convert STRING into a valid C macro name.
24m4_define([b4_tocpp],
25[m4_toupper(m4_bpatsubst(m4_quote($1), [[^a-zA-Z0-9]+], [_]))])
26
27
28# b4_cpp_guard(FILE)
29# ------------------
30# A valid C macro name to use as a CPP header guard for FILE.
31m4_define([b4_cpp_guard],
32[b4_tocpp(m4_defn([b4_prefix])/[$1])])
33
34
35# b4_cpp_guard_open(FILE)
36# b4_cpp_guard_close(FILE)
37# ------------------------
38# Open/close CPP inclusion guards for FILE.
39m4_define([b4_cpp_guard_open],
40[#ifndef b4_cpp_guard([$1])
41# define b4_cpp_guard([$1])])
42
43m4_define([b4_cpp_guard_close],
44[#endif b4_comment([!b4_cpp_guard([$1])])])
45
46
2a8d363a
AD
47## ---------------- ##
48## Identification. ##
49## ---------------- ##
fb8135fa 50
90b9908d
PB
51# b4_comment(TEXT)
52# ----------------
53m4_define([b4_comment], [/* m4_bpatsubst([$1], [
54], [
55 ]) */])
fb8135fa 56
2a8d363a
AD
57# b4_identification
58# -----------------
d9df47b6
JD
59# Depends on individual skeletons to define b4_pure_flag, b4_push_flag, or
60# b4_pull_flag if they use the values of the %define variables api.pure or
812775a0 61# api.push-pull.
2a8d363a 62m4_define([b4_identification],
d9df47b6
JD
63[[/* Identify Bison output. */
64#define YYBISON 1
2a8d363a 65
55f64b82 66/* Bison version. */
d9df47b6 67#define YYBISON_VERSION "]b4_version["
55f64b82 68
2a8d363a 69/* Skeleton name. */
d9df47b6 70#define YYSKELETON_NAME ]b4_skeleton[]m4_ifdef([b4_pure_flag], [[
2a8d363a
AD
71
72/* Pure parsers. */
d9df47b6
JD
73#define YYPURE ]b4_pure_flag])[]m4_ifdef([b4_push_flag], [[
74
75/* Push parsers. */
76#define YYPUSH ]b4_push_flag])[]m4_ifdef([b4_pull_flag], [[
77
78/* Pull parsers. */
79#define YYPULL ]b4_pull_flag])[
d9df47b6 80]])
2a8d363a
AD
81
82
7ec2d4cd
AD
83## ---------------- ##
84## Default values. ##
85## ---------------- ##
86
4b3847c3
AD
87# b4_api_prefix, b4_api_PREFIX
88# ----------------------------
89# Corresponds to %define api.prefix
90b4_percent_define_default([[api.prefix]], [[yy]])
91m4_define([b4_api_prefix],
92[b4_percent_define_get([[api.prefix]])])
93m4_define([b4_api_PREFIX],
94[m4_toupper(b4_api_prefix)])
95
96
97# b4_prefix
98# ---------
99# If the %name-prefix is not given, it is api.prefix.
100m4_define_default([b4_prefix], [b4_api_prefix])
101
1b818f33 102# If the %union is not named, its name is YYSTYPE.
4b3847c3 103m4_define_default([b4_union_name], [b4_api_PREFIX[]STYPE])
7ec2d4cd 104
cd48d21d 105
2a8d363a
AD
106## ------------------------ ##
107## Pure/impure interfaces. ##
108## ------------------------ ##
109
2a8d363a
AD
110# b4_user_args
111# ------------
112m4_define([b4_user_args],
113[m4_ifset([b4_parse_param], [, b4_c_args(b4_parse_param)])])
114
115
116# b4_parse_param
117# --------------
118# If defined, b4_parse_param arrives double quoted, but below we prefer
119# it to be single quoted.
2a8d363a 120m4_define([b4_parse_param],
7ecec4dd 121b4_parse_param)
2a8d363a 122
8f7e3cf9 123
613d8952
AD
124# b4_parse_param_for(DECL, FORMAL, BODY)
125# ---------------------------------------
126# Iterate over the user parameters, binding the declaration to DECL,
127# the formal name to FORMAL, and evaluating the BODY.
128m4_define([b4_parse_param_for],
129[m4_foreach([$1_$2], m4_defn([b4_parse_param]),
6bbb2ed5 130[m4_pushdef([$1], m4_unquote(m4_car($1_$2)))dnl
613d8952
AD
131m4_pushdef([$2], m4_shift($1_$2))dnl
132$3[]dnl
133m4_popdef([$2])dnl
134m4_popdef([$1])dnl
135])])
136
137# b4_parse_param_use
138# ------------------
139# `YYUSE' all the parse-params.
613d8952
AD
140m4_define([b4_parse_param_use],
141[b4_parse_param_for([Decl], [Formal], [ YYUSE (Formal);
142])dnl
143])
2a8d363a 144
8e1687ae 145
fb8135fa
AD
146## ------------ ##
147## Data Types. ##
148## ------------ ##
149
a762e609
AD
150# b4_int_type(MIN, MAX)
151# ---------------------
152# Return the smallest int type able to handle numbers ranging from
153# MIN to MAX (included).
154m4_define([b4_int_type],
155[m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char],
f1886bb2 156 b4_ints_in($@, [-128], [127]), [1], [signed char],
a762e609 157
779e7ceb
PE
158 b4_ints_in($@, [0], [65535]), [1], [unsigned short int],
159 b4_ints_in($@, [-32768], [32767]), [1], [short int],
a762e609
AD
160
161 m4_eval([0 <= $1]), [1], [unsigned int],
162
02650b7f 163 [int])])
a762e609 164
f1886bb2 165
a762e609
AD
166# b4_int_type_for(NAME)
167# ---------------------
168# Return the smallest int type able to handle numbers ranging from
169# `NAME_min' to `NAME_max' (included).
170m4_define([b4_int_type_for],
171[b4_int_type($1_min, $1_max)])
fb8135fa 172
cf98343c 173
77373efa
JD
174# b4_table_value_equals(TABLE, VALUE, LITERAL)
175# --------------------------------------------
176# Without inducing a comparison warning from the compiler, check if the
177# literal value LITERAL equals VALUE from table TABLE, which must have
d5eb0826
JD
178# TABLE_min and TABLE_max defined. YYID must be defined as an identity
179# function that suppresses warnings about constant conditions.
77373efa
JD
180m4_define([b4_table_value_equals],
181[m4_if(m4_eval($3 < m4_indir([b4_]$1[_min])
182 || m4_indir([b4_]$1[_max]) < $3), [1],
183 [[YYID (0)]],
184 [[((]$2[) == (]$3[))]])])
cf98343c 185
ef51bfa7 186
8e1687ae
PE
187## ---------##
188## Values. ##
189## ---------##
190
8e1687ae 191
ef51bfa7
AD
192# b4_null_define
193# --------------
194# Portability issues: define a YY_NULL appropriate for the current
195# language (C, C++98, or C++11).
196m4_define([b4_null_define],
197[# ifndef YY_NULL
198# if defined __cplusplus && 201103L <= __cplusplus
199# define YY_NULL nullptr
200# else
201# define YY_NULL 0
202# endif
203# endif[]dnl
204])
205
206
207# b4_null
208# -------
209# Return a null pointer constant.
210m4_define([b4_null], [YY_NULL])
8e1687ae 211
cf98343c
AD
212
213
fb8135fa
AD
214## ------------------------- ##
215## Assigning token numbers. ##
216## ------------------------- ##
217
218# b4_token_define(TOKEN-NAME, TOKEN-NUMBER)
219# -----------------------------------------
220# Output the definition of this token as #define.
221m4_define([b4_token_define],
222[#define $1 $2
223])
224
225
cf147260
AD
226# b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
227# -------------------------------------------------------
228# Output the definition of the tokens (if there are) as #defines.
229m4_define([b4_token_defines],
6bbb2ed5 230[m4_if([$#$1], [1], [],
cf147260
AD
231[/* Tokens. */
232m4_map([b4_token_define], [$@])])
233])
234
235
fb8135fa
AD
236# b4_token_enum(TOKEN-NAME, TOKEN-NUMBER)
237# ---------------------------------------
238# Output the definition of this token as an enum.
239m4_define([b4_token_enum],
240[$1 = $2])
241
242
cf147260
AD
243# b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
244# -----------------------------------------------------
245# Output the definition of the tokens (if there are) as enums.
246m4_define([b4_token_enums],
6bbb2ed5 247[m4_if([$#$1], [1], [],
4b3847c3
AD
248[[/* Tokens. */
249#ifndef ]b4_api_PREFIX[TOKENTYPE
250# define ]b4_api_PREFIX[TOKENTYPE
fb8135fa
AD
251 /* Put the tokens into the symbol table, so that GDB and other debuggers
252 know about them. */
4b3847c3
AD
253 enum ]b4_api_prefix[tokentype {
254]m4_map_sep([ b4_token_enum], [,
fb8135fa 255],
4b3847c3 256 [$@])[
fb8135fa 257 };
095b9f05 258#endif
4b3847c3 259]])])
cf147260
AD
260
261
262# b4_token_enums_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
263# -------------------------------------------------------------
b931235e
JD
264# Output the definition of the tokens (if there are any) as enums and, if POSIX
265# Yacc is enabled, as #defines.
cf147260 266m4_define([b4_token_enums_defines],
b931235e 267[b4_token_enums($@)b4_yacc_if([b4_token_defines($@)], [])
fb8135fa 268])
4a2a22f4
AD
269
270
ae7453f2 271
0245f82d
AD
272## --------------------------------------------- ##
273## Defining C functions in both K&R and ANSI-C. ##
274## --------------------------------------------- ##
4a2a22f4
AD
275
276
1b9c21fb
PE
277# b4_modern_c
278# -----------
279# A predicate useful in #if to determine whether C is ancient or modern.
280#
281# If __STDC__ is defined, the compiler is modern. IBM xlc 7.0 when run
282# as 'cc' doesn't define __STDC__ (or __STDC_VERSION__) for pedantic
283# reasons, but it defines __C99__FUNC__ so check that as well.
284# Microsoft C normally doesn't define these macros, but it defines _MSC_VER.
7a0db73e 285# Consider a C++ compiler to be modern if it defines __cplusplus.
1b9c21fb
PE
286#
287m4_define([b4_c_modern],
02650b7f
PE
288 [[(defined __STDC__ || defined __C99__FUNC__ \
289 || defined __cplusplus || defined _MSC_VER)]])
1b9c21fb 290
0245f82d
AD
291# b4_c_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
292# ----------------------------------------------------------
4a2a22f4 293# Declare the function NAME.
0245f82d 294m4_define([b4_c_function_def],
1b9c21fb 295[#if b4_c_modern
0245f82d 296b4_c_ansi_function_def($@)
4a2a22f4 297#else
0245f82d 298$2
a3764451
EB
299$1 (b4_c_knr_formal_names(m4_shift2($@)))
300b4_c_knr_formal_decls(m4_shift2($@))
4a2a22f4
AD
301#endif[]dnl
302])
303
304
0245f82d
AD
305# b4_c_ansi_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
306# ---------------------------------------------------------------
307# Declare the function NAME in ANSI.
308m4_define([b4_c_ansi_function_def],
309[$2
a3764451 310$1 (b4_c_ansi_formals(m4_shift2($@)))[]dnl
0245f82d
AD
311])
312
313
314# b4_c_ansi_formals([DECL1, NAME1], ...)
315# --------------------------------------
4a2a22f4 316# Output the arguments ANSI-C definition.
0245f82d 317m4_define([b4_c_ansi_formals],
6bbb2ed5
EB
318[m4_if([$#], [0], [void],
319 [$#$1], [1], [void],
02650b7f 320 [m4_map_sep([b4_c_ansi_formal], [, ], [$@])])])
4a2a22f4 321
0245f82d
AD
322m4_define([b4_c_ansi_formal],
323[$1])
4a2a22f4
AD
324
325
0245f82d
AD
326# b4_c_knr_formal_names([DECL1, NAME1], ...)
327# ------------------------------------------
4a2a22f4 328# Output the argument names.
0245f82d
AD
329m4_define([b4_c_knr_formal_names],
330[m4_map_sep([b4_c_knr_formal_name], [, ], [$@])])
4a2a22f4 331
0245f82d 332m4_define([b4_c_knr_formal_name],
4a2a22f4
AD
333[$2])
334
335
0245f82d
AD
336# b4_c_knr_formal_decls([DECL1, NAME1], ...)
337# ------------------------------------------
4a2a22f4 338# Output the K&R argument declarations.
0245f82d
AD
339m4_define([b4_c_knr_formal_decls],
340[m4_map_sep([b4_c_knr_formal_decl],
02650b7f 341 [
4a2a22f4 342],
02650b7f 343 [$@])])
4a2a22f4 344
0245f82d
AD
345m4_define([b4_c_knr_formal_decl],
346[ $1;])
21964f43
AD
347
348
349
0245f82d
AD
350## ------------------------------------------------------------ ##
351## Declaring (prototyping) C functions in both K&R and ANSI-C. ##
352## ------------------------------------------------------------ ##
21964f43
AD
353
354
0245f82d
AD
355# b4_c_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
356# -----------------------------------------------------------
357# Declare the function NAME.
358m4_define([b4_c_function_decl],
02650b7f 359[#if defined __STDC__ || defined __cplusplus
0245f82d
AD
360b4_c_ansi_function_decl($@)
361#else
362$2 $1 ();
363#endif[]dnl
364])
21964f43
AD
365
366
0245f82d
AD
367# b4_c_ansi_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
368# ----------------------------------------------------------------
369# Declare the function NAME.
370m4_define([b4_c_ansi_function_decl],
a3764451 371[$2 $1 (b4_c_ansi_formals(m4_shift2($@)));[]dnl
0245f82d
AD
372])
373
374
375
376
377## --------------------- ##
378## Calling C functions. ##
379## --------------------- ##
380
381
382# b4_c_function_call(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
383# -----------------------------------------------------------
384# Call the function NAME with arguments NAME1, NAME2 etc.
385m4_define([b4_c_function_call],
a3764451 386[$1 (b4_c_args(m4_shift2($@)))[]dnl
0245f82d
AD
387])
388
389
390# b4_c_args([DECL1, NAME1], ...)
391# ------------------------------
392# Output the arguments NAME1, NAME2...
393m4_define([b4_c_args],
394[m4_map_sep([b4_c_arg], [, ], [$@])])
395
396m4_define([b4_c_arg],
397[$2])
437c2d80
AD
398
399
400## ----------- ##
401## Synclines. ##
402## ----------- ##
403
90b9908d 404# b4_sync_start(LINE, FILE)
8ec0a172 405# -----------------------
90b9908d 406m4_define([b4_sync_start], [[#]line $1 $2])
8ec0a172 407
613d8952
AD
408
409## -------------- ##
410## User actions. ##
411## -------------- ##
412
8e1687ae
PE
413# b4_case(LABEL, STATEMENTS)
414# --------------------------
415m4_define([b4_case],
416[ case $1:
417$2
418 break;])
419
b0400cc6
AD
420# b4_symbol_actions(FILENAME, LINENO,
421# SYMBOL-TAG, SYMBOL-NUM,
422# SYMBOL-ACTION, SYMBOL-TYPENAME)
423# -------------------------------------------------
424m4_define([b4_symbol_actions],
60c82948
PE
425[m4_pushdef([b4_dollar_dollar],
426 [m4_ifval([$6], [(yyvaluep->$6)], [(*yyvaluep)])])dnl
7bd6c77e 427m4_pushdef([b4_at_dollar], [(*yylocationp)])dnl
b0400cc6
AD
428 case $4: /* $3 */
429b4_syncline([$2], [$1])
02650b7f 430 $5;
b0400cc6 431b4_syncline([@oline@], [@ofile@])
02650b7f 432 break;
b0400cc6
AD
433m4_popdef([b4_at_dollar])dnl
434m4_popdef([b4_dollar_dollar])dnl
435])
436
437
14740648
PE
438# b4_yydestruct_generate(FUNCTION-DECLARATOR)
439# -------------------------------------------
b0400cc6 440# Generate the "yydestruct" function, which declaration is issued using
14740648 441# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
b0400cc6 442# or "b4_c_function_def" for K&R.
cf147260 443m4_define_default([b4_yydestruct_generate],
b0400cc6
AD
444[[/*-----------------------------------------------.
445| Release the memory associated to this symbol. |
446`-----------------------------------------------*/
447
12ce2df6 448/*ARGSUSED*/
b0400cc6
AD
449]$1([yydestruct],
450 [static void],
a0e68930 451 [[const char *yymsg], [yymsg]],
7bd6c77e 452 [[int yytype], [yytype]],
4b367315 453 [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl
327afc7c 454b4_locations_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl
4b367315 455m4_ifset([b4_parse_param], [, b4_parse_param]))[
b0400cc6 456{
2a4647a3 457 YYUSE (yyvaluep);
327afc7c 458]b4_locations_if([ YYUSE (yylocationp);
613d8952
AD
459])dnl
460b4_parse_param_use[]dnl
461[
a0e68930
AD
462 if (!yymsg)
463 yymsg = "Deleting";
464 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
465
b0400cc6
AD
466 switch (yytype)
467 {
468]m4_map([b4_symbol_actions], m4_defn([b4_symbol_destructors]))[
469 default:
02650b7f 470 break;
b0400cc6
AD
471 }
472}]dnl
473])
7bd6c77e
AD
474
475
a0af42fc
AD
476# b4_yy_symbol_print_generate(FUNCTION-DECLARATOR)
477# ------------------------------------------------
478# Generate the "yy_symbol_print" function, which declaration is issued using
14740648 479# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
7bd6c77e 480# or "b4_c_function_def" for K&R.
a0af42fc
AD
481m4_define_default([b4_yy_symbol_print_generate],
482[[
483/*--------------------------------.
14740648
PE
484| Print this symbol on YYOUTPUT. |
485`--------------------------------*/
7bd6c77e 486
12ce2df6 487/*ARGSUSED*/
a0af42fc 488]$1([yy_symbol_value_print],
7bd6c77e 489 [static void],
02650b7f
PE
490 [[FILE *yyoutput], [yyoutput]],
491 [[int yytype], [yytype]],
50cce58e
PE
492 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
493b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
4b367315 494m4_ifset([b4_parse_param], [, b4_parse_param]))[
7bd6c77e 495{
68fff38a
AD
496 FILE *yyo = yyoutput;
497 YYUSE (yyo);
05449a2c
JD
498 if (!yyvaluep)
499 return;
327afc7c 500]b4_locations_if([ YYUSE (yylocationp);
7bd6c77e 501])dnl
613d8952 502b4_parse_param_use[]dnl
a0af42fc 503[# ifdef YYPRINT
619404e3
AD
504 if (yytype < YYNTOKENS)
505 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
c66dfadd
PE
506# else
507 YYUSE (yyoutput);
619404e3 508# endif
7bd6c77e
AD
509 switch (yytype)
510 {
3fc16193
AD
511]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
512[ default:
02650b7f 513 break;
7bd6c77e 514 }
a0af42fc
AD
515}
516
517
518/*--------------------------------.
519| Print this symbol on YYOUTPUT. |
520`--------------------------------*/
521
522]$1([yy_symbol_print],
523 [static void],
02650b7f
PE
524 [[FILE *yyoutput], [yyoutput]],
525 [[int yytype], [yytype]],
50cce58e
PE
526 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
527b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
a0af42fc
AD
528m4_ifset([b4_parse_param], [, b4_parse_param]))[
529{
530 if (yytype < YYNTOKENS)
531 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
532 else
533 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
534
327afc7c 535]b4_locations_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp);
a0af42fc
AD
536 YYFPRINTF (yyoutput, ": ");
537])dnl
538[ yy_symbol_value_print (yyoutput, yytype, yyvaluep]dnl
327afc7c 539b4_locations_if([, yylocationp])[]b4_user_args[);
2f4f028d 540 YYFPRINTF (yyoutput, ")");
4b367315
AD
541}]dnl
542])
c0828abf
AD
543
544## -------------- ##
545## Declarations. ##
546## -------------- ##
547
548# b4_declare_yylstype
4b3847c3 549# -------------------
756257ee
AD
550# Declarations that might either go into the header (if --defines) or
551# in the parser body. Declare YYSTYPE/YYLTYPE, and yylval/yylloc.
c0828abf 552m4_define([b4_declare_yylstype],
4b3847c3 553[[#if ! defined ]b4_api_PREFIX[STYPE && ! defined ]b4_api_PREFIX[STYPE_IS_DECLARED
c0828abf
AD
554]m4_ifdef([b4_stype],
555[[typedef union ]b4_union_name[
556{
557]b4_user_stype[
4b3847c3
AD
558} ]b4_api_PREFIX[STYPE;
559# define ]b4_api_PREFIX[STYPE_IS_TRIVIAL 1]],
c0828abf 560[m4_if(b4_tag_seen_flag, 0,
4b3847c3
AD
561[[typedef int ]b4_api_PREFIX[STYPE;
562# define ]b4_api_PREFIX[STYPE_IS_TRIVIAL 1]])])[
563# define ]b4_api_prefix[stype ]b4_api_PREFIX[STYPE /* obsolescent; will be withdrawn */
564# define ]b4_api_PREFIX[STYPE_IS_DECLARED 1
c0828abf
AD
565#endif]b4_locations_if([[
566
4b3847c3
AD
567#if ! defined ]b4_api_PREFIX[LTYPE && ! defined ]b4_api_PREFIX[LTYPE_IS_DECLARED
568typedef struct ]b4_api_PREFIX[LTYPE
c0828abf
AD
569{
570 int first_line;
571 int first_column;
572 int last_line;
573 int last_column;
4b3847c3
AD
574} ]b4_api_PREFIX[LTYPE;
575# define ]b4_api_prefix[ltype ]b4_api_PREFIX[LTYPE /* obsolescent; will be withdrawn */
576# define ]b4_api_PREFIX[LTYPE_IS_DECLARED 1
577# define ]b4_api_PREFIX[LTYPE_IS_TRIVIAL 1
c0828abf 578#endif]])
756257ee 579
4b3847c3
AD
580b4_pure_if([], [[extern ]b4_api_PREFIX[STYPE ]b4_prefix[lval;
581]b4_locations_if([[extern ]b4_api_PREFIX[LTYPE ]b4_prefix[lloc;]])])[]dnl
c0828abf 582])
56ca3d8f 583
5f108727 584# b4_YYDEBUG_define
56ca3d8f 585# ------------------
5f108727 586m4_define([b4_YYDEBUG_define],
56ca3d8f 587[[/* Enabling traces. */
5f108727
AD
588]m4_if(b4_api_prefix, [yy],
589[[#ifndef YYDEBUG
56ca3d8f 590# define YYDEBUG ]b4_debug_flag[
5f108727
AD
591#endif]],
592[[#ifndef ]b4_api_PREFIX[DEBUG
593# if defined YYDEBUG
594# if YYDEBUG
595# define ]b4_api_PREFIX[DEBUG 1
596# else
597# define ]b4_api_PREFIX[DEBUG 0
598# endif
599# else /* ! defined YYDEBUG */
600# define ]b4_api_PREFIX[DEBUG ]b4_debug_flag[
601# endif /* ! defined ]b4_api_PREFIX[DEBUG */
602#endif /* ! defined ]b4_api_PREFIX[DEBUG */]])[]dnl
603])
604
605# b4_declare_yydebug
606# ------------------
607m4_define([b4_declare_yydebug],
608[b4_YYDEBUG_define[
609#if ]b4_api_PREFIX[DEBUG
56ca3d8f
AD
610extern int ]b4_prefix[debug;
611#endif][]dnl
612])
426903aa
AD
613
614# b4_yylloc_default_define
615# ------------------------
616# Define YYLLOC_DEFAULT.
617m4_define([b4_yylloc_default_define],
618[[/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
619 If N is 0, then set CURRENT to the empty location which ends
620 the previous symbol: RHS[0] (always defined). */
621
622#ifndef YYLLOC_DEFAULT
623# define YYLLOC_DEFAULT(Current, Rhs, N) \
624 do \
625 if (YYID (N)) \
626 { \
627 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
628 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
629 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
630 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
631 } \
632 else \
633 { \
634 (Current).first_line = (Current).last_line = \
635 YYRHSLOC (Rhs, 0).last_line; \
636 (Current).first_column = (Current).last_column = \
637 YYRHSLOC (Rhs, 0).last_column; \
638 } \
639 while (YYID (0))
640#endif
641]])