projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0376422
)
O3: Fix sizing of decode to rename skid buffer.
author
Andrew Lukefahr
<lukefahr@umich.edu>
Wed, 21 Mar 2012 15:34:06 +0000
(10:34 -0500)
committer
Andrew Lukefahr
<lukefahr@umich.edu>
Wed, 21 Mar 2012 15:34:06 +0000
(10:34 -0500)
src/cpu/o3/rename_impl.hh
patch
|
blob
|
history
diff --git
a/src/cpu/o3/rename_impl.hh
b/src/cpu/o3/rename_impl.hh
index 04935604eb3a7355416627a2dc3bf49d435dce4c..6789278132832d135633227654b3ccb041565ae8 100644
(file)
--- a/
src/cpu/o3/rename_impl.hh
+++ b/
src/cpu/o3/rename_impl.hh
@@
-87,7
+87,7
@@
DefaultRename<Impl>::DefaultRename(O3CPU *_cpu, DerivO3CPUParams *params)
}
// @todo: Make into a parameter.
- skidBufferMax = (2 * (
iew
ToRenameDelay * params->decodeWidth)) + renameWidth;
+ skidBufferMax = (2 * (
decode
ToRenameDelay * params->decodeWidth)) + renameWidth;
}
template <class Impl>