arch: Make the ISA class inherit from SimObject

The ISA class on stores the contents of ID registers on many
architectures. In order to make reset values of such registers
configurable, we make the class inherit from SimObject, which allows
us to use the normal generated parameter headers.

This patch introduces a Python helper method, BaseCPU.createThreads(),
which creates a set of ISAs for each of the threads in an SMT
system. Although it is currently only needed when creating
multi-threaded CPUs, it should always be called before instantiating
the system as this is an obvious place to configure ID registers
identifying a thread/CPU.
This commit is contained in:
Andreas Sandberg 2013-01-07 13:05:35 -05:00
parent 69d419f313
commit 3db3f83a5e
46 changed files with 611 additions and 98 deletions

View file

@ -139,6 +139,7 @@ for i in xrange(np):
test_sys.cpu[i].fastmem = True test_sys.cpu[i].fastmem = True
if options.checker: if options.checker:
test_sys.cpu[i].addCheckerCpu() test_sys.cpu[i].addCheckerCpu()
test_sys.cpu[i].createThreads()
CacheConfig.config_cache(options, test_sys) CacheConfig.config_cache(options, test_sys)
@ -155,6 +156,7 @@ if len(bm) == 2:
drive_sys = makeArmSystem(drive_mem_mode, options.machine_type, bm[1]) drive_sys = makeArmSystem(drive_mem_mode, options.machine_type, bm[1])
drive_sys.cpu = DriveCPUClass(cpu_id=0) drive_sys.cpu = DriveCPUClass(cpu_id=0)
drive_sys.cpu.createThreads()
drive_sys.cpu.createInterruptController() drive_sys.cpu.createInterruptController()
drive_sys.cpu.connectAllPorts(drive_sys.membus) drive_sys.cpu.connectAllPorts(drive_sys.membus)
if options.fastmem: if options.fastmem:

View file

@ -103,6 +103,7 @@ for (i, cpu) in enumerate(system.cpu):
# #
# Tie the cpu ports to the correct ruby system ports # Tie the cpu ports to the correct ruby system ports
# #
cpu.createThreads()
cpu.createInterruptController() cpu.createInterruptController()
cpu.icache_port = system.ruby._cpu_ruby_ports[i].slave cpu.icache_port = system.ruby._cpu_ruby_ports[i].slave
cpu.dcache_port = system.ruby._cpu_ruby_ports[i].slave cpu.dcache_port = system.ruby._cpu_ruby_ports[i].slave

View file

@ -180,6 +180,8 @@ for i in xrange(np):
if options.checker: if options.checker:
system.cpu[i].addCheckerCpu() system.cpu[i].addCheckerCpu()
system.cpu[i].createThreads()
if options.ruby: if options.ruby:
if not (options.cpu_type == "detailed" or options.cpu_type == "timing"): if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):
print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!" print >> sys.stderr, "Ruby requires TimingSimpleCPU or O3CPU!!"

View file

@ -0,0 +1,43 @@
# Copyright (c) 2012 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
# not be construed as granting a license to any other intellectual
# property including but not limited to intellectual property relating
# to a hardware implementation of the functionality of the software
# licensed hereunder. You may use the software subject to the license
# terms below provided that you ensure that this notice is replicated
# unmodified and in its entirety in all distributions of the software,
# modified or unmodified, in source code or in binary form.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met: redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer;
# redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution;
# neither the name of the copyright holders nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Andreas Sandberg
from m5.SimObject import SimObject
class AlphaISA(SimObject):
type = 'AlphaISA'
cxx_class = 'AlphaISA::ISA'
cxx_header = "arch/alpha/isa.hh"

View file

@ -59,6 +59,7 @@ if env['TARGET_ISA'] == 'alpha':
Source('vtophys.cc') Source('vtophys.cc')
SimObject('AlphaInterrupts.py') SimObject('AlphaInterrupts.py')
SimObject('AlphaISA.py')
SimObject('AlphaSystem.py') SimObject('AlphaSystem.py')
SimObject('AlphaTLB.py') SimObject('AlphaTLB.py')

View file

@ -33,11 +33,25 @@
#include "arch/alpha/isa.hh" #include "arch/alpha/isa.hh"
#include "base/misc.hh" #include "base/misc.hh"
#include "cpu/thread_context.hh" #include "cpu/thread_context.hh"
#include "params/AlphaISA.hh"
#include "sim/serialize.hh" #include "sim/serialize.hh"
namespace AlphaISA namespace AlphaISA
{ {
ISA::ISA(Params *p)
: SimObject(p)
{
clear();
initializeIprTable();
}
const AlphaISAParams *
ISA::params() const
{
return dynamic_cast<const Params *>(_params);
}
void void
ISA::serialize(EventManager *em, std::ostream &os) ISA::serialize(EventManager *em, std::ostream &os)
{ {
@ -151,3 +165,9 @@ ISA::setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc,
} }
} }
AlphaISA::ISA *
AlphaISAParams::create()
{
return new AlphaISA::ISA(this);
}

View file

@ -38,7 +38,9 @@
#include "arch/alpha/registers.hh" #include "arch/alpha/registers.hh"
#include "arch/alpha/types.hh" #include "arch/alpha/types.hh"
#include "base/types.hh" #include "base/types.hh"
#include "sim/sim_object.hh"
struct AlphaISAParams;
class BaseCPU; class BaseCPU;
class Checkpoint; class Checkpoint;
class EventManager; class EventManager;
@ -46,10 +48,11 @@ class ThreadContext;
namespace AlphaISA namespace AlphaISA
{ {
class ISA class ISA : public SimObject
{ {
public: public:
typedef uint64_t InternalProcReg; typedef uint64_t InternalProcReg;
typedef AlphaISAParams Params;
protected: protected:
uint64_t fpcr; // floating point condition codes uint64_t fpcr; // floating point condition codes
@ -101,11 +104,9 @@ namespace AlphaISA
return reg; return reg;
} }
ISA() const Params *params() const;
{
clear(); ISA(Params *p);
initializeIprTable();
}
}; };
} }

43
src/arch/arm/ArmISA.py Normal file
View file

@ -0,0 +1,43 @@
# Copyright (c) 2012 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
# not be construed as granting a license to any other intellectual
# property including but not limited to intellectual property relating
# to a hardware implementation of the functionality of the software
# licensed hereunder. You may use the software subject to the license
# terms below provided that you ensure that this notice is replicated
# unmodified and in its entirety in all distributions of the software,
# modified or unmodified, in source code or in binary form.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met: redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer;
# redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution;
# neither the name of the copyright holders nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Andreas Sandberg
from m5.SimObject import SimObject
class ArmISA(SimObject):
type = 'ArmISA'
cxx_class = 'ArmISA::ISA'
cxx_header = "arch/arm/isa.hh"

View file

@ -72,6 +72,7 @@ if env['TARGET_ISA'] == 'arm':
Source('vtophys.cc') Source('vtophys.cc')
SimObject('ArmInterrupts.py') SimObject('ArmInterrupts.py')
SimObject('ArmISA.py')
SimObject('ArmNativeTrace.py') SimObject('ArmNativeTrace.py')
SimObject('ArmSystem.py') SimObject('ArmSystem.py')
SimObject('ArmTLB.py') SimObject('ArmTLB.py')

View file

@ -43,6 +43,7 @@
#include "cpu/checker/cpu.hh" #include "cpu/checker/cpu.hh"
#include "debug/Arm.hh" #include "debug/Arm.hh"
#include "debug/MiscRegs.hh" #include "debug/MiscRegs.hh"
#include "params/ArmISA.hh"
#include "sim/faults.hh" #include "sim/faults.hh"
#include "sim/stat_control.hh" #include "sim/stat_control.hh"
#include "sim/system.hh" #include "sim/system.hh"
@ -50,6 +51,21 @@
namespace ArmISA namespace ArmISA
{ {
ISA::ISA(Params *p)
: SimObject(p)
{
SCTLR sctlr;
sctlr = 0;
miscRegs[MISCREG_SCTLR_RST] = sctlr;
clear();
}
const ArmISAParams *
ISA::params() const
{
return dynamic_cast<const Params *>(_params);
}
void void
ISA::clear() ISA::clear()
{ {
@ -641,3 +657,9 @@ ISA::setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc)
} }
} }
ArmISA::ISA *
ArmISAParams::create()
{
return new ArmISA::ISA(this);
}

