O3CPU.py (9184:a1a8f137b796) O3CPU.py (9341:a0eff1e9c773)
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

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

30from m5.params import *
31from m5.proxy import *
32from BaseCPU import BaseCPU
33from FUPool import *
34from O3Checker import O3Checker
35
36class DerivO3CPU(BaseCPU):
37 type = 'DerivO3CPU'
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

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

30from m5.params import *
31from m5.proxy import *
32from BaseCPU import BaseCPU
33from FUPool import *
34from O3Checker import O3Checker
35
36class DerivO3CPU(BaseCPU):
37 type = 'DerivO3CPU'
38 cxx_header = 'cpu/o3/deriv.hh'
39
38 activity = Param.Unsigned(0, "Initial count")
39
40 cachePorts = Param.Unsigned(200, "Cache Ports")
41
42 decodeToFetchDelay = Param.Cycles(1, "Decode to fetch delay")
43 renameToFetchDelay = Param.Cycles(1 ,"Rename to fetch delay")
44 iewToFetchDelay = Param.Cycles(1, "Issue/Execute/Writeback to fetch "
45 "delay")

--- 103 unchanged lines hidden ---
40 activity = Param.Unsigned(0, "Initial count")
41
42 cachePorts = Param.Unsigned(200, "Cache Ports")
43
44 decodeToFetchDelay = Param.Cycles(1, "Decode to fetch delay")
45 renameToFetchDelay = Param.Cycles(1 ,"Rename to fetch delay")
46 iewToFetchDelay = Param.Cycles(1, "Issue/Execute/Writeback to fetch "
47 "delay")

--- 103 unchanged lines hidden ---