public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jason Merrill <jason@redhat.com>
To: Nathan Froyd <froydnj@codesourcery.com>
Cc: gcc-patches@gcc.gnu.org
Subject: Re: [PATCH,c++] describe reasons for function template overload resolution failure
Date: Wed, 18 May 2011 20:34:00 -0000	[thread overview]
Message-ID: <4DD42299.2000206@redhat.com> (raw)
In-Reply-To: <4DD41733.2020501@codesourcery.com>

On 05/18/2011 03:00 PM, Nathan Froyd wrote:
> Thank you for the review.  I'll go back and try things the way you suggest;
> before I go off and do that, I've taken your comments to mean that:
>
> - fn_type_unification/type_unification_real and associated callers should take
>    a boolean `explain' parameter, which is normally false;
>
> - failed calls to fn_type_unification should save the arguments for the call
>    for future explanation;
>
> - printing diagnostic messages should call fn_type_unification with the saved
>    arguments and a true `explain' parameter.

Yes, that's what I had in mind.  Though I think you can reconstruct the 
arguments rather than save them.

...
> bar.hh:4095:63 note: bar (...)
> bar.hh:....... error: [some message from tf_warning_or_error code]

> I'm not sure that the last location there will necessary be the same as the
> one that's printed for the declaration.  I think I'll punt on that issue for
> the time being until we see how the diagnostics work out.  There's also the
> matter of the error vs. note diagnostic.  I think it'd be nicer to keep the
> conformity of a note for all the explanations

Nicer, yes, but I think that's a secondary concern after usefulness of 
the actual message.  In similar cases I've introduced the errors with 
another message like "%qD is implicitly deleted because the default 
definition would be ill-formed:"

Or, in this case, "deduction failed because substituting the template 
arguments would be ill-formed:"

>; the only way I see to do that
> is something like:
>
> - Add a tf_note flag; pass it at all appropriate call sites when explaining
>    things;
>
> - Add a tf_issue_diagnostic flag that's the union of tf_{warning,error,note};
>
> - Change code that looks like:
>
>    if (complain&  tf_warning_or_error)
>      error (<STUFF>);
>
>    to something like:
>
>    if (complain&  tf_issue_diagnostic)
>      emit_diagnostic (complain&  tf_note ? DK_NOTE : DK_ERROR,<STUFF>);
>
>    passing input_location if we're not already passing a location.
>
> That involves a lot of code churn.  (Not a lot if you just modified the
> functions above, but with this scheme, you'd have to call instantiate_template
> again from the diagnostic code, and I assume you'd want to call that with
> tf_note as well, which means hitting a lot more code.)  I don't see a better
> way to keep the diagnostics uniform, but I might be making things too
> complicated; did you have a different idea of how to implement what you were
> suggesting?

That all makes sense, but I'd put it in a follow-on patch.  And wrap the 
complexity in a cp_error function that takes a complain parameter and 
either gives no message, a note, or an error depending.

Jason

  reply	other threads:[~2011-05-18 19:49 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-10  6:36 Nathan Froyd
2011-05-10 23:29 ` Jason Merrill
2011-05-16 20:28   ` Nathan Froyd
2011-05-18 18:36     ` Jason Merrill
2011-05-18 20:04       ` Nathan Froyd
2011-05-18 20:34         ` Jason Merrill [this message]
2011-05-25 19:40           ` Nathan Froyd
2011-05-26 16:52             ` Jason Merrill
2011-05-26 20:53               ` Nathan Froyd
2011-05-27 20:23                 ` Jason Merrill
2011-05-28  0:44                   ` Nathan Froyd
2011-05-28 14:03                     ` Jason Merrill
2011-07-17  7:56                       ` Jason Merrill
  -- strict thread matches above, loose matches on Subject: below --
2011-02-02 21:05 Nathan Froyd
2011-02-15  3:34 ` Mark Mitchell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4DD42299.2000206@redhat.com \
    --to=jason@redhat.com \
    --cc=froydnj@codesourcery.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).