mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 21:03:54 -06:00

Currently we hardcode at compile time whether the floatx80 default Infinity value has the explicit integer bit set or not (x86 sets it; m68k does not). To be able to compile softfloat once for all targets we'd like to move this setting to runtime. Define a new FloatX80Behaviour enum which is a set of flags that define the target's floatx80 handling. Initially we define just one flag, for whether the default Infinity has the Integer bit set or not, but we will expand this in future commits to cover the other floatx80 target specifics that we currently make compile-time settings. Define a new function floatx80_default_inf() which returns the appropriate default Infinity value of the given sign, and use it in the code that was previously directly using the compile-time constant floatx80_infinity_{low,high} values when packing an infinity into a floatx80. Since floatx80 is highly unlikely to be supported in any new architecture, and the existing code is generally written as "default to like x87, with an ifdef for m68k", we make the default value for the floatx80 behaviour flags be "what x87 does". This means we only need to change the m68k target to specify the behaviour flags. (Other users of floatx80 are the Arm NWFPE emulation, which is obsolete and probably not actually doing the right thing anyway, and the PPC xsrqpxp insn. Making the default be "like x87" avoids our needing to review and test for behaviour changes there.) We will clean up the remaining uses of the floatx80_infinity global constant in subsequent commits. 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-2-peter.maydell@linaro.org Message-id: 20250217125055.160887-2-peter.maydell@linaro.org
209 lines
6.2 KiB
C
209 lines
6.2 KiB
C
/*
|
|
* QEMU float support - standalone helpers
|
|
*
|
|
* This is provided for files that don't need the access to the full
|
|
* set of softfloat functions. Typically this is cpu initialisation
|
|
* code which wants to set default rounding and exceptions modes.
|
|
*
|
|
* The code in this source file is derived from release 2a of the SoftFloat
|
|
* IEC/IEEE Floating-point Arithmetic Package. Those parts of the code (and
|
|
* some later contributions) are provided under that license, as detailed below.
|
|
* It has subsequently been modified by contributors to the QEMU Project,
|
|
* so some portions are provided under:
|
|
* the SoftFloat-2a license
|
|
* the BSD license
|
|
* GPL-v2-or-later
|
|
*
|
|
* Any future contributions to this file after December 1st 2014 will be
|
|
* taken to be licensed under the Softfloat-2a license unless specifically
|
|
* indicated otherwise.
|
|
*/
|
|
|
|
/*
|
|
===============================================================================
|
|
This C header file is part of the SoftFloat IEC/IEEE Floating-point
|
|
Arithmetic Package, Release 2a.
|
|
|
|
Written by John R. Hauser. This work was made possible in part by the
|
|
International Computer Science Institute, located at Suite 600, 1947 Center
|
|
Street, Berkeley, California 94704. Funding was partially provided by the
|
|
National Science Foundation under grant MIP-9311980. The original version
|
|
of this code was written as part of a project to build a fixed-point vector
|
|
processor in collaboration with the University of California at Berkeley,
|
|
overseen by Profs. Nelson Morgan and John Wawrzynek. More information
|
|
is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
|
|
arithmetic/SoftFloat.html'.
|
|
|
|
THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort
|
|
has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
|
|
TIMES RESULT IN INCORRECT BEHAVIOR. USE OF THIS SOFTWARE IS RESTRICTED TO
|
|
PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
|
|
AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
|
|
|
|
Derivative works are acceptable, even for commercial purposes, so long as
|
|
(1) they include prominent notice that the work is derivative, and (2) they
|
|
include prominent notice akin to these four paragraphs for those parts of
|
|
this code that are retained.
|
|
|
|
===============================================================================
|
|
*/
|
|
|
|
#ifndef SOFTFLOAT_HELPERS_H
|
|
#define SOFTFLOAT_HELPERS_H
|
|
|
|
#include "fpu/softfloat-types.h"
|
|
|
|
static inline void set_float_detect_tininess(bool val, float_status *status)
|
|
{
|
|
status->tininess_before_rounding = val;
|
|
}
|
|
|
|
static inline void set_float_rounding_mode(FloatRoundMode val,
|
|
float_status *status)
|
|
{
|
|
status->float_rounding_mode = val;
|
|
}
|
|
|
|
static inline void set_float_exception_flags(int val, float_status *status)
|
|
{
|
|
status->float_exception_flags = val;
|
|
}
|
|
|
|
static inline void set_floatx80_rounding_precision(FloatX80RoundPrec val,
|
|
float_status *status)
|
|
{
|
|
status->floatx80_rounding_precision = val;
|
|
}
|
|
|
|
static inline void set_floatx80_behaviour(FloatX80Behaviour b,
|
|
float_status *status)
|
|
{
|
|
status->floatx80_behaviour = b;
|
|
}
|
|
|
|
static inline void set_float_2nan_prop_rule(Float2NaNPropRule rule,
|
|
float_status *status)
|
|
{
|
|
status->float_2nan_prop_rule = rule;
|
|
}
|
|
|
|
static inline void set_float_3nan_prop_rule(Float3NaNPropRule rule,
|
|
float_status *status)
|
|
{
|
|
status->float_3nan_prop_rule = rule;
|
|
}
|
|
|
|
static inline void set_float_infzeronan_rule(FloatInfZeroNaNRule rule,
|
|
float_status *status)
|
|
{
|
|
status->float_infzeronan_rule = rule;
|
|
}
|
|
|
|
static inline void set_float_default_nan_pattern(uint8_t dnan_pattern,
|
|
float_status *status)
|
|
{
|
|
status->default_nan_pattern = dnan_pattern;
|
|
}
|
|
|
|
static inline void set_flush_to_zero(bool val, float_status *status)
|
|
{
|
|
status->flush_to_zero = val;
|
|
}
|
|
|
|
static inline void set_flush_inputs_to_zero(bool val, float_status *status)
|
|
{
|
|
status->flush_inputs_to_zero = val;
|
|
}
|
|
|
|
static inline void set_float_ftz_detection(FloatFTZDetection d,
|
|
float_status *status)
|
|
{
|
|
status->ftz_detection = d;
|
|
}
|
|
|
|
static inline void set_default_nan_mode(bool val, float_status *status)
|
|
{
|
|
status->default_nan_mode = val;
|
|
}
|
|
|
|
static inline void set_snan_bit_is_one(bool val, float_status *status)
|
|
{
|
|
status->snan_bit_is_one = val;
|
|
}
|
|
|
|
static inline void set_no_signaling_nans(bool val, float_status *status)
|
|
{
|
|
status->no_signaling_nans = val;
|
|
}
|
|
|
|
static inline bool get_float_detect_tininess(const float_status *status)
|
|
{
|
|
return status->tininess_before_rounding;
|
|
}
|
|
|
|
static inline FloatRoundMode get_float_rounding_mode(const float_status *status)
|
|
{
|
|
return status->float_rounding_mode;
|
|
}
|
|
|
|
static inline int get_float_exception_flags(const float_status *status)
|
|
{
|
|
return status->float_exception_flags;
|
|
}
|
|
|
|
static inline FloatX80RoundPrec
|
|
get_floatx80_rounding_precision(const float_status *status)
|
|
{
|
|
return status->floatx80_rounding_precision;
|
|
}
|
|
|
|
static inline FloatX80Behaviour
|
|
get_floatx80_behaviour(const float_status *status)
|
|
{
|
|
return status->floatx80_behaviour;
|
|
}
|
|
|
|
static inline Float2NaNPropRule
|
|
get_float_2nan_prop_rule(const float_status *status)
|
|
{
|
|
return status->float_2nan_prop_rule;
|
|
}
|
|
|
|
static inline Float3NaNPropRule
|
|
get_float_3nan_prop_rule(const float_status *status)
|
|
{
|
|
return status->float_3nan_prop_rule;
|
|
}
|
|
|
|
static inline FloatInfZeroNaNRule
|
|
get_float_infzeronan_rule(const float_status *status)
|
|
{
|
|
return status->float_infzeronan_rule;
|
|
}
|
|
|
|
static inline uint8_t get_float_default_nan_pattern(const float_status *status)
|
|
{
|
|
return status->default_nan_pattern;
|
|
}
|
|
|
|
static inline bool get_flush_to_zero(const float_status *status)
|
|
{
|
|
return status->flush_to_zero;
|
|
}
|
|
|
|
static inline bool get_flush_inputs_to_zero(const float_status *status)
|
|
{
|
|
return status->flush_inputs_to_zero;
|
|
}
|
|
|
|
static inline bool get_default_nan_mode(const float_status *status)
|
|
{
|
|
return status->default_nan_mode;
|
|
}
|
|
|
|
static inline FloatFTZDetection get_float_ftz_detection(const float_status *status)
|
|
{
|
|
return status->ftz_detection;
|
|
}
|
|
|
|
#endif /* SOFTFLOAT_HELPERS_H */
|