X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/4323e0dac386d777d070c68564f1c0041b06935d..0505df0cbae4065b17f3fb6953c68f87217e7ea2:/src/scan-skel.l?ds=inline diff --git a/src/scan-skel.l b/src/scan-skel.l index b79e5832..662a00b2 100644 --- a/src/scan-skel.l +++ b/src/scan-skel.l @@ -41,11 +41,7 @@ #define YY_DECL static int skel_lex (void) YY_DECL; -#define QPUTS(String) \ - fputs (quotearg_style (c_quoting_style, String), yyout) - -static void at_directive_perform (int at_directive_argc, - char *at_directive_argv[], +static void at_directive_perform (int argc, char *argv[], char **outnamep, int *out_linenop); static void fail_for_at_directive_too_many_args (char const *at_directive_name); static void fail_for_at_directive_too_few_args (char const *at_directive_name); @@ -61,12 +57,12 @@ static void fail_for_invalid_at (char const *at); int out_lineno PACIFY_CC (= 0); char *outname = NULL; - /* Currently, only the @warn, @complain, @fatal, @warn_at, @complain_at, and - @fatal_at directives take multiple arguments, and the last three already - can't take more than 7. at_directive_argv[0] is the directive name. */ - #define AT_DIRECTIVE_ARGC_MAX 8 - int at_directive_argc = 0; - char *at_directive_argv[AT_DIRECTIVE_ARGC_MAX]; + /* Currently, only the @complain directive takes multiple arguments, and + never more than 7, with argv[0] being the directive name and argv[1] + being the type of complaint to dispatch. */ +#define ARGC_MAX 9 + int argc = 0; + char *argv[ARGC_MAX]; %} "@@" fputc ('@', yyout); @@ -76,13 +72,12 @@ static void fail_for_invalid_at (char const *at); @\n continue; "@oline@" fprintf (yyout, "%d", out_lineno + 1); -"@ofile@" QPUTS (outname); +"@ofile@" fputs (quotearg_style (c_quoting_style, outname), yyout); @[a-z_]+"(" { yytext[yyleng-1] = '\0'; obstack_grow (&obstack_for_string, yytext, yyleng); - at_directive_argv[at_directive_argc++] = - obstack_finish (&obstack_for_string); + argv[argc++] = obstack_finish (&obstack_for_string); BEGIN SC_AT_DIRECTIVE_ARGS; } @@ -91,7 +86,7 @@ static void fail_for_invalid_at (char const *at); \n out_lineno++; ECHO; [^@\n]+ ECHO; -<> { +<> { if (outname) { free (outname); @@ -111,22 +106,19 @@ static void fail_for_invalid_at (char const *at); @\n continue; @[,)] { - if (at_directive_argc >= AT_DIRECTIVE_ARGC_MAX) - fail_for_at_directive_too_many_args (at_directive_argv[0]); + if (argc >= ARGC_MAX) + fail_for_at_directive_too_many_args (argv[0]); - obstack_1grow (&obstack_for_string, '\0'); - at_directive_argv[at_directive_argc++] = - obstack_finish (&obstack_for_string); + argv[argc++] = obstack_finish0 (&obstack_for_string); /* Like M4, skip whitespace after a comma. */ if (yytext[1] == ',') BEGIN SC_AT_DIRECTIVE_SKIP_WS; else { - at_directive_perform (at_directive_argc, at_directive_argv, - &outname, &out_lineno); - obstack_free (&obstack_for_string, at_directive_argv[0]); - at_directive_argc = 0; + at_directive_perform (argc, argv, &outname, &out_lineno); + obstack_free (&obstack_for_string, argv[0]); + argc = 0; BEGIN INITIAL; } } @@ -137,15 +129,12 @@ static void fail_for_invalid_at (char const *at); { [ \t\r\n] continue; - . { yyless (0); BEGIN SC_AT_DIRECTIVE_ARGS; } + . yyless (0); BEGIN SC_AT_DIRECTIVE_ARGS; } { - <> { - complain (fatal, _("unclosed %s directive in skeleton"), - at_directive_argv[0]); - } + <> complain (NULL, fatal, _("unclosed %s directive in skeleton"), argv[0]); } %% @@ -176,136 +165,78 @@ skel_scanner_free (void) yylex_destroy (); } +static inline warnings +flag (const char *arg) +{ + /* compare with values issued from b4_error */ + if (STREQ (arg, "warn")) + return Wother; + else if (STREQ (arg, "complain")) + return complaint; + else if (STREQ (arg, "fatal")) + return fatal; + else + aver (false); +} + static void -at_directive_perform (int at_directive_argc, - char *at_directive_argv[], - char **outnamep, int *out_linenop) +at_directive_perform (int argc, char *argv[], char **outnamep, int *out_linenop) { - if (STREQ (at_directive_argv[0], "@basename")) + if (STREQ (argv[0], "@basename")) { - if (at_directive_argc > 2) - fail_for_at_directive_too_many_args (at_directive_argv[0]); - fputs (last_component (at_directive_argv[1]), yyout); + if (argc > 2) + fail_for_at_directive_too_many_args (argv[0]); + fputs (last_component (argv[1]), yyout); } - else if (STREQ (at_directive_argv[0], "@warn") - || STREQ (at_directive_argv[0], "@complain") - || STREQ (at_directive_argv[0], "@fatal")) + else if (STREQ (argv[0], "@complain")) { - warnings complaint_flag; - switch (at_directive_argv[0][1]) - { - case 'w': complaint_flag = Wother; break; - case 'c': complaint_flag = complaint; break; - case 'f': complaint_flag = fatal; break; - default: aver (false); break; - } - switch (at_directive_argc) - { - case 2: - complain (complaint_flag, "%s", _(at_directive_argv[1])); - break; - case 3: - complain (complaint_flag, _(at_directive_argv[1]), - at_directive_argv[2]); - break; - case 4: - complain (complaint_flag, _(at_directive_argv[1]), - at_directive_argv[2], at_directive_argv[3]); - break; - case 5: - complain (complaint_flag, _(at_directive_argv[1]), - at_directive_argv[2], at_directive_argv[3], - at_directive_argv[4]); - break; - case 6: - complain (complaint_flag, _(at_directive_argv[1]), - at_directive_argv[2], at_directive_argv[3], - at_directive_argv[4], at_directive_argv[5]); - break; - default: - fail_for_at_directive_too_many_args (at_directive_argv[0]); - break; - } - } - else if (STREQ (at_directive_argv[0], "@warn_at") - || STREQ (at_directive_argv[0], "@complain_at") - || STREQ (at_directive_argv[0], "@fatal_at")) - { - warnings complaint_flag; + if (argc < 4) + fail_for_at_directive_too_few_args (argv[0]); + warnings w = flag (argv[1]); location loc; - if (at_directive_argc < 4) - fail_for_at_directive_too_few_args (at_directive_argv[0]); - switch (at_directive_argv[0][1]) + location *locp = NULL; + if (argv[2] && argv[2][0]) { - case 'w': complaint_flag = Wother; break; - case 'c': complaint_flag = complaint; break; - case 'f': complaint_flag = fatal; break; - default: aver (false); break; - } - boundary_set_from_string (&loc.start, at_directive_argv[1]); - boundary_set_from_string (&loc.end, at_directive_argv[2]); - switch (at_directive_argc) - { - case 4: - complain_at (loc, complaint_flag, "%s", _(at_directive_argv[3])); - break; - case 5: - complain_at (loc, complaint_flag, _(at_directive_argv[3]), - at_directive_argv[4]); - break; - case 6: - complain_at (loc, complaint_flag, _(at_directive_argv[3]), - at_directive_argv[4], at_directive_argv[5]); - break; - case 7: - complain_at (loc, complaint_flag, _(at_directive_argv[3]), - at_directive_argv[4], at_directive_argv[5], - at_directive_argv[6]); - break; - case 8: - complain_at (loc, complaint_flag, _(at_directive_argv[3]), - at_directive_argv[4], at_directive_argv[5], - at_directive_argv[6], at_directive_argv[7]); - break; - default: - fail_for_at_directive_too_many_args (at_directive_argv[0]); - break; + boundary_set_from_string (&loc.start, argv[2]); + boundary_set_from_string (&loc.end, argv[3]); + locp = &loc; } + complain_args (locp, w, argc - 3, argv + 3); } - else if (STREQ (at_directive_argv[0], "@output")) + else if (STREQ (argv[0], "@output")) { - if (at_directive_argc > 2) - fail_for_at_directive_too_many_args (at_directive_argv[0]); + if (argc > 2) + fail_for_at_directive_too_many_args (argv[0]); if (*outnamep) { free (*outnamep); xfclose (yyout); } - *outnamep = xstrdup (at_directive_argv[1]); + *outnamep = xstrdup (argv[1]); output_file_name_check (outnamep); yyout = xfopen (*outnamep, "w"); *out_linenop = 1; } else - fail_for_invalid_at (at_directive_argv[0]); + fail_for_invalid_at (argv[0]); } static void fail_for_at_directive_too_few_args (char const *at_directive_name) { - complain (fatal, _("too few arguments for %s directive in skeleton"), - at_directive_name); + complain (NULL, fatal, _("too few arguments for %s directive in skeleton"), + at_directive_name); } static void fail_for_at_directive_too_many_args (char const *at_directive_name) { - complain (fatal, _("too many arguments for %s directive in skeleton"), + complain (NULL, fatal, _("too many arguments for %s directive in skeleton"), at_directive_name); } static void fail_for_invalid_at (char const *at) { - complain (fatal, "invalid @ in skeleton: %s", at); + complain (NULL, fatal, "invalid @ in skeleton: %s", at); }