public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] RISC-V: 'Zfa' extension is now ratified
@ 2023-10-16 11:44 Tsukasa OI
  2023-10-27  3:50 ` [PING^1][PATCH] " Tsukasa OI
  2023-10-30  0:37 ` [PATCH] " Nelson Chu
  0 siblings, 2 replies; 3+ messages in thread
From: Tsukasa OI @ 2023-10-16 11:44 UTC (permalink / raw)
  To: Tsukasa OI, Palmer Dabbelt, Andrew Waterman, Jim Wilson,
	Nelson Chu, Kito Cheng
  Cc: binutils

From: Tsukasa OI <research_trasio@irq.a4lg.com>

Since this extension is ratified, it now has the version number 1.0.

Reference:
<https://github.com/riscv/riscv-isa-manual/pull/1096>

bfd/ChangeLog:

	* elfxx-riscv.c (riscv_supported_std_z_ext): Update the version
	number of 'Zfa' extension.
---
 bfd/elfxx-riscv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c
index c070394a3667..684e74a3a8c7 100644
--- a/bfd/elfxx-riscv.c
+++ b/bfd/elfxx-riscv.c
@@ -1260,7 +1260,7 @@ static struct riscv_supported_ext riscv_supported_std_z_ext[] =
   {"zihintpause",	ISA_SPEC_CLASS_DRAFT,		2, 0,  0 },
   {"zmmul",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
   {"zawrs",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
-  {"zfa",		ISA_SPEC_CLASS_DRAFT,		0, 1,  0 },
+  {"zfa",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
   {"zfh",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
   {"zfhmin",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
   {"zfinx",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },

base-commit: 5d4a870e05ac45e3f5a301c672a4079995b5db7a
-- 
2.42.0


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

* [PING^1][PATCH] RISC-V: 'Zfa' extension is now ratified
  2023-10-16 11:44 [PATCH] RISC-V: 'Zfa' extension is now ratified Tsukasa OI
@ 2023-10-27  3:50 ` Tsukasa OI
  2023-10-30  0:37 ` [PATCH] " Nelson Chu
  1 sibling, 0 replies; 3+ messages in thread
From: Tsukasa OI @ 2023-10-27  3:50 UTC (permalink / raw)
  To: Binutils; +Cc: Nelson Chu

Additional references:
<https://wiki.riscv.org/display/HOME/Specification+Status>
<https://jira.riscv.org/browse/RVS-829>

Some of my upcoming more patch sets (including 'Zacas') are going to be
far more controversial.  Before we get busy discussing on this, can some
of you approve this small change?

Thanks,
Tsukasa

On 2023/10/16 20:44, Tsukasa OI wrote:
> From: Tsukasa OI <research_trasio@irq.a4lg.com>
> 
> Since this extension is ratified, it now has the version number 1.0.
> 
> Reference:
> <https://github.com/riscv/riscv-isa-manual/pull/1096>
> 
> bfd/ChangeLog:
> 
> 	* elfxx-riscv.c (riscv_supported_std_z_ext): Update the version
> 	number of 'Zfa' extension.
> ---
>  bfd/elfxx-riscv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c
> index c070394a3667..684e74a3a8c7 100644
> --- a/bfd/elfxx-riscv.c
> +++ b/bfd/elfxx-riscv.c
> @@ -1260,7 +1260,7 @@ static struct riscv_supported_ext riscv_supported_std_z_ext[] =
>    {"zihintpause",	ISA_SPEC_CLASS_DRAFT,		2, 0,  0 },
>    {"zmmul",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
>    {"zawrs",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
> -  {"zfa",		ISA_SPEC_CLASS_DRAFT,		0, 1,  0 },
> +  {"zfa",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
>    {"zfh",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
>    {"zfhmin",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
>    {"zfinx",		ISA_SPEC_CLASS_DRAFT,		1, 0,  0 },
> 
> base-commit: 5d4a870e05ac45e3f5a301c672a4079995b5db7a

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

* Re: [PATCH] RISC-V: 'Zfa' extension is now ratified
  2023-10-16 11:44 [PATCH] RISC-V: 'Zfa' extension is now ratified Tsukasa OI
  2023-10-27  3:50 ` [PING^1][PATCH] " Tsukasa OI
@ 2023-10-30  0:37 ` Nelson Chu
  1 sibling, 0 replies; 3+ messages in thread
From: Nelson Chu @ 2023-10-30  0:37 UTC (permalink / raw)
  To: Tsukasa OI
  Cc: Palmer Dabbelt, Andrew Waterman, Jim Wilson, Kito Cheng, binutils

[-- Attachment #1: Type: text/plain, Size: 1433 bytes --]

Okay, thanks.

Nelson

On Mon, Oct 16, 2023 at 7:44 PM Tsukasa OI <research_trasio@irq.a4lg.com>
wrote:

> From: Tsukasa OI <research_trasio@irq.a4lg.com>
>
> Since this extension is ratified, it now has the version number 1.0.
>
> Reference:
> <https://github.com/riscv/riscv-isa-manual/pull/1096>
>
> bfd/ChangeLog:
>
>         * elfxx-riscv.c (riscv_supported_std_z_ext): Update the version
>         number of 'Zfa' extension.
> ---
>  bfd/elfxx-riscv.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c
> index c070394a3667..684e74a3a8c7 100644
> --- a/bfd/elfxx-riscv.c
> +++ b/bfd/elfxx-riscv.c
> @@ -1260,7 +1260,7 @@ static struct riscv_supported_ext
> riscv_supported_std_z_ext[] =
>    {"zihintpause",      ISA_SPEC_CLASS_DRAFT,           2, 0,  0 },
>    {"zmmul",            ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
>    {"zawrs",            ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
> -  {"zfa",              ISA_SPEC_CLASS_DRAFT,           0, 1,  0 },
> +  {"zfa",              ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
>    {"zfh",              ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
>    {"zfhmin",           ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
>    {"zfinx",            ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
>
> base-commit: 5d4a870e05ac45e3f5a301c672a4079995b5db7a
> --
> 2.42.0
>
>

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

end of thread, other threads:[~2023-10-30  0:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-16 11:44 [PATCH] RISC-V: 'Zfa' extension is now ratified Tsukasa OI
2023-10-27  3:50 ` [PING^1][PATCH] " Tsukasa OI
2023-10-30  0:37 ` [PATCH] " Nelson Chu

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