O3CPU.py (5529:9ae69b9cd7fd) O3CPU.py (6654:4c84e771cca7)
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

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

21# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Kevin Lim
28
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

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

21# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Kevin Lim
28
29from m5.defines import buildEnv
29from m5.params import *
30from m5.proxy import *
30from m5.params import *
31from m5.proxy import *
31from m5 import build_env
32from BaseCPU import BaseCPU
33from FUPool import *
34
32from BaseCPU import BaseCPU
33from FUPool import *
34
35if build_env['USE_CHECKER']:
35if buildEnv['USE_CHECKER']:
36 from O3Checker import O3Checker
37
38class DerivO3CPU(BaseCPU):
39 type = 'DerivO3CPU'
40 activity = Param.Unsigned(0, "Initial count")
41
36 from O3Checker import O3Checker
37
38class DerivO3CPU(BaseCPU):
39 type = 'DerivO3CPU'
40 activity = Param.Unsigned(0, "Initial count")
41
42 if build_env['USE_CHECKER']:
43 if not build_env['FULL_SYSTEM']:
42 if buildEnv['USE_CHECKER']:
43 if not buildEnv['FULL_SYSTEM']:
44 checker = Param.BaseCPU(O3Checker(workload=Parent.workload,
45 exitOnError=False,
46 updateOnError=True,
47 warnOnlyOnLoadError=False),
48 "checker")
49 else:
50 checker = Param.BaseCPU(O3Checker(exitOnError=False, updateOnError=True,
51 warnOnlyOnLoadError=False), "checker")

--- 96 unchanged lines hidden ---
44 checker = Param.BaseCPU(O3Checker(workload=Parent.workload,
45 exitOnError=False,
46 updateOnError=True,
47 warnOnlyOnLoadError=False),
48 "checker")
49 else:
50 checker = Param.BaseCPU(O3Checker(exitOnError=False, updateOnError=True,
51 warnOnlyOnLoadError=False), "checker")

--- 96 unchanged lines hidden ---