diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-08-07 15:19:26 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-08-07 15:19:26 -0700 |
commit | fb6cdf09cb4cfe9f39fdc7381168883fae6816ec (patch) | |
tree | 749d30835f7f27edbd21f913e057c9bc922eb528 /src/cpu | |
parent | cae8d20633c0f43fdae23576adfb894284a7ee86 (diff) | |
download | gem5-fb6cdf09cb4cfe9f39fdc7381168883fae6816ec.tar.xz |
X86: Make a microcode branch microop.
Also some touch up for ruflag.
--HG--
extra : convert_revision : 829947169af25ca6573f53b9430707101c75cc23
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/simple/base.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpu/simple/base.hh b/src/cpu/simple/base.hh index 0550aa036..22ffff3b9 100644 --- a/src/cpu/simple/base.hh +++ b/src/cpu/simple/base.hh @@ -291,11 +291,15 @@ class BaseSimpleCPU : public BaseCPU } uint64_t readPC() { return thread->readPC(); } + uint64_t readMicroPC() { return thread->readMicroPC(); } uint64_t readNextPC() { return thread->readNextPC(); } + uint64_t readNextMicroPC() { return thread->readNextMicroPC(); } uint64_t readNextNPC() { return thread->readNextNPC(); } void setPC(uint64_t val) { thread->setPC(val); } + void setMicroPC(uint64_t val) { thread->setMicroPC(val); } void setNextPC(uint64_t val) { thread->setNextPC(val); } + void setNextMicroPC(uint64_t val) { thread->setNextMicroPC(val); } void setNextNPC(uint64_t val) { thread->setNextNPC(val); } MiscReg readMiscRegNoEffect(int misc_reg) |