public inbox for binutils-cvs@sourceware.org
 help / color / mirror / Atom feed
* [binutils-gdb] aarch64: Treat operand ADDR_SIMPLE as address with base register
@ 2024-06-25 15:27 Jens Remus
  0 siblings, 0 replies; only message in thread
From: Jens Remus @ 2024-06-25 15:27 UTC (permalink / raw)
  To: binutils-cvs

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

commit da47588db1b25c7bc953953895d37e4a9e7239a8
Author: Jens Remus <jremus@linux.ibm.com>
Date:   Tue Jun 25 17:25:55 2024 +0200

    aarch64: Treat operand ADDR_SIMPLE as address with base register
    
    The AArch64 instruction table (aarch64-tbl.h) defines the operand
    ADDR_SIMPLE as "address with base register (no offset)". During assembly
    it is correctly encoded as address with base register (addr.base_regno)
    in parse_operands. In warn_unpredictable_ldst it is erroneously treated
    as register number (reg.regno).
    
    This resolves the assembler test case "Diagnostics Quality" to
    erroneously fail when changing the union in struct aarch64_opnd_info
    from union to struct for debugging purposes.
    
    gas/
            * config/tc-aarch64.c: Treat operand ADDR_SIMPLE as address with
            base register.
    
    Signed-off-by: Jens Remus <jremus@linux.ibm.com>

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

diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index ad4dd576174..5d15ee9fc02 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -8509,7 +8509,7 @@ warn_unpredictable_ldst (aarch64_instruction *instr, char *str)
 		  (_("unpredictable: identical transfer and status registers"
 		     " --`%s'"),str);
 
-	      if (opnds[0].reg.regno == opnds[2].reg.regno)
+	      if (opnds[0].reg.regno == opnds[2].addr.base_regno)
 		{
 		  if (!(opcode->opcode & (1 << 21)))
 	            /*  Store-Exclusive is unpredictable if Rn == Rs.  */
@@ -8526,8 +8526,8 @@ warn_unpredictable_ldst (aarch64_instruction *instr, char *str)
 
 	      /* Store-Exclusive pair is unpredictable if Rn == Rs.  */
 	      if ((opcode->opcode & (1 << 21))
-		  && opnds[0].reg.regno == opnds[3].reg.regno
-		  && opnds[3].reg.regno != REG_SP)
+		  && opnds[0].reg.regno == opnds[3].addr.base_regno
+		  && opnds[3].addr.base_regno != REG_SP)
 		as_warn (_("unpredictable: identical base and status registers"
 			   " --`%s'"),str);
 	    }

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

only message in thread, other threads:[~2024-06-25 15:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-25 15:27 [binutils-gdb] aarch64: Treat operand ADDR_SIMPLE as address with base register Jens Remus

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