public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/110152] [14 Regression] ICE on 3dnow-1.c since r14-1166
Date: Thu, 08 Jun 2023 08:12:57 +0000	[thread overview]
Message-ID: <bug-110152-4-RP21ln0Oqa@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-110152-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:2b2bf793d3fb8980cb2b83e9e2a8c236ad2434f5

commit r14-1630-g2b2bf793d3fb8980cb2b83e9e2a8c236ad2434f5
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Thu Jun 8 10:11:25 2023 +0200

    i386: Fix endless recursion in ix86_expand_vector_init_general with MMX
[PR110152]

    I'm getting
    +FAIL: gcc.target/i386/3dnow-1.c (internal compiler error: Segmentation
fault signal terminated program cc1)
    +FAIL: gcc.target/i386/3dnow-1.c (test for excess errors)
    +FAIL: gcc.target/i386/3dnow-2.c (internal compiler error: Segmentation
fault signal terminated program cc1)
    +FAIL: gcc.target/i386/3dnow-2.c (test for excess errors)
    +FAIL: gcc.target/i386/mmx-1.c (internal compiler error: Segmentation fault
signal terminated program cc1)
    +FAIL: gcc.target/i386/mmx-1.c (test for excess errors)
    +FAIL: gcc.target/i386/mmx-2.c (internal compiler error: Segmentation fault
signal terminated program cc1)
    +FAIL: gcc.target/i386/mmx-2.c (test for excess errors)
    regressions on i686-linux since r14-1166.  The problem is when
    ix86_expand_vector_init_general is called with mmx_ok = true and
    mode = V4HImode, it newly recurses with mmx_ok = false and mode = V2SImode,
    but as mmx_ok is false and !TARGET_SSE, we recurse again with the same
    arguments (ok, fresh new tmp and vals) infinitely.
    The following patch fixes that by passing mmx_ok to that recursive call.
    For n_words == 4 it isn't needed, because we only care about mmx_ok for
    V2SImode or V2SFmode and no other modes.

    2023-06-08  Jakub Jelinek  <jakub@redhat.com>

            PR target/110152
            * config/i386/i386-expand.cc (ix86_expand_vector_init_general): For
            n_words == 2 recurse with mmx_ok as first argument rather than
false.

  parent reply	other threads:[~2023-06-08  8:12 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-07  8:26 [Bug target/110152] New: " jakub at gcc dot gnu.org
2023-06-07  8:26 ` [Bug target/110152] " jakub at gcc dot gnu.org
2023-06-07  8:34 ` jakub at gcc dot gnu.org
2023-06-08  8:12 ` cvs-commit at gcc dot gnu.org [this message]
2023-06-08  9:08 ` jakub 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-110152-4-RP21ln0Oqa@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).