public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: "Christian Ehrhardt" <ehrhardt@mathematik.uni-ulm.de>
To: nobody@gcc.gnu.org
Cc: gcc-prs@gcc.gnu.org,
Subject: Re: c/6815: [3.2/3.3 regression] ICE with longjmp if -fprofile-arcs -O is specified
Date: Thu, 12 Dec 2002 04:46:00 -0000	[thread overview]
Message-ID: <20021212124607.13662.qmail@sources.redhat.com> (raw)

The following reply was made to PR c/6815; it has been noted by GNATS.

From: "Christian Ehrhardt" <ehrhardt@mathematik.uni-ulm.de>
To: gcc-gnats@gcc.gnu.org, gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org,
  nobody@gcc.gnu.org, dtucker@zip.com.au
Cc: rth@redhat.com
Subject: Re: c/6815: [3.2/3.3 regression] ICE with longjmp if -fprofile-arcs -O is specified
Date: Thu, 12 Dec 2002 13:37:26 +0100

 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=6815
 
 These messages on gcc@gcc.gnu.org are about the same problem. This mail
 is mainly meant to make sure that this information is attached to the
 audit trail of PR 6815:
 
 http://gcc.gnu.org/ml/gcc/2002-12/msg00377.html
 http://gcc.gnu.org/ml/gcc/2002-12/msg00378.html
 http://gcc.gnu.org/ml/gcc/2002-12/msg00458.html
 http://gcc.gnu.org/ml/gcc/2002-12/msg00475.html
 
 Citing rth in one of theses mails:
 | Before the invocation of the profiling routines, no successors is correct.
 | During the invocation of the profiling routines, however, we add fake 
 | edges from calls to the exit block.  I would not expect this to change
 | for a noreturn function like longjmp.
 |
 | So I guess the quesion is "where did you get this null, exactly?"
 
 The crash is in cfgrtl.c:1314 in function insert_insn_on_edge in this
 piece of code:
 
 | void
 | insert_insn_on_edge (pattern, e)
 |      rtx pattern;
 |      edge e;
 | {
 |   /* We cannot insert instructions on an abnormal critical edge.
 |      It will be easier to find the culprit if we die now.  */
 |   if ((e->flags & EDGE_ABNORMAL) && EDGE_CRITICAL_P (e))
 |     abort ();
 | [ ... ]
 
 where e is NULL. insert_insn_on_edge in turn is called from
 flow_call_edges_add in cfganal.c:325 with this piece of code:
 
 | for (e = bb->succ; e; e = e->succ_next)
 |   if (e->dest == EXIT_BLOCK_PTR)
 |     break;
 |
 | insert_insn_on_edge (gen_rtx_USE (VOIDmode, const0_rtx), e);
 | commit_edge_insertions ();
 
 which looks a bit strange if we keep in mind that insert_insn_on_edge
 will crash if the second parameter is NULL.
 
     regards  Christian
 
 -- 
 THAT'S ALL FOLKS!


             reply	other threads:[~2002-12-12 12:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-12-12  4:46 Christian Ehrhardt [this message]
2002-12-12 10:16 Richard Henderson
2003-01-10 12:46 Christian Ehrhardt
2003-01-13 21:25 reichelt

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=20021212124607.13662.qmail@sources.redhat.com \
    --to=ehrhardt@mathematik.uni-ulm.de \
    --cc=gcc-prs@gcc.gnu.org \
    --cc=nobody@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).