From: Tony Gutierrez Date: Thu, 2 Jul 2020 17:37:29 +0000 (-0400) Subject: arch-arm: Remove some unused vars from self_debug.hh X-Git-Tag: v20.1.0.0~503 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b55fb5a698c6fe204808a7621a176994d577e10;p=gem5.git arch-arm: Remove some unused vars from self_debug.hh Change-Id: I68b4ddfe66a34a29c0abfd52a8448e0b8a5bbe94 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/30895 Reviewed-by: Jason Lowe-Power Reviewed-by: Andreas Sandberg Reviewed-by: Jordi Vaquero Maintainer: Andreas Sandberg Tested-by: kokoro --- diff --git a/src/arch/arm/self_debug.hh b/src/arch/arm/self_debug.hh index 9739c77d7..67654d2d7 100644 --- a/src/arch/arm/self_debug.hh +++ b/src/arch/arm/self_debug.hh @@ -58,7 +58,6 @@ class BrkPoint private: MiscRegIndex ctrlRegIndex; MiscRegIndex valRegIndex; - MiscRegIndex xRegIndex; SelfDebug * conf; bool isCntxtAware; bool VMID16enabled; @@ -72,7 +71,7 @@ class BrkPoint MiscRegIndex _xIndex, SelfDebug* _conf, bool _ctxAw, bool lva, bool vmid16, bool aarch32): ctrlRegIndex(_ctrlIndex), valRegIndex(_valIndex), - xRegIndex(_xIndex), conf(_conf), isCntxtAware(_ctxAw), + conf(_conf), isCntxtAware(_ctxAw), VMID16enabled(vmid16), active_pc(0x0), enable(false) { maxAddrSize = lva ? 52: 48 ; @@ -215,10 +214,6 @@ class SoftwareStep bool prevSteppedLdx; bool cpsrD; - bool ctrStepped; - bool ctrActivate; - - public: SoftwareStep(SelfDebug* s): bSS(false), stateSS(INACTIVE_STATE), conf(s), steppedLdx(false) { }