diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-08-13 16:01:09 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-08-13 16:01:09 -0700 |
commit | 82f78ebd39943a55a94f952f22f3f5a993460e88 (patch) | |
tree | cb6f8114cc23b25732fc77d3ab9ac9b05b33afe5 /src/cpu/o3/mips/cpu.hh | |
parent | 9b4be6532741a511ca8f9e1d051269245814be8b (diff) | |
download | gem5-82f78ebd39943a55a94f952f22f3f5a993460e88.tar.xz |
Move the "translate" member functions back into the base o3 class.
--HG--
extra : convert_revision : 3c480537bf38f74f0f1d72e75c70aa46ba91b759
Diffstat (limited to 'src/cpu/o3/mips/cpu.hh')
-rwxr-xr-x | src/cpu/o3/mips/cpu.hh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/cpu/o3/mips/cpu.hh b/src/cpu/o3/mips/cpu.hh index 0361c1814..3724ced46 100755 --- a/src/cpu/o3/mips/cpu.hh +++ b/src/cpu/o3/mips/cpu.hh @@ -68,24 +68,6 @@ class MipsO3CPU : public FullO3CPU<Impl> /** Registers statistics. */ void regStats(); - /** Translates instruction requestion in syscall emulation mode. */ - Fault translateInstReq(RequestPtr &req, Thread *thread) - { - return thread->getProcessPtr()->pTable->translate(req); - } - - /** Translates data read request in syscall emulation mode. */ - Fault translateDataReadReq(RequestPtr &req, Thread *thread) - { - return thread->getProcessPtr()->pTable->translate(req); - } - - /** Translates data write request in syscall emulation mode. */ - Fault translateDataWriteReq(RequestPtr &req, Thread *thread) - { - return thread->getProcessPtr()->pTable->translate(req); - } - /** Reads a miscellaneous register. */ TheISA::MiscReg readMiscRegNoEffect(int misc_reg, unsigned tid); |