summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/first_stage.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:16 -0500
committerKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:16 -0500
commitbe17617990ea2b95e0f08324570b2bbf93dee1f0 (patch)
treecdfe04692ce59363c46a7aec13827f85a0366e0d /src/cpu/inorder/first_stage.hh
parent050944dd7388231a334b81adf65e535058cf13fb (diff)
downloadgem5-be17617990ea2b95e0f08324570b2bbf93dee1f0.tar.xz
inorder: pipe. stage inst. buffering
use skidbuffer as only location for instructions between stages. before, we had the insts queue from the prior stage and the skidbuffer for the current stage, but that gets confusing and this consolidation helps when handling squash cases
Diffstat (limited to 'src/cpu/inorder/first_stage.hh')
-rw-r--r--src/cpu/inorder/first_stage.hh5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/cpu/inorder/first_stage.hh b/src/cpu/inorder/first_stage.hh
index 3a3d550a0..26151075c 100644
--- a/src/cpu/inorder/first_stage.hh
+++ b/src/cpu/inorder/first_stage.hh
@@ -68,11 +68,6 @@ class FirstStage : public PipelineStage {
*/
void sortInsts() {}
- /** There are no skidBuffers for the first stage. So
- * just use an empty function.
- */
- void skidInsert(ThreadID tid) { }
-
/** The number of fetching threads in the CPU */
int numFetchingThreads;