changeset 26256a3e8fa4 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=26256a3e8fa4
description:
        O3: Fix sizing of decode to rename skid buffer.

diffstat:

 src/cpu/o3/rename_impl.hh |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r b04b87b6ad84 -r 26256a3e8fa4 src/cpu/o3/rename_impl.hh
--- a/src/cpu/o3/rename_impl.hh Wed Mar 21 10:34:05 2012 -0500
+++ b/src/cpu/o3/rename_impl.hh Wed Mar 21 10:34:06 2012 -0500
@@ -87,7 +87,7 @@
     }
 
     // @todo: Make into a parameter.
-    skidBufferMax = (2 * (iewToRenameDelay * params->decodeWidth)) + 
renameWidth;
+    skidBufferMax = (2 * (decodeToRenameDelay * params->decodeWidth)) + 
renameWidth;
 }
 
 template <class Impl>
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to