Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Gabe Black
|
|
|
|
* Kevin Lim
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
*/
|
|
|
|
|
2006-10-25 23:49:41 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
2006-03-07 10:32:34 +01:00
|
|
|
#include "arch/sparc/faults.hh"
|
2006-10-25 23:49:41 +02:00
|
|
|
#include "arch/sparc/isa_traits.hh"
|
2011-10-31 10:58:24 +01:00
|
|
|
#include "arch/sparc/process.hh"
|
2006-11-08 19:58:00 +01:00
|
|
|
#include "arch/sparc/types.hh"
|
2006-10-25 23:49:41 +02:00
|
|
|
#include "base/bitfield.hh"
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
#include "base/trace.hh"
|
2011-10-13 10:11:00 +02:00
|
|
|
#include "sim/full_system.hh"
|
2006-10-25 23:49:41 +02:00
|
|
|
#include "cpu/base.hh"
|
|
|
|
#include "cpu/thread_context.hh"
|
2006-06-26 22:49:05 +02:00
|
|
|
#include "mem/page_table.hh"
|
2006-10-25 23:49:41 +02:00
|
|
|
#include "sim/process.hh"
|
2011-10-13 10:11:00 +02:00
|
|
|
#include "sim/full_system.hh"
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
|
2006-10-25 23:49:41 +02:00
|
|
|
using namespace std;
|
|
|
|
|
2006-03-07 10:32:34 +01:00
|
|
|
namespace SparcISA
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
{
|
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<PowerOnReset>::vals =
|
|
|
|
{"power_on_reset", 0x001, 0, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<WatchDogReset>::vals =
|
|
|
|
{"watch_dog_reset", 0x002, 120, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<ExternallyInitiatedReset>::vals =
|
|
|
|
{"externally_initiated_reset", 0x003, 110, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<SoftwareInitiatedReset>::vals =
|
|
|
|
{"software_initiated_reset", 0x004, 130, {SH, SH, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<REDStateException>::vals =
|
|
|
|
{"RED_state_exception", 0x005, 1, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<StoreError>::vals =
|
|
|
|
{"store_error", 0x007, 201, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<InstructionAccessException>::vals =
|
|
|
|
{"instruction_access_exception", 0x008, 300, {H, H, H}};
|
|
|
|
|
|
|
|
//XXX This trap is apparently dropped from ua2005
|
|
|
|
/*template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<InstructionAccessMMUMiss>::vals =
|
|
|
|
{"inst_mmu", 0x009, 2, {H, H, H}};*/
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<InstructionAccessError>::vals =
|
|
|
|
{"instruction_access_error", 0x00A, 400, {H, H, H}};
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<IllegalInstruction>::vals =
|
|
|
|
{"illegal_instruction", 0x010, 620, {H, H, H}};
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<PrivilegedOpcode>::vals =
|
|
|
|
{"privileged_opcode", 0x011, 700, {P, SH, SH}};
|
|
|
|
|
|
|
|
//XXX This trap is apparently dropped from ua2005
|
|
|
|
/*template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<UnimplementedLDD>::vals =
|
|
|
|
{"unimp_ldd", 0x012, 6, {H, H, H}};*/
|
|
|
|
|
|
|
|
//XXX This trap is apparently dropped from ua2005
|
|
|
|
/*template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<UnimplementedSTD>::vals =
|
|
|
|
{"unimp_std", 0x013, 6, {H, H, H}};*/
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<FpDisabled>::vals =
|
|
|
|
{"fp_disabled", 0x020, 800, {P, P, H}};
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<FpExceptionIEEE754>::vals =
|
|
|
|
{"fp_exception_ieee_754", 0x021, 1110, {P, P, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<FpExceptionOther>::vals =
|
|
|
|
{"fp_exception_other", 0x022, 1110, {P, P, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<TagOverflow>::vals =
|
|
|
|
{"tag_overflow", 0x023, 1400, {P, P, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<CleanWindow>::vals =
|
|
|
|
{"clean_window", 0x024, 1010, {P, P, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<DivisionByZero>::vals =
|
|
|
|
{"division_by_zero", 0x028, 1500, {P, P, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<InternalProcessorError>::vals =
|
|
|
|
{"internal_processor_error", 0x029, 4, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<InstructionInvalidTSBEntry>::vals =
|
|
|
|
{"instruction_invalid_tsb_entry", 0x02A, 210, {H, H, SH}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<DataInvalidTSBEntry>::vals =
|
|
|
|
{"data_invalid_tsb_entry", 0x02B, 1203, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<DataAccessException>::vals =
|
|
|
|
{"data_access_exception", 0x030, 1201, {H, H, H}};
|
|
|
|
|
|
|
|
//XXX This trap is apparently dropped from ua2005
|
|
|
|
/*template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<DataAccessMMUMiss>::vals =
|
|
|
|
{"data_mmu", 0x031, 12, {H, H, H}};*/
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<DataAccessError>::vals =
|
|
|
|
{"data_access_error", 0x032, 1210, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<DataAccessProtection>::vals =
|
|
|
|
{"data_access_protection", 0x033, 1207, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<MemAddressNotAligned>::vals =
|
|
|
|
{"mem_address_not_aligned", 0x034, 1020, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<LDDFMemAddressNotAligned>::vals =
|
|
|
|
{"LDDF_mem_address_not_aligned", 0x035, 1010, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<STDFMemAddressNotAligned>::vals =
|
|
|
|
{"STDF_mem_address_not_aligned", 0x036, 1010, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<PrivilegedAction>::vals =
|
|
|
|
{"privileged_action", 0x037, 1110, {H, H, SH}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<LDQFMemAddressNotAligned>::vals =
|
|
|
|
{"LDQF_mem_address_not_aligned", 0x038, 1010, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<STQFMemAddressNotAligned>::vals =
|
|
|
|
{"STQF_mem_address_not_aligned", 0x039, 1010, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<InstructionRealTranslationMiss>::vals =
|
|
|
|
{"instruction_real_translation_miss", 0x03E, 208, {H, H, SH}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<DataRealTranslationMiss>::vals =
|
|
|
|
{"data_real_translation_miss", 0x03F, 1203, {H, H, H}};
|
|
|
|
|
|
|
|
//XXX This trap is apparently dropped from ua2005
|
|
|
|
/*template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<AsyncDataError>::vals =
|
|
|
|
{"async_data", 0x040, 2, {H, H, H}};*/
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<InterruptLevelN>::vals =
|
2007-01-05 21:04:17 +01:00
|
|
|
{"interrupt_level_n", 0x040, 0, {P, P, SH}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<HstickMatch>::vals =
|
|
|
|
{"hstick_match", 0x05E, 1601, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<TrapLevelZero>::vals =
|
|
|
|
{"trap_level_zero", 0x05F, 202, {H, H, SH}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
2007-03-03 23:22:47 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<InterruptVector>::vals =
|
|
|
|
{"interrupt_vector", 0x060, 2630, {H, H, H}};
|
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<PAWatchpoint>::vals =
|
|
|
|
{"PA_watchpoint", 0x061, 1209, {H, H, H}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<VAWatchpoint>::vals =
|
|
|
|
{"VA_watchpoint", 0x062, 1120, {P, P, SH}};
|
2006-11-08 14:12:19 +01:00
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<FastInstructionAccessMMUMiss>::vals =
|
|
|
|
{"fast_instruction_access_MMU_miss", 0x064, 208, {H, H, SH}};
|
2006-03-07 10:32:34 +01:00
|
|
|
|
2006-11-08 16:27:38 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<FastDataAccessMMUMiss>::vals =
|
|
|
|
{"fast_data_access_MMU_miss", 0x068, 1203, {H, H, H}};
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<FastDataAccessProtection>::vals =
|
|
|
|
{"fast_data_access_protection", 0x06C, 1207, {H, H, H}};
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<InstructionBreakpoint>::vals =
|
|
|
|
{"instruction_break", 0x076, 610, {H, H, H}};
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<CpuMondo>::vals =
|
|
|
|
{"cpu_mondo", 0x07C, 1608, {P, P, SH}};
|
|
|
|
|
|
|
|
template<> SparcFaultBase::FaultVals
|
|
|
|
SparcFault<DevMondo>::vals =
|
|
|
|
{"dev_mondo", 0x07D, 1611, {P, P, SH}};
|
2006-04-06 20:53:14 +02:00
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2007-01-09 00:07:17 +01:00
|
|
|
SparcFault<ResumableError>::vals =
|
2006-11-08 16:27:38 +01:00
|
|
|
{"resume_error", 0x07E, 3330, {P, P, SH}};
|
2006-03-07 10:32:34 +01:00
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<SpillNNormal>::vals =
|
|
|
|
{"spill_n_normal", 0x080, 900, {P, P, H}};
|
2006-03-07 10:32:34 +01:00
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<SpillNOther>::vals =
|
|
|
|
{"spill_n_other", 0x0A0, 900, {P, P, H}};
|
2006-03-07 10:32:34 +01:00
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<FillNNormal>::vals =
|
|
|
|
{"fill_n_normal", 0x0C0, 900, {P, P, H}};
|
2006-03-07 10:32:34 +01:00
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<FillNOther>::vals =
|
|
|
|
{"fill_n_other", 0x0E0, 900, {P, P, H}};
|
2006-03-07 10:32:34 +01:00
|
|
|
|
2006-11-08 14:12:19 +01:00
|
|
|
template<> SparcFaultBase::FaultVals
|
2006-11-08 16:27:38 +01:00
|
|
|
SparcFault<TrapInstruction>::vals =
|
|
|
|
{"trap_instruction", 0x100, 1602, {P, P, H}};
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
|
2006-11-08 19:58:00 +01:00
|
|
|
/**
|
|
|
|
* This causes the thread context to enter RED state. This causes the side
|
|
|
|
* effects which go with entering RED state because of a trap.
|
|
|
|
*/
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
enterREDState(ThreadContext *tc)
|
2006-11-08 19:58:00 +01:00
|
|
|
{
|
|
|
|
//@todo Disable the mmu?
|
|
|
|
//@todo Disable watchpoints?
|
2012-02-11 23:16:38 +01:00
|
|
|
HPSTATE hpstate= tc->readMiscRegNoEffect(MISCREG_HPSTATE);
|
|
|
|
hpstate.red = 1;
|
|
|
|
hpstate.hpriv = 1;
|
|
|
|
tc->setMiscReg(MISCREG_HPSTATE, hpstate);
|
2010-11-11 11:03:58 +01:00
|
|
|
// PSTATE.priv is set to 1 here. The manual says it should be 0, but
|
|
|
|
// Legion sets it to 1.
|
2012-02-11 23:16:38 +01:00
|
|
|
PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
|
|
|
|
pstate.priv = 1;
|
|
|
|
tc->setMiscReg(MISCREG_PSTATE, pstate);
|
2006-11-08 19:58:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This sets everything up for a RED state trap except for actually jumping to
|
|
|
|
* the handler.
|
|
|
|
*/
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
doREDFault(ThreadContext *tc, TrapType tt)
|
2006-11-08 19:58:00 +01:00
|
|
|
{
|
2007-03-07 21:04:31 +01:00
|
|
|
MiscReg TL = tc->readMiscRegNoEffect(MISCREG_TL);
|
|
|
|
MiscReg TSTATE = tc->readMiscRegNoEffect(MISCREG_TSTATE);
|
2012-02-11 23:16:38 +01:00
|
|
|
PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
|
|
|
|
HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
|
2006-12-05 07:55:02 +01:00
|
|
|
MiscReg CCR = tc->readIntReg(NumIntArchRegs + 2);
|
2007-03-07 21:04:31 +01:00
|
|
|
MiscReg ASI = tc->readMiscRegNoEffect(MISCREG_ASI);
|
|
|
|
MiscReg CWP = tc->readMiscRegNoEffect(MISCREG_CWP);
|
|
|
|
MiscReg CANSAVE = tc->readMiscRegNoEffect(NumIntArchRegs + 3);
|
|
|
|
MiscReg GL = tc->readMiscRegNoEffect(MISCREG_GL);
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
PCState pc = tc->pcState();
|
2006-11-08 19:58:00 +01:00
|
|
|
|
|
|
|
TL++;
|
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
Addr pcMask = pstate.am ? mask(32) : mask(64);
|
2007-01-23 21:50:03 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.gl to gl
|
2006-11-08 19:58:00 +01:00
|
|
|
replaceBits(TSTATE, 42, 40, GL);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.ccr to ccr
|
2006-11-08 19:58:00 +01:00
|
|
|
replaceBits(TSTATE, 39, 32, CCR);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.asi to asi
|
2006-11-08 19:58:00 +01:00
|
|
|
replaceBits(TSTATE, 31, 24, ASI);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.pstate to pstate
|
2012-02-11 23:16:38 +01:00
|
|
|
replaceBits(TSTATE, 20, 8, pstate);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.cwp to cwp
|
2006-11-08 19:58:00 +01:00
|
|
|
replaceBits(TSTATE, 4, 0, CWP);
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Write back TSTATE
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TSTATE, TSTATE);
|
2006-11-08 19:58:00 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TPC to PC
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TPC, pc.pc() & pcMask);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TNPC to NPC
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TNPC, pc.npc() & pcMask);
|
2006-11-08 19:58:00 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// set HTSTATE.hpstate to hpstate
|
2012-02-11 23:16:38 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_HTSTATE, hpstate);
|
2006-11-08 19:58:00 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// TT = trap type;
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TT, tt);
|
2006-11-08 19:58:00 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Update GL
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscReg(MISCREG_GL, min<int>(GL+1, MaxGL));
|
2006-11-08 19:58:00 +01:00
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
bool priv = pstate.priv; // just save the priv bit
|
|
|
|
pstate = 0;
|
|
|
|
pstate.priv = priv;
|
|
|
|
pstate.pef = 1;
|
|
|
|
tc->setMiscRegNoEffect(MISCREG_PSTATE, pstate);
|
2006-11-08 19:58:00 +01:00
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
hpstate.red = 1;
|
|
|
|
hpstate.hpriv = 1;
|
|
|
|
hpstate.ibe = 0;
|
|
|
|
hpstate.tlz = 0;
|
|
|
|
tc->setMiscRegNoEffect(MISCREG_HPSTATE, hpstate);
|
2006-11-08 19:58:00 +01:00
|
|
|
|
|
|
|
bool changedCWP = true;
|
2010-11-11 11:03:58 +01:00
|
|
|
if (tt == 0x24)
|
2006-11-08 19:58:00 +01:00
|
|
|
CWP++;
|
2010-11-11 11:03:58 +01:00
|
|
|
else if (0x80 <= tt && tt <= 0xbf)
|
2006-11-08 19:58:00 +01:00
|
|
|
CWP += (CANSAVE + 2);
|
2010-11-11 11:03:58 +01:00
|
|
|
else if (0xc0 <= tt && tt <= 0xff)
|
2006-11-08 19:58:00 +01:00
|
|
|
CWP--;
|
|
|
|
else
|
|
|
|
changedCWP = false;
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
if (changedCWP) {
|
2006-11-08 19:58:00 +01:00
|
|
|
CWP = (CWP + NWindows) % NWindows;
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscReg(MISCREG_CWP, CWP);
|
2006-11-08 19:58:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-25 23:49:41 +02:00
|
|
|
/**
|
|
|
|
* This sets everything up for a normal trap except for actually jumping to
|
2006-11-08 19:58:00 +01:00
|
|
|
* the handler.
|
2006-10-25 23:49:41 +02:00
|
|
|
*/
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
doNormalFault(ThreadContext *tc, TrapType tt, bool gotoHpriv)
|
2006-10-25 23:49:41 +02:00
|
|
|
{
|
2007-03-07 21:04:31 +01:00
|
|
|
MiscReg TL = tc->readMiscRegNoEffect(MISCREG_TL);
|
|
|
|
MiscReg TSTATE = tc->readMiscRegNoEffect(MISCREG_TSTATE);
|
2012-02-11 23:16:38 +01:00
|
|
|
PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
|
|
|
|
HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
|
2006-12-05 07:55:02 +01:00
|
|
|
MiscReg CCR = tc->readIntReg(NumIntArchRegs + 2);
|
2007-03-07 21:04:31 +01:00
|
|
|
MiscReg ASI = tc->readMiscRegNoEffect(MISCREG_ASI);
|
|
|
|
MiscReg CWP = tc->readMiscRegNoEffect(MISCREG_CWP);
|
2006-12-05 07:55:02 +01:00
|
|
|
MiscReg CANSAVE = tc->readIntReg(NumIntArchRegs + 3);
|
2007-03-07 21:04:31 +01:00
|
|
|
MiscReg GL = tc->readMiscRegNoEffect(MISCREG_GL);
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
PCState pc = tc->pcState();
|
2007-01-23 21:50:03 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Increment the trap level
|
2006-10-25 23:49:41 +02:00
|
|
|
TL++;
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TL, TL);
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
Addr pcMask = pstate.am ? mask(32) : mask(64);
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Save off state
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.gl to gl
|
2006-10-25 23:49:41 +02:00
|
|
|
replaceBits(TSTATE, 42, 40, GL);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.ccr to ccr
|
2006-10-25 23:49:41 +02:00
|
|
|
replaceBits(TSTATE, 39, 32, CCR);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.asi to asi
|
2006-10-25 23:49:41 +02:00
|
|
|
replaceBits(TSTATE, 31, 24, ASI);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.pstate to pstate
|
2012-02-11 23:16:38 +01:00
|
|
|
replaceBits(TSTATE, 20, 8, pstate);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TSTATE.cwp to cwp
|
2006-10-25 23:49:41 +02:00
|
|
|
replaceBits(TSTATE, 4, 0, CWP);
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Write back TSTATE
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TSTATE, TSTATE);
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TPC to PC
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TPC, pc.pc() & pcMask);
|
2010-11-11 11:03:58 +01:00
|
|
|
// set TNPC to NPC
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TNPC, pc.npc() & pcMask);
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// set HTSTATE.hpstate to hpstate
|
2012-02-11 23:16:38 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_HTSTATE, hpstate);
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// TT = trap type;
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TT, tt);
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Update the global register level
|
2007-01-09 00:07:17 +01:00
|
|
|
if (!gotoHpriv)
|
2010-11-11 11:03:58 +01:00
|
|
|
tc->setMiscReg(MISCREG_GL, min<int>(GL + 1, MaxPGL));
|
2006-10-25 23:49:41 +02:00
|
|
|
else
|
2010-11-11 11:03:58 +01:00
|
|
|
tc->setMiscReg(MISCREG_GL, min<int>(GL + 1, MaxGL));
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
// pstate.mm is unchanged
|
|
|
|
pstate.pef = 1; // PSTATE.pef = whether or not an fpu is present
|
|
|
|
pstate.am = 0;
|
|
|
|
pstate.ie = 0;
|
|
|
|
// pstate.tle is unchanged
|
|
|
|
// pstate.tct = 0
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
if (gotoHpriv) {
|
2012-02-11 23:16:38 +01:00
|
|
|
pstate.cle = 0;
|
2010-11-11 11:03:58 +01:00
|
|
|
// The manual says PSTATE.priv should be 0, but Legion leaves it alone
|
2012-02-11 23:16:38 +01:00
|
|
|
hpstate.red = 0;
|
|
|
|
hpstate.hpriv = 1;
|
|
|
|
hpstate.ibe = 0;
|
|
|
|
// hpstate.tlz is unchanged
|
|
|
|
tc->setMiscRegNoEffect(MISCREG_HPSTATE, hpstate);
|
2007-01-23 03:55:43 +01:00
|
|
|
} else { // we are going to priv
|
2012-02-11 23:16:38 +01:00
|
|
|
pstate.priv = 1;
|
|
|
|
pstate.cle = pstate.tle;
|
2006-10-25 23:49:41 +02:00
|
|
|
}
|
2012-02-11 23:16:38 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_PSTATE, pstate);
|
2007-01-23 03:55:43 +01:00
|
|
|
|
2006-10-25 23:49:41 +02:00
|
|
|
|
|
|
|
bool changedCWP = true;
|
2007-01-09 00:07:17 +01:00
|
|
|
if (tt == 0x24)
|
2006-10-25 23:49:41 +02:00
|
|
|
CWP++;
|
2007-01-09 00:07:17 +01:00
|
|
|
else if (0x80 <= tt && tt <= 0xbf)
|
2006-10-25 23:49:41 +02:00
|
|
|
CWP += (CANSAVE + 2);
|
2007-01-09 00:07:17 +01:00
|
|
|
else if (0xc0 <= tt && tt <= 0xff)
|
2006-10-25 23:49:41 +02:00
|
|
|
CWP--;
|
|
|
|
else
|
|
|
|
changedCWP = false;
|
2006-10-27 02:23:00 +02:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
if (changedCWP) {
|
2006-10-25 23:49:41 +02:00
|
|
|
CWP = (CWP + NWindows) % NWindows;
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscReg(MISCREG_CWP, CWP);
|
2006-10-25 23:49:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
getREDVector(MiscReg TT, Addr &PC, Addr &NPC)
|
2006-11-08 19:58:00 +01:00
|
|
|
{
|
2006-11-10 01:24:35 +01:00
|
|
|
//XXX The following constant might belong in a header file.
|
2006-11-11 02:17:42 +01:00
|
|
|
const Addr RSTVAddr = 0xFFF0000000ULL;
|
2006-11-10 21:24:10 +01:00
|
|
|
PC = RSTVAddr | ((TT << 5) & 0xFF);
|
2006-11-08 19:58:00 +01:00
|
|
|
NPC = PC + sizeof(MachInst);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
getHyperVector(ThreadContext * tc, Addr &PC, Addr &NPC, MiscReg TT)
|
2006-11-08 19:58:00 +01:00
|
|
|
{
|
2007-03-07 21:04:31 +01:00
|
|
|
Addr HTBA = tc->readMiscRegNoEffect(MISCREG_HTBA);
|
2006-11-08 19:58:00 +01:00
|
|
|
PC = (HTBA & ~mask(14)) | ((TT << 5) & mask(14));
|
|
|
|
NPC = PC + sizeof(MachInst);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
getPrivVector(ThreadContext *tc, Addr &PC, Addr &NPC, MiscReg TT, MiscReg TL)
|
2006-11-08 19:58:00 +01:00
|
|
|
{
|
2007-03-07 21:04:31 +01:00
|
|
|
Addr TBA = tc->readMiscRegNoEffect(MISCREG_TBA);
|
2006-11-08 19:58:00 +01:00
|
|
|
PC = (TBA & ~mask(15)) |
|
|
|
|
(TL > 1 ? (1 << 14) : 0) |
|
|
|
|
((TT << 5) & mask(14));
|
|
|
|
NPC = PC + sizeof(MachInst);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
SparcFaultBase::invoke(ThreadContext * tc, StaticInstPtr inst)
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
{
|
2006-06-06 23:32:21 +02:00
|
|
|
FaultBase::invoke(tc);
|
2011-10-13 10:11:00 +02:00
|
|
|
if (!FullSystem)
|
|
|
|
return;
|
|
|
|
|
2006-03-07 10:32:34 +01:00
|
|
|
countStat()++;
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// We can refer to this to see what the trap level -was-, but something
|
|
|
|
// in the middle could change it in the regfile out from under us.
|
2007-03-07 21:04:31 +01:00
|
|
|
MiscReg tl = tc->readMiscRegNoEffect(MISCREG_TL);
|
|
|
|
MiscReg tt = tc->readMiscRegNoEffect(MISCREG_TT);
|
2012-02-11 23:16:38 +01:00
|
|
|
PSTATE pstate = tc->readMiscRegNoEffect(MISCREG_PSTATE);
|
|
|
|
HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
|
2006-11-08 19:58:00 +01:00
|
|
|
|
|
|
|
Addr PC, NPC;
|
|
|
|
|
|
|
|
PrivilegeLevel current;
|
2012-02-11 23:16:38 +01:00
|
|
|
if (hpstate.hpriv)
|
2006-11-21 00:07:58 +01:00
|
|
|
current = Hyperprivileged;
|
2012-02-11 23:16:38 +01:00
|
|
|
else if (pstate.priv)
|
2006-11-08 19:58:00 +01:00
|
|
|
current = Privileged;
|
|
|
|
else
|
2006-11-21 00:07:58 +01:00
|
|
|
current = User;
|
2006-11-08 19:58:00 +01:00
|
|
|
|
|
|
|
PrivilegeLevel level = getNextLevel(current);
|
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
if (hpstate.red || (tl == MaxTL - 1)) {
|
2006-11-10 21:24:10 +01:00
|
|
|
getREDVector(5, PC, NPC);
|
2007-01-09 00:07:17 +01:00
|
|
|
doREDFault(tc, tt);
|
2010-11-11 11:03:58 +01:00
|
|
|
// This changes the hpstate and pstate, so we need to make sure we
|
|
|
|
// save the old version on the trap stack in doREDFault.
|
2006-11-21 00:07:58 +01:00
|
|
|
enterREDState(tc);
|
2007-01-09 00:07:17 +01:00
|
|
|
} else if (tl == MaxTL) {
|
2006-12-08 00:50:33 +01:00
|
|
|
panic("Should go to error state here.. crap\n");
|
2010-11-11 11:03:58 +01:00
|
|
|
// Do error_state somehow?
|
|
|
|
// Probably inject a WDR fault using the interrupt mechanism.
|
|
|
|
// What should the PC and NPC be set to?
|
2007-01-09 00:07:17 +01:00
|
|
|
} else if (tl > MaxPTL && level == Privileged) {
|
2010-11-11 11:03:58 +01:00
|
|
|
// guest_watchdog fault
|
2006-11-08 19:58:00 +01:00
|
|
|
doNormalFault(tc, trapType(), true);
|
2006-11-10 01:24:35 +01:00
|
|
|
getHyperVector(tc, PC, NPC, 2);
|
2007-01-09 00:07:17 +01:00
|
|
|
} else if (level == Hyperprivileged ||
|
2008-09-28 06:03:49 +02:00
|
|
|
(level == Privileged && trapType() >= 384)) {
|
2006-11-08 19:58:00 +01:00
|
|
|
doNormalFault(tc, trapType(), true);
|
2006-11-10 01:24:35 +01:00
|
|
|
getHyperVector(tc, PC, NPC, trapType());
|
2006-12-10 00:00:40 +01:00
|
|
|
} else {
|
2006-11-08 19:58:00 +01:00
|
|
|
doNormalFault(tc, trapType(), false);
|
2010-11-11 11:03:58 +01:00
|
|
|
getPrivVector(tc, PC, NPC, trapType(), tl + 1);
|
2006-11-08 19:58:00 +01:00
|
|
|
}
|
|
|
|
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
PCState pc;
|
|
|
|
pc.pc(PC);
|
|
|
|
pc.npc(NPC);
|
|
|
|
pc.nnpc(NPC + sizeof(MachInst));
|
|
|
|
pc.upc(0);
|
|
|
|
pc.nupc(1);
|
|
|
|
tc->pcState(pc);
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
PowerOnReset::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2006-11-03 16:54:34 +01:00
|
|
|
{
|
2010-11-11 11:03:58 +01:00
|
|
|
// For SPARC, when a system is first started, there is a power
|
|
|
|
// on reset Trap which sets the processor into the following state.
|
|
|
|
// Bits that aren't set aren't defined on startup.
|
2006-11-03 16:54:34 +01:00
|
|
|
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TL, MaxTL);
|
|
|
|
tc->setMiscRegNoEffect(MISCREG_TT, trapType());
|
|
|
|
tc->setMiscReg(MISCREG_GL, MaxGL);
|
2006-11-10 21:24:10 +01:00
|
|
|
|
2012-02-11 23:16:38 +01:00
|
|
|
PSTATE pstate = 0;
|
|
|
|
pstate.pef = 1;
|
|
|
|
pstate.priv = 1;
|
|
|
|
tc->setMiscRegNoEffect(MISCREG_PSTATE, pstate);
|
2006-11-03 16:54:34 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Turn on red and hpriv, set everything else to 0
|
2012-02-11 23:16:38 +01:00
|
|
|
HPSTATE hpstate = tc->readMiscRegNoEffect(MISCREG_HPSTATE);
|
|
|
|
hpstate.red = 1;
|
|
|
|
hpstate.hpriv = 1;
|
|
|
|
hpstate.ibe = 0;
|
|
|
|
hpstate.tlz = 0;
|
|
|
|
tc->setMiscRegNoEffect(MISCREG_HPSTATE, hpstate);
|
2006-11-10 21:24:10 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// The tick register is unreadable by nonprivileged software
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_TICK, 1ULL << 63);
|
2006-11-10 21:24:10 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// Enter RED state. We do this last so that the actual state preserved in
|
|
|
|
// the trap stack is the state from before this fault.
|
2006-11-21 00:07:58 +01:00
|
|
|
enterREDState(tc);
|
|
|
|
|
2006-11-10 21:24:10 +01:00
|
|
|
Addr PC, NPC;
|
|
|
|
getREDVector(trapType(), PC, NPC);
|
ISA,CPU,etc: Create an ISA defined PC type that abstracts out ISA behaviors.
This change is a low level and pervasive reorganization of how PCs are managed
in M5. Back when Alpha was the only ISA, there were only 2 PCs to worry about,
the PC and the NPC, and the lsb of the PC signaled whether or not you were in
PAL mode. As other ISAs were added, we had to add an NNPC, micro PC and next
micropc, x86 and ARM introduced variable length instruction sets, and ARM
started to keep track of mode bits in the PC. Each CPU model handled PCs in
its own custom way that needed to be updated individually to handle the new
dimensions of variability, or, in the case of ARMs mode-bit-in-the-pc hack,
the complexity could be hidden in the ISA at the ISA implementation's expense.
Areas like the branch predictor hadn't been updated to handle branch delay
slots or micropcs, and it turns out that had introduced a significant (10s of
percent) performance bug in SPARC and to a lesser extend MIPS. Rather than
perpetuate the problem by reworking O3 again to handle the PC features needed
by x86, this change was introduced to rework PC handling in a more modular,
transparent, and hopefully efficient way.
PC type:
Rather than having the superset of all possible elements of PC state declared
in each of the CPU models, each ISA defines its own PCState type which has
exactly the elements it needs. A cross product of canned PCState classes are
defined in the new "generic" ISA directory for ISAs with/without delay slots
and microcode. These are either typedef-ed or subclassed by each ISA. To read
or write this structure through a *Context, you use the new pcState() accessor
which reads or writes depending on whether it has an argument. If you just
want the address of the current or next instruction or the current micro PC,
you can get those through read-only accessors on either the PCState type or
the *Contexts. These are instAddr(), nextInstAddr(), and microPC(). Note the
move away from readPC. That name is ambiguous since it's not clear whether or
not it should be the actual address to fetch from, or if it should have extra
bits in it like the PAL mode bit. Each class is free to define its own
functions to get at whatever values it needs however it needs to to be used in
ISA specific code. Eventually Alpha's PAL mode bit could be moved out of the
PC and into a separate field like ARM.
These types can be reset to a particular pc (where npc = pc +
sizeof(MachInst), nnpc = npc + sizeof(MachInst), upc = 0, nupc = 1 as
appropriate), printed, serialized, and compared. There is a branching()
function which encapsulates code in the CPU models that checked if an
instruction branched or not. Exactly what that means in the context of branch
delay slots which can skip an instruction when not taken is ambiguous, and
ideally this function and its uses can be eliminated. PCStates also generally
know how to advance themselves in various ways depending on if they point at
an instruction, a microop, or the last microop of a macroop. More on that
later.
Ideally, accessing all the PCs at once when setting them will improve
performance of M5 even though more data needs to be moved around. This is
because often all the PCs need to be manipulated together, and by getting them
all at once you avoid multiple function calls. Also, the PCs of a particular
thread will have spatial locality in the cache. Previously they were grouped
by element in arrays which spread out accesses.
Advancing the PC:
The PCs were previously managed entirely by the CPU which had to know about PC
semantics, try to figure out which dimension to increment the PC in, what to
set NPC/NNPC, etc. These decisions are best left to the ISA in conjunction
with the PC type itself. Because most of the information about how to
increment the PC (mainly what type of instruction it refers to) is contained
in the instruction object, a new advancePC virtual function was added to the
StaticInst class. Subclasses provide an implementation that moves around the
right element of the PC with a minimal amount of decision making. In ISAs like
Alpha, the instructions always simply assign NPC to PC without having to worry
about micropcs, nnpcs, etc. The added cost of a virtual function call should
be outweighed by not having to figure out as much about what to do with the
PCs and mucking around with the extra elements.
One drawback of making the StaticInsts advance the PC is that you have to
actually have one to advance the PC. This would, superficially, seem to
require decoding an instruction before fetch could advance. This is, as far as
I can tell, realistic. fetch would advance through memory addresses, not PCs,
perhaps predicting new memory addresses using existing ones. More
sophisticated decisions about control flow would be made later on, after the
instruction was decoded, and handed back to fetch. If branching needs to
happen, some amount of decoding needs to happen to see that it's a branch,
what the target is, etc. This could get a little more complicated if that gets
done by the predecoder, but I'm choosing to ignore that for now.
Variable length instructions:
To handle variable length instructions in x86 and ARM, the predecoder now
takes in the current PC by reference to the getExtMachInst function. It can
modify the PC however it needs to (by setting NPC to be the PC + instruction
length, for instance). This could be improved since the CPU doesn't know if
the PC was modified and always has to write it back.
ISA parser:
To support the new API, all PC related operand types were removed from the
parser and replaced with a PCState type. There are two warts on this
implementation. First, as with all the other operand types, the PCState still
has to have a valid operand type even though it doesn't use it. Second, using
syntax like PCS.npc(target) doesn't work for two reasons, this looks like the
syntax for operand type overriding, and the parser can't figure out if you're
reading or writing. Instructions that use the PCS operand (which I've
consistently called it) need to first read it into a local variable,
manipulate it, and then write it back out.
Return address stack:
The return address stack needed a little extra help because, in the presence
of branch delay slots, it has to merge together elements of the return PC and
the call PC. To handle that, a buildRetPC utility function was added. There
are basically only two versions in all the ISAs, but it didn't seem short
enough to put into the generic ISA directory. Also, the branch predictor code
in O3 and InOrder were adjusted so that they always store the PC of the actual
call instruction in the RAS, not the next PC. If the call instruction is a
microop, the next PC refers to the next microop in the same macroop which is
probably not desirable. The buildRetPC function advances the PC intelligently
to the next macroop (in an ISA specific way) so that that case works.
Change in stats:
There were no change in stats except in MIPS and SPARC in the O3 model. MIPS
runs in about 9% fewer ticks. SPARC runs with 30%-50% fewer ticks, which could
likely be improved further by setting call/return instruction flags and taking
advantage of the RAS.
TODO:
Add != operators to the PCState classes, defined trivially to be !(a==b).
Smooth out places where PCs are split apart, passed around, and put back
together later. I think this might happen in SPARC's fault code. Add ISA
specific constructors that allow setting PC elements without calling a bunch
of accessors. Try to eliminate the need for the branching() function. Factor
out Alpha's PAL mode pc bit into a separate flag field, and eliminate places
where it's blindly masked out or tested in the PC.
2010-10-31 08:07:20 +01:00
|
|
|
|
|
|
|
PCState pc;
|
|
|
|
pc.pc(PC);
|
|
|
|
pc.npc(NPC);
|
|
|
|
pc.nnpc(NPC + sizeof(MachInst));
|
|
|
|
pc.upc(0);
|
|
|
|
pc.nupc(1);
|
|
|
|
tc->pcState(pc);
|
2006-11-10 21:24:10 +01:00
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
// These registers are specified as "undefined" after a POR, and they
|
|
|
|
// should have reasonable values after the miscregfile is reset
|
2006-11-10 21:24:10 +01:00
|
|
|
/*
|
|
|
|
// Clear all the soft interrupt bits
|
|
|
|
softint = 0;
|
|
|
|
// disable timer compare interrupts, reset tick_cmpr
|
2007-03-07 21:04:31 +01:00
|
|
|
tc->setMiscRegNoEffect(MISCREG_
|
2006-11-10 21:24:10 +01:00
|
|
|
tick_cmprFields.int_dis = 1;
|
2006-11-03 16:54:34 +01:00
|
|
|
tick_cmprFields.tick_cmpr = 0; // Reset to 0 for pretty printing
|
2010-11-11 11:03:58 +01:00
|
|
|
stickFields.npt = 1; // The TICK register is unreadable by by !priv
|
2006-11-03 16:54:34 +01:00
|
|
|
stick_cmprFields.int_dis = 1; // disable timer compare interrupts
|
|
|
|
stick_cmprFields.tick_cmpr = 0; // Reset to 0 for pretty printing
|
|
|
|
|
|
|
|
tt[tl] = _trapType;
|
|
|
|
|
|
|
|
hintp = 0; // no interrupts pending
|
|
|
|
hstick_cmprFields.int_dis = 1; // disable timer compare interrupts
|
|
|
|
hstick_cmprFields.tick_cmpr = 0; // Reset to 0 for pretty printing
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
FastInstructionAccessMMUMiss::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-08-27 05:24:18 +02:00
|
|
|
{
|
2011-10-30 08:33:02 +01:00
|
|
|
if (FullSystem) {
|
|
|
|
SparcFaultBase::invoke(tc, inst);
|
2012-01-29 11:04:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Process *p = tc->getProcessPtr();
|
|
|
|
TlbEntry entry;
|
|
|
|
bool success = p->pTable->lookup(vaddr, entry);
|
|
|
|
if (!success) {
|
|
|
|
panic("Tried to execute unmapped address %#x.\n", vaddr);
|
2007-08-27 05:24:18 +02:00
|
|
|
} else {
|
2012-01-29 11:04:34 +01:00
|
|
|
Addr alignedVaddr = p->pTable->pageAlign(vaddr);
|
|
|
|
tc->getITBPtr()->insert(alignedVaddr, 0 /*partition id*/,
|
|
|
|
p->M5_pid /*context id*/, false, entry.pte);
|
2007-08-27 05:24:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
FastDataAccessMMUMiss::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-08-27 05:24:18 +02:00
|
|
|
{
|
2011-10-30 08:33:02 +01:00
|
|
|
if (FullSystem) {
|
|
|
|
SparcFaultBase::invoke(tc, inst);
|
2012-01-29 11:04:34 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Process *p = tc->getProcessPtr();
|
|
|
|
TlbEntry entry;
|
|
|
|
bool success = p->pTable->lookup(vaddr, entry);
|
|
|
|
if (!success) {
|
|
|
|
if (p->fixupStackFault(vaddr))
|
|
|
|
success = p->pTable->lookup(vaddr, entry);
|
|
|
|
}
|
|
|
|
if (!success) {
|
|
|
|
panic("Tried to access unmapped address %#x.\n", vaddr);
|
2007-08-27 05:24:18 +02:00
|
|
|
} else {
|
2012-01-29 11:04:34 +01:00
|
|
|
Addr alignedVaddr = p->pTable->pageAlign(vaddr);
|
|
|
|
tc->getDTBPtr()->insert(alignedVaddr, 0 /*partition id*/,
|
|
|
|
p->M5_pid /*context id*/, false, entry.pte);
|
2007-08-27 05:24:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
SpillNNormal::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2006-10-25 23:49:41 +02:00
|
|
|
{
|
2011-10-31 10:58:24 +01:00
|
|
|
if (FullSystem) {
|
|
|
|
SparcFaultBase::invoke(tc, inst);
|
2012-01-29 11:04:34 +01:00
|
|
|
return;
|
|
|
|
}
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
doNormalFault(tc, trapType(), false);
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
Process *p = tc->getProcessPtr();
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
//XXX This will only work in faults from a SparcLiveProcess
|
|
|
|
SparcLiveProcess *lp = dynamic_cast<SparcLiveProcess *>(p);
|
|
|
|
assert(lp);
|
|
|
|
|
|
|
|
// Then adjust the PC and NPC
|
|
|
|
tc->pcState(lp->readSpillStart());
|
2006-10-25 23:49:41 +02:00
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
FillNNormal::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2006-10-25 23:49:41 +02:00
|
|
|
{
|
2011-10-31 10:58:24 +01:00
|
|
|
if (FullSystem) {
|
|
|
|
SparcFaultBase::invoke(tc, inst);
|
2012-01-29 11:04:34 +01:00
|
|
|
return;
|
|
|
|
}
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
doNormalFault(tc, trapType(), false);
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
Process *p = tc->getProcessPtr();
|
2006-10-25 23:49:41 +02:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
//XXX This will only work in faults from a SparcLiveProcess
|
|
|
|
SparcLiveProcess *lp = dynamic_cast<SparcLiveProcess *>(p);
|
|
|
|
assert(lp);
|
|
|
|
|
|
|
|
// Then adjust the PC and NPC
|
|
|
|
tc->pcState(lp->readFillStart());
|
2006-10-25 23:49:41 +02:00
|
|
|
}
|
|
|
|
|
2010-11-11 11:03:58 +01:00
|
|
|
void
|
|
|
|
TrapInstruction::invoke(ThreadContext *tc, StaticInstPtr inst)
|
2007-02-28 17:36:38 +01:00
|
|
|
{
|
2011-10-31 10:58:24 +01:00
|
|
|
if (FullSystem) {
|
|
|
|
SparcFaultBase::invoke(tc, inst);
|
2012-01-29 11:04:34 +01:00
|
|
|
return;
|
|
|
|
}
|
2007-02-28 17:36:38 +01:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
// In SE, this mechanism is how the process requests a service from
|
|
|
|
// the operating system. We'll get the process object from the thread
|
|
|
|
// context and let it service the request.
|
2007-02-28 17:36:38 +01:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
Process *p = tc->getProcessPtr();
|
2007-02-28 17:36:38 +01:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
SparcLiveProcess *lp = dynamic_cast<SparcLiveProcess *>(p);
|
|
|
|
assert(lp);
|
2007-02-28 17:36:38 +01:00
|
|
|
|
2012-01-29 11:04:34 +01:00
|
|
|
lp->handleTrap(_n, tc);
|
|
|
|
|
|
|
|
// We need to explicitly advance the pc, since that's not done for us
|
|
|
|
// on a faulting instruction
|
|
|
|
PCState pc = tc->pcState();
|
|
|
|
pc.advance();
|
|
|
|
tc->pcState(pc);
|
2011-10-13 10:11:00 +02:00
|
|
|
}
|
Moved where some alpha specific source files were mentioned to be in the alpha specific Sconscript, and took advantage of the os specific directories for the process files.
arch/sparc/faults.cc:
Remove fake fault, fix to have normal m5 line length limit, and change pointers to be const pointers so that the default faults aren't changed accidentally.
arch/sparc/faults.hh:
Fix to have normal m5 line length limit, change pointers to const pointers.
arch/sparc/faults.hh:
Added a typedef for the Addr type, and changed the formatting of the faults slightly.
arch/sparc/faults.hh:
ur
Using cleaned up fault class deiffinitions
arch/sparc/faults.hh:
Added typedef for Addr
arch/sparc/faults.hh:
Made Addr a global type
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault * to Fault, which is a typedef to FaultBase *, which is the old Fault class renamed.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed Fault to be a RefCountingPtr
arch/sparc/faults.cc:
arch/sparc/faults.hh:
MachineCheckFaults and AlignmentFaults are now generated by the ISA, rather than being created directly.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Put the Alpha faults into the AlphaISA namespace
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the _stat for MachineCheckFault and AlignmentFault into the isa specific classes to prevent instantiation of the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed ev5_trap from a function of the execution context to a function of the fault. The actual function still resides in the execution context.
arch/sparc/faults.cc:
AlphaFault is now an abstract class.
arch/sparc/faults.hh:
AlphaFault is now an abstract class. Also, AlphaMachineCheckFault and AlphaAlignmentFault multiply inherit from both AlphaFault and from MachineCheckFault and AlignmentFault respectively. These classes get their name from the generic classes.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
moved ev5_trap fully into the fault class.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Changed the name of the fault's invocation method from ev5_trap to invoke.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Moved the fault invocation code into the fault class fully, and got rid of the need for isA.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Got rid of the multiple inheritance in the Fault classes, and the base MachineCheck and Alignment faults.
arch/sparc/faults.cc:
bk cp ../alpha/faults.cc faults.cc
arch/sparc/faults.hh:
bk cp ../alpha/faults.hh faults.hh
SConscript:
Moved the alpha specific source files into the alpha specific SConscript
arch/alpha/SConscript:
Moved the alpha specific source files into the alpha specific SConscript, and moved the process files into the new os specific subfolders.
arch/alpha/linux/process.cc:
arch/alpha/process.hh:
arch/sparc/process.hh:
arch/alpha/tru64/process.cc:
Changed the include paths to use the new os specific directories.
--HG--
rename : arch/alpha/linux_process.cc => arch/alpha/linux/process.cc
rename : arch/alpha/linux_process.hh => arch/alpha/linux/process.hh
rename : arch/alpha/tru64_process.cc => arch/alpha/tru64/process.cc
rename : arch/alpha/tru64_process.hh => arch/alpha/tru64/process.hh
rename : arch/sparc/linux_process.cc => arch/sparc/linux/process.cc
rename : arch/sparc/linux_process.hh => arch/sparc/linux/process.hh
extra : convert_revision : dc7eed7994b9c5e7308c771f43758292e78ce3e3
2006-03-07 10:25:42 +01:00
|
|
|
|
2006-03-07 10:32:34 +01:00
|
|
|
} // namespace SparcISA
|
|
|
|
|