diff options
author | Gabe Black <gabeblack@google.com> | 2019-04-28 08:56:22 +0000 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2019-04-29 22:57:37 +0000 |
commit | 88fc141f72bea768fdf8d6e22611a89f135cfc10 (patch) | |
tree | 4e2292f8964180263805ea379a86d8ec72faa678 /src/cpu/checker | |
parent | a632ee72adc7056786752973ecfa44ae01fca137 (diff) | |
download | gem5-88fc141f72bea768fdf8d6e22611a89f135cfc10.tar.xz |
cpu: Get rid of the (read|set)RegOtherThread methods.
These are implemented by MIPS internally now.
Change-Id: If7465e1666e51e1314968efb56a5a814e62ee2d1
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18436
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/cpu/checker')
-rw-r--r-- | src/cpu/checker/cpu.hh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/cpu/checker/cpu.hh b/src/cpu/checker/cpu.hh index 5f830d7a9..96f6cc7d4 100644 --- a/src/cpu/checker/cpu.hh +++ b/src/cpu/checker/cpu.hh @@ -483,21 +483,6 @@ class CheckerCPU : public BaseCPU, public ExecContext return this->setMiscReg(reg.index(), val); } -#if THE_ISA == MIPS_ISA - RegVal - readRegOtherThread(const RegId &misc_reg, ThreadID tid) override - { - panic("MIPS MT not defined for CheckerCPU.\n"); - return 0; - } - - void - setRegOtherThread(const RegId& misc_reg, RegVal val, ThreadID tid) override - { - panic("MIPS MT not defined for CheckerCPU.\n"); - } -#endif - ///////////////////////////////////////// void |