diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-01-12 22:09:48 -0600 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-01-12 22:09:48 -0600 |
commit | 25ec278a0be5e3e09d396ef5be993e45b766790b (patch) | |
tree | 1e053058f01fd0414c87b989f12c497fe6024f0a /src/arch/sparc/isa.hh | |
parent | fe3fbe624e9524ba5fdc55586e40eaa700c81c78 (diff) | |
download | gem5-25ec278a0be5e3e09d396ef5be993e45b766790b.tar.xz |
x86: Changes to decoder, corrects 9376
The changes made by the changeset 9376 were not quite correct. The patch made
changes to the code which resulted in decoder not getting initialized correctly
when the state was restored from a checkpoint.
This patch adds a startup function to each ISA object. For x86, this function
sets the required state in the decoder. For other ISAs, the function is empty
right now.
Diffstat (limited to 'src/arch/sparc/isa.hh')
-rw-r--r-- | src/arch/sparc/isa.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/sparc/isa.hh b/src/arch/sparc/isa.hh index 3dd9f6109..dac8a2095 100644 --- a/src/arch/sparc/isa.hh +++ b/src/arch/sparc/isa.hh @@ -171,6 +171,8 @@ class ISA : public SimObject void unserialize(Checkpoint *cp, const std::string & section); + void startup(ThreadContext *tc) {} + protected: bool isHyperPriv() { return hpstate.hpriv; } |