diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-04-27 16:44:12 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-04-27 16:44:12 -0400 |
commit | 316f1f323913482e02f992f9b38a873bbf8588e6 (patch) | |
tree | 50d84a5174b8a1c383d25aa4954d89a45b2d207c /arch/mips/isa_traits.hh | |
parent | 07d4ad4dbed164818bf7e643c362475084a33d15 (diff) | |
download | gem5-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.hh | 3 |
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 §ion); |