O3CPU.py (9921:ee049bfce978) O3CPU.py (9982:b2bfc23f932c)
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

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

55 cachePorts = Param.Unsigned(200, "Cache Ports")
56
57 decodeToFetchDelay = Param.Cycles(1, "Decode to fetch delay")
58 renameToFetchDelay = Param.Cycles(1 ,"Rename to fetch delay")
59 iewToFetchDelay = Param.Cycles(1, "Issue/Execute/Writeback to fetch "
60 "delay")
61 commitToFetchDelay = Param.Cycles(1, "Commit to fetch delay")
62 fetchWidth = Param.Unsigned(8, "Fetch width")
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

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

55 cachePorts = Param.Unsigned(200, "Cache Ports")
56
57 decodeToFetchDelay = Param.Cycles(1, "Decode to fetch delay")
58 renameToFetchDelay = Param.Cycles(1 ,"Rename to fetch delay")
59 iewToFetchDelay = Param.Cycles(1, "Issue/Execute/Writeback to fetch "
60 "delay")
61 commitToFetchDelay = Param.Cycles(1, "Commit to fetch delay")
62 fetchWidth = Param.Unsigned(8, "Fetch width")
63 fetchBufferSize = Param.Unsigned(64, "Fetch buffer size in bytes")
63
64 renameToDecodeDelay = Param.Cycles(1, "Rename to decode delay")
65 iewToDecodeDelay = Param.Cycles(1, "Issue/Execute/Writeback to decode "
66 "delay")
67 commitToDecodeDelay = Param.Cycles(1, "Commit to decode delay")
68 fetchToDecodeDelay = Param.Cycles(1, "Fetch to decode delay")
69 decodeWidth = Param.Unsigned(8, "Decode width")
70

--- 90 unchanged lines hidden ---
64
65 renameToDecodeDelay = Param.Cycles(1, "Rename to decode delay")
66 iewToDecodeDelay = Param.Cycles(1, "Issue/Execute/Writeback to decode "
67 "delay")
68 commitToDecodeDelay = Param.Cycles(1, "Commit to decode delay")
69 fetchToDecodeDelay = Param.Cycles(1, "Fetch to decode delay")
70 decodeWidth = Param.Unsigned(8, "Decode width")
71

--- 90 unchanged lines hidden ---