public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrew Pinski <pinskia@gmail.com>
To: Jan Hubicka <hubicka@ucw.cz>
Cc: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: Check that there are no missing probabilities
Date: Fri, 13 Oct 2017 20:56:00 -0000	[thread overview]
Message-ID: <CA+=Sn1kDHHDrjY3HCfWJdQLK3okP-UqSwgKu_a=NzECUo8OkoA@mail.gmail.com> (raw)
In-Reply-To: <20171013133833.GB16196@kam.mff.cuni.cz>

On Fri, Oct 13, 2017 at 6:38 AM, Jan Hubicka <hubicka@ucw.cz> wrote:
> Hi,
> this patch enables check that no edge probabilities are missing.

This caused a bootstrap failure on aarch64-linux-gnu with go enabled.
But I see you have disabled the code for now.

Just for reference the failure:
../../../gcc/libgo/go/unicode/letter.go
../../../gcc/libgo/go/unicode/tables.go -o unicode.o >/dev/null 2>&1
../../../gcc/libgo/go/runtime/panic.go: In function ‘runtime.gopanic’:
../../../gcc/libgo/go/runtime/panic.go:408:1: error: Uninitialized
probability of edge 103->128
 func gopanic(e interface{}) {
 ^
during RTL pass: subreg1
../../../gcc/libgo/go/runtime/panic.go:408:1: internal compiler error:
verify_flow_info failed
0x71f3b7 verify_flow_info()
../../gcc/gcc/cfghooks.c:267
0xa9402b execute_function_todo
../../gcc/gcc/passes.c:2006
0xa94de3 execute_todo
../../gcc/gcc/passes.c:2048
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <https://gcc.gnu.org/bugs/> for instructions.

Thanks,
Andrew


>
> Honza
>
>         * cfghooks.c (verify_flow_info): Check that edge probabilities are
>         set.
>
> Index: cfghooks.c
> ===================================================================
> --- cfghooks.c  (revision 253694)
> +++ cfghooks.c  (working copy)
> @@ -160,6 +161,13 @@ verify_flow_info (void)
>                      e->src->index, e->dest->index);
>               err = 1;
>             }
> +         if (profile_status_for_fn (cfun) >= PROFILE_GUESSED
> +             && !e->probability.initialized_p ())
> +           {
> +             error ("Uninitialized probability of edge %i->%i", e->src->index,
> +                    e->dest->index);
> +             err = 1;
> +           }
>           if (!e->probability.verify ())
>             {
>               error ("verify_flow_info: Wrong probability of edge %i->%i",

  parent reply	other threads:[~2017-10-13 20:48 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-13 14:04 Jan Hubicka
2017-10-13 17:13 ` Jakub Jelinek
2017-10-13 19:14   ` Jan Hubicka
2017-10-13 19:30     ` Jakub Jelinek
2017-10-13 19:37       ` Jan Hubicka
2017-10-17 11:45       ` Richard Biener
2017-10-17 12:18         ` Jan Hubicka
2017-10-13 20:56 ` Andrew Pinski [this message]
2017-10-13 19:07 David Edelsohn

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='CA+=Sn1kDHHDrjY3HCfWJdQLK3okP-UqSwgKu_a=NzECUo8OkoA@mail.gmail.com' \
    --to=pinskia@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=hubicka@ucw.cz \
    /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).