Spike, a RISC-V ISA Simulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
611 B

#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
#include "primitives.h"
#include "internals.h"
float64_t
softfloat_normRoundPackToF64( bool sign, int_fast16_t exp, uint_fast64_t sig )
{
int shiftCount;
union ui64_f64 uZ;
shiftCount = softfloat_countLeadingZeros64( sig ) - 1;
exp -= shiftCount;
if ( ( 10 <= shiftCount ) && ( (uint16_t) exp < 0x7FD ) ) {
uZ.ui = packToF64UI( sign, sig ? exp : 0, sig<<( shiftCount - 10 ) );
return uZ.f;
} else {
return softfloat_roundPackToF64( sign, exp, sig<<shiftCount );
}
}