From 49a7ed0397954f555f5fb4272334e606a3048c59 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 9 Sep 2011 02:40:11 -0700 Subject: StaticInst: Merge StaticInst and StaticInstBase. Having two StaticInst classes, one nominally ISA dependent and the other ISA dependent, has not been historically useful and makes the StaticInst class more complicated that it needs to be. This change merges StaticInstBase into StaticInst. --- src/cpu/static_inst.hh | 90 ++++++++++---------------------------------------- 1 file changed, 18 insertions(+), 72 deletions(-) (limited to 'src/cpu/static_inst.hh') diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh index b2773052e..adda82c49 100644 --- a/src/cpu/static_inst.hh +++ b/src/cpu/static_inst.hh @@ -41,6 +41,7 @@ #include "base/types.hh" #include "config/the_isa.hh" #include "cpu/op_class.hh" +#include "cpu/static_inst_fwd.hh" #include "sim/fault_fwd.hh" // forward declarations @@ -76,9 +77,18 @@ namespace Trace { * solely on these flags can process instructions without being * recompiled for multiple ISAs. */ -class StaticInstBase : public RefCounted +class StaticInst : public RefCounted { public: + /// Binary extended machine instruction type. + typedef TheISA::ExtMachInst ExtMachInst; + /// Logical register index type. + typedef TheISA::RegIndex RegIndex; + + enum { + MaxInstSrcRegs = TheISA::MaxInstSrcRegs, //< Max source regs + MaxInstDestRegs = TheISA::MaxInstDestRegs, //< Max dest regs + }; /// Set of boolean static instruction properties. /// @@ -179,17 +189,6 @@ class StaticInstBase : public RefCounted int8_t _numIntDestRegs; //@} - /// Constructor. - /// It's important to initialize everything here to a sane - /// default, since the decoder generally only overrides - /// the fields that are meaningful for the particular - /// instruction. - StaticInstBase(OpClass __opClass) - : _opClass(__opClass), _numSrcRegs(0), _numDestRegs(0), - _numFPDestRegs(0), _numIntDestRegs(0) - { - } - public: /// @name Register information. @@ -210,7 +209,7 @@ class StaticInstBase : public RefCounted /// @name Flag accessors. /// These functions are used to access the values of the various - /// instruction property flags. See StaticInstBase::Flags for descriptions + /// instruction property flags. See StaticInst::Flags for descriptions /// of the individual flags. //@{ @@ -266,31 +265,6 @@ class StaticInstBase : public RefCounted /// Operation class. Used to select appropriate function unit in issue. OpClass opClass() const { return _opClass; } -}; - - -// forward declaration -class StaticInstPtr; - -/** - * Generic yet ISA-dependent static instruction class. - * - * This class builds on StaticInstBase, defining fields and interfaces - * that are generic across all ISAs but that differ in details - * according to the specific ISA being used. - */ -class StaticInst : public StaticInstBase -{ - public: - /// Binary extended machine instruction type. - typedef TheISA::ExtMachInst ExtMachInst; - /// Logical register index type. - typedef TheISA::RegIndex RegIndex; - - enum { - MaxInstSrcRegs = TheISA::MaxInstSrcRegs, //< Max source regs - MaxInstDestRegs = TheISA::MaxInstDestRegs, //< Max dest regs - }; /// Return logical index (architectural reg num) of i'th destination reg. @@ -355,8 +329,13 @@ class StaticInst : public StaticInstBase generateDisassembly(Addr pc, const SymbolTable *symtab) const = 0; /// Constructor. + /// It's important to initialize everything here to a sane + /// default, since the decoder generally only overrides + /// the fields that are meaningful for the particular + /// instruction. StaticInst(const char *_mnemonic, ExtMachInst _machInst, OpClass __opClass) - : StaticInstBase(__opClass), + : _opClass(__opClass), _numSrcRegs(0), _numDestRegs(0), + _numFPDestRegs(0), _numIntDestRegs(0), machInst(_machInst), mnemonic(_mnemonic), cachedDisassembly(0) { } @@ -414,37 +393,4 @@ class StaticInst : public StaticInstBase std::string getName() { return mnemonic; } }; -typedef RefCountingPtr StaticInstBasePtr; - -/// Reference-counted pointer to a StaticInst object. -/// This type should be used instead of "StaticInst *" so that -/// StaticInst objects can be properly reference-counted. -class StaticInstPtr : public RefCountingPtr -{ - public: - /// Constructor. - StaticInstPtr() - : RefCountingPtr() - { - } - - /// Conversion from "StaticInst *". - StaticInstPtr(StaticInst *p) - : RefCountingPtr(p) - { - } - - /// Copy constructor. - StaticInstPtr(const StaticInstPtr &r) - : RefCountingPtr(r) - { - } - - /// Convert to pointer to StaticInstBase class. - operator const StaticInstBasePtr() - { - return this->get(); - } -}; - #endif // __CPU_STATIC_INST_HH__ -- cgit v1.2.3