summaryrefslogtreecommitdiff
path: root/src/sim/ticked_object.cc
diff options
context:
space:
mode:
authorAndrew Bardsley <Andrew.Bardsley@arm.com>2014-09-03 07:42:25 -0400
committerAndrew Bardsley <Andrew.Bardsley@arm.com>2014-09-03 07:42:25 -0400
commit87f6034462d06c7921ebe7f8e4ab78db5a09d319 (patch)
treeff61a95985d184d32138f3496fa07b6a75562695 /src/sim/ticked_object.cc
parent326662b01b0fbb7fe4e38cec7a96222d2891808b (diff)
downloadgem5-87f6034462d06c7921ebe7f8e4ab78db5a09d319.tar.xz
sim: Fix checkpoint restore for Ticked
This patch makes restoring the 'lastStopped' value for Ticked-containing objects (including MinorCPU) optional so that Ticked-containing objects can be restored from non-Ticked-containing objects (such as AtomicSimpleCPU).
Diffstat (limited to 'src/sim/ticked_object.cc')
-rw-r--r--src/sim/ticked_object.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/sim/ticked_object.cc b/src/sim/ticked_object.cc
index 22a149388..ef6ee1c20 100644
--- a/src/sim/ticked_object.cc
+++ b/src/sim/ticked_object.cc
@@ -82,9 +82,15 @@ Ticked::serialize(std::ostream &os)
void
Ticked::unserialize(Checkpoint *cp, const std::string &section)
{
- uint64_t lastStoppedUint;
+ uint64_t lastStoppedUint = 0;
- paramIn(cp, section, "lastStopped", lastStoppedUint);
+ /* lastStopped is optional on checkpoint restore as this object may be
+ * being restored from one which has a common base (and so possibly
+ * many common checkpointed values) but where Ticked is used in the
+ * checkpointed object but not this one.
+ * An example would be a CPU model using Ticked restores from a
+ * simple CPU without without Ticked */
+ optParamIn(cp, section, "lastStopped", lastStoppedUint);
lastStopped = Cycles(lastStoppedUint);
}