diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 23:39:53 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-10 23:39:53 -0700 |
commit | b03c95d075b74913313576e6e1fa4fc6b1f4dcb2 (patch) | |
tree | 60b8cc64bf301d593e8a1b093e4a991047bc33a3 /src/arch/x86/system.hh | |
parent | 89f016aacbe92f90c1af98678043f2f6fc82c364 (diff) | |
download | gem5-b03c95d075b74913313576e6e1fa4fc6b1f4dcb2.tar.xz |
X86: Create SimObjects in python and C++ to represent the Intel MP tables.
Diffstat (limited to 'src/arch/x86/system.hh')
-rw-r--r-- | src/arch/x86/system.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/x86/system.hh b/src/arch/x86/system.hh index 2120bc090..7433cc644 100644 --- a/src/arch/x86/system.hh +++ b/src/arch/x86/system.hh @@ -74,6 +74,11 @@ namespace X86ISA { class SMBiosTable; } + namespace IntelMP + { + class FloatingPointer; + class ConfigTable; + } } class X86System : public System @@ -95,10 +100,15 @@ class X86System : public System protected: X86ISA::SMBios::SMBiosTable * smbiosTable; + X86ISA::IntelMP::FloatingPointer * mpFloatingPointer; + X86ISA::IntelMP::ConfigTable * mpConfigTable; void writeOutSMBiosTable(Addr header, Addr &headerSize, Addr &tableSize, Addr table = 0); + void writeOutMPTable(Addr fp, + Addr &fpSize, Addr &tableSize, Addr table = 0); + const Params *params() const { return (const Params *)_params; } virtual Addr fixFuncEventAddr(Addr addr) |