fpu: Pass float_status to floatx80_invalid_encoding()
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 24 Feb 2025 11:15:18 +0000 (11:15 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 25 Feb 2025 15:32:57 +0000 (15:32 +0000)
commit765fe845ccb953b77b1b7e0557b13a7b760067b0
tree073372bc44357cf852f1d5d896ed52ad72f5ae83
parent44eb32a9835fe2feb19503e93476eee602daee0b
fpu: Pass float_status to floatx80_invalid_encoding()

The definition of which floatx80 encodings are invalid is
target-specific.  Currently we handle this with an ifdef, but we
would like to defer this decision to runtime.  In preparation, pass a
float_status argument to floatx80_invalid_encoding().

We will change the implementation from ifdef to looking at
the status argument in the following commit.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20250224111524.1101196-7-peter.maydell@linaro.org
fpu/softfloat.c
include/fpu/softfloat.h
target/i386/tcg/fpu_helper.c