O3CPU.py (7868:6029008db669) O3CPU.py (7876:189b9b258779)
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

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

50 checker = Param.BaseCPU(O3Checker(exitOnError=False, updateOnError=True,
51 warnOnlyOnLoadError=False), "checker")
52 checker.itb = Parent.itb
53 checker.dtb = Parent.dtb
54
55 cachePorts = Param.Unsigned(200, "Cache Ports")
56 icache_port = Port("Instruction Port")
57 dcache_port = Port("Data Port")
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

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

50 checker = Param.BaseCPU(O3Checker(exitOnError=False, updateOnError=True,
51 warnOnlyOnLoadError=False), "checker")
52 checker.itb = Parent.itb
53 checker.dtb = Parent.dtb
54
55 cachePorts = Param.Unsigned(200, "Cache Ports")
56 icache_port = Port("Instruction Port")
57 dcache_port = Port("Data Port")
58 _mem_ports = BaseCPU._mem_ports + ['icache_port', 'dcache_port']
58 _cached_ports = BaseCPU._cached_ports + ['icache_port', 'dcache_port']
59
60 decodeToFetchDelay = Param.Unsigned(1, "Decode to fetch delay")
61 renameToFetchDelay = Param.Unsigned(1 ,"Rename to fetch delay")
62 iewToFetchDelay = Param.Unsigned(1, "Issue/Execute/Writeback to fetch "
63 "delay")
64 commitToFetchDelay = Param.Unsigned(1, "Commit to fetch delay")
65 fetchWidth = Param.Unsigned(8, "Fetch width")
66

--- 81 unchanged lines hidden ---
59
60 decodeToFetchDelay = Param.Unsigned(1, "Decode to fetch delay")
61 renameToFetchDelay = Param.Unsigned(1 ,"Rename to fetch delay")
62 iewToFetchDelay = Param.Unsigned(1, "Issue/Execute/Writeback to fetch "
63 "delay")
64 commitToFetchDelay = Param.Unsigned(1, "Commit to fetch delay")
65 fetchWidth = Param.Unsigned(8, "Fetch width")
66

--- 81 unchanged lines hidden ---