diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-06-18 19:44:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-06-18 19:44:14 +0000 |
commit | f2a56d0ad70bc43ea8c56272ea1d5261b2028cb5 (patch) | |
tree | 7c1e1e97bb4ca5a2399bb7c47ef0d9ef057426eb /sim/bfin/bfin-sim.c | |
parent | ef26d60eba5736240c27c545e275667bb4b0fbd1 (diff) | |
download | gdb-f2a56d0ad70bc43ea8c56272ea1d5261b2028cb5.zip gdb-f2a56d0ad70bc43ea8c56272ea1d5261b2028cb5.tar.gz gdb-f2a56d0ad70bc43ea8c56272ea1d5261b2028cb5.tar.bz2 |
sim: bfin: handle the MM flag in M_IU/M_TFU modes with dsp insns
Our handling of the M_IU/M_TFU modes are missing signed saturation when
the MM flag is set, so add it to match the hardware behavior.
Signed-off-by: Robin Getz <robin.getz@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/bfin/bfin-sim.c')
-rw-r--r-- | sim/bfin/bfin-sim.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sim/bfin/bfin-sim.c b/sim/bfin/bfin-sim.c index 017ddca..71fda3e 100644 --- a/sim/bfin/bfin-sim.c +++ b/sim/bfin/bfin-sim.c @@ -1516,6 +1516,8 @@ extract_mult (SIM_CPU *cpu, bu64 res, int mmod, int MM, case M_IS: return saturate_s32 (res, overflow); case M_IU: + if (MM) + return saturate_s32 (res, overflow); return saturate_u32 (res, overflow); case M_FU: if (MM) @@ -1559,6 +1561,8 @@ extract_mult (SIM_CPU *cpu, bu64 res, int mmod, int MM, case M_T: return saturate_s16 (trunc16 (res), overflow); case M_TFU: + if (MM) + return saturate_s16 (trunc16 (res), overflow); return saturate_u16 (trunc16 (res), overflow); case M_S2RND: |