public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/107672] [13 Regression] ICE during GIMPLE pass: slp
Date: Tue, 22 Nov 2022 08:03:27 +0000	[thread overview]
Message-ID: <bug-107672-4-huFNrALXmx@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-107672-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
It looks like the code looks for a vector type even ...  I'm going to test

diff --git a/gcc/tree-vect-stmts.cc b/gcc/tree-vect-stmts.cc
index bc0ef136f19..b35b986889d 100644
--- a/gcc/tree-vect-stmts.cc
+++ b/gcc/tree-vect-stmts.cc
@@ -12195,9 +12195,15 @@ supportable_widening_operation (vec_info *vinfo,
        intermediate_type
          = vect_halve_mask_nunits (prev_type, intermediate_mode);
       else
-       intermediate_type
-         = lang_hooks.types.type_for_mode (intermediate_mode,
-                                           TYPE_UNSIGNED (prev_type));
+       {
+         gcc_assert (VECTOR_MODE_P (intermediate_mode));
+         tree intermediate_element_type
+           = lang_hooks.types.type_for_mode (GET_MODE_INNER
(intermediate_mode),
+                                             TYPE_UNSIGNED (prev_type));
+         intermediate_type
+           = build_vector_type_for_mode (intermediate_element_type,
+                                         intermediate_mode);
+       }

       if (VECTOR_BOOLEAN_TYPE_P (intermediate_type)
          && VECTOR_BOOLEAN_TYPE_P (prev_type)

can you check if that helps the Java frontend here?

  parent reply	other threads:[~2022-11-22  8:03 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-14  6:50 [Bug tree-optimization/107672] New: " creatorsmithmdt at gmail dot com
2022-11-14 14:03 ` [Bug tree-optimization/107672] " rguenth at gcc dot gnu.org
2022-11-22  8:03 ` rguenth at gcc dot gnu.org [this message]
2022-11-22  8:06 ` rguenth at gcc dot gnu.org
2022-11-22  8:15 ` creatorsmithmdt at gmail dot com
2022-11-22  8:49 ` cvs-commit at gcc dot gnu.org
2022-11-22  8:49 ` rguenth 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-107672-4-huFNrALXmx@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).