summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/resources/graduation_unit.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2011-06-19 21:43:40 -0400
committerKorey Sewell <ksewell@umich.edu>2011-06-19 21:43:40 -0400
commit0bfdf342da40842a05351d53a384db4a8ff88bf5 (patch)
tree7167c1198b863ddb2b2e058527eda405fd256b49 /src/cpu/inorder/resources/graduation_unit.hh
parent5f608dd2e9a760b4280fb03ce82a11a62c6f3af9 (diff)
downloadgem5-0bfdf342da40842a05351d53a384db4a8ff88bf5.tar.xz
inorder: explicit fault check
Before graduating an instruction, explicitly check fault by making the fault check it's own separate command that can be put on an instruction schedule.
Diffstat (limited to 'src/cpu/inorder/resources/graduation_unit.hh')
-rw-r--r--src/cpu/inorder/resources/graduation_unit.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/inorder/resources/graduation_unit.hh b/src/cpu/inorder/resources/graduation_unit.hh
index 043e375e7..01abae85b 100644
--- a/src/cpu/inorder/resources/graduation_unit.hh
+++ b/src/cpu/inorder/resources/graduation_unit.hh
@@ -46,6 +46,7 @@ class GraduationUnit : public Resource {
typedef ThePipeline::DynInstPtr DynInstPtr;
enum Command {
+ CheckFault,
GraduateInst
};