RISC-V Proxy Kernel
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.

25 lines
608 B

#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
#include "primitives.h"
#include "internals.h"
float32_t
softfloat_normRoundPackToF32( bool sign, int_fast16_t exp, uint_fast32_t sig )
{
int shiftCount;
union ui32_f32 uZ;
shiftCount = softfloat_countLeadingZeros32( sig ) - 1;
exp -= shiftCount;
if ( ( 7 <= shiftCount ) && ( (uint16_t) exp < 0xFD ) ) {
uZ.ui = packToF32UI( sign, sig ? exp : 0, sig<<( shiftCount - 7 ) );
return uZ.f;
} else {
return softfloat_roundPackToF32( sign, exp, sig<<shiftCount );
}
}