]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* armemu.c (ARMul_Emulate): Compute writeback value before
authorAlexandre Oliva <aoliva@redhat.com>
Tue, 4 Jul 2000 05:30:43 +0000 (05:30 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Tue, 4 Jul 2000 05:30:43 +0000 (05:30 +0000)
loading, since the offset register may be the destination
register.

sim/arm/ChangeLog
sim/arm/armemu.c

index 0e96893ce474fc90eaecee17cfc0d4f888b7ed27..139256da2983eb8c5ce1875a915be3494a1b5c3f 100644 (file)
@@ -1,5 +1,9 @@
 2000-07-04  Alexandre Oliva  <aoliva@redhat.com>
 
+       * armemu.c (ARMul_Emulate): Compute writeback value before
+       loading, since the offset register may be the destination
+       register.
+
        * armdefs.h (SYSTEMBANK): Define as USERBANK.
        * armsupp.c (ARMul_SwitchMode): Remove SYSTEMBANK cases.
 
index e4e963ba3c85a08448f2c949f078e94730e85fec..ffdcaa72b95dfeda4acca59d43308f4806dfe526 100644 (file)
@@ -1998,8 +1998,9 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs - LSRegRHS;
              if (LoadWord (state, instr, lhs))
-               LSBase = lhs - LSRegRHS;
+               LSBase = temp;
              break;
 
            case 0x62:          /* Store Word, WriteBack, Post Dec, Reg */
@@ -2030,9 +2031,10 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs - LSRegRHS;
              state->NtransSig = LOW;
              if (LoadWord (state, instr, lhs))
-               LSBase = lhs - LSRegRHS;
+               LSBase = temp;
              state->NtransSig = (state->Mode & 3) ? HIGH : LOW;
              break;
 
@@ -2062,8 +2064,9 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs - LSRegRHS;
              if (LoadByte (state, instr, lhs, LUNSIGNED))
-               LSBase = lhs - LSRegRHS;
+               LSBase = temp;
              break;
 
            case 0x66:          /* Store Byte, WriteBack, Post Dec, Reg */
@@ -2094,9 +2097,10 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs - LSRegRHS;
              state->NtransSig = LOW;
              if (LoadByte (state, instr, lhs, LUNSIGNED))
-               LSBase = lhs - LSRegRHS;
+               LSBase = temp;
              state->NtransSig = (state->Mode & 3) ? HIGH : LOW;
              break;
 
@@ -2126,8 +2130,9 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs + LSRegRHS;
              if (LoadWord (state, instr, lhs))
-               LSBase = lhs + LSRegRHS;
+               LSBase = temp;
              break;
 
            case 0x6a:          /* Store Word, WriteBack, Post Inc, Reg */
@@ -2158,9 +2163,10 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs + LSRegRHS;
              state->NtransSig = LOW;
              if (LoadWord (state, instr, lhs))
-               LSBase = lhs + LSRegRHS;
+               LSBase = temp;
              state->NtransSig = (state->Mode & 3) ? HIGH : LOW;
              break;
 
@@ -2190,8 +2196,9 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs + LSRegRHS;
              if (LoadByte (state, instr, lhs, LUNSIGNED))
-               LSBase = lhs + LSRegRHS;
+               LSBase = temp;
              break;
 
            case 0x6e:          /* Store Byte, WriteBack, Post Inc, Reg */
@@ -2222,9 +2229,10 @@ ARMul_Emulate26 (register ARMul_State * state)
              UNDEF_LSRPCBaseWb;
              UNDEF_LSRPCOffWb;
              lhs = LHS;
+             temp = lhs + LSRegRHS;
              state->NtransSig = LOW;
              if (LoadByte (state, instr, lhs, LUNSIGNED))
-               LSBase = lhs + LSRegRHS;
+               LSBase = temp;
              state->NtransSig = (state->Mode & 3) ? HIGH : LOW;
              break;