public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/93720] [10 Regression] vector creation from two parts of two vectors produces TBL rather than ins
       [not found] <bug-93720-4@http.gcc.gnu.org/bugzilla/>
@ 2020-03-31 13:25 ` dpochepk at gmail dot com
  2020-05-07 11:56 ` [Bug target/93720] [10/11 " jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: dpochepk at gmail dot com @ 2020-03-31 13:25 UTC (permalink / raw)
  To: gcc-bugs

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

Dmitrij Pochepko <dpochepk at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dpochepk at gmail dot com

--- Comment #11 from Dmitrij Pochepko <dpochepk at gmail dot com> ---
Is it still under development/improvement?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/93720] [10/11 Regression] vector creation from two parts of two vectors produces TBL rather than ins
       [not found] <bug-93720-4@http.gcc.gnu.org/bugzilla/>
  2020-03-31 13:25 ` [Bug target/93720] [10 Regression] vector creation from two parts of two vectors produces TBL rather than ins dpochepk at gmail dot com
@ 2020-05-07 11:56 ` jakub at gcc dot gnu.org
  2020-07-17  9:25 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2020-05-07 11:56 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.0                        |10.2

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 10.1 has been released.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/93720] [10/11 Regression] vector creation from two parts of two vectors produces TBL rather than ins
       [not found] <bug-93720-4@http.gcc.gnu.org/bugzilla/>
  2020-03-31 13:25 ` [Bug target/93720] [10 Regression] vector creation from two parts of two vectors produces TBL rather than ins dpochepk at gmail dot com
  2020-05-07 11:56 ` [Bug target/93720] [10/11 " jakub at gcc dot gnu.org
@ 2020-07-17  9:25 ` cvs-commit at gcc dot gnu.org
  2020-07-21 10:03 ` rsandifo at gcc dot gnu.org
  2020-07-21 10:17 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-07-17  9:25 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Richard Sandiford <rsandifo@gcc.gnu.org>:

https://gcc.gnu.org/g:c9c87e6f9c795bb36e4570a07501fc182eaad035

commit r11-2192-gc9c87e6f9c795bb36e4570a07501fc182eaad035
Author: Dmitrij Pochepko <dmitrij.pochepko@bell-sw.com>
Date:   Fri Jul 17 10:24:46 2020 +0100

    vector creation from two parts of two vectors produces TBL rather than ins
(PR 93720)

    The following patch enables vector permutations optimization by trying
    to use ins instruction instead of slow and generic tbl.

    example:

    vector float f0(vector float a, vector float b)
    {
      return __builtin_shuffle (a, a, (vector int){3, 1, 2, 3});
    }

    was compiled into:
    ...
            adrp    x0, .LC0
            ldr     q1, [x0, #:lo12:.LC0]
            tbl     v0.16b, {v0.16b}, v1.16b
    ...

    and after patch:
    ...
            ins     v0.s[0], v0.s[3]
    ...

    bootstrapped and tested on aarch64-linux-gnu with no regressions

    gcc/ChangeLog:

    2020-07-17  Andrew Pinski  <apinksi@marvell.com>

            PR target/93720
            * config/aarch64/aarch64.c (aarch64_evpc_ins): New function.
            (aarch64_expand_vec_perm_const_1): Call it.
            * config/aarch64/aarch64-simd.md (aarch64_simd_vec_copy_lane): Make
            public, and add a "@" prefix.

    gcc/testsuite/ChangeLog:

    2020-07-17  Andrew Pinski  <apinksi@marvell.com>

            PR target/93720
            * gcc.target/aarch64/vins-1.c: New test.
            * gcc.target/aarch64/vins-2.c: New test.
            * gcc.target/aarch64/vins-3.c: New test.

    Co-Authored-By: Dmitrij Pochepko <dmitrij.pochepko@bell-sw.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/93720] [10/11 Regression] vector creation from two parts of two vectors produces TBL rather than ins
       [not found] <bug-93720-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2020-07-17  9:25 ` cvs-commit at gcc dot gnu.org
@ 2020-07-21 10:03 ` rsandifo at gcc dot gnu.org
  2020-07-21 10:17 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: rsandifo at gcc dot gnu.org @ 2020-07-21 10:03 UTC (permalink / raw)
  To: gcc-bugs

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

rsandifo at gcc dot gnu.org <rsandifo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
                 CC|                            |rsandifo at gcc dot gnu.org
             Status|ASSIGNED                    |RESOLVED

--- Comment #14 from rsandifo at gcc dot gnu.org <rsandifo at gcc dot gnu.org> ---
Fixed on trunk.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug target/93720] [10/11 Regression] vector creation from two parts of two vectors produces TBL rather than ins
       [not found] <bug-93720-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2020-07-21 10:03 ` rsandifo at gcc dot gnu.org
@ 2020-07-21 10:17 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2020-07-21 10:17 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.2                        |11.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-07-21 10:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-93720-4@http.gcc.gnu.org/bugzilla/>
2020-03-31 13:25 ` [Bug target/93720] [10 Regression] vector creation from two parts of two vectors produces TBL rather than ins dpochepk at gmail dot com
2020-05-07 11:56 ` [Bug target/93720] [10/11 " jakub at gcc dot gnu.org
2020-07-17  9:25 ` cvs-commit at gcc dot gnu.org
2020-07-21 10:03 ` rsandifo at gcc dot gnu.org
2020-07-21 10:17 ` pinskia at gcc dot gnu.org

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).