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/cpu/o3/params.hh | |
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/cpu/o3/params.hh')
-rwxr-xr-x | src/cpu/o3/params.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cpu/o3/params.hh b/src/cpu/o3/params.hh index ed53fa97a..1c234bcd7 100755 --- a/src/cpu/o3/params.hh +++ b/src/cpu/o3/params.hh @@ -115,6 +115,12 @@ class O3Params : public BaseO3CPU::Params Tick fetchTrapLatency; // + // Timebuffer sizes + // + unsigned backComSize; + unsigned forwardComSize; + + // // Branch predictor (BP, BTB, RAS) // std::string predType; |