diff options
| author | Sebastian Valle <subv2112@gmail.com> | 2017-05-22 12:16:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-22 12:16:53 -0500 |
| commit | c291db72e74fa1514bfe6706b8a2004bbe2b31e7 (patch) | |
| tree | f0e29867eb0002a0efd09fbccef53bd212530b39 /src/core/arm/skyeye_common/vfp/vfpsingle.cpp | |
| parent | cc566dadd8cd310658785b87b1692880ce51eeda (diff) | |
| parent | 5b46a89230790d01e21ffaebf3731f68b7bbb4dc (diff) | |
Merge pull request #2692 from Subv/vfp_ftz
Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled.
Diffstat (limited to 'src/core/arm/skyeye_common/vfp/vfpsingle.cpp')
| -rw-r--r-- | src/core/arm/skyeye_common/vfp/vfpsingle.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/arm/skyeye_common/vfp/vfpsingle.cpp b/src/core/arm/skyeye_common/vfp/vfpsingle.cpp index 6b4cb8efa..1f9142abc 100644 --- a/src/core/arm/skyeye_common/vfp/vfpsingle.cpp +++ b/src/core/arm/skyeye_common/vfp/vfpsingle.cpp @@ -137,6 +137,19 @@ u32 vfp_single_normaliseround(ARMul_State* state, int sd, struct vfp_single* vs, #endif if (!(significand & ((1 << (VFP_SINGLE_LOW_BITS + 1)) - 1))) underflow = 0; + + int type = vfp_single_type(vs); + + if ((type & VFP_DENORMAL) && (fpscr & FPSCR_FLUSH_TO_ZERO)) { + // Flush denormal to positive 0 + significand = 0; + + vs->sign = 0; + vs->significand = significand; + + underflow = 0; + exceptions |= FPSCR_UFC; + } } /* |
