diff options
Diffstat (limited to 'cpu/cpu_exec_context.hh')
-rw-r--r-- | cpu/cpu_exec_context.hh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpu/cpu_exec_context.hh b/cpu/cpu_exec_context.hh index 061fe450a..619d07d3a 100644 --- a/cpu/cpu_exec_context.hh +++ b/cpu/cpu_exec_context.hh @@ -203,12 +203,19 @@ class CPUExecContext // else. CPUExecContext(RegFile *regFile); #endif + + CPUExecContext(); + virtual ~CPUExecContext(); virtual void takeOverFrom(ExecContext *oldContext); void regStats(const std::string &name); + void copyXC(ExecContext *context); + + void copyState(ExecContext *oldContext); + void serialize(std::ostream &os); void unserialize(Checkpoint *cp, const std::string §ion); |