]> git.saurik.com Git - bison.git/blame_incremental - data/c.m4
Merge remote-tracking branch 'origin/maint'
[bison.git] / data / c.m4
... / ...
CommitLineData
1 -*- Autoconf -*-
2
3# C M4 Macros for Bison.
4
5# Copyright (C) 2002, 2004-2012 Free Software Foundation, Inc.
6
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
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.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
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
47## ---------------- ##
48## Identification. ##
49## ---------------- ##
50
51# b4_comment_(TEXT, OPEN, CONTINUE, END)
52# -------------------------------------
53# Put TEXT in comment. Avoid trailing spaces: don't indent empty lines.
54# Avoid adding indentation to the first line, as the indentation comes
55# from OPEN. That's why we don't patsubst([$1], [^\(.\)], [ \1]).
56#
57# Prefix all the output lines with PREFIX.
58m4_define([b4_comment_], [$2[]m4_bpatsubst([$1], [
59\(.\)], [
60$3\1])$4])
61
62
63# b4_c_comment(TEXT, [PREFIX])
64# ----------------------------
65# Put TEXT in comment. Avoid trailing spaces: don't indent empty lines.
66# Avoid adding indentation to the first line, as the indentation comes
67# from "/*". That's why we don't patsubst([$1], [^\(.\)], [ \1]).
68#
69# Prefix all the output lines with PREFIX.
70m4_define([b4_c_comment],
71[b4_comment_([$1], [$2/* ], [$2 ], [$2 */])])
72
73
74# b4_comment(TEXT, [PREFIX])
75# --------------------------
76# By default, C comments.
77m4_define([b4_comment], [b4_c_comment($@)])
78
79
80# b4_identification
81# -----------------
82# Depends on individual skeletons to define b4_pure_flag, b4_push_flag, or
83# b4_pull_flag if they use the values of the %define variables api.pure or
84# api.push-pull.
85m4_define([b4_identification],
86[[/* Identify Bison output. */
87#define YYBISON 1
88
89/* Bison version. */
90#define YYBISON_VERSION "]b4_version["
91
92/* Skeleton name. */
93#define YYSKELETON_NAME ]b4_skeleton[]m4_ifdef([b4_pure_flag], [[
94
95/* Pure parsers. */
96#define YYPURE ]b4_pure_flag])[]m4_ifdef([b4_push_flag], [[
97
98/* Push parsers. */
99#define YYPUSH ]b4_push_flag])[]m4_ifdef([b4_pull_flag], [[
100
101/* Pull parsers. */
102#define YYPULL ]b4_pull_flag])[
103]])
104
105
106## ---------------- ##
107## Default values. ##
108## ---------------- ##
109
110# b4_api_prefix, b4_api_PREFIX
111# ----------------------------
112# Corresponds to %define api.prefix
113b4_percent_define_default([[api.prefix]], [[yy]])
114m4_define([b4_api_prefix],
115[b4_percent_define_get([[api.prefix]])])
116m4_define([b4_api_PREFIX],
117[m4_toupper(b4_api_prefix)])
118
119
120# b4_prefix
121# ---------
122# If the %name-prefix is not given, it is api.prefix.
123m4_define_default([b4_prefix], [b4_api_prefix])
124
125# If the %union is not named, its name is YYSTYPE.
126m4_define_default([b4_union_name], [b4_api_PREFIX[]STYPE])
127
128
129## ------------------------ ##
130## Pure/impure interfaces. ##
131## ------------------------ ##
132
133# b4_user_args
134# ------------
135m4_define([b4_user_args],
136[m4_ifset([b4_parse_param], [, b4_c_args(b4_parse_param)])])
137
138
139# b4_parse_param
140# --------------
141# If defined, b4_parse_param arrives double quoted, but below we prefer
142# it to be single quoted.
143m4_define([b4_parse_param],
144b4_parse_param)
145
146
147# b4_parse_param_for(DECL, FORMAL, BODY)
148# ---------------------------------------
149# Iterate over the user parameters, binding the declaration to DECL,
150# the formal name to FORMAL, and evaluating the BODY.
151m4_define([b4_parse_param_for],
152[m4_foreach([$1_$2], m4_defn([b4_parse_param]),
153[m4_pushdef([$1], m4_unquote(m4_car($1_$2)))dnl
154m4_pushdef([$2], m4_shift($1_$2))dnl
155$3[]dnl
156m4_popdef([$2])dnl
157m4_popdef([$1])dnl
158])])
159
160# b4_parse_param_use([VAL], [LOC])
161# --------------------------------
162# `YYUSE' VAL, LOC if locations are enabled, and all the parse-params.
163m4_define([b4_parse_param_use],
164[m4_ifvaln([$1], [ YYUSE([$1]);])dnl
165b4_locations_if([m4_ifvaln([$2], [ YYUSE ([$2]);])])dnl
166b4_parse_param_for([Decl], [Formal], [ YYUSE (Formal);
167])dnl
168])
169
170
171## ------------ ##
172## Data Types. ##
173## ------------ ##
174
175# b4_int_type(MIN, MAX)
176# ---------------------
177# Return the smallest int type able to handle numbers ranging from
178# MIN to MAX (included).
179m4_define([b4_int_type],
180[m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char],
181 b4_ints_in($@, [-128], [127]), [1], [signed char],
182
183 b4_ints_in($@, [0], [65535]), [1], [unsigned short int],
184 b4_ints_in($@, [-32768], [32767]), [1], [short int],
185
186 m4_eval([0 <= $1]), [1], [unsigned int],
187
188 [int])])
189
190
191# b4_int_type_for(NAME)
192# ---------------------
193# Return the smallest int type able to handle numbers ranging from
194# `NAME_min' to `NAME_max' (included).
195m4_define([b4_int_type_for],
196[b4_int_type($1_min, $1_max)])
197
198
199# b4_table_value_equals(TABLE, VALUE, LITERAL)
200# --------------------------------------------
201# Without inducing a comparison warning from the compiler, check if the
202# literal value LITERAL equals VALUE from table TABLE, which must have
203# TABLE_min and TABLE_max defined. YYID must be defined as an identity
204# function that suppresses warnings about constant conditions.
205m4_define([b4_table_value_equals],
206[m4_if(m4_eval($3 < m4_indir([b4_]$1[_min])
207 || m4_indir([b4_]$1[_max]) < $3), [1],
208 [[YYID (0)]],
209 [[((]$2[) == (]$3[))]])])
210
211
212## ---------##
213## Values. ##
214## ---------##
215
216
217# b4_null_define
218# --------------
219# Portability issues: define a YY_NULL appropriate for the current
220# language (C, C++98, or C++11).
221m4_define([b4_null_define],
222[# ifndef YY_NULL
223# if defined __cplusplus && 201103L <= __cplusplus
224# define YY_NULL nullptr
225# else
226# define YY_NULL 0
227# endif
228# endif[]dnl
229])
230
231
232# b4_null
233# -------
234# Return a null pointer constant.
235m4_define([b4_null], [YY_NULL])
236
237# b4_integral_parser_table_define(TABLE-NAME, CONTENT, COMMENT)
238# -------------------------------------------------------------
239# Define "yy<TABLE-NAME>" which contents is CONTENT.
240m4_define([b4_integral_parser_table_define],
241[m4_ifvaln([$3], [b4_c_comment([$3], [ ])])dnl
242static const b4_int_type_for([$2]) yy$1[[]] =
243{
244 $2
245};dnl
246])
247
248
249## ------------------------- ##
250## Assigning token numbers. ##
251## ------------------------- ##
252
253# b4_token_define(TOKEN-NAME, TOKEN-NUMBER)
254# -----------------------------------------
255# Output the definition of this token as #define.
256m4_define([b4_token_define],
257[#define b4_percent_define_get([api.tokens.prefix])$1 $2
258])
259
260
261# b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
262# -------------------------------------------------------
263# Output the definition of the tokens (if there are) as #defines.
264m4_define([b4_token_defines],
265[m4_if([$#$1], [1], [],
266[/* Tokens. */
267m4_map([b4_token_define], [$@])])
268])
269
270
271# b4_token_enum(TOKEN-NAME, TOKEN-NUMBER)
272# ---------------------------------------
273# Output the definition of this token as an enum.
274m4_define([b4_token_enum],
275[b4_percent_define_get([api.tokens.prefix])$1 = $2])
276
277
278# b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
279# -----------------------------------------------------
280# Output the definition of the tokens (if there are) as enums.
281m4_define([b4_token_enums],
282[m4_if([$#$1], [1], [],
283[[/* Tokens. */
284#ifndef ]b4_api_PREFIX[TOKENTYPE
285# define ]b4_api_PREFIX[TOKENTYPE
286 /* Put the tokens into the symbol table, so that GDB and other debuggers
287 know about them. */
288 enum ]b4_api_prefix[tokentype {
289]m4_map_sep([ b4_token_enum], [,
290],
291 [$@])
292 };[
293#endif
294]])])
295
296
297# b4_token_enums_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER)
298# -------------------------------------------------------------
299# Output the definition of the tokens (if there are any) as enums and, if POSIX
300# Yacc is enabled, as #defines.
301m4_define([b4_token_enums_defines],
302[b4_token_enums($@)b4_yacc_if([b4_token_defines($@)], [])
303])
304
305
306## ----------------- ##
307## Semantic Values. ##
308## ----------------- ##
309
310
311# b4_symbol_value(VAL, [TYPE])
312# ----------------------------
313# Given a semantic value VAL ($$, $1 etc.), extract its value of type
314# TYPE if TYPE is given, otherwise just return VAL. The result can be
315# used safetly, it is put in parens to avoid nasty precedence issues.
316# TYPE is *not* put in braces, provide some if needed.
317m4_define([b4_symbol_value],
318[($1[]m4_ifval([$2], [.$2]))])
319
320
321
322## --------------------------------------------- ##
323## Defining C functions in both K&R and ANSI-C. ##
324## --------------------------------------------- ##
325
326
327# b4_modern_c
328# -----------
329# A predicate useful in #if to determine whether C is ancient or modern.
330#
331# If __STDC__ is defined, the compiler is modern. IBM xlc 7.0 when run
332# as 'cc' doesn't define __STDC__ (or __STDC_VERSION__) for pedantic
333# reasons, but it defines __C99__FUNC__ so check that as well.
334# Microsoft C normally doesn't define these macros, but it defines _MSC_VER.
335# Consider a C++ compiler to be modern if it defines __cplusplus.
336#
337m4_define([b4_c_modern],
338 [[(defined __STDC__ || defined __C99__FUNC__ \
339 || defined __cplusplus || defined _MSC_VER)]])
340
341# b4_c_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
342# ----------------------------------------------------------
343# Declare the function NAME.
344m4_define([b4_c_function_def],
345[#if b4_c_modern
346b4_c_ansi_function_def($@)
347#else
348$2
349$1 (b4_c_knr_formal_names(m4_shift2($@)))
350b4_c_knr_formal_decls(m4_shift2($@))
351#endif[]dnl
352])
353
354
355# b4_c_ansi_function_def(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
356# ---------------------------------------------------------------
357# Declare the function NAME in ANSI.
358m4_define([b4_c_ansi_function_def],
359[$2
360$1 (b4_c_ansi_formals(m4_shift2($@)))[]dnl
361])
362
363
364# b4_c_ansi_formals([DECL1, NAME1], ...)
365# --------------------------------------
366# Output the arguments ANSI-C definition.
367m4_define([b4_c_ansi_formals],
368[m4_if([$#], [0], [void],
369 [$#$1], [1], [void],
370 [m4_map_sep([b4_c_ansi_formal], [, ], [$@])])])
371
372m4_define([b4_c_ansi_formal],
373[$1])
374
375
376# b4_c_knr_formal_names([DECL1, NAME1], ...)
377# ------------------------------------------
378# Output the argument names.
379m4_define([b4_c_knr_formal_names],
380[m4_map_sep([b4_c_knr_formal_name], [, ], [$@])])
381
382m4_define([b4_c_knr_formal_name],
383[$2])
384
385
386# b4_c_knr_formal_decls([DECL1, NAME1], ...)
387# ------------------------------------------
388# Output the K&R argument declarations.
389m4_define([b4_c_knr_formal_decls],
390[m4_map_sep([b4_c_knr_formal_decl],
391 [
392],
393 [$@])])
394
395m4_define([b4_c_knr_formal_decl],
396[ $1;])
397
398
399
400## ------------------------------------------------------------ ##
401## Declaring (prototyping) C functions in both K&R and ANSI-C. ##
402## ------------------------------------------------------------ ##
403
404
405# b4_c_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
406# -----------------------------------------------------------
407# Declare the function NAME.
408m4_define([b4_c_function_decl],
409[#if b4_c_modern
410b4_c_ansi_function_decl($@)
411#else
412$2 $1 ();
413#endif[]dnl
414])
415
416
417# b4_c_ansi_function_decl(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
418# ----------------------------------------------------------------
419# Declare the function NAME.
420m4_define([b4_c_ansi_function_decl],
421[$2 $1 (b4_c_ansi_formals(m4_shift2($@)));[]dnl
422])
423
424
425
426
427## --------------------- ##
428## Calling C functions. ##
429## --------------------- ##
430
431
432# b4_c_function_call(NAME, RETURN-VALUE, [DECL1, NAME1], ...)
433# -----------------------------------------------------------
434# Call the function NAME with arguments NAME1, NAME2 etc.
435m4_define([b4_c_function_call],
436[$1 (b4_c_args(m4_shift2($@)))[]dnl
437])
438
439
440# b4_c_args([DECL1, NAME1], ...)
441# ------------------------------
442# Output the arguments NAME1, NAME2...
443m4_define([b4_c_args],
444[m4_map_sep([b4_c_arg], [, ], [$@])])
445
446m4_define([b4_c_arg],
447[$2])
448
449
450## ----------- ##
451## Synclines. ##
452## ----------- ##
453
454# b4_sync_start(LINE, FILE)
455# -----------------------
456m4_define([b4_sync_start], [[#]line $1 $2])
457
458
459## -------------- ##
460## User actions. ##
461## -------------- ##
462
463# b4_case(LABEL, STATEMENTS)
464# --------------------------
465m4_define([b4_case],
466[ case $1:
467$2
468b4_syncline([@oline@], [@ofile@])
469 break;])
470
471
472# b4_predicate_case(LABEL, CONDITIONS)
473# ------------------------------------
474m4_define([b4_predicate_case],
475[ case $1:
476 if (! ($2)) YYERROR;
477b4_syncline([@oline@], [@ofile@])
478 break;])
479
480
481# b4_yydestruct_generate(FUNCTION-DECLARATOR)
482# -------------------------------------------
483# Generate the "yydestruct" function, which declaration is issued using
484# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
485# or "b4_c_function_def" for K&R.
486m4_define_default([b4_yydestruct_generate],
487[[/*-----------------------------------------------.
488| Release the memory associated to this symbol. |
489`-----------------------------------------------*/
490
491/*ARGSUSED*/
492]$1([yydestruct],
493 [static void],
494 [[const char *yymsg], [yymsg]],
495 [[int yytype], [yytype]],
496 [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl
497b4_locations_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl
498m4_ifset([b4_parse_param], [, b4_parse_param]))[
499{
500]b4_parse_param_use([yyvaluep], [yylocationp])dnl
501[ if (!yymsg)
502 yymsg = "Deleting";
503 YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
504
505 switch (yytype)
506 {
507]b4_symbol_foreach([b4_symbol_destructor])dnl
508[ default:
509 break;
510 }
511}]dnl
512])
513
514
515# b4_yy_symbol_print_generate(FUNCTION-DECLARATOR)
516# ------------------------------------------------
517# Generate the "yy_symbol_print" function, which declaration is issued using
518# FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C
519# or "b4_c_function_def" for K&R.
520m4_define_default([b4_yy_symbol_print_generate],
521[[
522/*--------------------------------.
523| Print this symbol on YYOUTPUT. |
524`--------------------------------*/
525
526/*ARGSUSED*/
527]$1([yy_symbol_value_print],
528 [static void],
529 [[FILE *yyoutput], [yyoutput]],
530 [[int yytype], [yytype]],
531 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
532b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
533m4_ifset([b4_parse_param], [, b4_parse_param]))[
534{
535 FILE *yyo = yyoutput;
536]b4_parse_param_use([yyo], [yylocationp])dnl
537[ if (!yyvaluep)
538 return;]
539dnl glr.c does not feature yytoknum.
540m4_if(b4_skeleton, ["yacc.c"],
541[[# ifdef YYPRINT
542 if (yytype < YYNTOKENS)
543 YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
544# endif
545]])dnl
546[ switch (yytype)
547 {
548]b4_symbol_foreach([b4_symbol_printer])dnl
549[ default:
550 break;
551 }
552}
553
554
555/*--------------------------------.
556| Print this symbol on YYOUTPUT. |
557`--------------------------------*/
558
559]$1([yy_symbol_print],
560 [static void],
561 [[FILE *yyoutput], [yyoutput]],
562 [[int yytype], [yytype]],
563 [[YYSTYPE const * const yyvaluep], [yyvaluep]][]dnl
564b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
565m4_ifset([b4_parse_param], [, b4_parse_param]))[
566{
567 if (yytype < YYNTOKENS)
568 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
569 else
570 YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
571
572]b4_locations_if([ YY_LOCATION_PRINT (yyoutput, *yylocationp);
573 YYFPRINTF (yyoutput, ": ");
574])dnl
575[ yy_symbol_value_print (yyoutput, yytype, yyvaluep]dnl
576b4_locations_if([, yylocationp])[]b4_user_args[);
577 YYFPRINTF (yyoutput, ")");
578}]dnl
579])
580
581## -------------- ##
582## Declarations. ##
583## -------------- ##
584
585# b4_declare_yylstype
586# -------------------
587# Declarations that might either go into the header (if --defines) or
588# in the parser body. Declare YYSTYPE/YYLTYPE, and yylval/yylloc.
589m4_define([b4_declare_yylstype],
590[[#if ! defined ]b4_api_PREFIX[STYPE && ! defined ]b4_api_PREFIX[STYPE_IS_DECLARED
591]m4_ifdef([b4_stype],
592[[typedef union ]b4_union_name[
593{
594]b4_user_stype[
595} ]b4_api_PREFIX[STYPE;
596# define ]b4_api_PREFIX[STYPE_IS_TRIVIAL 1]],
597[m4_if(b4_tag_seen_flag, 0,
598[[typedef int ]b4_api_PREFIX[STYPE;
599# define ]b4_api_PREFIX[STYPE_IS_TRIVIAL 1]])])[
600# define ]b4_api_prefix[stype ]b4_api_PREFIX[STYPE /* obsolescent; will be withdrawn */
601# define ]b4_api_PREFIX[STYPE_IS_DECLARED 1
602#endif]b4_locations_if([[
603
604#if ! defined ]b4_api_PREFIX[LTYPE && ! defined ]b4_api_PREFIX[LTYPE_IS_DECLARED
605typedef struct ]b4_api_PREFIX[LTYPE
606{
607 int first_line;
608 int first_column;
609 int last_line;
610 int last_column;
611} ]b4_api_PREFIX[LTYPE;
612# define ]b4_api_prefix[ltype ]b4_api_PREFIX[LTYPE /* obsolescent; will be withdrawn */
613# define ]b4_api_PREFIX[LTYPE_IS_DECLARED 1
614# define ]b4_api_PREFIX[LTYPE_IS_TRIVIAL 1
615#endif]])
616
617b4_pure_if([], [[extern ]b4_api_PREFIX[STYPE ]b4_prefix[lval;
618]b4_locations_if([[extern ]b4_api_PREFIX[LTYPE ]b4_prefix[lloc;]])])[]dnl
619])
620
621# b4_YYDEBUG_define
622# ------------------
623m4_define([b4_YYDEBUG_define],
624[[/* Enabling traces. */
625]m4_if(b4_api_prefix, [yy],
626[[#ifndef YYDEBUG
627# define YYDEBUG ]b4_parse_trace_if([1], [0])[
628#endif]],
629[[#ifndef ]b4_api_PREFIX[DEBUG
630# if defined YYDEBUG
631#if YYDEBUG
632# define ]b4_api_PREFIX[DEBUG 1
633# else
634# define ]b4_api_PREFIX[DEBUG 0
635# endif
636# else /* ! defined YYDEBUG */
637# define ]b4_api_PREFIX[DEBUG ]b4_parse_trace_if([1], [0])[
638# endif /* ! defined ]b4_api_PREFIX[DEBUG */
639#endif /* ! defined ]b4_api_PREFIX[DEBUG */]])[]dnl
640])
641
642# b4_declare_yydebug
643# ------------------
644m4_define([b4_declare_yydebug],
645[b4_YYDEBUG_define[
646#if ]b4_api_PREFIX[DEBUG
647extern int ]b4_prefix[debug;
648#endif][]dnl
649])
650
651# b4_yylloc_default_define
652# ------------------------
653# Define YYLLOC_DEFAULT.
654m4_define([b4_yylloc_default_define],
655[[/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
656 If N is 0, then set CURRENT to the empty location which ends
657 the previous symbol: RHS[0] (always defined). */
658
659#ifndef YYLLOC_DEFAULT
660# define YYLLOC_DEFAULT(Current, Rhs, N) \
661 do \
662 if (YYID (N)) \
663 { \
664 (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
665 (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
666 (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
667 (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
668 } \
669 else \
670 { \
671 (Current).first_line = (Current).last_line = \
672 YYRHSLOC (Rhs, 0).last_line; \
673 (Current).first_column = (Current).last_column = \
674 YYRHSLOC (Rhs, 0).last_column; \
675 } \
676 while (YYID (0))
677#endif
678]])