diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-07-10 15:40:28 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-07-10 15:40:28 -0400 |
commit | fcaafdc48cc624825760cb3ba7bbc28e5db6acfa (patch) | |
tree | 16095d7881217cc548d873ab0e63d89f6a95d87c /src/python/m5/objects | |
parent | 43245d9c2f3986430c1fbc4a09ee90096f6d3f30 (diff) | |
download | gem5-fcaafdc48cc624825760cb3ba7bbc28e5db6acfa.tar.xz |
Add parameters for backwards and forwards sizes for time buffers.
src/base/timebuf.hh:
Add a function to return the size of the time buffer.
--HG--
extra : convert_revision : 8ffacd8b9013eb76264df065244e00dc1460efd4
Diffstat (limited to 'src/python/m5/objects')
-rw-r--r-- | src/python/m5/objects/O3CPU.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/python/m5/objects/O3CPU.py b/src/python/m5/objects/O3CPU.py index 6ba62b47e..d6bc454ad 100644 --- a/src/python/m5/objects/O3CPU.py +++ b/src/python/m5/objects/O3CPU.py @@ -53,6 +53,9 @@ class DerivO3CPU(BaseCPU): trapLatency = Param.Tick("Trap latency") fetchTrapLatency = Param.Tick("Fetch trap latency") + backComSize = Param.Unsigned("Time buffer size for backwards communication") + forwardComSize = Param.Unsigned("Time buffer size for forward communication") + predType = Param.String("Branch predictor type ('local', 'tournament')") localPredictorSize = Param.Unsigned("Size of local predictor") localCtrBits = Param.Unsigned("Bits per counter") |