O3CPU.py (8631:8c038d4cd210) O3CPU.py (8707:489489c67fd9)
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

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

48 "checker")
49 else:
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")
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

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

48 "checker")
49 else:
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 _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

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

--- 82 unchanged lines hidden ---