public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Mary Bennett <mary.bennett@embecosm.com>
To: Mary Bennett <mary.bennett@embecosm.com>,
	Binutils <binutils@sourceware.org>
Subject: Re: [PATCH v3 0/2] RISC-V: Support CORE-V XCVMAC and XCVALU extensions
Date: Mon, 6 Nov 2023 17:27:13 +0000	[thread overview]
Message-ID: <aafb93b6-042e-4ef9-8752-4bd33b576b7f@embecosm.com> (raw)
In-Reply-To: <20231002020206.1635423-1-mary.bennett@embecosm.com>


[-- Attachment #1.1.1: Type: text/plain, Size: 7285 bytes --]

Hi

I'm wondering if there are any other changes required for these patches? 
If not, are they all good to merge?

Kind regards,

Mary

On 02/10/2023 03:02, Mary Bennett wrote:
> Changes: v2 -> v3
>   - Rebase against 7a5fa3dbe555794ce401a7435cb91f8695fc9847.
>
> Changes: v1 -> v2
>   - Added MASK_<INSN> for each instruction, as suggested.
>   - Changed operand 'x' to operand 'X', as suggested.
>
> This patch series presents the comprehensive implementation of the MAC and ALU
> extension for CORE-V.
>
> Tested with riscv-gnu-toolchain on binutils, ld, gas and gcc testsuites to
> ensure its correctness and compatibility with the existing codebase.
> However, your input, reviews, and suggestions are invaluable in making this
> extension even more robust.
>
> The CORE-V instructions are described in the specification [1] and work can be
> found in the OpenHW group's Github repository [2].
>
> [1] docs.openhwgroup.org/projects/cv32e40p-user-manual/en/latest/instruction_set_extensions.html
>
> [2] github.com/openhwgroup/corev-binutils-gdb
>
> Contributors:
>        Mary Bennett <mary.bennett@embecosm.com>
>        Nandni Jamnadas <nandni.jamnadas@embecosm.com>
>        Pietra Ferreira <pietra.ferreira@embecosm.com>
>        Charlie Keaney
>        Jessica Mills
>        Craig Blackmore <craig.blackmore@embecosm.com>
>        Simon Cook <simon.cook@embecosm.com>
>        Jeremy Bennett <jeremy.bennett@embecosm.com>
>        Helene Chelin <helene.chelin@embecosm.com>
>
>
>    RISC-V: Add support for XCValu extension in CV32E40P
>    RISC-V: Add support for XCVmac extension in CV32E40P
>
>   bfd/elfxx-riscv.c                             |  11 ++
>   gas/config/tc-riscv.c                         |  42 ++++-
>   gas/doc/c-riscv.texi                          |  10 ++
>   gas/testsuite/gas/riscv/cv-alu-boundaries.d   |   3 +
>   gas/testsuite/gas/riscv/cv-alu-boundaries.l   |  14 ++
>   gas/testsuite/gas/riscv/cv-alu-boundaries.s   |  27 +++
>   gas/testsuite/gas/riscv/cv-alu-fail-march.d   |   3 +
>   gas/testsuite/gas/riscv/cv-alu-fail-march.l   |  32 ++++
>   gas/testsuite/gas/riscv/cv-alu-fail-march.s   |  33 ++++
>   .../gas/riscv/cv-alu-fail-operand-01.d        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-01.l        |  32 ++++
>   .../gas/riscv/cv-alu-fail-operand-01.s        |  33 ++++
>   .../gas/riscv/cv-alu-fail-operand-02.d        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-02.l        |  32 ++++
>   .../gas/riscv/cv-alu-fail-operand-02.s        |  33 ++++
>   .../gas/riscv/cv-alu-fail-operand-03.d        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-03.l        |  25 +++
>   .../gas/riscv/cv-alu-fail-operand-03.s        |  26 +++
>   .../gas/riscv/cv-alu-fail-operand-04.d        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-04.l        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-04.s        |   4 +
>   .../gas/riscv/cv-alu-fail-operand-05.d        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-05.l        |   9 +
>   .../gas/riscv/cv-alu-fail-operand-05.s        |  10 ++
>   .../gas/riscv/cv-alu-fail-operand-06.d        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-06.l        |   9 +
>   .../gas/riscv/cv-alu-fail-operand-06.s        |  10 ++
>   .../gas/riscv/cv-alu-fail-operand-07.d        |   3 +
>   .../gas/riscv/cv-alu-fail-operand-07.l        |  33 ++++
>   .../gas/riscv/cv-alu-fail-operand-07.s        |  34 ++++
>   gas/testsuite/gas/riscv/cv-alu-insns.d        | 102 ++++++++++++
>   gas/testsuite/gas/riscv/cv-alu-insns.s        | 124 ++++++++++++++
>   gas/testsuite/gas/riscv/cv-mac-fail-march.d   |   3 +
>   gas/testsuite/gas/riscv/cv-mac-fail-march.l   |  23 +++
>   gas/testsuite/gas/riscv/cv-mac-fail-march.s   |  24 +++
>   gas/testsuite/gas/riscv/cv-mac-fail-operand.d |   3 +
>   gas/testsuite/gas/riscv/cv-mac-fail-operand.l | 147 +++++++++++++++++
>   gas/testsuite/gas/riscv/cv-mac-fail-operand.s | 156 ++++++++++++++++++
>   gas/testsuite/gas/riscv/cv-mac-insns.d        |  87 ++++++++++
>   gas/testsuite/gas/riscv/cv-mac-insns.s        |  81 +++++++++
>   include/opcode/riscv-opc.h                    | 104 ++++++++++++
>   include/opcode/riscv.h                        |  12 ++
>   opcodes/riscv-dis.c                           |  14 +-
>   opcodes/riscv-opc.c                           |  61 +++++++
>   44 files changed, 1428 insertions(+), 2 deletions(-)
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-boundaries.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-boundaries.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-boundaries.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-march.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-march.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-march.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-01.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-01.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-01.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-02.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-02.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-02.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-03.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-03.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-03.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-04.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-04.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-04.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-05.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-05.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-05.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-06.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-06.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-06.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-07.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-07.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-fail-operand-07.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-insns.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-alu-insns.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-fail-march.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-fail-march.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-fail-march.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-fail-operand.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-fail-operand.l
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-fail-operand.s
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-insns.d
>   create mode 100644 gas/testsuite/gas/riscv/cv-mac-insns.s
>
-- 
Embecosm Limited
22 London Road
Southampton
SO15 2AF
Registered Number: 6577021.
Registered in England & Wales.

Name: Mary Bennett
Title: Compiler Tool Chain Engineer
Phone: 07802418997
Website: www.embecosm.com


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3203 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

  parent reply	other threads:[~2023-11-06 17:27 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-05 14:52 [PATCH " Mary Bennett
2023-09-05 14:52 ` [PATCH 1/2] RISC-V: Add support for XCVmac extension in CV32E40P Mary Bennett
2023-09-07  4:35   ` Nelson Chu
2023-09-05 14:53 ` [PATCH 2/2] RISC-V: Add support for XCValu " Mary Bennett
2023-09-07  4:37   ` Nelson Chu
2023-09-07  4:49 ` [PATCH 0/2] RISC-V: Support CORE-V XCVMAC and XCVALU extensions Nelson Chu
2023-09-07  6:57   ` Kito Cheng
2023-09-07 10:11 ` Tsukasa OI
2023-09-12 14:24 ` [PATCH v2 " Mary Bennett
2023-09-12 14:24   ` [PATCH v2 1/2] RISC-V: Add support for XCVmac extension in CV32E40P Mary Bennett
2023-09-12 14:24   ` [PATCH v2 2/2] RISC-V: Add support for XCValu " Mary Bennett
2023-10-02  2:02   ` [PATCH v3 0/2] RISC-V: Support CORE-V XCVMAC and XCVALU extensions Mary Bennett
2023-10-02  2:02     ` [PATCH v3 1/2] RISC-V: Add support for XCVmac extension in CV32E40P Mary Bennett
2023-10-02  2:02     ` [PATCH v3 2/2] RISC-V: Add support for XCValu " Mary Bennett
2023-11-06 17:27     ` Mary Bennett [this message]
2023-11-07  4:12       ` [PATCH v3 0/2] RISC-V: Support CORE-V XCVMAC and XCVALU extensions Nelson Chu

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=aafb93b6-042e-4ef9-8752-4bd33b576b7f@embecosm.com \
    --to=mary.bennett@embecosm.com \
    --cc=binutils@sourceware.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).