mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled.
Inputs are still not flushed to 0 if they are denormals.
This commit is contained in:
		@@ -135,6 +135,21 @@ u32 vfp_double_normaliseround(ARMul_State* state, int dd, struct vfp_double* vd,
 | 
			
		||||
#endif
 | 
			
		||||
        if (!(significand & ((1ULL << (VFP_DOUBLE_LOW_BITS + 1)) - 1)))
 | 
			
		||||
            underflow = 0;
 | 
			
		||||
 | 
			
		||||
        int type = vfp_double_type(vd);
 | 
			
		||||
 | 
			
		||||
        if ((type & VFP_DENORMAL) && (fpscr & FPSCR_FLUSH_TO_ZERO)) {
 | 
			
		||||
            // Flush denormal to positive 0
 | 
			
		||||
            exponent = 0;
 | 
			
		||||
            significand = 0;
 | 
			
		||||
 | 
			
		||||
            vd->sign = 0;
 | 
			
		||||
            vd->exponent = exponent;
 | 
			
		||||
            vd->significand = significand;
 | 
			
		||||
 | 
			
		||||
            underflow = 0;
 | 
			
		||||
            exceptions |= FPSCR_UFC;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /*
 | 
			
		||||
 
 | 
			
		||||
@@ -138,6 +138,21 @@ 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
 | 
			
		||||
            exponent = 0;
 | 
			
		||||
            significand = 0;
 | 
			
		||||
 | 
			
		||||
            vs->sign = 0;
 | 
			
		||||
            vs->exponent = exponent;
 | 
			
		||||
            vs->significand = significand;
 | 
			
		||||
 | 
			
		||||
            underflow = 0;
 | 
			
		||||
            exceptions |= FPSCR_UFC;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /*
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user