projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34715cc
)
Fix Load/Store Queue squashing after a SMT thread is removed but ensuring
author
Korey Sewell
<ksewell@umich.edu>
Wed, 27 Feb 2008 21:53:08 +0000
(16:53 -0500)
committer
Korey Sewell
<ksewell@umich.edu>
Wed, 27 Feb 2008 21:53:08 +0000
(16:53 -0500)
you are squashing from the current instruction # causing the thread exit.
--HG--
extra : convert_revision :
ccbeece7dd1d5fee43f30ab19370908972113473
src/cpu/o3/cpu.cc
patch
|
blob
|
history
diff --git
a/src/cpu/o3/cpu.cc
b/src/cpu/o3/cpu.cc
index ff1ee792077b41794094da1d4ad25aa96bfb449c..84aea0479d7a08f139f29c340090743b4ab6c4aa 100644
(file)
--- a/
src/cpu/o3/cpu.cc
+++ b/
src/cpu/o3/cpu.cc
@@
-695,7
+695,7
@@
FullO3CPU<Impl>::removeThread(unsigned tid)
decode.squash(tid);
rename.squash(squash_seq_num, tid);
iew.squash(tid);
-
//
iew.ldstQueue.squash(squash_seq_num, tid);
+ iew.ldstQueue.squash(squash_seq_num, tid);
commit.rob->squash(squash_seq_num, tid);