diff options
| author | Peter Maydell | 2014-01-07 18:17:50 +0100 |
|---|---|---|
| committer | Peter Maydell | 2014-01-07 20:18:07 +0100 |
| commit | 0ace25a5676af233a9b5abf48599dbcc45f92dcf (patch) | |
| tree | 729997b0a6e673f855ee77c3b531a6d327f1ee5d /scripts | |
| parent | softfloat: Only raise Invalid when conversions to int are out of range (diff) | |
| download | qemu-0ace25a5676af233a9b5abf48599dbcc45f92dcf.tar.gz qemu-0ace25a5676af233a9b5abf48599dbcc45f92dcf.tar.xz qemu-0ace25a5676af233a9b5abf48599dbcc45f92dcf.zip | |
softfloat: Fix factor 2 error for scalbn on denormal inputs
If the input to float*_scalbn() is denormal then it represents
a number 0.[mantissabits] * 2^(1-exponentbias) (and the actual
exponent field is all zeroes). This means that when we convert
it to our unpacked encoding the unpacked exponent must be one
greater than for a normal number, which represents
1.[mantissabits] * 2^(e-exponentbias) for an exponent field e.
This meant we were giving answers too small by a factor of 2 for
all denormal inputs.
Note that the float-to-int routines also have this behaviour
of not adjusting the exponent for denormals; however there it is
harmless because denormals will all convert to integer zero anyway.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'scripts')
0 files changed, 0 insertions, 0 deletions
