Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
extF80_to_ui32_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 extF80_to_ui32_r_minMag.c:

Go to the source code of this file.

Functions

uint_fast32_t extF80_to_ui32_r_minMag (extFloat80_t a, bool exact)
 

Function Documentation

◆ extF80_to_ui32_r_minMag()

uint_fast32_t extF80_to_ui32_r_minMag ( extFloat80_t a,
bool exact )

Definition at line 44 of file extF80_to_ui32_r_minMag.c.

45{
46 union { struct extFloat80M s; extFloat80_t f; } uA;
47 uint_fast16_t uiA64;
48 int_fast32_t exp;
49 uint_fast64_t sig;
50 int_fast32_t shiftDist;
51 bool sign;
53
54 /*------------------------------------------------------------------------
55 *------------------------------------------------------------------------*/
56 uA.f = a;
57 uiA64 = uA.s.signExp;
58 exp = expExtF80UI64( uiA64 );
59 sig = uA.s.signif;
60 /*------------------------------------------------------------------------
61 *------------------------------------------------------------------------*/
62 shiftDist = 0x403E - exp;
63 if ( 64 <= shiftDist ) {
64 if ( exact && (exp | sig) ) {
66 }
67 return 0;
68 }
69 /*------------------------------------------------------------------------
70 *------------------------------------------------------------------------*/
71 sign = signExtF80UI64( uiA64 );
72 if ( sign || (shiftDist < 32) ) {
74 return
75 (exp == 0x7FFF) && (sig & UINT64_C( 0x7FFFFFFFFFFFFFFF ))
78 }
79 /*------------------------------------------------------------------------
80 *------------------------------------------------------------------------*/
81 z = sig>>shiftDist;
82 if ( exact && ((uint_fast64_t) z<<shiftDist != sig) ) {
84 }
85 return z;
86
87}
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
void softfloat_raiseFlags(uint_fast8_t flags)
#define ui32_fromNegOverflow
Definition specialize.h:55
#define ui32_fromPosOverflow
Definition specialize.h:54
#define ui32_fromNaN
Definition specialize.h:56
#define expExtF80UI64(a64)
Definition internals.h:147
#define signExtF80UI64(a64)
Definition internals.h:146
@ softfloat_flag_invalid
Definition softfloat.h:89
@ softfloat_flag_inexact
Definition softfloat.h:85
THREAD_LOCAL uint_fast8_t softfloat_exceptionFlags
uint16_t uint_fast16_t
Definition stdint.h:155
uint64_t uint_fast64_t
Definition stdint.h:157
#define UINT64_C(val)
Definition stdint.h:284
uint32_t uint_fast32_t
Definition stdint.h:156
int32_t int_fast32_t
Definition stdint.h:152
char * s
Here is the call graph for this function: