aboutsummaryrefslogtreecommitdiff
path: root/sim/mips
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1997-02-18 22:15:04 +0000
committerGavin Romig-Koch <gavin@redhat.com>1997-02-18 22:15:04 +0000
commit2d18fbc6689ec164d7e1d018914d1f091fb2ec51 (patch)
tree6b624d6de948a360cc2f0406c78d7f53e8988a01 /sim/mips
parent6e5d087d12856a47a35629baffa6b7e3f48fb35a (diff)
downloadgdb-2d18fbc6689ec164d7e1d018914d1f091fb2ec51.zip
gdb-2d18fbc6689ec164d7e1d018914d1f091fb2ec51.tar.gz
gdb-2d18fbc6689ec164d7e1d018914d1f091fb2ec51.tar.bz2
Correct flags for PMADDUW insn
Diffstat (limited to 'sim/mips')
-rw-r--r--sim/mips/ChangeLog20
-rw-r--r--sim/mips/gencode.c2
2 files changed, 17 insertions, 5 deletions
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog
index 961eaa1..d6e147d 100644
--- a/sim/mips/ChangeLog
+++ b/sim/mips/ChangeLog
@@ -1,9 +1,21 @@
start-sanitize-r5900
+Tue Feb 18 17:03:47 1997 Gavin Koch <gavin@cetus.cygnus.com>
+
+ * gencode.c (MIPS_DECODE): Correct instruction feature flags for
+ PMADDUW.
+
+end-sanitize-r5900
+Thu Feb 13 14:08:30 1997 Ian Lance Taylor <ian@cygnus.com>
+
+ * gencode.c (build_mips16_operands): Correct computation of base
+ address for extended PC relative instruction.
+
+start-sanitize-r5900
Fri Feb 7 11:12:44 1997 Gavin Koch <gavin@cygnus.com>
-
- * Makefile.in, configure, configure.in, gencode.c,
- interp.c, support.h: add r5900.
-
+
+ * Makefile.in, configure, configure.in, gencode.c,
+ interp.c, support.h: add r5900.
+
end-sanitize-r5900
Thu Feb 6 17:16:15 1997 Ian Lance Taylor <ian@cygnus.com>
diff --git a/sim/mips/gencode.c b/sim/mips/gencode.c
index f5541fb..9ae77c3 100644
--- a/sim/mips/gencode.c
+++ b/sim/mips/gencode.c
@@ -709,7 +709,7 @@ struct instruction MIPS_DECODE[] = {
{"PLZCW", T5,"011100SSSSS00000ddddd00000000100",MMINORM,PLZCW, (NONE)},
{"PMADDH", T5,"011100SSSSSTTTTTddddd10000001001",MMI2, PMULTH, (ADDITION)},
- {"PMADDUW",T5,"011100SSSSSTTTTTddddd00000101001",MMI3, PMULTW, (UNSIGNED)},
+ {"PMADDUW",T5,"011100SSSSSTTTTTddddd00000101001",MMI3, PMULTW, (ADDITION | UNSIGNED)},
{"PMADDW", T5,"011100SSSSSTTTTTddddd00000001001",MMI2, PMULTW, (ADDITION)},
{"PMAXH", T5,"011100SSSSSTTTTTddddd00111001000",MMI0, PMAXMIN, (GT | HALFWORD)},