For "msbu", subtract unsigned product from ACC,

Test.
This commit is contained in:
Andrew Cagney 1997-12-02 07:18:53 +00:00
parent 9420287ed2
commit d294a657d5
6 changed files with 40 additions and 5 deletions

View 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>

View 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);
}

View 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

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

View 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 \

View file

@ -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