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.
30 lines
734 B
30 lines
734 B
|
15 years ago
|
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include <stdint.h>
|
||
|
|
#include "platform.h"
|
||
|
|
#include "primitives.h"
|
||
|
|
#include "internals.h"
|
||
|
|
#include "softfloat.h"
|
||
|
|
|
||
|
|
uint_fast32_t f64_to_ui32( float64_t a, int_fast8_t roundingMode, bool exact )
|
||
|
|
{
|
||
|
|
union ui64_f64 uA;
|
||
|
|
uint_fast64_t uiA;
|
||
|
|
bool sign;
|
||
|
|
int_fast16_t exp;
|
||
|
|
uint_fast64_t sig;
|
||
|
|
int_fast16_t shiftCount;
|
||
|
|
|
||
|
|
uA.f = a;
|
||
|
|
uiA = uA.ui;
|
||
|
|
sign = signF64UI( uiA );
|
||
|
|
exp = expF64UI( uiA );
|
||
|
|
sig = fracF64UI( uiA );
|
||
|
|
if ( exp ) sig |= UINT64_C( 0x0010000000000000 );
|
||
|
|
shiftCount = 0x42C - exp;
|
||
|
|
if ( 0 < shiftCount ) sig = softfloat_shift64RightJam( sig, shiftCount );
|
||
|
|
return softfloat_roundPackToUI32( sign, sig, roundingMode, exact );
|
||
|
|
|
||
|
|
}
|
||
|
|
|