From: Akim Demaille Date: Fri, 10 Aug 2012 08:02:16 +0000 (+0200) Subject: minor refactoring in user code scanning X-Git-Tag: v2.7.90~353 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/cceb7b94e9c8b5b4722f22e6c3972cf90fe26b7f?hp=3995c0533b1ef1c3f7cbb95b9b45e5cb80865050 minor refactoring in user code scanning * src/scan-code.l (show_sub_message): New, extracted from... (show_sub_messages): here. --- diff --git a/TODO b/TODO index ea878c9e..c3befa2d 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,6 @@ * Short term ** scan-code.l Avoid variables for format strings, as then GCC cannot check them. -show_sub_messages should call show_sub_message. ** m4 names b4_shared_declarations is no longer what it is. Make it diff --git a/src/scan-code.l b/src/scan-code.l index 83501475..0bf5dc7e 100644 --- a/src/scan-code.l +++ b/src/scan-code.l @@ -400,79 +400,84 @@ get_at_spec(unsigned symbol_index) } static void -show_sub_messages (const char* cp, bool explicit_bracketing, - int midrule_rhs_index, char dollar_or_at, - bool is_warning, unsigned indent) +show_sub_message (const char* cp, bool explicit_bracketing, + int midrule_rhs_index, char dollar_or_at, + bool is_warning, unsigned indent, + const variant *var) { - unsigned i; + const char *at_spec = get_at_spec (var->symbol_index); - for (i = 0; i < variant_count; ++i) + if (var->err == 0) + { + if (is_warning) + complain_at_indent (var->loc, Wother, &indent, + _("refers to: %c%s at %s"), dollar_or_at, + var->id, at_spec); + else + complain_at_indent (var->loc, complaint, &indent, + _("refers to: %c%s at %s"), dollar_or_at, + var->id, at_spec); + } + else { - const variant *var = &variant_table[i]; - const char *at_spec = get_at_spec (var->symbol_index); + static struct obstack msg_buf; + const char *tail = explicit_bracketing ? "" : cp + strlen (var->id); + const char *id = var->hidden_by ? var->hidden_by->id : var->id; + location id_loc = var->hidden_by ? var->hidden_by->loc : var->loc; - if (var->err == 0) - { - if (is_warning) - complain_at_indent (var->loc, Wother, &indent, - _("refers to: %c%s at %s"), dollar_or_at, - var->id, at_spec); - else - complain_at_indent (var->loc, complaint, &indent, - _("refers to: %c%s at %s"), dollar_or_at, - var->id, at_spec); - } + /* Create the explanation message. */ + obstack_init (&msg_buf); + + obstack_printf (&msg_buf, _("possibly meant: %c"), dollar_or_at); + if (contains_dot_or_dash (id)) + obstack_printf (&msg_buf, "[%s]", id); else + obstack_sgrow (&msg_buf, id); + obstack_sgrow (&msg_buf, tail); + + if (var->err & VARIANT_HIDDEN) { - static struct obstack msg_buf; - const char *tail = explicit_bracketing ? "" : - cp + strlen (var->id); - const char *id = var->hidden_by ? var->hidden_by->id : - var->id; - location id_loc = var->hidden_by ? var->hidden_by->loc : - var->loc; - - /* Create the explanation message. */ - obstack_init (&msg_buf); - - obstack_printf (&msg_buf, _("possibly meant: %c"), dollar_or_at); - if (contains_dot_or_dash (id)) - obstack_printf (&msg_buf, "[%s]", id); + obstack_printf (&msg_buf, _(", hiding %c"), dollar_or_at); + if (contains_dot_or_dash (var->id)) + obstack_printf (&msg_buf, "[%s]", var->id); else - obstack_sgrow (&msg_buf, id); + obstack_sgrow (&msg_buf, var->id); obstack_sgrow (&msg_buf, tail); + } - if (var->err & VARIANT_HIDDEN) - { - obstack_printf (&msg_buf, _(", hiding %c"), dollar_or_at); - if (contains_dot_or_dash (var->id)) - obstack_printf (&msg_buf, "[%s]", var->id); - else - obstack_sgrow (&msg_buf, var->id); - obstack_sgrow (&msg_buf, tail); - } - - obstack_printf (&msg_buf, _(" at %s"), at_spec); + obstack_printf (&msg_buf, _(" at %s"), at_spec); - if (var->err & VARIANT_NOT_VISIBLE_FROM_MIDRULE) - { - const char *format = - _(", cannot be accessed from mid-rule action at $%d"); - obstack_printf (&msg_buf, format, midrule_rhs_index); - } - - obstack_1grow (&msg_buf, '\0'); - if (is_warning) - complain_at_indent (id_loc, Wother, &indent, "%s", - (char *) obstack_finish (&msg_buf)); - else - complain_at_indent (id_loc, complaint, &indent, "%s", - (char *) obstack_finish (&msg_buf)); - obstack_free (&msg_buf, 0); + if (var->err & VARIANT_NOT_VISIBLE_FROM_MIDRULE) + { + const char *format = + _(", cannot be accessed from mid-rule action at $%d"); + obstack_printf (&msg_buf, format, midrule_rhs_index); } + + obstack_1grow (&msg_buf, '\0'); + if (is_warning) + complain_at_indent (id_loc, Wother, &indent, "%s", + (char *) obstack_finish (&msg_buf)); + else + complain_at_indent (id_loc, complaint, &indent, "%s", + (char *) obstack_finish (&msg_buf)); + obstack_free (&msg_buf, 0); } } +static void +show_sub_messages (const char* cp, bool explicit_bracketing, + int midrule_rhs_index, char dollar_or_at, + bool is_warning, unsigned indent) +{ + unsigned i; + + for (i = 0; i < variant_count; ++i) + show_sub_message (cp, explicit_bracketing, + midrule_rhs_index, dollar_or_at, + is_warning, indent, &variant_table[i]); +} + /* Returned from "parse_ref" when the reference is inappropriate. */ #define INVALID_REF (INT_MIN)