summaryrefslogtreecommitdiff
path: root/src/cpu/static_inst.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-10-12 17:32:02 -0400
committerGabe Black <gblack@eecs.umich.edu>2006-10-12 17:32:02 -0400
commit866dda97782728ee68d7b11e3d2ed4e2d526c901 (patch)
tree25973c3cc3af505a2765de5437ce9f89269b70e9 /src/cpu/static_inst.cc
parent6943c731ea8d021c60640175c0f447fa90e8ad3d (diff)
downloadgem5-866dda97782728ee68d7b11e3d2ed4e2d526c901.tar.xz
StaticInst support for microcode
--HG-- extra : convert_revision : c9e062637faf2166f0d36b914f3efa7f80626663
Diffstat (limited to 'src/cpu/static_inst.cc')
-rw-r--r--src/cpu/static_inst.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cpu/static_inst.cc b/src/cpu/static_inst.cc
index c311d2282..cb4a7cdf7 100644
--- a/src/cpu/static_inst.cc
+++ b/src/cpu/static_inst.cc
@@ -75,3 +75,10 @@ StaticInst::hasBranchTarget(Addr pc, ThreadContext *tc, Addr &tgt) const
return false;
}
+StaticInstPtr
+StaticInst::fetchMicroOp(MicroPC micropc)
+{
+ panic("StaticInst::fetchMicroOp() called on instruction "
+ "that is not microcoded.");
+}
+