summaryrefslogtreecommitdiff
path: root/arch/mips/isa_traits.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2006-04-27 16:44:12 -0400
committerKorey Sewell <ksewell@umich.edu>2006-04-27 16:44:12 -0400
commit316f1f323913482e02f992f9b38a873bbf8588e6 (patch)
tree50d84a5174b8a1c383d25aa4954d89a45b2d207c /arch/mips/isa_traits.hh
parent07d4ad4dbed164818bf7e643c362475084a33d15 (diff)
downloadgem5-316f1f323913482e02f992f9b38a873bbf8588e6.tar.xz
change readPC() + 4 to readNextPC() and the same for NNPC ...
arch/mips/isa/decoder.isa: remove useless cout statements arch/mips/isa_traits.hh: space --HG-- extra : convert_revision : 8b8cf5df6fc3eb92598360343eb887c35cda202d
Diffstat (limited to 'arch/mips/isa_traits.hh')
-rw-r--r--arch/mips/isa_traits.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/isa_traits.hh b/arch/mips/isa_traits.hh
index 2403782d0..e5de675cf 100644
--- a/arch/mips/isa_traits.hh
+++ b/arch/mips/isa_traits.hh
@@ -253,6 +253,7 @@ namespace MipsISA
uint32_t result32;
memcpy(&result32, regSpace + 4 * floatReg, FloatRegSize);
return htog(result32);
+
case DoubleWidth:
uint64_t result64;
memcpy(&result64, regSpace + 4 * floatReg, DoubleRegSize);
@@ -314,6 +315,8 @@ namespace MipsISA
return NoFault;
}
+
+
void serialize(std::ostream &os);
void unserialize(Checkpoint *cp, const std::string &section);