diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-04-06 16:00:56 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-04-06 16:00:56 +0000 |
commit | 2a1c102f25e097ecbec303815182c9bd5332c2ef (patch) | |
tree | eb557f0367bfbd405cdc011426d527b5c52ff7a8 /src/arch/x86/isa/microops | |
parent | 75e8838ba4020a03f53b66488ecfc756112b2861 (diff) | |
download | gem5-2a1c102f25e097ecbec303815182c9bd5332c2ef.tar.xz |
Refactored the x86 isa description some more. There should be more seperation between x86 specific parts, and those parts which are implemented in the isa description but could eventually be moved elsewhere.
--HG--
rename : src/arch/x86/isa/formats/macroop.isa => src/arch/x86/isa/macroop.isa
extra : convert_revision : 5ab40eedf574fce438d9fe90e00a496dc95c8bcf
Diffstat (limited to 'src/arch/x86/isa/microops')
-rw-r--r-- | src/arch/x86/isa/microops/base.isa | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/isa/microops/base.isa b/src/arch/x86/isa/microops/base.isa index b1351d999..beaa44b97 100644 --- a/src/arch/x86/isa/microops/base.isa +++ b/src/arch/x86/isa/microops/base.isa @@ -69,6 +69,9 @@ output header {{ class X86MicroOpBase : public X86StaticInst { protected: + uint8_t opSize; + uint8_t addrSize; + X86MicroOpBase(bool isMicro, bool isDelayed, bool isFirst, bool isLast, const char *mnem, ExtMachInst _machInst, |