Fix Load/Store Queue squashing after a SMT thread is removed but ensuring
authorKorey Sewell <ksewell@umich.edu>
Wed, 27 Feb 2008 21:53:08 +0000 (16:53 -0500)
committerKorey 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

index ff1ee792077b41794094da1d4ad25aa96bfb449c..84aea0479d7a08f139f29c340090743b4ab6c4aa 100644 (file)
@@ -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);