public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: ritzert@t-online.de
To: gcc-gnats@gcc.gnu.org
Subject: optimization/9096: SEGV in find_and_verify_loops
Date: Sun, 29 Dec 2002 11:46:00 -0000	[thread overview]
Message-ID: <20021229194341.29919.qmail@sources.redhat.com> (raw)


>Number:         9096
>Category:       optimization
>Synopsis:       SEGV in find_and_verify_loops
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          ice-on-legal-code
>Submitter-Id:   net
>Arrival-Date:   Sun Dec 29 11:46:00 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     Michael Ritzert
>Release:        GNU C++ version 3.4 20021229
>Organization:
>Environment:
i686-pc-linux-gnu debian GNU/Linux
and
i386-unknown-freebsd4.5
>Description:
This code:

class String_var
{
public:
    ~String_var() {}
};

template<class T>
class FixSeq
{
public:
    static void freebuf(T* p) { delete [] p; }
    FixSeq();
    ~FixSeq() { freebuf(0); }
};

struct IOR
{
    String_var type_id;
    FixSeq< String_var > _profiles_seq;
};

class TransientORT
{
    IOR _obv_the_ior_template_;
    TransientORT();
};

TransientORT::TransientORT()
{
}

compiled with c++ -c -O causes GCC to crash with the following backtrace:

#0  find_and_verify_loops (f=0x401a5084, loops=0xbffff7a0)
    at /home/ritzert/gcc/HEAD/gcc/gcc/loop.c:2683
#1  0x082cb25b in loop_optimize (f=0x401a5084, dumpfile=0x2f, flags=10)
    at /home/ritzert/gcc/HEAD/gcc/gcc/loop.c:494
#2  0x08353ca2 in rest_of_compilation (decl=0x401b30b0)
    at /home/ritzert/gcc/HEAD/gcc/gcc/toplev.c:2954
#3  0x0812e2ea in genrtl_finish_function (fn=0x4018acb0)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/semantics.c:2724
#4  0x0812db8b in expand_body (fn=0x4018acb0)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/semantics.c:2547
#5  0x08139036 in maybe_clone_body (fn=0x40189e70)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/optimize.c:265
#6  0x0812d91c in expand_body (fn=0x40189e70)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/semantics.c:2463
#7  0x080f56ba in cp_parser_function_definition_after_declarator (
    parser=0x4018744c, inline_p=30)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:13966
#8  0x080f5630 in cp_parser_function_definition_from_specifiers_and_declarator
    (parser=0x40177680, decl_specifiers=0x2f, attributes=0x2f,
    declarator=0x2f, access_checks=0x2f)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:13903
#9  0x080f063e in cp_parser_init_declarator (parser=0x40177680,
    decl_specifiers=0x0, prefix_attributes=0x0, access_checks=0x0,
    function_definition_allowed_p=true, member_p=false,
    function_definition_p=0xbffffa13)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:9668
#10 0x080edabc in cp_parser_simple_declaration (parser=0x40177680,
    function_definition_allowed_p=true)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:6674
#11 0x080ed98f in cp_parser_block_declaration (parser=0x40177680,
    statement_p=false) at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:6614
#12 0x080ed845 in cp_parser_declaration (parser=0x40177680)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:6534
#13 0x080ed778 in cp_parser_declaration_seq_opt (parser=0x40177680)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:6459
#14 0x080e96f2 in cp_parser_translation_unit (parser=0x40177680)
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:2516
#15 0x080f6828 in yyparse ()
    at /home/ritzert/gcc/HEAD/gcc/gcc/cp/parser.c:14807
#16 0x0815b0c9 in c_common_parse_file (set_yydebug=47)
    at /home/ritzert/gcc/HEAD/gcc/gcc/c-lex.c:161
#17 0x08351b8d in compile_file ()
    at /home/ritzert/gcc/HEAD/gcc/gcc/toplev.c:2128
#18 0x083571a5 in do_compile () at /home/ritzert/gcc/HEAD/gcc/gcc/toplev.c:5352
#19 0x0835724a in toplev_main (argc=47, argv=0xbffffbd4)
    at /home/ritzert/gcc/HEAD/gcc/gcc/toplev.c:538
#20 0x0816454b in main (argc=47, argv=0x2f)
    at /home/ritzert/gcc/HEAD/gcc/gcc/main.c:37

GCC 3.2.1 is fine.
>How-To-Repeat:
c++ -c -O x.cpp
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


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

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-12-29 11:46 ritzert [this message]
2003-02-18 10:21 ebotcazou
2003-02-18 10:46 Michael Ritzert
2003-02-18 10:52 ebotcazou

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=20021229194341.29919.qmail@sources.redhat.com \
    --to=ritzert@t-online.de \
    --cc=gcc-gnats@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).