target/arm: Move TCG-only VFP code into tcg/ subdir
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 21 Feb 2025 19:09:53 +0000 (19:09 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 25 Feb 2025 15:32:58 +0000 (15:32 +0000)
commit1deb15c88ab3f1b0788b9e41b08217036eca3c91
tree25a3f91fdf1ffab077109b1b51c0dc4f5740a59e
parent5d3462b4cde8bedb33362dab0a3ae94d403899b0
target/arm: Move TCG-only VFP code into tcg/ subdir

Most of the target/arm/vfp_helper.c file is purely TCG helper code,
guarded by #ifdef CONFIG_TCG.  Move this into a new file in
target/arm/tcg/.

This leaves only the code relating to getting and setting the
FPCR/FPSR/FPSCR in the original file. (Some of this also is
TCG-only, but that needs more careful disentangling.)

Having two vfp_helper.c files might seem a bit confusing,
but once we've finished moving all the helper code out
of the old file we are going to rename it to vfp_fpscr.c.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20250221190957.811948-2-peter.maydell@linaro.org
target/arm/tcg/meson.build
target/arm/tcg/vfp_helper.c [new file with mode: 0644]
target/arm/vfp_helper.c