summaryrefslogtreecommitdiff
path: root/src/arch/mips/regfile
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-07-08 23:02:21 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-07-08 23:02:21 -0700
commit5c37d10624e0f9a9568f1eb1527832c55addba59 (patch)
tree7283390137489bc23fd4685e6ede83925479ee48 /src/arch/mips/regfile
parent9bf22992ee1f5088ae5e513acaa7aabee048c4bd (diff)
downloadgem5-5c37d10624e0f9a9568f1eb1527832c55addba59.tar.xz
Registers: Eliminate the ISA defined RegFile class.
Diffstat (limited to 'src/arch/mips/regfile')
-rw-r--r--src/arch/mips/regfile/misc_regfile.hh3
-rw-r--r--src/arch/mips/regfile/regfile.hh21
2 files changed, 0 insertions, 24 deletions
diff --git a/src/arch/mips/regfile/misc_regfile.hh b/src/arch/mips/regfile/misc_regfile.hh
index 633ea7efb..ab233abde 100644
--- a/src/arch/mips/regfile/misc_regfile.hh
+++ b/src/arch/mips/regfile/misc_regfile.hh
@@ -48,9 +48,6 @@ namespace MipsISA
{
class MiscRegFile {
public:
- // Give RegFile object, private access
- friend class RegFile;
-
// The MIPS name for this file is CP0 or Coprocessor 0
typedef MiscRegFile CP0;
diff --git a/src/arch/mips/regfile/regfile.hh b/src/arch/mips/regfile/regfile.hh
index 71775edc4..be67894bf 100644
--- a/src/arch/mips/regfile/regfile.hh
+++ b/src/arch/mips/regfile/regfile.hh
@@ -92,27 +92,6 @@ namespace MipsISA
//TotalArchRegs = NumIntArchRegs * ShadowSets
const int TotalArchRegs = NumIntArchRegs;
-
- class RegFile {
- public:
- void clear()
- {}
- void reset(std::string core_name, ThreadID num_threads,
- unsigned num_vpes, BaseCPU *_cpu)
- {}
-
- void setShadowSet(int css)
- {}
-
- public:
- void serialize(EventManager *em, std::ostream &os)
- {}
- void unserialize(EventManager *em, Checkpoint *cp,
- const std::string &section)
- {}
-
- };
-
} // namespace MipsISA
#endif