From: Gabe Black Date: Mon, 25 Jan 2021 05:58:59 +0000 (-0800) Subject: arch-arm: Don't use TheISA in the ARM implementation. X-Git-Tag: develop-gem5-snapshot~225 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e0441fa7a7c858d7e472fbb1e03089a9a11b8462;p=gem5.git arch-arm: Don't use TheISA in the ARM implementation. We know what ISA we're using, so we can use ArmISA directly. Change-Id: I7d207eea2581bae8be3e870883de88bf2879ef12 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/39657 Reviewed-by: Giacomo Travaglini Maintainer: Giacomo Travaglini Tested-by: kokoro --- diff --git a/src/arch/arm/tracers/tarmac_parser.cc b/src/arch/arm/tracers/tarmac_parser.cc index 6521b2737..332534276 100644 --- a/src/arch/arm/tracers/tarmac_parser.cc +++ b/src/arch/arm/tracers/tarmac_parser.cc @@ -828,7 +828,7 @@ TarmacParserRecord::TarmacParserRecordEvent::process() case REG_Z: { int8_t i = maxVectorLength; - const TheISA::VecRegContainer& vc = thread->readVecReg( + const ArmISA::VecRegContainer& vc = thread->readVecReg( RegId(VecRegClass, it->index)); auto vv = vc.as(); while (i > 0) {