]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
For "msbu", subtract unsigned product from ACC,
authorAndrew Cagney <cagney@redhat.com>
Tue, 2 Dec 1997 07:18:53 +0000 (07:18 +0000)
committerAndrew Cagney <cagney@redhat.com>
Tue, 2 Dec 1997 07:18:53 +0000 (07:18 +0000)
Test.

sim/d10v/ChangeLog
sim/d10v/simops.c
sim/testsuite/d10v-elf/.Sanitize
sim/testsuite/d10v-elf/ChangeLog
sim/testsuite/d10v-elf/Makefile.in
sim/testsuite/d10v-elf/t-msbu.s [new file with mode: 0644]

index b1a9568510a8f9e564780d35779ab5bd5dea6e5e..013b93d179dd97859cc442776b96ead9808e3f49 100644 (file)
@@ -3,6 +3,7 @@ Tue Dec  2 15:01:08 1997  Andrew Cagney  <cagney@b1.cygnus.com>
        * simops.c (OP_3A00): For "macu", perform multiply stage using 32
        bit rather than 16 bit precision.
        (OP_3C00): For "mulxu", store unsigned product in ACC.
+       (OP_3800): For "msbu", subtract unsigned product from ACC,
 
 Tue Dec  2 11:04:37 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
index e5a0825b91b6fef1f121af376c143026650ff8cc..64c8a33f1efef8de4f1d56bb02174b3ec1aa64e4 100644 (file)
@@ -1518,14 +1518,18 @@ OP_1800 ()
 void
 OP_3800 ()
 {
-  int64 tmp;
+  uint64 tmp;
+  uint32 src1;
+  uint32 src2;
 
   trace_input ("msbu", OP_ACCUM, OP_REG, OP_REG);
-  tmp = SEXT40 (State.regs[OP[1]] * State.regs[OP[2]]);
+  src1 = (uint16) State.regs[OP[1]];
+  src2 = (uint16) State.regs[OP[2]];
+  tmp = src1 * src2;
   if (State.FX)
-    tmp = SEXT40( (tmp << 1) & MASK40);
+    tmp = (tmp << 1);
 
-  State.a[OP[0]] = (SEXT40 (State.a[OP[0]]) - tmp) & MASK40;
+  State.a[OP[0]] = (State.a[OP[0]] - tmp) & MASK40;
   trace_output (OP_ACCUM);
 }
 
index f5b7cc61f770a6aeca286e35c989a963e3bb7f9d..5ca3dd479a0f61cfdab39899cc675073d1f5943c 100644 (file)
@@ -11,6 +11,7 @@ hello.s
 loop.s
 t-macros.i
 t-mac.s
+t-msbu.s
 t-rachi.s
 t-rep.s
 t-mulxu.s
index fc34fc1e5106a23b866f30436da76679be931693..a6f0854420b4dd056799f61134b977bdf33f2743 100644 (file)
@@ -1,6 +1,6 @@
 Tue Dec  2 11:01:36 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
-       * t-sub2w.s, t-mulxu.s, t-mac.s t-mvtac.s : New files.
+       * t-sub2w.s, t-mulxu.s, t-mac.s, t-mvtac.s, t-msbu.s: New files.
        
        * Makefile.in: Update.
 
index d358327cc393478675cfc2c41d3f76bbb1876324..c89ffb2d84933554775499c7777ad023bdbbb7c4 100644 (file)
@@ -42,6 +42,7 @@ TESTS = \
        hello.hi \
        t-mac.ok \
        t-mvtac.ok \
+       t-msbu.ok \
        t-mulxu.ok \
        t-rachi.ok \
        t-rep.ok \
diff --git a/sim/testsuite/d10v-elf/t-msbu.s b/sim/testsuite/d10v-elf/t-msbu.s
new file mode 100644 (file)
index 0000000..04276cc
--- /dev/null
@@ -0,0 +1,28 @@
+.include "t-macros.i"
+
+       start
+
+       ;; clear FX
+       ldi r2, #0x8005
+       mvtc r2, cr0
+
+       loadacc2 a1 0x7f 0xffff 0xffff
+       ldi r8, 0xffff
+       ldi r9, 0x8001
+test_msbu1:
+       MSBU a1, r9, r8
+       checkacc2 1 a1 0X7F 0x7FFF 0x8000
+
+       
+       ;; set FX
+       ldi r2, #0x8085
+       mvtc r2, cr0
+
+       loadacc2 a1 0x7f 0xffff 0xffff
+       ldi r8, 0xffff
+       ldi r9, 0x8001
+test_msbu2:
+       MSBU a1, r9, r8
+       checkacc2 2 a1 0X7E 0xFFFF 0x0001
+
+       exit0