View file

@ -47,14 +47,16 @@
#include "arch/arm/tlb.hh" #include "arch/arm/tlb.hh"
#include "arch/arm/types.hh" #include "arch/arm/types.hh"
#include "debug/Checkpoint.hh" #include "debug/Checkpoint.hh"
#include "sim/sim_object.hh"
struct ArmISAParams;
class ThreadContext; class ThreadContext;
class Checkpoint; class Checkpoint;
class EventManager; class EventManager;
namespace ArmISA namespace ArmISA
{ {
class ISA class ISA : public SimObject
{ {
protected: protected:
MiscReg miscRegs[NumMiscRegs]; MiscReg miscRegs[NumMiscRegs];
@ -192,14 +194,11 @@ namespace ArmISA
updateRegMap(tmp_cpsr); updateRegMap(tmp_cpsr);
} }
ISA() typedef ArmISAParams Params;
{
SCTLR sctlr;
sctlr = 0;
miscRegs[MISCREG_SCTLR_RST] = sctlr;
clear(); const Params *params() const;
}
ISA(Params *p);
}; };
} }

47
src/arch/mips/MipsISA.py Normal file
View file

@ -0,0 +1,47 @@
# Copyright (c) 2012 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
# not be construed as granting a license to any other intellectual
# property including but not limited to intellectual property relating
# to a hardware implementation of the functionality of the software
# licensed hereunder. You may use the software subject to the license
# terms below provided that you ensure that this notice is replicated
# unmodified and in its entirety in all distributions of the software,
# modified or unmodified, in source code or in binary form.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met: redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer;
# redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution;
# neither the name of the copyright holders nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Andreas Sandberg
from m5.SimObject import SimObject
from m5.params import *
class MipsISA(SimObject):
type = 'MipsISA'
cxx_class = 'MipsISA::ISA'
cxx_header = "arch/mips/isa.hh"
num_threads = Param.UInt8(1, "Maximum number this ISA can handle")
num_vpes = Param.UInt8(1, "Maximum number of vpes this ISA can handle")

View file

@ -53,6 +53,7 @@ if env['TARGET_ISA'] == 'mips':
Source('vtophys.cc') Source('vtophys.cc')
SimObject('MipsInterrupts.py') SimObject('MipsInterrupts.py')
SimObject('MipsISA.py')
SimObject('MipsSystem.py') SimObject('MipsSystem.py')
SimObject('MipsTLB.py') SimObject('MipsTLB.py')

View file

@ -36,6 +36,7 @@
#include "cpu/base.hh" #include "cpu/base.hh"
#include "cpu/thread_context.hh" #include "cpu/thread_context.hh"
#include "debug/MipsPRA.hh" #include "debug/MipsPRA.hh"
#include "params/MipsISA.hh"
namespace MipsISA namespace MipsISA
{ {
@ -87,11 +88,10 @@ ISA::miscRegNames[NumMiscRegs] =
"LLFlag" "LLFlag"
}; };
ISA::ISA(uint8_t num_threads, uint8_t num_vpes) ISA::ISA(Params *p)
: SimObject(p),
numThreads(p->num_threads), numVpes(p->num_vpes)
{ {
numThreads = num_threads;
numVpes = num_vpes;
miscRegFile.resize(NumMiscRegs); miscRegFile.resize(NumMiscRegs);
bankType.resize(NumMiscRegs); bankType.resize(NumMiscRegs);
@ -142,6 +142,12 @@ ISA::ISA(uint8_t num_threads, uint8_t num_vpes)
clear(); clear();
} }
const MipsISAParams *
ISA::params() const
{
return dynamic_cast<const Params *>(_params);
}
void void
ISA::clear() ISA::clear()
{ {
@ -586,3 +592,9 @@ ISA::CP0Event::unscheduleEvent()
} }
} }
MipsISA::ISA *
MipsISAParams::create()
{
return new MipsISA::ISA(this);
}

View file

