From 9993ca8280b03a390d860b9dfb6597c7ecc98a27 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 9 Jul 2009 20:29:02 -0700 Subject: X86: Fold the MiscRegFile all the way into the ISA object. --- src/arch/x86/isa.hh | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'src/arch/x86/isa.hh') diff --git a/src/arch/x86/isa.hh b/src/arch/x86/isa.hh index 5b120d69e..285f0aa82 100644 --- a/src/arch/x86/isa.hh +++ b/src/arch/x86/isa.hh @@ -31,28 +31,39 @@ #ifndef __ARCH_X86_ISA_HH__ #define __ARCH_X86_ISA_HH__ -#include "arch/x86/miscregfile.hh" -#include "arch/x86/types.hh" +#include "arch/x86/miscregs.hh" +#include "arch/x86/registers.hh" +#include "base/types.hh" + +#include +#include class Checkpoint; class EventManager; +class ThreadContext; namespace X86ISA { class ISA { protected: - MiscRegFile miscRegFile; + MiscReg regVal[NUM_MISCREGS]; + void updateHandyM5Reg(Efer efer, CR0 cr0, + SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags); public: void clear(); + ISA() + { + clear(); + } + MiscReg readMiscRegNoEffect(int miscReg); MiscReg readMiscReg(int miscReg, ThreadContext *tc); - void setMiscRegNoEffect(int miscReg, const MiscReg val); - void setMiscReg(int miscReg, const MiscReg val, - ThreadContext *tc); + void setMiscRegNoEffect(int miscReg, MiscReg val); + void setMiscReg(int miscReg, MiscReg val, ThreadContext *tc); int flattenIntIndex(int reg); int flattenFloatIndex(int reg); -- cgit v1.2.3