O3CPU.py (4997:e7380529bd2d) O3CPU.py (5236:0050ad4fb3ef)
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

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

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

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

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

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

--- 84 unchanged lines hidden ---