X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/9662b512840eb42db61d041580bbdc326f4ebd55..98ae96438ebb4465c777a7849f1b4ca222e760e3:/data/c.m4 diff --git a/data/c.m4 b/data/c.m4 index 86aca105..b0221e8e 100644 --- a/data/c.m4 +++ b/data/c.m4 @@ -53,6 +53,9 @@ m4_define([b4_identification], [/* Identify Bison output. */ [#]define YYBISON 1 +/* Bison version. */ +[#]define YYBISON_VERSION "b4_version" + /* Skeleton name. */ [#]define YYSKELETON_NAME b4_skeleton @@ -93,7 +96,6 @@ m4_define([b4_parse_param], b4_parse_param)) - ## ------------ ## ## Data Types. ## ## ------------ ## @@ -119,7 +121,7 @@ m4_define([b4_int_type], m4_eval([0 <= $1]), [1], [unsigned int], - [int])]) + [int])]) # b4_int_type_for(NAME) @@ -135,6 +137,15 @@ m4_define([b4_int_type_for], ## ------------------ ## +# b4_error_verbose_if(IF-TRUE, IF-FALSE) +# -------------------------------------- +# Expand IF-TRUE, if errors are verbose, IF-FALSE otherwise. +m4_define([b4_error_verbose_if], +[m4_if(b4_error_verbose, [1], + [$1], + [$2])]) + + # b4_location_if(IF-TRUE, IF-FALSE) # --------------------------------- # Expand IF-TRUE, if locations are used, IF-FALSE otherwise. @@ -166,6 +177,16 @@ m4_define([b4_token_define], ]) +# b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER) +# ------------------------------------------------------- +# Output the definition of the tokens (if there are) as #defines. +m4_define([b4_token_defines], +[m4_if([$@], [[]], [], +[/* Tokens. */ +m4_map([b4_token_define], [$@])]) +]) + + # b4_token_enum(TOKEN-NAME, TOKEN-NUMBER) # --------------------------------------- # Output the definition of this token as an enum. @@ -173,10 +194,10 @@ m4_define([b4_token_enum], [$1 = $2]) -# b4_token_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER) -# ------------------------------------------------------- -# Output the definition of the tokens (if there are) as enums and #define. -m4_define([b4_token_defines], +# b4_token_enums(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER) +# ----------------------------------------------------- +# Output the definition of the tokens (if there are) as enums. +m4_define([b4_token_enums], [m4_if([$@], [[]], [], [/* Tokens. */ #ifndef YYTOKENTYPE @@ -189,8 +210,14 @@ m4_map_sep([ b4_token_enum], [, [$@]) }; #endif -m4_map([b4_token_define], [$@]) -]) +])]) + + +# b4_token_enums_defines(LIST-OF-PAIRS-TOKEN-NAME-TOKEN-NUMBER) +# ------------------------------------------------------------- +# Output the definition of the tokens (if there are) as enums and #defines. +m4_define([b4_token_enums_defines], +[b4_token_enums($@)b4_token_defines($@) ]) @@ -204,7 +231,7 @@ m4_map([b4_token_define], [$@]) # ---------------------------------------------------------- # Declare the function NAME. m4_define([b4_c_function_def], -[#if defined (__STDC__) || defined (__cplusplus) +[#if defined (__STDC__) || defined (__C99__FUNC__) || defined (__cplusplus) b4_c_ansi_function_def($@) #else $2 @@ -314,7 +341,6 @@ m4_define([b4_c_arg], ## Synclines. ## ## ----------- ## - # b4_syncline(LINE, FILE) # ----------------------- m4_define([b4_syncline], @@ -345,7 +371,7 @@ m4_popdef([b4_dollar_dollar])dnl # Generate the "yydestruct" function, which declaration is issued using # FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C # or "b4_c_function_def" for K&R. -m4_define([b4_yydestruct_generate], +m4_define_default([b4_yydestruct_generate], [[/*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ @@ -354,12 +380,12 @@ m4_define([b4_yydestruct_generate], [static void], [[const char *yymsg], [yymsg]], [[int yytype], [yytype]], - [[YYSTYPE *yyvaluep], [yyvaluep]]b4_location_if([, - [[YYLTYPE *yylocationp], [yylocationp]]]))[ + [[YYSTYPE *yyvaluep], [yyvaluep]][]dnl +b4_location_if( [, [[YYLTYPE *yylocationp], [yylocationp]]])[]dnl +m4_ifset([b4_parse_param], [, b4_parse_param]))[ { - /* Pacify ``unused variable'' warnings. */ - (void) yyvaluep; -]b4_location_if([ (void) yylocationp; + YYUSE (yyvaluep); +]b4_location_if([ YYUSE (yylocationp); ])[ if (!yymsg) yymsg = "Deleting"; @@ -380,21 +406,21 @@ m4_define([b4_yydestruct_generate], # Generate the "yysymprint" function, which declaration is issued using # FUNCTION-DECLARATOR, which may be "b4_c_ansi_function_def" for ISO C # or "b4_c_function_def" for K&R. -m4_define([b4_yysymprint_generate], +m4_define_default([b4_yysymprint_generate], [[/*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ ]$1([yysymprint], [static void], - [[FILE *yyoutput], [yyoutput]], - [[int yytype], [yytype]], - [[YYSTYPE *yyvaluep], [yyvaluep]]b4_location_if([, - [[YYLTYPE *yylocationp], [yylocationp]]])) + [[FILE *yyoutput], [yyoutput]], + [[int yytype], [yytype]], + [[const YYSTYPE * const yyvaluep], [yyvaluep]][]dnl +b4_location_if([, [[const YYLTYPE * const yylocationp], [yylocationp]]])[]dnl +m4_ifset([b4_parse_param], [, b4_parse_param]))[ { - /* Pacify ``unused variable'' warnings. */ - (void) yyvaluep; -b4_location_if([ (void) yylocationp; + YYUSE (yyvaluep); +]b4_location_if([ YYUSE (yylocationp); ])dnl [ if (yytype < YYNTOKENS) @@ -417,5 +443,5 @@ b4_location_if([ (void) yylocationp; break; } YYFPRINTF (yyoutput, ")"); -} -]]) +}]dnl +])