From 88fc141f72bea768fdf8d6e22611a89f135cfc10 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 28 Apr 2019 08:56:22 +0000 Subject: 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 Reviewed-by: Jason Lowe-Power Maintainer: Andreas Sandberg Maintainer: Jason Lowe-Power Tested-by: kokoro --- src/cpu/o3/dyn_inst.hh | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/cpu/o3') diff --git a/src/cpu/o3/dyn_inst.hh b/src/cpu/o3/dyn_inst.hh index 24c59a25d..01886606e 100644 --- a/src/cpu/o3/dyn_inst.hh +++ b/src/cpu/o3/dyn_inst.hh @@ -429,21 +429,6 @@ class BaseO3DynInst : public BaseDynInst this->cpu->setCCReg(this->_destRegIdx[idx], val); BaseDynInst::setCCRegOperand(si, idx, val); } - -#if THE_ISA == MIPS_ISA - RegVal - readRegOtherThread(const RegId& misc_reg, ThreadID tid) override - { - panic("MIPS MT not defined for O3 CPU.\n"); - return 0; - } - - void - setRegOtherThread(const RegId& misc_reg, RegVal val, ThreadID tid) override - { - panic("MIPS MT not defined for O3 CPU.\n"); - } -#endif }; #endif // __CPU_O3_ALPHA_DYN_INST_HH__ -- cgit v1.2.3