From: Nick Clifton Date: Fri, 1 Oct 2004 11:19:38 +0000 (+0000) Subject: Fixes for the encoding and decoding of the PDP11's SOB instruction X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=14127cc4f2b98a818bef55c977eb3ea11b0ba5ce;p=deliverable%2Fbinutils-gdb.git Fixes for the encoding and decoding of the PDP11's SOB instruction --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 3efc2909ef..c328820bdc 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2004-10-01 Bill Farmer + + * config/tc-pdp11.c (md_apply_fix3): Change to sign of the SOB + instruction's offset. + 2004-10-01 Adam Nemet * (TARGET_FORMAT): Remove LynxOS COFF definition. diff --git a/gas/config/tc-pdp11.c b/gas/config/tc-pdp11.c index f34adf69d6..4993fdd124 100644 --- a/gas/config/tc-pdp11.c +++ b/gas/config/tc-pdp11.c @@ -1,5 +1,5 @@ /* tc-pdp11.c - pdp11-specific - - Copyright 2001, 2002 Free Software Foundation, Inc. + Copyright 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -199,6 +199,7 @@ md_apply_fix3 (fixP, valP, seg) case BFD_RELOC_PDP11_DISP_6_PCREL: mask = 0x003f; shift = 1; + val = -val; break; default: BAD_CASE (fixP->fx_r_type); diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index e7cd66c2c5..623e629f82 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-10-01 Bill Farmer + + * gas/pdp11/opcode.d: Fix sob opcode value. + 2004-09-30 Paul Brook * gas/arm/arch6zk.d: New file. diff --git a/gas/testsuite/gas/pdp11/opcode.d b/gas/testsuite/gas/pdp11/opcode.d index 2e6a981fc7..4b81857dc2 100644 --- a/gas/testsuite/gas/pdp11/opcode.d +++ b/gas/testsuite/gas/pdp11/opcode.d @@ -134,7 +134,7 @@ Disassembly of section .text: 108: 7c7f [ ]*cvtlpi 10a: 7d80 [ ]*med 10c: 7dea [ ]*xfc 52 - 10e: 7e3e [ ]*sob r0, 10c + 10e: 7e02 [ ]*sob r0, 10c 110: 80fd [ ]*bpl 10c 112: 81fc [ ]*bmi 10c 114: 82fb [ ]*bhi 10c diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index cf49121abe..2dde35383c 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2004-10-01 Bill Farmer + + * pdp11-dis.c (print_insn_pdp11): Subtract the SOB's displacement + rather than add it. + 2004-09-30 Paul Brook * arm-dis.c (print_insn_arm): Handle 'e' for SMI instruction. diff --git a/opcodes/pdp11-dis.c b/opcodes/pdp11-dis.c index 4f5bf84aea..1756e53b7d 100644 --- a/opcodes/pdp11-dis.c +++ b/opcodes/pdp11-dis.c @@ -342,7 +342,8 @@ print_insn_pdp11 (memaddr, info) case PDP11_OPCODE_REG_DISPL: { int displ = (opcode & 0x3f) << 10; - bfd_vma address = memaddr + (sign_extend (displ) >> 9); + bfd_vma address = memaddr - (displ >> 9); + FPRINTF (F, OP.name); FPRINTF (F, AFTER_INSTRUCTION); print_reg (src, info);