O3CPU.py (8799:dac1e33e07b0) O3CPU.py (8807:35e77c938919)
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

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

134 smtLSQPolicy = Param.String('Partitioned', "SMT LSQ Sharing Policy")
135 smtLSQThreshold = Param.Int(100, "SMT LSQ Threshold Sharing Parameter")
136 smtIQPolicy = Param.String('Partitioned', "SMT IQ Sharing Policy")
137 smtIQThreshold = Param.Int(100, "SMT IQ Threshold Sharing Parameter")
138 smtROBPolicy = Param.String('Partitioned', "SMT ROB Sharing Policy")
139 smtROBThreshold = Param.Int(100, "SMT ROB Threshold Sharing Parameter")
140 smtCommitPolicy = Param.String('RoundRobin', "SMT Commit Policy")
141
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

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

134 smtLSQPolicy = Param.String('Partitioned', "SMT LSQ Sharing Policy")
135 smtLSQThreshold = Param.Int(100, "SMT LSQ Threshold Sharing Parameter")
136 smtIQPolicy = Param.String('Partitioned', "SMT IQ Sharing Policy")
137 smtIQThreshold = Param.Int(100, "SMT IQ Threshold Sharing Parameter")
138 smtROBPolicy = Param.String('Partitioned', "SMT ROB Sharing Policy")
139 smtROBThreshold = Param.Int(100, "SMT ROB Threshold Sharing Parameter")
140 smtCommitPolicy = Param.String('RoundRobin', "SMT Commit Policy")
141
142 needsTSO = Param.Bool(buildEnv['TARGET_ISA'] == 'x86',
143 "Enable TSO Memory model")