O3CPU.py (8793:5f25086326ac) O3CPU.py (8796:a2ae5c378d0a)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 128 unchanged lines hidden (view full) ---

137 smtLSQPolicy = Param.String('Partitioned', "SMT LSQ Sharing Policy")
138 smtLSQThreshold = Param.Int(100, "SMT LSQ Threshold Sharing Parameter")
139 smtIQPolicy = Param.String('Partitioned', "SMT IQ Sharing Policy")
140 smtIQThreshold = Param.Int(100, "SMT IQ Threshold Sharing Parameter")
141 smtROBPolicy = Param.String('Partitioned', "SMT ROB Sharing Policy")
142 smtROBThreshold = Param.Int(100, "SMT ROB Threshold Sharing Parameter")
143 smtCommitPolicy = Param.String('RoundRobin', "SMT Commit Policy")
144
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 128 unchanged lines hidden (view full) ---

137 smtLSQPolicy = Param.String('Partitioned', "SMT LSQ Sharing Policy")
138 smtLSQThreshold = Param.Int(100, "SMT LSQ Threshold Sharing Parameter")
139 smtIQPolicy = Param.String('Partitioned', "SMT IQ Sharing Policy")
140 smtIQThreshold = Param.Int(100, "SMT IQ Threshold Sharing Parameter")
141 smtROBPolicy = Param.String('Partitioned', "SMT ROB Sharing Policy")
142 smtROBThreshold = Param.Int(100, "SMT ROB Threshold Sharing Parameter")
143 smtCommitPolicy = Param.String('RoundRobin', "SMT Commit Policy")
144
145 def addPrivateSplitL1Caches(self, ic, dc, iwc = None, dwc = None):
146 BaseCPU.addPrivateSplitL1Caches(self, ic, dc, iwc, dwc)
147 self.icache.tgts_per_mshr = 20
148 self.dcache.tgts_per_mshr = 20