Hello,
I pushed the attached commit to master and branch-2.5. This will convert
"misleading references" errors into warnings.
The following is some points I would like to address/discuss in near future:
1. Is there some way to keep sub-messages aligned ? For example if I have:
test.y:51.51-60: warning: misleading reference: `$<ival>exp'
test.y:42.1-3: warning: refers to: $exp at $$
test.y:51.7: warning: possibly meant: $x, hiding $exp at $1
test.y:51.41: warning: possibly meant: $r, hiding $exp at $4
Sub-messages change their position according to number of digits in location
info. Is it acceptable to develop some mechanism in order to keep all this
stuff aligned ?
2. In the previous example, in suggestions, bison prints "$exp" instead of
$<ival>exp. I am going to fix it.
3. As it was reported by Akim, in cases of "symbol not found", bison
currently prints all the reference including dots and dashes. For example:
stat: sym_a sym_b { func($some_other.field); };
bison prints:
test1.y:5.8-21: invalid reference: `$some_other.field', symbol not found
In my opinion the message is correct, but keeping in mind that this is the
most frequent error message, we can simplify it, for example:
test1.y:5.8-15: invalid reference: `$some_other', symbol not found
or
test1.y:5.9-15: symbol not found: some_other
or
test1.y:5.8-21: invalid reference: `$some_other.field', symbol not found:
some_other
Please advice.
3. I am still not sure that repeating of "warning" word for each
sub-messages makes sense.
--
Best regards,
Alex Rozenman ([email protected]).
commit ce268795cc020e408845fd4d1fefeddab121fe3d
Author: Alex Rozenman <[email protected]>
Date: Sat Aug 8 18:10:23 2009 +0300
Convert "misleading reference" messages to warnings.
* src/scan-code.l: New function 'show_sub_messages', more
factoring.
* tests/named-ref.at: Adjust tests.
diff --git a/ChangeLog b/ChangeLog
index d29e7b4..036120f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-08-08 Alex Rozenman <[email protected]>
+
+ Convert "misleading reference" messages to warnings.
+ * src/scan-code.l: New function 'show_sub_messages', more
+ factoring.
+ * tests/named-ref.at: Adjust tests.
+
2009-08-06 Joel E. Denny <[email protected]>
maint: run "make update-copyright"
diff --git a/src/scan-code.l b/src/scan-code.l
index 4d3120e..5f98fdd 100644
--- a/src/scan-code.l
+++ b/src/scan-code.l
@@ -307,7 +307,7 @@ contains_dot_or_dash (const char* p)
typedef struct
{
/* Index in symbol list. */
- unsigned index;
+ unsigned symbol_index;
/* Matched symbol id and loc. */
uniqstr id;
@@ -386,7 +386,7 @@ variant_add (uniqstr id, location id_loc, unsigned
symbol_index,
(!exact_mode && is_dot_or_dash (*prefix_end))))
{
variant *r = variant_table_grow ();
- r->index = symbol_index;
+ r->symbol_index = symbol_index;
r->id = id;
r->loc = id_loc;
r->hidden_by = NULL;
@@ -408,12 +408,78 @@ get_at_spec(unsigned symbol_index)
return at_buf;
}
+static void
+show_sub_messages (const char* cp, bool exact_mode, int midrule_rhs_index,
+ char dollar_or_at, bool is_warning)
+{
+ unsigned i;
+
+ for (i = 0; i < variant_count; ++i)
+ {
+ const variant *var = &variant_table[i];
+ const char *at_spec = get_at_spec (var->symbol_index);
+
+ if (var->err == 0)
+ {
+ if (is_warning)
+ warn_at (var->loc, _(" refers to: %c%s at %s"),
+ dollar_or_at, var->id, at_spec);
+ else
+ complain_at (var->loc, _(" refers to: %c%s at %s"),
+ dollar_or_at, var->id, at_spec);
+ }
+ else
+ {
+ static struct obstack msg_buf;
+ const char *tail = exact_mode ? "" :
+ 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_fgrow1 (&msg_buf, " possibly meant: %c", dollar_or_at);
+ if (contains_dot_or_dash (id))
+ obstack_fgrow1 (&msg_buf, "[%s]", id);
+ else
+ obstack_sgrow (&msg_buf, id);
+ obstack_sgrow (&msg_buf, tail);
+
+ if (var->err & VARIANT_HIDDEN)
+ {
+ obstack_fgrow1 (&msg_buf, ", hiding %c", dollar_or_at);
+ if (contains_dot_or_dash (var->id))
+ obstack_fgrow1 (&msg_buf, "[%s]", var->id);
+ else
+ obstack_sgrow (&msg_buf, var->id);
+ obstack_sgrow (&msg_buf, tail);
+ }
+
+ obstack_fgrow1 (&msg_buf, " at %s", at_spec);
+
+ if (var->err & VARIANT_NOT_VISIBLE_FROM_MIDRULE)
+ obstack_fgrow1 (&msg_buf, ", cannot be accessed from "
+ "mid-rule action at $%d", midrule_rhs_index);
+
+ obstack_1grow (&msg_buf, '\0');
+ if (is_warning)
+ warn_at (id_loc, _("%s"), (char *) obstack_finish (&msg_buf));
+ else
+ complain_at (id_loc, _("%s"), (char *) obstack_finish (&msg_buf));
+ obstack_free (&msg_buf, 0);
+ }
+ }
+}
+
/* Returned from "parse_ref" when the reference
is inappropriate. */
#define INVALID_REF (INT_MIN)
/* Returned from "parse_ref" when the reference
- points to LHS ($$) of the current rule. */
+ points to LHS ($$) of the current rule or midrule. */
#define LHS_REF (INT_MIN + 1)
/* Parse named or positional reference. In case of positional
@@ -427,9 +493,9 @@ parse_ref (char *cp, symbol_list *rule, int rule_length,
symbol_list *l;
char *cp_end;
bool exact_mode;
- bool has_error;
- bool has_valid;
unsigned i;
+ unsigned valid_variants = 0;
+ unsigned valid_variant_index = 0;
if ('$' == *cp)
return LHS_REF;
@@ -497,114 +563,70 @@ parse_ref (char *cp, symbol_list *rule, int rule_length,
}
/* Check errors. */
- has_error = false;
- has_valid = false;
for (i = 0; i < variant_count; ++i)
{
variant *var = &variant_table[i];
- unsigned symbol_index = var->index;
+ unsigned symbol_index = var->symbol_index;
/* Check visibility from mid-rule actions. */
if (midrule_rhs_index != 0
&& (symbol_index == 0 || midrule_rhs_index < symbol_index))
- {
- var->err |= VARIANT_NOT_VISIBLE_FROM_MIDRULE;
- has_error = true;
- }
+ var->err |= VARIANT_NOT_VISIBLE_FROM_MIDRULE;
/* Check correct bracketing. */
if (!exact_mode && contains_dot_or_dash (var->id))
- {
- var->err |= VARIANT_BAD_BRACKETING;
- has_error = true;
- }
+ var->err |= VARIANT_BAD_BRACKETING;
/* Check using of hidden symbols. */
if (var->hidden_by)
- {
- var->err |= VARIANT_HIDDEN;
- has_error = true;
- }
+ var->err |= VARIANT_HIDDEN;
if (!var->err)
- has_valid = true;
+ {
+ valid_variant_index = i;
+ ++valid_variants;
+ }
}
- if (variant_count == 1 && has_valid)
- {
- /* The only "good" case is here. */
- unsigned symbol_index = variant_table[0].index;
- if (symbol_index == midrule_rhs_index)
- return LHS_REF;
- else
- return symbol_index;
- }
-
- /* Start complaining. */
-
- if (variant_count == 0)
- complain_at (text_loc, _("invalid reference: %s, symbol not found"),
- quote (text));
- else if (variant_count > 1 && !has_error)
- complain_at (text_loc, _("ambiguous reference: %s"),
- quote (text));
- else if (variant_count > 1 && has_valid && has_error)
- complain_at (text_loc, _("misleading reference: %s"),
- quote (text));
- else
- complain_at (text_loc, _("invalid reference: %s"),
- quote (text));
-
- for (i = 0; i < variant_count; ++i)
+ switch (valid_variants)
{
- const variant *var = &variant_table[i];
- const char *at_spec = get_at_spec (var->index);
-
- if (var->err == 0)
- complain_at (var->loc, _(" refers to: %c%s at %s"),
- dollar_or_at, var->id, at_spec);
+ case 0:
+ if (variant_count == 0)
+ complain_at (text_loc, _("invalid reference: %s, symbol not found"),
+ quote (text));
else
- {
- static struct obstack msg_buf;
- const char *tail = exact_mode ? "" :
- 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_fgrow1 (&msg_buf, " possibly meant: %c", dollar_or_at);
- if (contains_dot_or_dash (id))
- obstack_fgrow1 (&msg_buf, "[%s]", id);
- else
- obstack_sgrow (&msg_buf, id);
- obstack_sgrow (&msg_buf, tail);
-
- if (var->err & VARIANT_HIDDEN)
- {
- obstack_fgrow1 (&msg_buf, ", hiding %c", dollar_or_at);
- if (contains_dot_or_dash (var->id))
- obstack_fgrow1 (&msg_buf, "[%s]", var->id);
- else
- obstack_sgrow (&msg_buf, var->id);
- obstack_sgrow (&msg_buf, tail);
- }
-
- obstack_fgrow1 (&msg_buf, " at %s", at_spec);
-
- if (var->err & VARIANT_NOT_VISIBLE_FROM_MIDRULE)
- obstack_fgrow1 (&msg_buf, ", cannot be accessed from "
- "mid-rule action at $%d", midrule_rhs_index);
-
- obstack_1grow (&msg_buf, '\0');
- complain_at (id_loc, _("%s"), (char *) obstack_finish (&msg_buf));
- obstack_free (&msg_buf, 0);
- }
+ {
+ complain_at (text_loc, _("invalid reference: %s"),
+ quote (text));
+ show_sub_messages (cp, exact_mode, midrule_rhs_index,
+ dollar_or_at, false);
+ }
+ return INVALID_REF;
+ case 1:
+ {
+ if (variant_count > 1)
+ {
+ warn_at (text_loc, _("misleading reference: %s"),
+ quote (text));
+ show_sub_messages (cp, exact_mode, midrule_rhs_index,
+ dollar_or_at, true);
+ }
+ {
+ unsigned symbol_index =
+ variant_table[valid_variant_index].symbol_index;
+ return (symbol_index == midrule_rhs_index) ? LHS_REF : symbol_index;
+ }
+ }
+ case 2:
+ default:
+ complain_at (text_loc, _("ambiguous reference: %s"),
+ quote (text));
+ show_sub_messages (cp, exact_mode, midrule_rhs_index,
+ dollar_or_at, false);
+ return INVALID_REF;
}
+ /* Not reachable. */
return INVALID_REF;
}
diff --git a/tests/named-refs.at b/tests/named-refs.at
index efa10b0..c4064c7 100644
--- a/tests/named-refs.at
+++ b/tests/named-refs.at
@@ -256,10 +256,10 @@ exp:
AT_BISON_CHECK([-o test.c test.y], 1, [],
[[test.y:50.51-60: invalid reference: `$<ival>lo9', symbol not found
-test.y:51.51-60: misleading reference: `$<ival>exp'
-test.y:42.1-3: refers to: $exp at $$
-test.y:51.7: possibly meant: $x, hiding $exp at $1
-test.y:51.41: possibly meant: $r, hiding $exp at $4
+test.y:51.51-60: warning: misleading reference: `$<ival>exp'
+test.y:42.1-3: warning: refers to: $exp at $$
+test.y:51.7: warning: possibly meant: $x, hiding $exp at $1
+test.y:51.41: warning: possibly meant: $r, hiding $exp at $4
test.y:52.51-52: $l of `exp' has no declared type
test.y:55.46-49: invalid reference: `$r12', symbol not found
test.y:56.29-33: invalid reference: `$expo', symbol not found
@@ -276,10 +276,10 @@ start: foo foo.bar { $foo.bar; }
foo: '1'
foo.bar: '2'
]])
-AT_BISON_CHECK([-o test.c test.y], 1, [],
-[[test.y:11.22-29: misleading reference: `$foo.bar'
-test.y:11.8-10: refers to: $foo at $1
-test.y:11.12-18: possibly meant: $[foo.bar] at $2
+AT_BISON_CHECK([-o test.c test.y], 0, [],
+[[test.y:11.22-29: warning: misleading reference: `$foo.bar'
+test.y:11.8-10: warning: refers to: $foo at $1
+test.y:11.12-18: warning: possibly meant: $[foo.bar] at $2
]])
AT_CLEANUP