public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: christoph.muellner@vrull.eu
Cc: binutils@sourceware.org, nhuck@google.com, nhuck@pmull.org,
	jeffreyalaw@gmail.com, nelson@rivosinc.com,
	Andrew Waterman <andrew@sifive.com>,
	Jim Wilson <jim.wilson.gcc@gmail.com>,
	philipp.tomsich@vrull.eu, christoph.muellner@vrull.eu
Subject: Re: [PATCH v6 00/15] RISC-V: Add support for vector crypto extensions
Date: Sat, 01 Jul 2023 06:38:14 -0700 (PDT)	[thread overview]
Message-ID: <mhng-a3a37bb8-3716-493f-bdbd-e6299d7a13f9@palmer-ri-x1c9> (raw)
In-Reply-To: <20230701052104.4018352-1-christoph.muellner@vrull.eu>

On Fri, 30 Jun 2023 22:20:49 PDT (-0700), christoph.muellner@vrull.eu wrote:
> From: Christoph Müllner <christoph.muellner@vrull.eu>
>
> This patchset adds support for the RISC-V Vector Cryptography extensions.  These
> are: Zvbb, Zvbc, Zvkg, Zkvned, Zvknh[a,b], Zvkn, Zvkng, Zvknc, Zvksed, Zvksh,
> Zvks, Zvksg, Zvksc.
>
> This is based off the v20230620 version of the Vector Cryptography
> specification.  The specification is frozen.
>
> https://github.com/riscv/riscv-crypto/releases/tag/v20230620
>
> All extensions come with (passing) tests.
>
> Changes in v6:
> * Fix formatting of patch 0009

Thanks.  The v5 passed the tests, looks like Jeff got the v6 committed a 
few minutes ago so everything should be good for the release.

