summaryrefslogtreecommitdiff
path: root/cpu/simple_cpu/simple_cpu.cc
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2003-10-29 13:35:18 -0800
committerSteve Reinhardt <stever@eecs.umich.edu>2003-10-29 13:35:18 -0800
commit71c11d063179e97529e6538fd790c5c28513a388 (patch)
tree6c8169a1f356548f4528e9526553ac5c56687d59 /cpu/simple_cpu/simple_cpu.cc
parentb45a0808aaa26176e094e98a0cde9ec7de5f290b (diff)
parentaf5277a6784ed6a8e4671dfa79b1346bed687ae1 (diff)
downloadgem5-71c11d063179e97529e6538fd790c5c28513a388.tar.xz
Merge zizzer:/bk/m5 into isabel.reinhardt.house:/z/stever/ser/m5
--HG-- extra : convert_revision : abe99bd7f4632eea51fba97273ac024f81b0ddae
Diffstat (limited to 'cpu/simple_cpu/simple_cpu.cc')
-rw-r--r--cpu/simple_cpu/simple_cpu.cc41
1 files changed, 33 insertions, 8 deletions
diff --git a/cpu/simple_cpu/simple_cpu.cc b/cpu/simple_cpu/simple_cpu.cc
index 27576d558..3179b7b1f 100644
--- a/cpu/simple_cpu/simple_cpu.cc
+++ b/cpu/simple_cpu/simple_cpu.cc
@@ -75,8 +75,26 @@
using namespace std;
+SimpleCPU::TickEvent::TickEvent(SimpleCPU *c)
+ : Event(&mainEventQueue, "SimpleCPU::TickEvent", 100), cpu(c)
+{
+}
+
+void
+SimpleCPU::TickEvent::process()
+{
+ cpu->tick();
+}
+
+const char *
+SimpleCPU::TickEvent::description()
+{
+ return "SimpleCPU tick event";
+}
+
+
SimpleCPU::CacheCompletionEvent::CacheCompletionEvent(SimpleCPU *_cpu)
- : Event(&mainEventQueue),
+ : Event(&mainEventQueue, "SimpleCPU::CacheCompletionEvent"),
cpu(_cpu)
{
}
@@ -89,7 +107,7 @@ void SimpleCPU::CacheCompletionEvent::process()
const char *
SimpleCPU::CacheCompletionEvent::description()
{
- return "cache completion event";
+ return "SimpleCPU cache completion event";
}
#ifdef FULL_SYSTEM
@@ -242,17 +260,24 @@ SimpleCPU::regStats()
void
SimpleCPU::serialize(ostream &os)
{
+ SERIALIZE_ENUM(_status);
+ SERIALIZE_SCALAR(inst);
xc->serialize(os);
+ nameOut(os, csprintf("%s.tickEvent", name()));
+ tickEvent.serialize(os);
+ nameOut(os, csprintf("%s.cacheCompletionEvent", name()));
+ cacheCompletionEvent.serialize(os);
}
void
-SimpleCPU::unserialize(const IniFile *db, const string &category)
+SimpleCPU::unserialize(const IniFile *db, const string &section)
{
- xc->unserialize(db, category);
-
- // Read in Special registers
-
- // CPUTraitsType::unserializeSpecialRegs(db,category,node,xc->regs);
+ UNSERIALIZE_ENUM(_status);
+ UNSERIALIZE_SCALAR(inst);
+ xc->unserialize(db, section);
+ tickEvent.unserialize(db, csprintf("%s.tickEvent", name()));
+ cacheCompletionEvent
+ .unserialize(db, csprintf("%s.cacheCompletionEvent", name()));
}
void