public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "dcb314 at hotmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/62091] [5 Regression] ice in before_dom_children
Date: Tue, 19 Aug 2014 14:48:00 -0000	[thread overview]
Message-ID: <bug-62091-4-kEX57mP7g9@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-62091-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62091

--- Comment #7 from David Binderman <dcb314 at hotmail dot com> ---
I am not sure this is fixed. Attached code, when
compiled by 20140817, with flags -std=gnu++11 -O2,
does the following

$ ../results/bin/gcc -c -std=gnu++11 -O2 bug161.cc
listformatter.cpp: In member function ‘icu_53::UnicodeString&
icu_53::ListFormatter::format(const icu_53::UnicodeString*, int32_t,
icu_53::UnicodeString&, int32_t, int32_t&, UErrorCode&) const’:
listformatter.cpp:304:16: internal compiler error: in before_dom_children, at
tree-ssa-pre.c:4410
0xbecf2c eliminate_dom_walker::before_dom_children(basic_block_def*)
    ../../src/trunk/gcc/tree-ssa-pre.c:4410
0xf72c67 dom_walker::walk(basic_block_def*)
    ../../src/trunk/gcc/domwalk.c:177
0xbe9fd2 eliminate
    ../../src/trunk/gcc/tree-ssa-pre.c:4525
0xbeb1dc execute
    ../../src/trunk/gcc/tree-ssa-pre.c:4940
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.
$
>From gcc-bugs-return-458786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Aug 19 15:21:53 2014
Return-Path: <gcc-bugs-return-458786-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 10983 invoked by alias); 19 Aug 2014 15:21:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 10913 invoked by uid 48); 19 Aug 2014 15:21:46 -0000
From: "vp at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/55334] [4.8/4.9/5 Regression] mgrid regression (ipa-cp disables vectorization)
Date: Tue, 19 Aug 2014 15:21:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: vp at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.2
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-55334-4-RyRL9J9xOt@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-55334-4@http.gcc.gnu.org/bugzilla/>
References: <bug-55334-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-08/txt/msg01283.txt.bz2
Content-length: 889

https://gcc.gnu.org/bugzilla/show_bug.cgi?idU334

vp at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vp at gcc dot gnu.org

--- Comment #37 from vp at gcc dot gnu.org ---
I see this issue in AArch64 as well on 4.9 branch and on the trunk causing
performance regression.

Since MG3P is inlined at MAIN__, all the four calls to RESID are in MAIN__. Two
of which are to the clone resid_.constprop.1 (not vectorized) and one to resid_
(vectorized) and the last one inlined (not vectorized and it looks very similar
to the resid_.constprop.1 version).

I could however, improve by passing -fno-inline-functions and -fno-ipa-cp at
-Ofast (so that all the calls are to resid_ which gets vectorized).

Anyone working on this issue?


  parent reply	other threads:[~2014-08-19 14:48 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-11 15:47 [Bug c++/62091] New: " dcb314 at hotmail dot com
2014-08-13  8:32 ` [Bug tree-optimization/62091] [4.10 Regression] " rguenth at gcc dot gnu.org
2014-08-13 18:45 ` [Bug tree-optimization/62091] [5 " hubicka at ucw dot cz
2014-08-14 23:36 ` hubicka at gcc dot gnu.org
2014-08-19 14:48 ` dcb314 at hotmail dot com [this message]
2014-08-19 16:27 ` dcb314 at hotmail dot com
2014-08-19 18:26 ` jason at gcc dot gnu.org
2014-08-19 18:30 ` jason at gcc dot gnu.org
2014-08-20  1:55 ` jason at gcc dot gnu.org
2014-08-20  2:04 ` jason at gcc dot gnu.org
2014-08-20 16:02 ` hubicka at ucw dot cz
2014-08-20 16:19 ` trippels at gcc dot gnu.org
2014-08-21 13:49 ` hubicka at gcc dot gnu.org
2014-09-25 20:13 ` hubicka at gcc dot gnu.org

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=bug-62091-4-kEX57mP7g9@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@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).