2002-06-12 Chris Demetriou <cgd@broadcom.com>
authorChris Demetriou <cgd@google.com>
Wed, 12 Jun 2002 23:20:56 +0000 (23:20 +0000)
committerChris Demetriou <cgd@google.com>
Wed, 12 Jun 2002 23:20:56 +0000 (23:20 +0000)
        * mips.igen (MOVN, MOVZ): Trace result.
        (TNEI): Print "tnei" as the opcode name in traces.
        (CEIL.W): Add disassembly string for traces.
        (RSQRT.fmt): Make location of disassembly string consistent
        with other instructions.

sim/mips/ChangeLog
sim/mips/mips.igen

index 6c11e30..58f3fa7 100644 (file)
@@ -1,5 +1,13 @@
 2002-06-12  Chris Demetriou  <cgd@broadcom.com>
 
+       * mips.igen (MOVN, MOVZ): Trace result.
+       (TNEI): Print "tnei" as the opcode name in traces.
+       (CEIL.W): Add disassembly string for traces.
+       (RSQRT.fmt): Make location of disassembly string consistent
+       with other instructions.
+
+2002-06-12  Chris Demetriou  <cgd@broadcom.com>
+
        * mips.igen (X): Delete unused function.
 
 2002-06-08  Andrew Cagney  <cagney@redhat.com>
index 53f4218..e3a53ef 100644 (file)
 *vr5000:
 {
   if (GPR[RT] != 0)
-    GPR[RD] = GPR[RS];
+    {
+      GPR[RD] = GPR[RS];
+      TRACE_ALU_RESULT (GPR[RD]);
+    }
 }
 
 
 *vr5000:
 {
   if (GPR[RT] == 0)
-    GPR[RD] = GPR[RS];
+    {
+      GPR[RD] = GPR[RS];
+      TRACE_ALU_RESULT (GPR[RD]);
+    }
 }
 
 
 
 
 000001,5.RS,01110,16.IMMEDIATE:REGIMM:32::TNEI
-"tne r<RS>, <IMMEDIATE>"
+"tnei r<RS>, <IMMEDIATE>"
 *mipsII:
 *mipsIII:
 *mipsIV:
 
 
 010001,10,3.FMT,00000,5.FS,5.FD,001110:COP1:32,f::CEIL.W
+"ceil.w.%s<FMT> f<FD>, f<FS>"
 *mipsII:
 *mipsIII:
 *mipsIV:
 
 
 010001,10,3.FMT,00000,5.FS,5.FD,010110:COP1:32,f::RSQRT.fmt
+"rsqrt.%s<FMT> f<FD>, f<FS>"
 *mipsIV:
 *mipsV:
 *mips64:
-"rsqrt.%s<FMT> f<FD>, f<FS>"
 *vr5000:
 {
   int fmt = FMT;