@ -39,20 +39,24 @@
#include "arch/mips/types.hh" #include "arch/mips/types.hh"
#include "sim/eventq.hh" #include "sim/eventq.hh"
#include "sim/fault_fwd.hh" #include "sim/fault_fwd.hh"
#include "sim/sim_object.hh"
class BaseCPU; class BaseCPU;
class Checkpoint; class Checkpoint;
class EventManager; class EventManager;
struct MipsISAParams;
class ThreadContext; class ThreadContext;
namespace MipsISA namespace MipsISA
{ {
class ISA class ISA : public SimObject
{ {
public: public:
// The MIPS name for this file is CP0 or Coprocessor 0 // The MIPS name for this file is CP0 or Coprocessor 0
typedef ISA CP0; typedef ISA CP0;
typedef MipsISAParams Params;
protected: protected:
// Number of threads and vpes an individual ISA state can handle // Number of threads and vpes an individual ISA state can handle
uint8_t numThreads; uint8_t numThreads;
@ -69,8 +73,6 @@ namespace MipsISA
std::vector<BankType> bankType; std::vector<BankType> bankType;
public: public:
ISA(uint8_t num_threads = 1, uint8_t num_vpes = 1);
void clear(); void clear();
void configCP(); void configCP();
@ -155,6 +157,9 @@ namespace MipsISA
static std::string miscRegNames[NumMiscRegs]; static std::string miscRegNames[NumMiscRegs];
public: public:
const Params *params() const;
ISA(Params *p);
int int
flattenIntIndex(int reg) flattenIntIndex(int reg)

View file

@ -0,0 +1,43 @@
# Copyright (c) 2012 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
# not be construed as granting a license to any other intellectual
# property including but not limited to intellectual property relating
# to a hardware implementation of the functionality of the software
# licensed hereunder. You may use the software subject to the license
# terms below provided that you ensure that this notice is replicated
# unmodified and in its entirety in all distributions of the software,
# modified or unmodified, in source code or in binary form.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met: redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer;
# redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution;
# neither the name of the copyright holders nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Andreas Sandberg
from m5.SimObject import SimObject
class PowerISA(SimObject):
type = 'PowerISA'
cxx_class = 'PowerISA::ISA'
cxx_header = "arch/power/isa.hh"

View file

@ -44,6 +44,7 @@ if env['TARGET_ISA'] == 'power':
Source('interrupts.cc') Source('interrupts.cc')
Source('linux/linux.cc') Source('linux/linux.cc')
Source('linux/process.cc') Source('linux/process.cc')
Source('isa.cc')
Source('pagetable.cc') Source('pagetable.cc')
Source('process.cc') Source('process.cc')
Source('stacktrace.cc') Source('stacktrace.cc')
@ -52,6 +53,7 @@ if env['TARGET_ISA'] == 'power':
Source('vtophys.cc') Source('vtophys.cc')
SimObject('PowerInterrupts.py') SimObject('PowerInterrupts.py')
SimObject('PowerISA.py')
SimObject('PowerTLB.py') SimObject('PowerTLB.py')
DebugFlag('Power') DebugFlag('Power')

65
src/arch/power/isa.cc Normal file
View file

@ -0,0 +1,65 @@
/*
* Copyright (c) 2012 ARM Limited
* All rights reserved
*
* The license below extends only to copyright in the software and shall
* not be construed as granting a license to any other intellectual
* property including but not limited to intellectual property relating
* to a hardware implementation of the functionality of the software
* licensed hereunder. You may use the software subject to the license
* terms below provided that you ensure that this notice is replicated
* unmodified and in its entirety in all distributions of the software,
* modified or unmodified, in source code or in binary form.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution;
* neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Authors: Andreas Sandberg
*/
#include "arch/power/isa.hh"
#include "params/PowerISA.hh"
namespace PowerISA
{
ISA::ISA(Params *p)
: SimObject(p)
{
clear();
}
const PowerISAParams *
ISA::params() const
{
return dynamic_cast<const Params *>(_params);
}
}
PowerISA::ISA *
PowerISAParams::create()
{
return new PowerISA::ISA(this);
}

View file

@ -36,7 +36,9 @@
#include "arch/power/registers.hh" #include "arch/power/registers.hh"
#include "arch/power/types.hh" #include "arch/power/types.hh"
#include "base/misc.hh" #include "base/misc.hh"
#include "sim/sim_object.hh"
struct PowerISAParams;
class ThreadContext; class ThreadContext;
class Checkpoint; class Checkpoint;
class EventManager; class EventManager;
@ -44,13 +46,15 @@ class EventManager;
namespace PowerISA namespace PowerISA
{ {
class ISA class ISA : public SimObject
{ {
protected: protected:
MiscReg dummy; MiscReg dummy;
MiscReg miscRegs[NumMiscRegs]; MiscReg miscRegs[NumMiscRegs];
public: public:
typedef PowerISAParams Params;
void void
clear() clear()
{ {
@ -104,10 +108,9 @@ class ISA
{ {
} }
ISA() const Params *params() const;
{
clear(); ISA(Params *p);
}
}; };
} // namespace PowerISA } // namespace PowerISA

View file

@ -53,6 +53,7 @@ if env['TARGET_ISA'] == 'sparc':
Source('vtophys.cc') Source('vtophys.cc')
SimObject('SparcInterrupts.py') SimObject('SparcInterrupts.py')
SimObject('SparcISA.py')
SimObject('SparcNativeTrace.py') SimObject('SparcNativeTrace.py')
SimObject('SparcSystem.py') SimObject('SparcSystem.py')
SimObject('SparcTLB.py') SimObject('SparcTLB.py')

View file

@ -0,0 +1,43 @@
# Copyright (c) 2012 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
# not be construed as granting a license to any other intellectual
# property including but not limited to intellectual property relating
# to a hardware implementation of the functionality of the software
# licensed hereunder. You may use the software subject to the license
# terms below provided that you ensure that this notice is replicated
# unmodified and in its entirety in all distributions of the software,
# modified or unmodified, in source code or in binary form.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met: redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer;
# redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution;
# neither the name of the copyright holders nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Andreas Sandberg
from m5.SimObject import SimObject
class SparcISA(SimObject):
type = 'SparcISA'
cxx_class = 'SparcISA::ISA'
cxx_header = "arch/sparc/isa.hh"

View file

@ -37,6 +37,7 @@
#include "cpu/thread_context.hh" #include "cpu/thread_context.hh"
#include "debug/MiscRegs.hh" #include "debug/MiscRegs.hh"
#include "debug/Timer.hh" #include "debug/Timer.hh"
#include "params/SparcISA.hh"
namespace SparcISA namespace SparcISA
{ {
@ -58,6 +59,22 @@ buildPstateMask()
static const PSTATE PstateMask = buildPstateMask(); static const PSTATE PstateMask = buildPstateMask();
ISA::ISA(Params *p)
: SimObject(p)
{
tickCompare = NULL;
sTickCompare = NULL;
hSTickCompare = NULL;
clear();
}
const SparcISAParams *
ISA::params() const
{
return dynamic_cast<const Params *>(_params);
}
void void
ISA::reloadRegMap() ISA::reloadRegMap()
{ {
@ -780,3 +797,9 @@ ISA::unserialize(EventManager *em, Checkpoint *cp, const std::string &section)
} }
} }
SparcISA::ISA *
SparcISAParams::create()
{
return new SparcISA::ISA(this);
}

View file

@ -37,14 +37,16 @@
#include "arch/sparc/registers.hh" #include "arch/sparc/registers.hh"
#include "arch/sparc/types.hh" #include "arch/sparc/types.hh"
#include "cpu/cpuevent.hh" #include "cpu/cpuevent.hh"
#include "sim/sim_object.hh"
class Checkpoint; class Checkpoint;
class EventManager; class EventManager;
struct SparcISAParams;
class ThreadContext; class ThreadContext;
namespace SparcISA namespace SparcISA
{ {
class ISA class ISA : public SimObject
{ {
private: private:
@ -200,14 +202,10 @@ class ISA
return reg; return reg;
} }
ISA() typedef SparcISAParams Params;
{ const Params *params() const;
tickCompare = NULL;
sTickCompare = NULL;
hSTickCompare = NULL;
clear(); ISA(Params *p);
}
}; };
} }

View file

@ -73,6 +73,7 @@ if env['TARGET_ISA'] == 'x86':
Source('utility.cc') Source('utility.cc')
Source('vtophys.cc') Source('vtophys.cc')
SimObject('X86ISA.py')
SimObject('X86LocalApic.py') SimObject('X86LocalApic.py')
SimObject('X86NativeTrace.py') SimObject('X86NativeTrace.py')
SimObject('X86System.py') SimObject('X86System.py')

43
src/arch/x86/X86ISA.py Normal file
View file

@ -0,0 +1,43 @@
# Copyright (c) 2012 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
# not be construed as granting a license to any other intellectual
# property including but not limited to intellectual property relating
# to a hardware implementation of the functionality of the software
# licensed hereunder. You may use the software subject to the license
# terms below provided that you ensure that this notice is replicated
# unmodified and in its entirety in all distributions of the software,
# modified or unmodified, in source code or in binary form.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met: redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer;
# redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution;
# neither the name of the copyright holders nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Authors: Andreas Sandberg
from m5.SimObject import SimObject
class X86ISA(SimObject):
type = 'X86ISA'
cxx_class = 'X86ISA::ISA'
cxx_header = "arch/x86/isa.hh"

View file

@ -33,6 +33,7 @@
#include "arch/x86/tlb.hh" #include "arch/x86/tlb.hh"
#include "cpu/base.hh" #include "cpu/base.hh"
#include "cpu/thread_context.hh" #include "cpu/thread_context.hh"
#include "params/X86ISA.hh"
#include "sim/serialize.hh" #include "sim/serialize.hh"
namespace X86ISA namespace X86ISA
@ -110,6 +111,18 @@ ISA::clear()
regVal[MISCREG_DR7] = 1 << 10; regVal[MISCREG_DR7] = 1 << 10;
} }
ISA::ISA(Params *p)
: SimObject(p)
{
clear();
}
const X86ISAParams *
ISA::params() const
{
return dynamic_cast<const Params *>(_params);
}
MiscReg MiscReg
ISA::readMiscRegNoEffect(int miscReg) ISA::readMiscRegNoEffect(int miscReg)
{ {
@ -376,3 +389,9 @@ ISA::unserialize(EventManager *em, Checkpoint * cp,
} }
} }
X86ISA::ISA *
X86ISAParams::create()
{
return new X86ISA::ISA(this);
}

View file

@ -38,14 +38,16 @@
#include "arch/x86/regs/misc.hh" #include "arch/x86/regs/misc.hh"
#include "arch/x86/registers.hh" #include "arch/x86/registers.hh"
#include "base/types.hh" #include "base/types.hh"
#include "sim/sim_object.hh"
class Checkpoint; class Checkpoint;
class EventManager; class EventManager;
class ThreadContext; class ThreadContext;
struct X86ISAParams;
namespace X86ISA namespace X86ISA
{ {
class ISA class ISA : public SimObject
{ {
protected: protected:
MiscReg regVal[NUM_MISCREGS]; MiscReg regVal[NUM_MISCREGS];
@ -54,12 +56,12 @@ namespace X86ISA
ThreadContext *tc); ThreadContext *tc);
public: public:
typedef X86ISAParams Params;
void clear(); void clear();
ISA() ISA(Params *p);
{ const Params *params() const;
clear();
}
MiscReg readMiscRegNoEffect(int miscReg); MiscReg readMiscRegNoEffect(int miscReg);
MiscReg readMiscReg(int miscReg, ThreadContext *tc); MiscReg readMiscReg(int miscReg, ThreadContext *tc);

View file

@ -57,21 +57,33 @@ default_tracer = ExeTracer()
if buildEnv['TARGET_ISA'] == 'alpha': if buildEnv['TARGET_ISA'] == 'alpha':
from AlphaTLB import AlphaDTB, AlphaITB from AlphaTLB import AlphaDTB, AlphaITB
from AlphaInterrupts import AlphaInterrupts from AlphaInterrupts import AlphaInterrupts
from AlphaISA import AlphaISA
isa_class = AlphaISA
elif buildEnv['TARGET_ISA'] == 'sparc': elif buildEnv['TARGET_ISA'] == 'sparc':
from SparcTLB import SparcTLB from SparcTLB import SparcTLB
from SparcInterrupts import SparcInterrupts from SparcInterrupts import SparcInterrupts
from SparcISA import SparcISA
isa_class = SparcISA
elif buildEnv['TARGET_ISA'] == 'x86': elif buildEnv['TARGET_ISA'] == 'x86':
from X86TLB import X86TLB from X86TLB import X86TLB
from X86LocalApic import X86LocalApic from X86LocalApic import X86LocalApic
from X86ISA import X86ISA
isa_class = X86ISA
elif buildEnv['TARGET_ISA'] == 'mips': elif buildEnv['TARGET_ISA'] == 'mips':
from MipsTLB import MipsTLB from MipsTLB import MipsTLB
from MipsInterrupts import MipsInterrupts from MipsInterrupts import MipsInterrupts
from MipsISA import MipsISA
isa_class = MipsISA
elif buildEnv['TARGET_ISA'] == 'arm': elif buildEnv['TARGET_ISA'] == 'arm':
from ArmTLB import ArmTLB from ArmTLB import ArmTLB
from ArmInterrupts import ArmInterrupts from ArmInterrupts import ArmInterrupts
from ArmISA import ArmISA
isa_class = ArmISA
elif buildEnv['TARGET_ISA'] == 'power': elif buildEnv['TARGET_ISA'] == 'power':
from PowerTLB import PowerTLB from PowerTLB import PowerTLB
from PowerInterrupts import PowerInterrupts from PowerInterrupts import PowerInterrupts
from PowerISA import PowerISA
isa_class = PowerISA
class BaseCPU(MemObject): class BaseCPU(MemObject):
type = 'BaseCPU' type = 'BaseCPU'
@ -113,31 +125,37 @@ class BaseCPU(MemObject):
itb = Param.SparcTLB(SparcTLB(), "Instruction TLB") itb = Param.SparcTLB(SparcTLB(), "Instruction TLB")
interrupts = Param.SparcInterrupts( interrupts = Param.SparcInterrupts(
NULL, "Interrupt Controller") NULL, "Interrupt Controller")
isa = VectorParam.SparcISA([ isa_class() ], "ISA instance")
elif buildEnv['TARGET_ISA'] == 'alpha': elif buildEnv['TARGET_ISA'] == 'alpha':
dtb = Param.AlphaTLB(AlphaDTB(), "Data TLB") dtb = Param.AlphaTLB(AlphaDTB(), "Data TLB")
itb = Param.AlphaTLB(AlphaITB(), "Instruction TLB") itb = Param.AlphaTLB(AlphaITB(), "Instruction TLB")
interrupts = Param.AlphaInterrupts( interrupts = Param.AlphaInterrupts(
NULL, "Interrupt Controller") NULL, "Interrupt Controller")
isa = VectorParam.AlphaISA([ isa_class() ], "ISA instance")
elif buildEnv['TARGET_ISA'] == 'x86': elif buildEnv['TARGET_ISA'] == 'x86':
dtb = Param.X86TLB(X86TLB(), "Data TLB") dtb = Param.X86TLB(X86TLB(), "Data TLB")
itb = Param.X86TLB(X86TLB(), "Instruction TLB") itb = Param.X86TLB(X86TLB(), "Instruction TLB")
interrupts = Param.X86LocalApic(NULL, "Interrupt Controller") interrupts = Param.X86LocalApic(NULL, "Interrupt Controller")
isa = VectorParam.X86ISA([ isa_class() ], "ISA instance")
elif buildEnv['TARGET_ISA'] == 'mips': elif buildEnv['TARGET_ISA'] == 'mips':
dtb = Param.MipsTLB(MipsTLB(), "Data TLB") dtb = Param.MipsTLB(MipsTLB(), "Data TLB")
itb = Param.MipsTLB(MipsTLB(), "Instruction TLB") itb = Param.MipsTLB(MipsTLB(), "Instruction TLB")
interrupts = Param.MipsInterrupts( interrupts = Param.MipsInterrupts(
NULL, "Interrupt Controller") NULL, "Interrupt Controller")
isa = VectorParam.MipsISA([ isa_class() ], "ISA instance")
elif buildEnv['TARGET_ISA'] == 'arm': elif buildEnv['TARGET_ISA'] == 'arm':
dtb = Param.ArmTLB(ArmTLB(), "Data TLB") dtb = Param.ArmTLB(ArmTLB(), "Data TLB")
itb = Param.ArmTLB(ArmTLB(), "Instruction TLB") itb = Param.ArmTLB(ArmTLB(), "Instruction TLB")
interrupts = Param.ArmInterrupts( interrupts = Param.ArmInterrupts(
NULL, "Interrupt Controller") NULL, "Interrupt Controller")
isa = VectorParam.ArmISA([ isa_class() ], "ISA instance")
elif buildEnv['TARGET_ISA'] == 'power': elif buildEnv['TARGET_ISA'] == 'power':
UnifiedTLB = Param.Bool(True, "Is this a Unified TLB?") UnifiedTLB = Param.Bool(True, "Is this a Unified TLB?")
dtb = Param.PowerTLB(PowerTLB(), "Data TLB") dtb = Param.PowerTLB(PowerTLB(), "Data TLB")
itb = Param.PowerTLB(PowerTLB(), "Instruction TLB") itb = Param.PowerTLB(PowerTLB(), "Instruction TLB")
interrupts = Param.PowerInterrupts( interrupts = Param.PowerInterrupts(
NULL, "Interrupt Controller") NULL, "Interrupt Controller")
isa = VectorParam.PowerISA([ isa_class() ], "ISA instance")
else: else:
print "Don't know what TLB to use for ISA %s" % \ print "Don't know what TLB to use for ISA %s" % \
buildEnv['TARGET_ISA'] buildEnv['TARGET_ISA']
@ -241,5 +259,10 @@ class BaseCPU(MemObject):
self.toL2Bus.master = self.l2cache.cpu_side self.toL2Bus.master = self.l2cache.cpu_side
self._cached_ports = ['l2cache.mem_side'] self._cached_ports = ['l2cache.mem_side']
def createThreads(self):
self.isa = [ isa_class() for i in xrange(self.numThreads) ]
if self.checker != NULL:
self.checker.createThreads()
def addCheckerCpu(self): def addCheckerCpu(self):
pass pass

View file

@ -230,6 +230,11 @@ BaseCPU::BaseCPU(Params *p, bool is_checker)
profileEvent = new ProfileEvent(this, params()->profile); profileEvent = new ProfileEvent(this, params()->profile);
} }
tracer = params()->tracer; tracer = params()->tracer;
if (params()->isa.size() != numThreads) {
fatal("Number of ISAs (%i) assigned to the CPU does not equal number "
"of threads (%i).\n", params()->isa.size(), numThreads);
}
} }
void void

