Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
f128M_to_ui64_r_minMag.c File Reference
#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
#include "internals.h"
#include "specialize.h"
#include "softfloat.h"
Include dependency graph for f128M_to_ui64_r_minMag.c:

Go to the source code of this file.

Functions

uint_fast64_t f128M_to_ui64_r_minMag (const float128_t *aPtr, bool exact)
 

Function Documentation

◆ f128M_to_ui64_r_minMag()

uint_fast64_t f128M_to_ui64_r_minMag ( const float128_t * aPtr,
bool exact )

Definition at line 55 of file f128M_to_ui64_r_minMag.c.

56{
57 const uint32_t *aWPtr;
58 uint32_t uiA96;
59 bool sign;
60 int32_t exp;
61 uint32_t sig96;
62 int32_t shiftDist;
63 uint32_t sig[4];
64 uint64_t z;
65
66 /*------------------------------------------------------------------------
67 *------------------------------------------------------------------------*/
68 aWPtr = (const uint32_t *) aPtr;
69 uiA96 = aWPtr[indexWordHi( 4 )];
70 sign = signF128UI96( uiA96 );
71 exp = expF128UI96( uiA96 );
72 sig96 = fracF128UI96( uiA96 );
73 /*------------------------------------------------------------------------
74 *------------------------------------------------------------------------*/
75 shiftDist = 0x403E - exp;
76 if ( shiftDist < 0 ) goto invalid;
77 if ( exact ) {
78 if ( exp ) sig96 |= 0x00010000;
79 sig[indexWord( 4, 3 )] = sig96;
80 sig[indexWord( 4, 2 )] = aWPtr[indexWord( 4, 2 )];
81 sig[indexWord( 4, 1 )] = aWPtr[indexWord( 4, 1 )];
82 sig[indexWord( 4, 0 )] = aWPtr[indexWord( 4, 0 )];
83 softfloat_shiftRightJam128M( sig, shiftDist + 17, sig );
84 z = (uint64_t) sig[indexWord( 4, 2 )]<<32 | sig[indexWord( 4, 1 )];
85 if ( sign && z ) goto invalid;
86 if ( sig[indexWordLo( 4 )] ) {
88 }
89 } else {
90 if ( 64 <= shiftDist ) return 0;
91 if ( sign ) goto invalid;
92 z = UINT64_C( 0x8000000000000000 )
93 | (uint64_t) sig96<<47
94 | (uint64_t) aWPtr[indexWord( 4, 2 )]<<15
95 | aWPtr[indexWord( 4, 1 )]>>17;
96 z >>= shiftDist;
97 }
98 return z;
99 /*------------------------------------------------------------------------
100 *------------------------------------------------------------------------*/
101 invalid:
103 return
104 (exp == 0x7FFF)
105 && (sig96
106 || (aWPtr[indexWord( 4, 2 )] | aWPtr[indexWord( 4, 1 )]
107 | aWPtr[indexWord( 4, 0 )]))
110
111}
void softfloat_raiseFlags(uint_fast8_t flags)
#define ui64_fromPosOverflow
Definition specialize.h:65
#define ui64_fromNegOverflow
Definition specialize.h:66
#define ui64_fromNaN
Definition specialize.h:67
#define fracF128UI96(a96)
Definition internals.h:249
#define signF128UI96(a96)
Definition internals.h:247
#define expF128UI96(a96)
Definition internals.h:248
#define indexWordLo(total)
#define indexWord(total, n)
#define indexWordHi(total)
#define softfloat_shiftRightJam128M(aPtr, dist, zPtr)
Definition primitives.h:881
@ softfloat_flag_invalid
Definition softfloat.h:89
@ softfloat_flag_inexact
Definition softfloat.h:85
THREAD_LOCAL uint_fast8_t softfloat_exceptionFlags
unsigned int uint32_t
Definition stdint.h:126
#define UINT64_C(val)
Definition stdint.h:284
signed int int32_t
Definition stdint.h:123
unsigned __int64 uint64_t
Definition stdint.h:136
Here is the call graph for this function: