public inbox for binutils-cvs@sourceware.org
 help / color / mirror / Atom feed
* [binutils-gdb] aarch64: Add REG_TYPE_ZATHV
@ 2023-03-30 10:11 Richard Sandiford
  0 siblings, 0 replies; only message in thread
From: Richard Sandiford @ 2023-03-30 10:11 UTC (permalink / raw)
  To: bfd-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=83dbd40dea2a00be854e4ffe204b9d456fcca17e

commit 83dbd40dea2a00be854e4ffe204b9d456fcca17e
Author: Richard Sandiford <richard.sandiford@arm.com>
Date:   Thu Mar 30 11:09:03 2023 +0100

    aarch64: Add REG_TYPE_ZATHV
    
    This patch adds a multi-register type that includes both REG_TYPE_ZATH
    and REG_TYPE_ZATV.  This slightly simplifies the existing code, but the
    main purpose is to enable later patches.

Diff:
---
 gas/config/tc-aarch64.c | 23 +++++++++--------------
 1 file changed, 9 insertions(+), 14 deletions(-)

diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index c8b4129202c..98091f564d9 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -326,6 +326,8 @@ struct reloc_entry
   MULTI_REG_TYPE(R_N, REG_TYPE(R_32) | REG_TYPE(R_64)			\
 		 | REG_TYPE(SP_32) | REG_TYPE(SP_64)			\
 		 | REG_TYPE(Z_32) | REG_TYPE(Z_64))			\
+  /* A horizontal or vertical slice of a ZA tile.  */			\
+  MULTI_REG_TYPE(ZATHV, REG_TYPE(ZATH) | REG_TYPE(ZATV))		\
   /* Pseudo type to mark the end of the enumerator sequence.  */	\
   BASIC_REG_TYPE(MAX)
 
@@ -4248,7 +4250,7 @@ parse_reg_with_qual (char **str, aarch64_reg_type reg_type,
   char *q;
 
   reg_entry *reg = parse_reg (str);
-  if (reg != NULL && reg->type == reg_type)
+  if (reg != NULL && aarch64_check_reg_type (reg, reg_type))
     {
       if (!skip_past_char (str, '.'))
         {
@@ -4440,26 +4442,19 @@ parse_sme_za_hv_tiles_operand (char **str,
                                int *imm,
                                aarch64_opnd_qualifier_t *qualifier)
 {
-  char *qh, *qv;
   int regno;
   int regno_limit;
   int64_t imm_limit;
   int64_t imm_value;
   const reg_entry *reg;
 
-  qh = qv = *str;
-  if ((reg = parse_reg_with_qual (&qh, REG_TYPE_ZATH, qualifier)) != NULL)
-    {
-      *slice_indicator = HV_horizontal;
-      *str = qh;
-    }
-  else if ((reg = parse_reg_with_qual (&qv, REG_TYPE_ZATV, qualifier)) != NULL)
-    {
-      *slice_indicator = HV_vertical;
-      *str = qv;
-    }
-  else
+  reg = parse_reg_with_qual (str, REG_TYPE_ZATHV, qualifier);
+  if (!reg)
     return PARSE_FAIL;
+
+  *slice_indicator = (aarch64_check_reg_type (reg, REG_TYPE_ZATH)
+		      ? HV_horizontal
+		      : HV_vertical);
   regno = reg->number;
 
   switch (*qualifier)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-03-30 10:11 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-30 10:11 [binutils-gdb] aarch64: Add REG_TYPE_ZATHV Richard Sandiford

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