cpu-o3: Fix unset scoreboard in vector mode switching
authorHsuan Hsu <hsuan.hsu@mediatek.com>
Tue, 3 Mar 2020 09:28:44 +0000 (17:28 +0800)
committerHsuan Hsu <kugwa2000@gmail.com>
Fri, 27 Mar 2020 08:01:33 +0000 (08:01 +0000)
commit32b0eb07718ddac1cd6f0cc4c8a0c9b1d7765952
treef209e11c05990bfefc17191d1353ee0cf9ab98a2
parentd36f2fda1257b946b5d210a63abde2db186849f4
cpu-o3: Fix unset scoreboard in vector mode switching

This is another fix for the AArch32-AArch64 interprocessing issue
introduced in
3d15150d cpu, arch, arch-arm: Wire unused VecElem code in the O3 model.

Register mapping between AArch32 and AArch64 is explicitly defined in
ARMv8 manual. This allows software to read registers right after a state
switch without writing them first, and it is indeed common for software
to save registers to memory first before using them.

In gem5's implementation of vector mode switching, however, vectors may
not be marked as ready right after a state switch. Software reads toward
vectors at this time will stall O3CPU forever. This patch fixes this by
marking all mapped vectors (or vector elements, depending on AArch32 or
AArch64) as ready right after switching vector mode.

Change-Id: I609552c543dad8da66939c0a3079d73d48e92163
Signed-off-by: Hsuan Hsu <hsuan.hsu@mediatek.com>
Signed-off-by: Howard Wang <Howard.Wang@mediatek.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/26203
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Maintainer: Giacomo Travaglini <giacomo.travaglini@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/cpu/o3/cpu.cc
src/cpu/o3/cpu.hh