summaryrefslogtreecommitdiff
path: root/src/arch/mips/tlb.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-27 18:29:15 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-27 18:29:15 -0700
commit8253ff2ba908779a6f8b59e9438b03c2c0407b51 (patch)
tree6d76674b2c40881c2a9cd0e83ddc56d3d8032c78 /src/arch/mips/tlb.cc
parent25ad253643a4348f72e98094f75163a7a2325e72 (diff)
downloadgem5-8253ff2ba908779a6f8b59e9438b03c2c0407b51.tar.xz
MIPS: Fixes to get mips to compile.
--HG-- extra : convert_revision : 23561eda853a51046ae56c23a88466230c3e83f2
Diffstat (limited to 'src/arch/mips/tlb.cc')
-rw-r--r--src/arch/mips/tlb.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/mips/tlb.cc b/src/arch/mips/tlb.cc
index dab63c82f..71111b843 100644
--- a/src/arch/mips/tlb.cc
+++ b/src/arch/mips/tlb.cc
@@ -35,6 +35,17 @@
#include "params/MipsITB.hh"
namespace MipsISA {
+ void
+ TlbEntry::serialize(std::ostream &os)
+ {
+ SERIALIZE_SCALAR(pageStart);
+ }
+
+ void
+ TlbEntry::unserialize(Checkpoint *cp, const std::string &section)
+ {
+ UNSERIALIZE_SCALAR(pageStart);
+ }
};
MipsISA::ITB *