View file

@ -96,14 +96,17 @@ CheckerCPU::~CheckerCPU()
void void
CheckerCPU::setSystem(System *system) CheckerCPU::setSystem(System *system)
{ {
const Params *p(dynamic_cast<const Params *>(_params));
systemPtr = system; systemPtr = system;
if (FullSystem) { if (FullSystem) {
thread = new SimpleThread(this, 0, systemPtr, itb, dtb, false); thread = new SimpleThread(this, 0, systemPtr, itb, dtb,
p->isa[0], false);
} else { } else {
thread = new SimpleThread(this, 0, systemPtr, thread = new SimpleThread(this, 0, systemPtr,
workload.size() ? workload[0] : NULL, workload.size() ? workload[0] : NULL,
itb, dtb); itb, dtb, p->isa[0]);
} }
tc = thread->getTC(); tc = thread->getTC();

View file

@ -69,6 +69,7 @@ DummyCheckerParams::create()
params->itb = itb; params->itb = itb;
params->dtb = dtb; params->dtb = dtb;
params->isa = isa;
params->system = system; params->system = system;
params->cpu_id = cpu_id; params->cpu_id = cpu_id;
params->profile = profile; params->profile = profile;

View file

@ -230,6 +230,7 @@ InOrderCPU::InOrderCPU(Params *params)
tickEvent(this), tickEvent(this),
stageWidth(params->stageWidth), stageWidth(params->stageWidth),
resPool(new ResourcePool(this, params)), resPool(new ResourcePool(this, params)),
isa(numThreads, NULL),
timeBuffer(2 , 2), timeBuffer(2 , 2),
dataPort(resPool->getDataUnit(), ".dcache_port"), dataPort(resPool->getDataUnit(), ".dcache_port"),
instPort(resPool->getInstUnit(), ".icache_port"), instPort(resPool->getInstUnit(), ".icache_port"),
@ -280,6 +281,7 @@ InOrderCPU::InOrderCPU(Params *params)
} }
for (ThreadID tid = 0; tid < numThreads; ++tid) { for (ThreadID tid = 0; tid < numThreads; ++tid) {
isa[tid] = params->isa[tid];
pc[tid].set(0); pc[tid].set(0);
lastCommittedPC[tid].set(0); lastCommittedPC[tid].set(0);
@ -358,7 +360,7 @@ InOrderCPU::InOrderCPU(Params *params)
memset(intRegs[tid], 0, sizeof(intRegs[tid])); memset(intRegs[tid], 0, sizeof(intRegs[tid]));
memset(floatRegs.i[tid], 0, sizeof(floatRegs.i[tid])); memset(floatRegs.i[tid], 0, sizeof(floatRegs.i[tid]));
isa[tid].clear(); isa[tid]->clear();
// Define dummy instructions and resource requests to be used. // Define dummy instructions and resource requests to be used.
dummyInst[tid] = new InOrderDynInst(this, dummyInst[tid] = new InOrderDynInst(this,
@ -1249,11 +1251,11 @@ InOrderCPU::flattenRegIdx(RegIndex reg_idx, RegType &reg_type, ThreadID tid)
{ {
if (reg_idx < FP_Base_DepTag) { if (reg_idx < FP_Base_DepTag) {
reg_type = IntType; reg_type = IntType;
return isa[tid].flattenIntIndex(reg_idx); return isa[tid]->flattenIntIndex(reg_idx);
} else if (reg_idx < Ctrl_Base_DepTag) { } else if (reg_idx < Ctrl_Base_DepTag) {
reg_type = FloatType; reg_type = FloatType;
reg_idx -= FP_Base_DepTag; reg_idx -= FP_Base_DepTag;
return isa[tid].flattenFloatIndex(reg_idx); return isa[tid]->flattenFloatIndex(reg_idx);
} else { } else {
reg_type = MiscType; reg_type = MiscType;
return reg_idx - TheISA::Ctrl_Base_DepTag; return reg_idx - TheISA::Ctrl_Base_DepTag;
@ -1369,25 +1371,25 @@ InOrderCPU::setRegOtherThread(unsigned reg_idx, const MiscReg &val,
MiscReg MiscReg
InOrderCPU::readMiscRegNoEffect(int misc_reg, ThreadID tid) InOrderCPU::readMiscRegNoEffect(int misc_reg, ThreadID tid)
{ {
return isa[tid].readMiscRegNoEffect(misc_reg); return isa[tid]->readMiscRegNoEffect(misc_reg);
} }
MiscReg MiscReg
InOrderCPU::readMiscReg(int misc_reg, ThreadID tid) InOrderCPU::readMiscReg(int misc_reg, ThreadID tid)
{ {
return isa[tid].readMiscReg(misc_reg, tcBase(tid)); return isa[tid]->readMiscReg(misc_reg, tcBase(tid));
} }
void void
InOrderCPU::setMiscRegNoEffect(int misc_reg, const MiscReg &val, ThreadID tid) InOrderCPU::setMiscRegNoEffect(int misc_reg, const MiscReg &val, ThreadID tid)
{ {
isa[tid].setMiscRegNoEffect(misc_reg, val); isa[tid]->setMiscRegNoEffect(misc_reg, val);
} }
void void
InOrderCPU::setMiscReg(int misc_reg, const MiscReg &val, ThreadID tid) InOrderCPU::setMiscReg(int misc_reg, const MiscReg &val, ThreadID tid)
{ {
isa[tid].setMiscReg(misc_reg, val, tcBase(tid)); isa[tid]->setMiscReg(misc_reg, val, tcBase(tid));
} }

View file

@ -325,7 +325,7 @@ class InOrderCPU : public BaseCPU
TheISA::IntReg intRegs[ThePipeline::MaxThreads][TheISA::NumIntRegs]; TheISA::IntReg intRegs[ThePipeline::MaxThreads][TheISA::NumIntRegs];
/** ISA state */ /** ISA state */
TheISA::ISA isa[ThePipeline::MaxThreads]; std::vector<TheISA::ISA *> isa;
/** Dependency Tracker for Integer & Floating Point Regs */ /** Dependency Tracker for Integer & Floating Point Regs */
RegDepMap archRegDepMap[ThePipeline::MaxThreads]; RegDepMap archRegDepMap[ThePipeline::MaxThreads];

View file

@ -173,7 +173,7 @@ InOrderThreadContext::copyArchRegs(ThreadContext *src_tc)
void void
InOrderThreadContext::clearArchRegs() InOrderThreadContext::clearArchRegs()
{ {
cpu->isa[thread->threadId()].clear(); cpu->isa[thread->threadId()]->clear();
} }
@ -181,7 +181,7 @@ uint64_t
InOrderThreadContext::readIntReg(int reg_idx) InOrderThreadContext::readIntReg(int reg_idx)
{ {
ThreadID tid = thread->threadId(); ThreadID tid = thread->threadId();
reg_idx = cpu->isa[tid].flattenIntIndex(reg_idx); reg_idx = cpu->isa[tid]->flattenIntIndex(reg_idx);
return cpu->readIntReg(reg_idx, tid); return cpu->readIntReg(reg_idx, tid);
} }
@ -189,7 +189,7 @@ FloatReg
InOrderThreadContext::readFloatReg(int reg_idx) InOrderThreadContext::readFloatReg(int reg_idx)
{ {
ThreadID tid = thread->threadId(); ThreadID tid = thread->threadId();
reg_idx = cpu->isa[tid].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[tid]->flattenFloatIndex(reg_idx);
return cpu->readFloatReg(reg_idx, tid); return cpu->readFloatReg(reg_idx, tid);
} }
@ -197,7 +197,7 @@ FloatRegBits
InOrderThreadContext::readFloatRegBits(int reg_idx) InOrderThreadContext::readFloatRegBits(int reg_idx)
{ {
ThreadID tid = thread->threadId(); ThreadID tid = thread->threadId();
reg_idx = cpu->isa[tid].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[tid]->flattenFloatIndex(reg_idx);
return cpu->readFloatRegBits(reg_idx, tid); return cpu->readFloatRegBits(reg_idx, tid);
} }
@ -211,7 +211,7 @@ void
InOrderThreadContext::setIntReg(int reg_idx, uint64_t val) InOrderThreadContext::setIntReg(int reg_idx, uint64_t val)
{ {
ThreadID tid = thread->threadId(); ThreadID tid = thread->threadId();
reg_idx = cpu->isa[tid].flattenIntIndex(reg_idx); reg_idx = cpu->isa[tid]->flattenIntIndex(reg_idx);
cpu->setIntReg(reg_idx, val, tid); cpu->setIntReg(reg_idx, val, tid);
} }
@ -219,7 +219,7 @@ void
InOrderThreadContext::setFloatReg(int reg_idx, FloatReg val) InOrderThreadContext::setFloatReg(int reg_idx, FloatReg val)
{ {
ThreadID tid = thread->threadId(); ThreadID tid = thread->threadId();
reg_idx = cpu->isa[tid].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[tid]->flattenFloatIndex(reg_idx);
cpu->setFloatReg(reg_idx, val, tid); cpu->setFloatReg(reg_idx, val, tid);
} }
@ -227,7 +227,7 @@ void
InOrderThreadContext::setFloatRegBits(int reg_idx, FloatRegBits val) InOrderThreadContext::setFloatRegBits(int reg_idx, FloatRegBits val)
{ {
ThreadID tid = thread->threadId(); ThreadID tid = thread->threadId();
reg_idx = cpu->isa[tid].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[tid]->flattenFloatIndex(reg_idx);
cpu->setFloatRegBits(reg_idx, val, tid); cpu->setFloatRegBits(reg_idx, val, tid);
} }

View file

@ -254,10 +254,10 @@ class InOrderThreadContext : public ThreadContext
void setMiscReg(int misc_reg, const MiscReg &val); void setMiscReg(int misc_reg, const MiscReg &val);
int flattenIntIndex(int reg) int flattenIntIndex(int reg)
{ return cpu->isa[thread->threadId()].flattenIntIndex(reg); } { return cpu->isa[thread->threadId()]->flattenIntIndex(reg); }
int flattenFloatIndex(int reg) int flattenFloatIndex(int reg)
{ return cpu->isa[thread->threadId()].flattenFloatIndex(reg); } { return cpu->isa[thread->threadId()]->flattenFloatIndex(reg); }
void activateContext(Cycles delay) void activateContext(Cycles delay)
{ cpu->activateContext(thread->threadId(), delay); } { cpu->activateContext(thread->threadId(), delay); }

View file

@ -82,6 +82,7 @@ O3CheckerParams::create()
params->itb = itb; params->itb = itb;
params->dtb = dtb; params->dtb = dtb;
params->isa = isa;
params->system = system; params->system = system;
params->cpu_id = cpu_id; params->cpu_id = cpu_id;
params->profile = profile; params->profile = profile;

View file

@ -241,6 +241,8 @@ FullO3CPU<Impl>::FullO3CPU(DerivO3CPUParams *params)
TheISA::NumMiscRegs * numThreads, TheISA::NumMiscRegs * numThreads,
TheISA::ZeroReg), TheISA::ZeroReg),
isa(numThreads, NULL),
icachePort(&fetch, this), icachePort(&fetch, this),
dcachePort(&iew.ldstQueue, this), dcachePort(&iew.ldstQueue, this),
@ -340,6 +342,8 @@ FullO3CPU<Impl>::FullO3CPU(DerivO3CPUParams *params)
for (ThreadID tid = 0; tid < numThreads; tid++) { for (ThreadID tid = 0; tid < numThreads; tid++) {
bool bindRegs = (tid <= active_threads - 1); bool bindRegs = (tid <= active_threads - 1);
isa[tid] = params->isa[tid];
commitRenameMap[tid].init(TheISA::NumIntRegs, commitRenameMap[tid].init(TheISA::NumIntRegs,
params->numPhysIntRegs, params->numPhysIntRegs,
lreg_idx, //Index for Logical. Regs lreg_idx, //Index for Logical. Regs
@ -1285,7 +1289,7 @@ template <class Impl>
TheISA::MiscReg TheISA::MiscReg
FullO3CPU<Impl>::readMiscRegNoEffect(int misc_reg, ThreadID tid) FullO3CPU<Impl>::readMiscRegNoEffect(int misc_reg, ThreadID tid)
{ {
return this->isa[tid].readMiscRegNoEffect(misc_reg); return this->isa[tid]->readMiscRegNoEffect(misc_reg);
} }
template <class Impl> template <class Impl>
@ -1293,7 +1297,7 @@ TheISA::MiscReg
FullO3CPU<Impl>::readMiscReg(int misc_reg, ThreadID tid) FullO3CPU<Impl>::readMiscReg(int misc_reg, ThreadID tid)
{ {
miscRegfileReads++; miscRegfileReads++;
return this->isa[tid].readMiscReg(misc_reg, tcBase(tid)); return this->isa[tid]->readMiscReg(misc_reg, tcBase(tid));
} }
template <class Impl> template <class Impl>
@ -1301,7 +1305,7 @@ void
FullO3CPU<Impl>::setMiscRegNoEffect(int misc_reg, FullO3CPU<Impl>::setMiscRegNoEffect(int misc_reg,
const TheISA::MiscReg &val, ThreadID tid) const TheISA::MiscReg &val, ThreadID tid)
{ {
this->isa[tid].setMiscRegNoEffect(misc_reg, val); this->isa[tid]->setMiscRegNoEffect(misc_reg, val);
} }
template <class Impl> template <class Impl>
@ -1310,7 +1314,7 @@ FullO3CPU<Impl>::setMiscReg(int misc_reg,
const TheISA::MiscReg &val, ThreadID tid) const TheISA::MiscReg &val, ThreadID tid)
{ {
miscRegfileWrites++; miscRegfileWrites++;
this->isa[tid].setMiscReg(misc_reg, val, tcBase(tid)); this->isa[tid]->setMiscReg(misc_reg, val, tcBase(tid));
} }
template <class Impl> template <class Impl>

View file

@ -634,7 +634,7 @@ class FullO3CPU : public BaseO3CPU
/** Integer Register Scoreboard */ /** Integer Register Scoreboard */
Scoreboard scoreboard; Scoreboard scoreboard;
TheISA::ISA isa[Impl::MaxThreads]; std::vector<TheISA::ISA *> isa;
/** Instruction port. Note that it has to appear after the fetch stage. */ /** Instruction port. Note that it has to appear after the fetch stage. */
IcachePort icachePort; IcachePort icachePort;

View file

@ -219,14 +219,14 @@ template <class Impl>
void void
O3ThreadContext<Impl>::clearArchRegs() O3ThreadContext<Impl>::clearArchRegs()
{ {
cpu->isa[thread->threadId()].clear(); cpu->isa[thread->threadId()]->clear();
} }
template <class Impl> template <class Impl>
uint64_t uint64_t
O3ThreadContext<Impl>::readIntReg(int reg_idx) O3ThreadContext<Impl>::readIntReg(int reg_idx)
{ {
reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx); reg_idx = cpu->isa[thread->threadId()]->flattenIntIndex(reg_idx);
return cpu->readArchIntReg(reg_idx, thread->threadId()); return cpu->readArchIntReg(reg_idx, thread->threadId());
} }
@ -234,7 +234,7 @@ template <class Impl>
TheISA::FloatReg TheISA::FloatReg
O3ThreadContext<Impl>::readFloatReg(int reg_idx) O3ThreadContext<Impl>::readFloatReg(int reg_idx)
{ {
reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[thread->threadId()]->flattenFloatIndex(reg_idx);
return cpu->readArchFloatReg(reg_idx, thread->threadId()); return cpu->readArchFloatReg(reg_idx, thread->threadId());
} }
@ -242,7 +242,7 @@ template <class Impl>
TheISA::FloatRegBits TheISA::FloatRegBits
O3ThreadContext<Impl>::readFloatRegBits(int reg_idx) O3ThreadContext<Impl>::readFloatRegBits(int reg_idx)
{ {
reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[thread->threadId()]->flattenFloatIndex(reg_idx);
return cpu->readArchFloatRegInt(reg_idx, thread->threadId()); return cpu->readArchFloatRegInt(reg_idx, thread->threadId());
} }
@ -250,7 +250,7 @@ template <class Impl>
void void
O3ThreadContext<Impl>::setIntReg(int reg_idx, uint64_t val) O3ThreadContext<Impl>::setIntReg(int reg_idx, uint64_t val)
{ {
reg_idx = cpu->isa[thread->threadId()].flattenIntIndex(reg_idx); reg_idx = cpu->isa[thread->threadId()]->flattenIntIndex(reg_idx);
cpu->setArchIntReg(reg_idx, val, thread->threadId()); cpu->setArchIntReg(reg_idx, val, thread->threadId());
conditionalSquash(); conditionalSquash();
@ -260,7 +260,7 @@ template <class Impl>
void void
O3ThreadContext<Impl>::setFloatReg(int reg_idx, FloatReg val) O3ThreadContext<Impl>::setFloatReg(int reg_idx, FloatReg val)
{ {
reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[thread->threadId()]->flattenFloatIndex(reg_idx);
cpu->setArchFloatReg(reg_idx, val, thread->threadId()); cpu->setArchFloatReg(reg_idx, val, thread->threadId());
conditionalSquash(); conditionalSquash();
@ -270,7 +270,7 @@ template <class Impl>
void void
O3ThreadContext<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val) O3ThreadContext<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val)
{ {
reg_idx = cpu->isa[thread->threadId()].flattenFloatIndex(reg_idx); reg_idx = cpu->isa[thread->threadId()]->flattenFloatIndex(reg_idx);
cpu->setArchFloatRegInt(reg_idx, val, thread->threadId()); cpu->setArchFloatRegInt(reg_idx, val, thread->threadId());
conditionalSquash(); conditionalSquash();
@ -298,14 +298,14 @@ template <class Impl>
int int
O3ThreadContext<Impl>::flattenIntIndex(int reg) O3ThreadContext<Impl>::flattenIntIndex(int reg)
{ {
return cpu->isa[thread->threadId()].flattenIntIndex(reg); return cpu->isa[thread->threadId()]->flattenIntIndex(reg);
} }
template <class Impl> template <class Impl>
int int
O3ThreadContext<Impl>::flattenFloatIndex(int reg) O3ThreadContext<Impl>::flattenFloatIndex(int reg)
{ {
return cpu->isa[thread->threadId()].flattenFloatIndex(reg); return cpu->isa[thread->threadId()]->flattenFloatIndex(reg);
} }
template <class Impl> template <class Impl>

View file

@ -89,6 +89,7 @@ OzoneCheckerParams::create()
params->itb = itb; params->itb = itb;
params->dtb = dtb; params->dtb = dtb;
params->isa = isa;
params->system = system; params->system = system;
params->cpu_id = cpu_id; params->cpu_id = cpu_id;
params->profile = profile; params->profile = profile;

View file

@ -80,6 +80,7 @@ DerivOzoneCPUParams::create()
params->itb = itb; params->itb = itb;
params->dtb = dtb; params->dtb = dtb;
params->isa = isa;
params->system = system; params->system = system;
params->cpu_id = cpu_id; params->cpu_id = cpu_id;

View file

@ -83,6 +83,7 @@ SimpleOzoneCPUParams::create()
params->itb = itb; params->itb = itb;
params->dtb = dtb; params->dtb = dtb;
params->isa = isa;
params->system = system; params->system = system;
params->cpu_id = cpu_id; params->cpu_id = cpu_id;

View file

@ -87,10 +87,11 @@ BaseSimpleCPU::BaseSimpleCPU(BaseSimpleCPUParams *p)
: BaseCPU(p), traceData(NULL), thread(NULL) : BaseCPU(p), traceData(NULL), thread(NULL)
{ {
if (FullSystem) if (FullSystem)
thread = new SimpleThread(this, 0, p->system, p->itb, p->dtb); thread = new SimpleThread(this, 0, p->system, p->itb, p->dtb,
p->isa[0]);
else else
thread = new SimpleThread(this, /* thread_num */ 0, p->system, thread = new SimpleThread(this, /* thread_num */ 0, p->system,
p->workload[0], p->itb, p->dtb); p->workload[0], p->itb, p->dtb, p->isa[0]);
thread->setStatus(ThreadContext::Halted); thread->setStatus(ThreadContext::Halted);

View file

@ -61,9 +61,9 @@ using namespace std;
// constructor // constructor
SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys, SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys,
Process *_process, TheISA::TLB *_itb, Process *_process, TheISA::TLB *_itb,
TheISA::TLB *_dtb) TheISA::TLB *_dtb, TheISA::ISA *_isa)
: ThreadState(_cpu, _thread_num, _process), system(_sys), itb(_itb), : ThreadState(_cpu, _thread_num, _process), isa(_isa), system(_sys),
dtb(_dtb) itb(_itb), dtb(_dtb)
{ {
clearArchRegs(); clearArchRegs();
tc = new ProxyThreadContext<SimpleThread>(this); tc = new ProxyThreadContext<SimpleThread>(this);
@ -71,8 +71,9 @@ SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys,
SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys, SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys,
TheISA::TLB *_itb, TheISA::TLB *_dtb, TheISA::TLB *_itb, TheISA::TLB *_dtb,
bool use_kernel_stats) TheISA::ISA *_isa, bool use_kernel_stats)
: ThreadState(_cpu, _thread_num, NULL), system(_sys), itb(_itb), dtb(_dtb) : ThreadState(_cpu, _thread_num, NULL), isa(_isa), system(_sys), itb(_itb),
dtb(_dtb)
{ {
tc = new ProxyThreadContext<SimpleThread>(this); tc = new ProxyThreadContext<SimpleThread>(this);
@ -99,7 +100,7 @@ SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys,
} }
SimpleThread::SimpleThread() SimpleThread::SimpleThread()
: ThreadState(NULL, -1, NULL) : ThreadState(NULL, -1, NULL), isa(NULL)
{ {
tc = new ProxyThreadContext<SimpleThread>(this); tc = new ProxyThreadContext<SimpleThread>(this);
} }
@ -182,7 +183,7 @@ SimpleThread::serialize(ostream &os)
// //
// Now must serialize all the ISA dependent state // Now must serialize all the ISA dependent state
// //
isa.serialize(baseCpu, os); isa->serialize(baseCpu, os);
} }
@ -198,7 +199,7 @@ SimpleThread::unserialize(Checkpoint *cp, const std::string &section)
// //
// Now must unserialize all the ISA dependent state // Now must unserialize all the ISA dependent state
// //
isa.unserialize(baseCpu, cp, section); isa->unserialize(baseCpu, cp, section);
} }
void void

View file

@ -108,7 +108,7 @@ class SimpleThread : public ThreadState
FloatRegBits i[TheISA::NumFloatRegs]; FloatRegBits i[TheISA::NumFloatRegs];
} floatRegs; } floatRegs;
TheISA::IntReg intRegs[TheISA::NumIntRegs]; TheISA::IntReg intRegs[TheISA::NumIntRegs];
TheISA::ISA isa; // one "instance" of the current ISA. TheISA::ISA *const isa; // one "instance" of the current ISA.
TheISA::PCState _pcState; TheISA::PCState _pcState;
@ -133,11 +133,12 @@ class SimpleThread : public ThreadState
// constructor: initialize SimpleThread from given process structure // constructor: initialize SimpleThread from given process structure
// FS // FS
SimpleThread(BaseCPU *_cpu, int _thread_num, System *_system, SimpleThread(BaseCPU *_cpu, int _thread_num, System *_system,
TheISA::TLB *_itb, TheISA::TLB *_dtb, TheISA::TLB *_itb, TheISA::TLB *_dtb, TheISA::ISA *_isa,
bool use_kernel_stats = true); bool use_kernel_stats = true);
// SE // SE
SimpleThread(BaseCPU *_cpu, int _thread_num, System *_system, SimpleThread(BaseCPU *_cpu, int _thread_num, System *_system,
Process *_process, TheISA::TLB *_itb, TheISA::TLB *_dtb); Process *_process, TheISA::TLB *_itb, TheISA::TLB *_dtb,
TheISA::ISA *_isa);
SimpleThread(); SimpleThread();
@ -226,7 +227,7 @@ class SimpleThread : public ThreadState
_pcState = 0; _pcState = 0;
memset(intRegs, 0, sizeof(intRegs)); memset(intRegs, 0, sizeof(intRegs));
memset(floatRegs.i, 0, sizeof(floatRegs.i)); memset(floatRegs.i, 0, sizeof(floatRegs.i));
isa.clear(); isa->clear();
} }
// //
@ -234,7 +235,7 @@ class SimpleThread : public ThreadState
// //
uint64_t readIntReg(int reg_idx) uint64_t readIntReg(int reg_idx)
{ {
int flatIndex = isa.flattenIntIndex(reg_idx); int flatIndex = isa->flattenIntIndex(reg_idx);
assert(flatIndex < TheISA::NumIntRegs); assert(flatIndex < TheISA::NumIntRegs);
uint64_t regVal = intRegs[flatIndex]; uint64_t regVal = intRegs[flatIndex];
DPRINTF(IntRegs, "Reading int reg %d (%d) as %#x.\n", DPRINTF(IntRegs, "Reading int reg %d (%d) as %#x.\n",
@ -244,7 +245,7 @@ class SimpleThread : public ThreadState
FloatReg readFloatReg(int reg_idx) FloatReg readFloatReg(int reg_idx)
{ {
int flatIndex = isa.flattenFloatIndex(reg_idx); int flatIndex = isa->flattenFloatIndex(reg_idx);
assert(flatIndex < TheISA::NumFloatRegs); assert(flatIndex < TheISA::NumFloatRegs);
FloatReg regVal = floatRegs.f[flatIndex]; FloatReg regVal = floatRegs.f[flatIndex];
DPRINTF(FloatRegs, "Reading float reg %d (%d) as %f, %#x.\n", DPRINTF(FloatRegs, "Reading float reg %d (%d) as %f, %#x.\n",
@ -254,7 +255,7 @@ class SimpleThread : public ThreadState
FloatRegBits readFloatRegBits(int reg_idx) FloatRegBits readFloatRegBits(int reg_idx)
{ {
int flatIndex = isa.flattenFloatIndex(reg_idx); int flatIndex = isa->flattenFloatIndex(reg_idx);
assert(flatIndex < TheISA::NumFloatRegs); assert(flatIndex < TheISA::NumFloatRegs);
FloatRegBits regVal = floatRegs.i[flatIndex]; FloatRegBits regVal = floatRegs.i[flatIndex];
DPRINTF(FloatRegs, "Reading float reg %d (%d) bits as %#x, %f.\n", DPRINTF(FloatRegs, "Reading float reg %d (%d) bits as %#x, %f.\n",
@ -264,7 +265,7 @@ class SimpleThread : public ThreadState
void setIntReg(int reg_idx, uint64_t val) void setIntReg(int reg_idx, uint64_t val)
{ {
int flatIndex = isa.flattenIntIndex(reg_idx); int flatIndex = isa->flattenIntIndex(reg_idx);
assert(flatIndex < TheISA::NumIntRegs); assert(flatIndex < TheISA::NumIntRegs);
DPRINTF(IntRegs, "Setting int reg %d (%d) to %#x.\n", DPRINTF(IntRegs, "Setting int reg %d (%d) to %#x.\n",
reg_idx, flatIndex, val); reg_idx, flatIndex, val);
@ -273,7 +274,7 @@ class SimpleThread : public ThreadState
void setFloatReg(int reg_idx, FloatReg val) void setFloatReg(int reg_idx, FloatReg val)
{ {
int flatIndex = isa.flattenFloatIndex(reg_idx); int flatIndex = isa->flattenFloatIndex(reg_idx);
assert(flatIndex < TheISA::NumFloatRegs); assert(flatIndex < TheISA::NumFloatRegs);
floatRegs.f[flatIndex] = val; floatRegs.f[flatIndex] = val;
DPRINTF(FloatRegs, "Setting float reg %d (%d) to %f, %#x.\n", DPRINTF(FloatRegs, "Setting float reg %d (%d) to %f, %#x.\n",
@ -282,7 +283,7 @@ class SimpleThread : public ThreadState
void setFloatRegBits(int reg_idx, FloatRegBits val) void setFloatRegBits(int reg_idx, FloatRegBits val)
{ {
int flatIndex = isa.flattenFloatIndex(reg_idx); int flatIndex = isa->flattenFloatIndex(reg_idx);
assert(flatIndex < TheISA::NumFloatRegs); assert(flatIndex < TheISA::NumFloatRegs);
// XXX: Fix array out of bounds compiler error for gem5.fast // XXX: Fix array out of bounds compiler error for gem5.fast
// when checkercpu enabled // when checkercpu enabled
@ -341,37 +342,37 @@ class SimpleThread : public ThreadState
MiscReg MiscReg
readMiscRegNoEffect(int misc_reg, ThreadID tid = 0) readMiscRegNoEffect(int misc_reg, ThreadID tid = 0)
{ {
return isa.readMiscRegNoEffect(misc_reg); return isa->readMiscRegNoEffect(misc_reg);
} }
MiscReg MiscReg
readMiscReg(int misc_reg, ThreadID tid = 0) readMiscReg(int misc_reg, ThreadID tid = 0)
{ {
return isa.readMiscReg(misc_reg, tc); return isa->readMiscReg(misc_reg, tc);
} }
void void
setMiscRegNoEffect(int misc_reg, const MiscReg &val, ThreadID tid = 0) setMiscRegNoEffect(int misc_reg, const MiscReg &val, ThreadID tid = 0)
{ {
return isa.setMiscRegNoEffect(misc_reg, val); return isa->setMiscRegNoEffect(misc_reg, val);
} }
void void
setMiscReg(int misc_reg, const MiscReg &val, ThreadID tid = 0) setMiscReg(int misc_reg, const MiscReg &val, ThreadID tid = 0)
{ {
return isa.setMiscReg(misc_reg, val, tc); return isa->setMiscReg(misc_reg, val, tc);
} }
int int
flattenIntIndex(int reg) flattenIntIndex(int reg)
{ {
return isa.flattenIntIndex(reg); return isa->flattenIntIndex(reg);
} }
int int
flattenFloatIndex(int reg) flattenFloatIndex(int reg)
{ {
return isa.flattenFloatIndex(reg); return isa->flattenFloatIndex(reg);
} }
unsigned readStCondFailures() { return storeCondFailures; } unsigned readStCondFailures() { return storeCondFailures; }

View file

@ -77,6 +77,31 @@ maxtick = m5.MaxTick
sys.path.append(joinpath(tests_root, category, mode, name)) sys.path.append(joinpath(tests_root, category, mode, name))
execfile(joinpath(tests_root, category, mode, name, 'test.py')) execfile(joinpath(tests_root, category, mode, name, 'test.py'))
# Initialize all CPUs in a system
def initCPUs(sys):
def initCPU(cpu):
# We might actually have a MemTest object or something similar
# here that just pretends to be a CPU.
if isinstance(cpu, BaseCPU):
cpu.createThreads()
# The CPU attribute doesn't exist in some cases, e.g. the Ruby
# testers.
if not hasattr(sys, "cpu"):
return
# The CPU can either be a list of CPUs or a single object.
if isinstance(sys.cpu, list):
[ initCPU(cpu) for cpu in sys.cpu ]
else:
initCPU(sys.cpu)
# We might be creating a single system or a dual system. Try
# initializing the CPUs in all known system attributes.
for sysattr in [ "system", "testsys", "drivesys" ]:
if hasattr(root, sysattr):
initCPUs(getattr(root, sysattr))
# instantiate configuration # instantiate configuration
m5.instantiate() m5.instantiate()