[PATCH v3 1/2] RISC-V: Fix requirement handling on Zhinx+{D,Q}
Nelson Chu
nelson.chu@sifive.com
Thu Jul 7 04:25:08 GMT 2022
OK, regressions passed so committed.
Thanks
Nelson
On Thu, Jul 7, 2022 at 11:02 AM Kito Cheng <kito.cheng@gmail.com> wrote:
>
> LGTM
>
> On Fri, Jun 24, 2022 at 11:52 AM Tsukasa OI via Binutils
> <binutils@sourceware.org> wrote:
> >
> > This commit fixes how instructions are masked on Zhinx+Z{d,q}inx.
> > fcvt.h.d and fcvt.d.h require ((D&&Zfh)||(Zdinx&&Zhinx)) and
> > fcvt.h.q and fcvt.q.h require ((Q&&Zfh)||(Zqinx&&Zhinx)).
> >
> > bfd/ChangeLog:
> >
> > * elfxx-riscv.c (riscv_multi_subset_supports): Fix feature gate
> > on INSN_CLASS_{D,Q}_AND_ZFH_INX.
> > (riscv_multi_subset_supports_ext): Fix feature gate diagnostics
> > on INSN_CLASS_{D,Q}_AND_ZFH_INX.
> >
> > gas/ChangeLog:
> >
> > * testsuite/gas/riscv/fp-zhinx-insns.d: Add Zqinx to -march
> > for proper testing.
> > ---
> > bfd/elfxx-riscv.c | 30 ++++++++++++++++++++----
> > gas/testsuite/gas/riscv/fp-zhinx-insns.d | 2 +-
> > 2 files changed, 26 insertions(+), 6 deletions(-)
> >
> > diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c
> > index f920e0ce9ff..308516c3e60 100644
> > --- a/bfd/elfxx-riscv.c
> > +++ b/bfd/elfxx-riscv.c
> > @@ -2337,15 +2337,17 @@ riscv_multi_subset_supports (riscv_parse_subset_t *rps,
> > return riscv_subset_supports (rps, "zfh");
> > case INSN_CLASS_ZFH_OR_ZHINX:
> > return riscv_subset_supports (rps, "zfh")
> > - || riscv_subset_supports (rps, "zhinx");
> > + || riscv_subset_supports (rps, "zhinx");
> > case INSN_CLASS_D_AND_ZFH_INX:
> > return (riscv_subset_supports (rps, "d")
> > && riscv_subset_supports (rps, "zfh"))
> > - || riscv_subset_supports (rps, "zhinx");
> > + || (riscv_subset_supports (rps, "zdinx")
> > + && riscv_subset_supports (rps, "zhinx"));
> > case INSN_CLASS_Q_AND_ZFH_INX:
> > return (riscv_subset_supports (rps, "q")
> > && riscv_subset_supports (rps, "zfh"))
> > - || riscv_subset_supports (rps, "zhinx");
> > + || (riscv_subset_supports (rps, "zqinx")
> > + && riscv_subset_supports (rps, "zhinx"));
> > case INSN_CLASS_ZBA:
> > return riscv_subset_supports (rps, "zba");
> > case INSN_CLASS_ZBB:
> > @@ -2492,9 +2494,27 @@ riscv_multi_subset_supports_ext (riscv_parse_subset_t *rps,
> > case INSN_CLASS_ZFH_OR_ZHINX:
> > return _("zfh' or 'zhinx");
> > case INSN_CLASS_D_AND_ZFH_INX:
> > - return _("('d' and 'zfh') or 'zhinx");
> > + if (riscv_subset_supports (rps, "zfh"))
> > + return "d";
> > + else if (riscv_subset_supports (rps, "d"))
> > + return "zfh";
> > + else if (riscv_subset_supports (rps, "zhinx"))
> > + return "zdinx";
> > + else if (riscv_subset_supports (rps, "zdinx"))
> > + return "zhinx";
> > + else
> > + return _("zfh' and `d', or `zhinx' and `zdinx");
> > case INSN_CLASS_Q_AND_ZFH_INX:
> > - return _("('q' and 'zfh') or 'zhinx");
> > + if (riscv_subset_supports (rps, "zfh"))
> > + return "q";
> > + else if (riscv_subset_supports (rps, "q"))
> > + return "zfh";
> > + else if (riscv_subset_supports (rps, "zhinx"))
> > + return "zqinx";
> > + else if (riscv_subset_supports (rps, "zqinx"))
> > + return "zhinx";
> > + else
> > + return _("zfh' and `q', or `zhinx' and `zqinx");
> > case INSN_CLASS_H:
> > return _("h");
> > default:
> > diff --git a/gas/testsuite/gas/riscv/fp-zhinx-insns.d b/gas/testsuite/gas/riscv/fp-zhinx-insns.d
> > index 6e1c40e65f5..2592d8c74e2 100644
> > --- a/gas/testsuite/gas/riscv/fp-zhinx-insns.d
> > +++ b/gas/testsuite/gas/riscv/fp-zhinx-insns.d
> > @@ -1,4 +1,4 @@
> > -#as: -march=rv64ima_zhinx
> > +#as: -march=rv64ima_zqinx_zhinx
> > #source: fp-zhinx-insns.s
> > #objdump: -dr
> >
> > --
> > 2.34.1
> >
More information about the Binutils
mailing list