>
> Christoph Müllner (9):
>   RISC-V: Add support for the Zvbb ISA extension
>   RISC-V: Add support for the Zvkg ISA extension
>   RISC-V: Add support for the Zvkned ISA extension
>   RISC-V: Add support for the Zvknh[a,b] ISA extensions
>   RISC-V: Add support for the Zvksed ISA extension
>   RISC-V: Add support for the Zvksh ISA extension
>   RISC-V: Add support for the Zvkn ISA extension
>   RISC-V: Add support for the Zvks ISA extension
>   binutils: NEWS: Announce new RISC-V vector crypto extensions
>
> Nathan Huckleberry via Binutils (6):
>   RISC-V: Add support for the Zvbc extension
>   RISC-V: Allow nested implications for extensions
>   RISC-V: Add support for the Zvkng ISA extension
>   RISC-V: Add support for the Zvksg ISA extension
>   RISC-V: Add support for the Zvknc ISA extension
>   RISC-V: Add support for the Zvksc ISA extension
>
>  bfd/elfxx-riscv.c                       |  93 ++++++++++++++--
>  binutils/NEWS                           |   2 +
>  gas/config/tc-riscv.c                   |  13 +++
>  gas/testsuite/gas/riscv/zvbb.d          |  43 ++++++++
>  gas/testsuite/gas/riscv/zvbb.s          |  34 ++++++
>  gas/testsuite/gas/riscv/zvbc.d          |  16 +++
>  gas/testsuite/gas/riscv/zvbc.s          |   8 ++
>  gas/testsuite/gas/riscv/zvkg.d          |  10 ++
>  gas/testsuite/gas/riscv/zvkg.s          |   2 +
>  gas/testsuite/gas/riscv/zvkn.d          |  45 ++++++++
>  gas/testsuite/gas/riscv/zvkn.s          |  36 +++++++
>  gas/testsuite/gas/riscv/zvknc.d         |  18 ++++
>  gas/testsuite/gas/riscv/zvknc.s         |  10 ++
>  gas/testsuite/gas/riscv/zvkned.d        |  21 ++++
>  gas/testsuite/gas/riscv/zvkned.s        |  13 +++
>  gas/testsuite/gas/riscv/zvkng.d         |  12 +++
>  gas/testsuite/gas/riscv/zvkng.s         |   4 +
>  gas/testsuite/gas/riscv/zvknha.d        |  12 +++
>  gas/testsuite/gas/riscv/zvknha_zvknhb.s |   3 +
>  gas/testsuite/gas/riscv/zvknhb.d        |  12 +++
>  gas/testsuite/gas/riscv/zvks.d          |  45 ++++++++
>  gas/testsuite/gas/riscv/zvks.s          |  36 +++++++
>  gas/testsuite/gas/riscv/zvksc.d         |  18 ++++
>  gas/testsuite/gas/riscv/zvksc.s         |  10 ++
>  gas/testsuite/gas/riscv/zvksed.d        |  12 +++
>  gas/testsuite/gas/riscv/zvksed.s        |   4 +
>  gas/testsuite/gas/riscv/zvksg.d         |  12 +++
>  gas/testsuite/gas/riscv/zvksg.s         |   4 +
>  gas/testsuite/gas/riscv/zvksh.d         |  11 ++
>  gas/testsuite/gas/riscv/zvksh.s         |   3 +
>  include/opcode/riscv-opc.h              | 137 ++++++++++++++++++++++++
>  include/opcode/riscv.h                  |  13 +++
>  opcodes/riscv-dis.c                     |   4 +
>  opcodes/riscv-opc.c                     |  55 ++++++++++
>  34 files changed, 764 insertions(+), 7 deletions(-)
>  create mode 100644 gas/testsuite/gas/riscv/zvbb.d
>  create mode 100644 gas/testsuite/gas/riscv/zvbb.s
>  create mode 100644 gas/testsuite/gas/riscv/zvbc.d
>  create mode 100644 gas/testsuite/gas/riscv/zvbc.s
>  create mode 100644 gas/testsuite/gas/riscv/zvkg.d
>  create mode 100644 gas/testsuite/gas/riscv/zvkg.s
>  create mode 100644 gas/testsuite/gas/riscv/zvkn.d
>  create mode 100644 gas/testsuite/gas/riscv/zvkn.s
>  create mode 100644 gas/testsuite/gas/riscv/zvknc.d
>  create mode 100644 gas/testsuite/gas/riscv/zvknc.s
>  create mode 100644 gas/testsuite/gas/riscv/zvkned.d
>  create mode 100644 gas/testsuite/gas/riscv/zvkned.s
>  create mode 100644 gas/testsuite/gas/riscv/zvkng.d
>  create mode 100644 gas/testsuite/gas/riscv/zvkng.s
>  create mode 100644 gas/testsuite/gas/riscv/zvknha.d
>  create mode 100644 gas/testsuite/gas/riscv/zvknha_zvknhb.s
>  create mode 100644 gas/testsuite/gas/riscv/zvknhb.d
>  create mode 100644 gas/testsuite/gas/riscv/zvks.d
>  create mode 100644 gas/testsuite/gas/riscv/zvks.s
>  create mode 100644 gas/testsuite/gas/riscv/zvksc.d
>  create mode 100644 gas/testsuite/gas/riscv/zvksc.s
>  create mode 100644 gas/testsuite/gas/riscv/zvksed.d
>  create mode 100644 gas/testsuite/gas/riscv/zvksed.s
>  create mode 100644 gas/testsuite/gas/riscv/zvksg.d
>  create mode 100644 gas/testsuite/gas/riscv/zvksg.s
>  create mode 100644 gas/testsuite/gas/riscv/zvksh.d
>  create mode 100644 gas/testsuite/gas/riscv/zvksh.s

      parent reply	other threads:[~2023-07-01 13:38 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-01  5:20 Christoph Muellner
2023-07-01  5:20 ` [PATCH v6 01/15] RISC-V: Add support for the Zvbb ISA extension Christoph Muellner
2023-07-01  5:20 ` [PATCH v6 02/15] RISC-V: Add support for the Zvbc extension Christoph Muellner
2023-07-17  7:02   ` Jan Beulich
2023-07-17  7:11     ` Philipp Tomsich
2023-07-17  7:26       ` Jan Beulich
2023-07-17  7:28         ` Philipp Tomsich
2023-07-17  7:20     ` Christoph Müllner
2023-07-24 21:12       ` [CAUTION - External Sender] " Ken Dockser
2023-07-01  5:20 ` [PATCH v6 03/15] RISC-V: Add support for the Zvkg ISA extension Christoph Muellner
2023-07-24  7:14   ` Jan Beulich
2023-07-01  5:20 ` [PATCH v6 04/15] RISC-V: Add support for the Zvkned " Christoph Muellner
2023-07-01  5:20 ` [PATCH v6 05/15] RISC-V: Add support for the Zvknh[a,b] ISA extensions Christoph Muellner
2023-07-03  9:47   ` Nelson Chu
2023-07-03 10:10     ` Christoph Müllner
2023-07-01  5:20 ` [PATCH v6 06/15] RISC-V: Add support for the Zvksed ISA extension Christoph Muellner
2023-07-01  5:20 ` [PATCH v6 07/15] RISC-V: Add support for the Zvksh " Christoph Muellner
2023-07-01  5:20 ` [PATCH v6 08/15] RISC-V: Add support for the Zvkn " Christoph Muellner
2023-07-01  5:20 ` [PATCH v6 09/15] RISC-V: Allow nested implications for extensions Christoph Muellner
2023-07-01  5:20 ` [PATCH v6 10/15] RISC-V: Add support for the Zvkng ISA extension Christoph Muellner
2023-07-01  5:21 ` [PATCH v6 11/15] RISC-V: Add support for the Zvks " Christoph Muellner
2023-07-01  5:21 ` [PATCH v6 12/15] RISC-V: Add support for the Zvksg " Christoph Muellner
2023-07-01  5:21 ` [PATCH v6 13/15] RISC-V: Add support for the Zvknc " Christoph Muellner
2023-07-01  5:21 ` [PATCH v6 14/15] RISC-V: Add support for the Zvksc " Christoph Muellner
2023-07-01  5:21 ` [PATCH v6 15/15] binutils: NEWS: Announce new RISC-V vector crypto extensions Christoph Muellner
2023-07-01 13:38 ` Palmer Dabbelt [this message]

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=mhng-a3a37bb8-3716-493f-bdbd-e6299d7a13f9@palmer-ri-x1c9 \
    --to=palmer@dabbelt.com \
    --cc=andrew@sifive.com \
    --cc=binutils@sourceware.org \
    --cc=christoph.muellner@vrull.eu \
    --cc=jeffreyalaw@gmail.com \
    --cc=jim.wilson.gcc@gmail.com \
    --cc=nelson@rivosinc.com \
    --cc=nhuck@google.com \
    --cc=nhuck@pmull.org \
    --cc=philipp.tomsich@vrull.eu \
    /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).