summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/resources/execution_unit.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:17 -0500
committerKorey Sewell <ksewell@umich.edu>2011-02-04 00:08:17 -0500
commit8ac717ef4c22580516d54046f9c0c1048eb4da62 (patch)
tree0862f5c7bf4163630703ceb8b360bf468377076e /src/cpu/inorder/resources/execution_unit.hh
parentbe17617990ea2b95e0f08324570b2bbf93dee1f0 (diff)
downloadgem5-8ac717ef4c22580516d54046f9c0c1048eb4da62.tar.xz
inorder: multi-issue branch resolution
Only execute (resolve) one branch per cycle because handling more than one is a little more complicated
Diffstat (limited to 'src/cpu/inorder/resources/execution_unit.hh')
-rw-r--r--src/cpu/inorder/resources/execution_unit.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/inorder/resources/execution_unit.hh b/src/cpu/inorder/resources/execution_unit.hh
index 8be339f4a..a6694ddb5 100644
--- a/src/cpu/inorder/resources/execution_unit.hh
+++ b/src/cpu/inorder/resources/execution_unit.hh
@@ -74,7 +74,8 @@ class ExecutionUnit : public Resource {
Stats::Scalar predictedCorrect;
Stats::Formula mispredictPct;
Stats::Scalar executions;
- Tick lastExecuteCycle;
+ Tick lastExecuteTick;
+ Tick lastControlTick;
};