summaryrefslogtreecommitdiff
path: root/src/arch/x86/regfile.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-07-08 23:02:20 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-07-08 23:02:20 -0700
commita480ba00b96f4c2e872f5a01bfa1782500f1066e (patch)
tree9d99a96528f37eb601f6e7268c3a359d84f02d57 /src/arch/x86/regfile.hh
parent0cb180ea0dcece9157ad71b4136d557c2dbcf209 (diff)
downloadgem5-a480ba00b96f4c2e872f5a01bfa1782500f1066e.tar.xz
Registers: Eliminate the ISA defined integer register file.
Diffstat (limited to 'src/arch/x86/regfile.hh')
-rw-r--r--src/arch/x86/regfile.hh15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/arch/x86/regfile.hh b/src/arch/x86/regfile.hh
index d1dbe3823..6f7e9120c 100644
--- a/src/arch/x86/regfile.hh
+++ b/src/arch/x86/regfile.hh
@@ -97,20 +97,17 @@ namespace X86ISA
Addr readNextNPC();
void setNextNPC(Addr val);
- protected:
- IntRegFile intRegFile; // integer register file
-
public:
- void clear();
-
- IntReg readIntReg(int intReg);
+ void clear()
+ {}
- void setIntReg(int intReg, const IntReg &val);
+ void serialize(EventManager *em, std::ostream &os)
+ {}
- void serialize(EventManager *em, std::ostream &os);
void unserialize(EventManager *em, Checkpoint *cp,
- const std::string &section);
+ const std::string &section)
+ {}
};
void copyRegs(ThreadContext *src, ThreadContext *dest);