O3CPU.py revision 13559
14680Sgblack@eecs.umich.edu# Copyright (c) 2016, 2019 ARM Limited
25442Sgblack@eecs.umich.edu# All rights reserved.
34680Sgblack@eecs.umich.edu#
44680Sgblack@eecs.umich.edu# The license below extends only to copyright in the software and shall
54680Sgblack@eecs.umich.edu# not be construed as granting a license to any other intellectual
64680Sgblack@eecs.umich.edu# property including but not limited to intellectual property relating
74680Sgblack@eecs.umich.edu# to a hardware implementation of the functionality of the software
84680Sgblack@eecs.umich.edu# licensed hereunder.  You may use the software subject to the license
94680Sgblack@eecs.umich.edu# terms below provided that you ensure that this notice is replicated
104680Sgblack@eecs.umich.edu# unmodified and in its entirety in all distributions of the software,
114680Sgblack@eecs.umich.edu# modified or unmodified, in source code or in binary form.
124680Sgblack@eecs.umich.edu#
134680Sgblack@eecs.umich.edu# Copyright (c) 2005-2007 The Regents of The University of Michigan
144680Sgblack@eecs.umich.edu# All rights reserved.
154680Sgblack@eecs.umich.edu#
164680Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
174680Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
184680Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
194680Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
204680Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
214680Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
224680Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
234680Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
244680Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
254680Sgblack@eecs.umich.edu# this software without specific prior written permission.
264680Sgblack@eecs.umich.edu#
274680Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
284680Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
294680Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
304680Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
314680Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
324680Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
334680Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3412450Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3512450Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3612450Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
374680Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
384680Sgblack@eecs.umich.edu#
395543Ssaidi@eecs.umich.edu# Authors: Kevin Lim
404680Sgblack@eecs.umich.edu
414680Sgblack@eecs.umich.edufrom __future__ import print_function
424680Sgblack@eecs.umich.edu
434680Sgblack@eecs.umich.edufrom m5.defines import buildEnv
444680Sgblack@eecs.umich.edufrom m5.params import *
454680Sgblack@eecs.umich.edufrom m5.proxy import *
464680Sgblack@eecs.umich.edufrom BaseCPU import BaseCPU
4712450Sgabeblack@google.comfrom FUPool import *
4812450Sgabeblack@google.comfrom O3Checker import O3Checker
4912450Sgabeblack@google.comfrom BranchPredictor import *
5012450Sgabeblack@google.com
5112450Sgabeblack@google.comclass FetchPolicy(ScopedEnum):
5212450Sgabeblack@google.com    vals = [ 'SingleThread', 'RoundRobin', 'Branch', 'IQCount', 'LSQCount' ]
5312450Sgabeblack@google.com
5412450Sgabeblack@google.comclass DerivO3CPU(BaseCPU):
5512450Sgabeblack@google.com    type = 'DerivO3CPU'
5612450Sgabeblack@google.com    cxx_header = 'cpu/o3/deriv.hh'
5712450Sgabeblack@google.com
5812450Sgabeblack@google.com    @classmethod
5912450Sgabeblack@google.com    def memory_mode(cls):
6012450Sgabeblack@google.com        return 'timing'
6112450Sgabeblack@google.com
6212450Sgabeblack@google.com    @classmethod
6312450Sgabeblack@google.com    def require_caches(cls):
6412450Sgabeblack@google.com        return True
6512450Sgabeblack@google.com
6612450Sgabeblack@google.com    @classmethod
6712450Sgabeblack@google.com    def support_take_over(cls):
6812450Sgabeblack@google.com        return True
6912450Sgabeblack@google.com
7012450Sgabeblack@google.com    activity = Param.Unsigned(0, "Initial count")
7112450Sgabeblack@google.com
7212450Sgabeblack@google.com    cacheStorePorts = Param.Unsigned(200, "Cache Ports. "
7312450Sgabeblack@google.com          "Constrains stores only. Loads are constrained by load FUs.")
7412450Sgabeblack@google.com
7512450Sgabeblack@google.com    decodeToFetchDelay = Param.Cycles(1, "Decode to fetch delay")
7612450Sgabeblack@google.com    renameToFetchDelay = Param.Cycles(1 ,"Rename to fetch delay")
7712450Sgabeblack@google.com    iewToFetchDelay = Param.Cycles(1, "Issue/Execute/Writeback to fetch "
7812450Sgabeblack@google.com                                   "delay")
7912450Sgabeblack@google.com    commitToFetchDelay = Param.Cycles(1, "Commit to fetch delay")
8012450Sgabeblack@google.com    fetchWidth = Param.Unsigned(8, "Fetch width")
8112450Sgabeblack@google.com    fetchBufferSize = Param.Unsigned(64, "Fetch buffer size in bytes")
8212450Sgabeblack@google.com    fetchQueueSize = Param.Unsigned(32, "Fetch queue size in micro-ops "
8312450Sgabeblack@google.com                                    "per-thread")
8412450Sgabeblack@google.com
8512450Sgabeblack@google.com    renameToDecodeDelay = Param.Cycles(1, "Rename to decode delay")
8612450Sgabeblack@google.com    iewToDecodeDelay = Param.Cycles(1, "Issue/Execute/Writeback to decode "
8712450Sgabeblack@google.com                                    "delay")
8812450Sgabeblack@google.com    commitToDecodeDelay = Param.Cycles(1, "Commit to decode delay")
8912450Sgabeblack@google.com    fetchToDecodeDelay = Param.Cycles(1, "Fetch to decode delay")
9012450Sgabeblack@google.com    decodeWidth = Param.Unsigned(8, "Decode width")
9112450Sgabeblack@google.com
9212450Sgabeblack@google.com    iewToRenameDelay = Param.Cycles(1, "Issue/Execute/Writeback to rename "
9312450Sgabeblack@google.com                                    "delay")
9412450Sgabeblack@google.com    commitToRenameDelay = Param.Cycles(1, "Commit to rename delay")
9512450Sgabeblack@google.com    decodeToRenameDelay = Param.Cycles(1, "Decode to rename delay")
9612450Sgabeblack@google.com    renameWidth = Param.Unsigned(8, "Rename width")
9712450Sgabeblack@google.com
9812450Sgabeblack@google.com    commitToIEWDelay = Param.Cycles(1, "Commit to "
9912450Sgabeblack@google.com               "Issue/Execute/Writeback delay")
10012450Sgabeblack@google.com    renameToIEWDelay = Param.Cycles(2, "Rename to "
10112450Sgabeblack@google.com               "Issue/Execute/Writeback delay")
10212450Sgabeblack@google.com    issueToExecuteDelay = Param.Cycles(1, "Issue to execute delay (internal "
10312450Sgabeblack@google.com              "to the IEW stage)")
10412450Sgabeblack@google.com    dispatchWidth = Param.Unsigned(8, "Dispatch width")
10512450Sgabeblack@google.com    issueWidth = Param.Unsigned(8, "Issue width")
10612450Sgabeblack@google.com    wbWidth = Param.Unsigned(8, "Writeback width")
10712450Sgabeblack@google.com    fuPool = Param.FUPool(DefaultFUPool(), "Functional Unit pool")
10812450Sgabeblack@google.com
10912450Sgabeblack@google.com    iewToCommitDelay = Param.Cycles(1, "Issue/Execute/Writeback to commit "
11012450Sgabeblack@google.com               "delay")
11112450Sgabeblack@google.com    renameToROBDelay = Param.Cycles(1, "Rename to reorder buffer delay")
11212450Sgabeblack@google.com    commitWidth = Param.Unsigned(8, "Commit width")
11312450Sgabeblack@google.com    squashWidth = Param.Unsigned(8, "Squash width")
11412450Sgabeblack@google.com    trapLatency = Param.Cycles(13, "Trap latency")
11512450Sgabeblack@google.com    fetchTrapLatency = Param.Cycles(1, "Fetch trap latency")
11612450Sgabeblack@google.com
11712450Sgabeblack@google.com    backComSize = Param.Unsigned(5, "Time buffer size for backwards communication")
11812450Sgabeblack@google.com    forwardComSize = Param.Unsigned(5, "Time buffer size for forward communication")
11912450Sgabeblack@google.com
12012450Sgabeblack@google.com    LQEntries = Param.Unsigned(32, "Number of load queue entries")
12112450Sgabeblack@google.com    SQEntries = Param.Unsigned(32, "Number of store queue entries")
12212450Sgabeblack@google.com    LSQDepCheckShift = Param.Unsigned(4, "Number of places to shift addr before check")
12312450Sgabeblack@google.com    LSQCheckLoads = Param.Bool(True,
12412450Sgabeblack@google.com        "Should dependency violations be checked for loads & stores or just stores")
12512450Sgabeblack@google.com    store_set_clear_period = Param.Unsigned(250000,
12612450Sgabeblack@google.com            "Number of load/store insts before the dep predictor should be invalidated")
12712450Sgabeblack@google.com    LFSTSize = Param.Unsigned(1024, "Last fetched store table size")
12812450Sgabeblack@google.com    SSITSize = Param.Unsigned(1024, "Store set ID table size")
12912450Sgabeblack@google.com
13012450Sgabeblack@google.com    numRobs = Param.Unsigned(1, "Number of Reorder Buffers");
13112450Sgabeblack@google.com
13212450Sgabeblack@google.com    numPhysIntRegs = Param.Unsigned(256, "Number of physical integer registers")
13312450Sgabeblack@google.com    numPhysFloatRegs = Param.Unsigned(256, "Number of physical floating point "
13412450Sgabeblack@google.com                                      "registers")
13512450Sgabeblack@google.com    # most ISAs don't use condition-code regs, so default is 0
13612450Sgabeblack@google.com    _defaultNumPhysCCRegs = 0
13712450Sgabeblack@google.com    if buildEnv['TARGET_ISA'] in ('arm','x86'):
13812450Sgabeblack@google.com        # For x86, each CC reg is used to hold only a subset of the
13912450Sgabeblack@google.com        # flags, so we need 4-5 times the number of CC regs as
14012450Sgabeblack@google.com        # physical integer regs to be sure we don't run out.  In
14112450Sgabeblack@google.com        # typical real machines, CC regs are not explicitly renamed
14212450Sgabeblack@google.com        # (it's a side effect of int reg renaming), so they should
14312450Sgabeblack@google.com        # never be the bottleneck here.
14412450Sgabeblack@google.com        _defaultNumPhysCCRegs = Self.numPhysIntRegs * 5
14512450Sgabeblack@google.com    numPhysVecRegs = Param.Unsigned(256, "Number of physical vector "
14612450Sgabeblack@google.com                                      "registers")
14712450Sgabeblack@google.com    numPhysCCRegs = Param.Unsigned(_defaultNumPhysCCRegs,
14812450Sgabeblack@google.com                                   "Number of physical cc registers")
14912450Sgabeblack@google.com    numIQEntries = Param.Unsigned(64, "Number of instruction queue entries")
1504680Sgblack@eecs.umich.edu    numROBEntries = Param.Unsigned(192, "Number of reorder buffer entries")
15112450Sgabeblack@google.com
1524680Sgblack@eecs.umich.edu    smtNumFetchingThreads = Param.Unsigned(1, "SMT Number of Fetching Threads")
1534680Sgblack@eecs.umich.edu    smtFetchPolicy = Param.FetchPolicy('SingleThread', "SMT Fetch policy")
15412450Sgabeblack@google.com    smtLSQPolicy    = Param.String('Partitioned', "SMT LSQ Sharing Policy")
15512450Sgabeblack@google.com    smtLSQThreshold = Param.Int(100, "SMT LSQ Threshold Sharing Parameter")
1564680Sgblack@eecs.umich.edu    smtIQPolicy    = Param.String('Partitioned', "SMT IQ Sharing Policy")
15712450Sgabeblack@google.com    smtIQThreshold = Param.Int(100, "SMT IQ Threshold Sharing Parameter")
15812450Sgabeblack@google.com    smtROBPolicy   = Param.String('Partitioned', "SMT ROB Sharing Policy")
15912450Sgabeblack@google.com    smtROBThreshold = Param.Int(100, "SMT ROB Threshold Sharing Parameter")
1604680Sgblack@eecs.umich.edu    smtCommitPolicy = Param.String('RoundRobin', "SMT Commit Policy")
16112450Sgabeblack@google.com
16212450Sgabeblack@google.com    branchPred = Param.BranchPredictor(TournamentBP(numThreads =
1634680Sgblack@eecs.umich.edu                                                       Parent.numThreads),
16412450Sgabeblack@google.com                                       "Branch Predictor")
1654680Sgblack@eecs.umich.edu    needsTSO = Param.Bool(buildEnv['TARGET_ISA'] == 'x86',
1664680Sgblack@eecs.umich.edu                          "Enable TSO Memory model")
16712450Sgabeblack@google.com
16812450Sgabeblack@google.com    def addCheckerCpu(self):
1694680Sgblack@eecs.umich.edu        if buildEnv['TARGET_ISA'] in ['arm']:
17012450Sgabeblack@google.com            from ArmTLB import ArmTLB
1714680Sgblack@eecs.umich.edu
1724680Sgblack@eecs.umich.edu            self.checker = O3Checker(workload=self.workload,
1734680Sgblack@eecs.umich.edu                                     exitOnError=False,
17412450Sgabeblack@google.com                                     updateOnError=True,
17512450Sgabeblack@google.com                                     warnOnlyOnLoadError=True)
17612450Sgabeblack@google.com            self.checker.itb = ArmTLB(size = self.itb.size)
17712450Sgabeblack@google.com            self.checker.dtb = ArmTLB(size = self.dtb.size)
17812450Sgabeblack@google.com            self.checker.cpu_id = self.cpu_id
17912450Sgabeblack@google.com
18012450Sgabeblack@google.com        else:
18112450Sgabeblack@google.com            print("ERROR: Checker only supported under ARM ISA!")
18212450Sgabeblack@google.com            exit(1)
18312450Sgabeblack@google.com