summaryrefslogtreecommitdiff
path: root/sim/mips/interp.c
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@redhat.com>2000-03-02 18:14:02 +0000
committerFrank Ch. Eigler <fche@redhat.com>2000-03-02 18:14:02 +0000
commita3027dd7480cbc4d681fa75bcd3ca2cabc6022a4 (patch)
treecbd440a67d91151efdef83c66d9cd40d273bc040 /sim/mips/interp.c
parent58fddbac5a7cfd4404994be8d2a59dc8d72d7259 (diff)
downloadbinutils-gdb-a3027dd7480cbc4d681fa75bcd3ca2cabc6022a4.tar.gz
* autoconf correction
* merge from internal repo -> sourceware 2000-03-02 Frank Ch. Eigler <fche@redhat.com> * configure: Regenerated. Tue Feb 8 18:35:01 2000 Donald Lindsay <dlindsay@hound.cygnus.com> * interp.c, mips.igen: all 5 DEADC0DE situations now have sim_io_eprintf calls, conditional on the simulator being in verbose mode.
Diffstat (limited to 'sim/mips/interp.c')
-rw-r--r--sim/mips/interp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sim/mips/interp.c b/sim/mips/interp.c
index a056a01cc13..d8446fd2801 100644
--- a/sim/mips/interp.c
+++ b/sim/mips/interp.c
@@ -2078,6 +2078,9 @@ store_fpr (SIM_DESC sd,
fmt = fmt_uninterpreted;
case fmt_single :
case fmt_word :
+ if (STATE_VERBOSE_P(SD))
+ sim_io_eprintf (SD, "Warning: PC 0x%s: interp.c store_fpr DEADCODE\n",
+ pr_addr(cia));
FGR[fpr] = (((uword64)0xDEADC0DE << 32) | (value & 0xFFFFFFFF));
FPR_STATE[fpr] = fmt;
break;
@@ -3225,6 +3228,10 @@ decode_coproc (SIM_DESC sd,
/* 28 = TagLo R4000 VR4100 VR4300 */
/* 29 = TagHi R4000 VR4100 VR4300 */
/* 30 = ErrorEPC R4000 VR4100 VR4300 */
+ if (STATE_VERBOSE_P(SD))
+ sim_io_eprintf (SD,
+ "Warning: PC 0x%s:interp.c decode_coproc DEADC0DE\n",
+ (unsigned)cia);
GPR[rt] = 0xDEADC0DE; /* CPR[0,rd] */
/* CPR[0,rd] = GPR[rt]; */
default: