public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/105353] __builtin_shufflevector with value dependent constant
Date: Fri, 22 Apr 2022 21:21:18 +0000	[thread overview]
Message-ID: <bug-105353-4-8jEhpaYmMu@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-105353-4@http.gcc.gnu.org/bugzilla/>

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|__builtin_shufflevector     |__builtin_shufflevector
                   |with template parameter     |with value dependent
                   |fails to compile on GCC 12  |constant
                   |but compiles on clang       |
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2022-04-22
             Status|UNCONFIRMED                 |NEW

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed, it is all value dependent constants really. e.g. even sizeof fails:



#include <cstdint>

typedef std::uint8_t Simd128U8VectT __attribute__((__vector_size__(16)));

#define ShuffleIndex sizeof(T)

template<class T>
static inline Simd128U8VectT ShufFunc(Simd128U8VectT vect) noexcept {
    if constexpr(unsigned(ShuffleIndex) >= 16)
        return Simd128U8VectT { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
    else if constexpr(ShuffleIndex == 0)
        return vect;
    else
        return __builtin_shufflevector(vect, vect, ShuffleIndex, ShuffleIndex +
1,
            ShuffleIndex + 2, ShuffleIndex + 3, ShuffleIndex + 4, ShuffleIndex
+ 5,
            ShuffleIndex + 6, ShuffleIndex + 7, ShuffleIndex + 8, ShuffleIndex
+ 9,
            ShuffleIndex + 10, ShuffleIndex + 11, ShuffleIndex + 12,
ShuffleIndex + 13,
            ShuffleIndex + 14, ShuffleIndex + 15);
}

  reply	other threads:[~2022-04-22 21:21 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-22 21:07 [Bug c++/105353] New: __builtin_shufflevector with template parameter fails to compile on GCC 12 but compiles on clang john_platts at hotmail dot com
2022-04-22 21:21 ` pinskia at gcc dot gnu.org [this message]
2022-04-22 21:40 ` [Bug c++/105353] __builtin_shufflevector with value dependent constant mpolacek at gcc dot gnu.org
2022-04-22 21:50 ` jakub at gcc dot gnu.org
2022-04-22 21:55 ` mpolacek at gcc dot gnu.org
2022-04-22 21:59 ` jakub at gcc dot gnu.org
2022-04-22 22:04 ` mpolacek at gcc dot gnu.org
2022-04-25 15:16 ` cvs-commit at gcc dot gnu.org
2022-04-25 15:16 ` mpolacek at gcc dot gnu.org
2022-10-31 19:31 ` pinskia 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-105353-4-8jEhpaYmMu@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).