1 |
|
---|
2 | /*============================================================================
|
---|
3 |
|
---|
4 | This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
|
---|
5 | Package, Release 3e, by John R. Hauser.
|
---|
6 |
|
---|
7 | Copyright 2011, 2012, 2013, 2014, 2017 The Regents of the University of
|
---|
8 | California. All rights reserved.
|
---|
9 |
|
---|
10 | Redistribution and use in source and binary forms, with or without
|
---|
11 | modification, are permitted provided that the following conditions are met:
|
---|
12 |
|
---|
13 | 1. Redistributions of source code must retain the above copyright notice,
|
---|
14 | this list of conditions, and the following disclaimer.
|
---|
15 |
|
---|
16 | 2. Redistributions in binary form must reproduce the above copyright notice,
|
---|
17 | this list of conditions, and the following disclaimer in the documentation
|
---|
18 | and/or other materials provided with the distribution.
|
---|
19 |
|
---|
20 | 3. Neither the name of the University nor the names of its contributors may
|
---|
21 | be used to endorse or promote products derived from this software without
|
---|
22 | specific prior written permission.
|
---|
23 |
|
---|
24 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY
|
---|
25 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
---|
26 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE
|
---|
27 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
---|
28 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
---|
29 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
---|
30 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
---|
31 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
32 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
---|
33 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
34 |
|
---|
35 | =============================================================================*/
|
---|
36 |
|
---|
37 | #include <stdbool.h>
|
---|
38 | #include <stdint.h>
|
---|
39 | #include "platform.h"
|
---|
40 | #include "internals.h"
|
---|
41 | #include "specialize.h"
|
---|
42 | #include "softfloat.h"
|
---|
43 | #include <iprt/cdefs.h> /* VBox: for RT_FALL_THROUGH */
|
---|
44 |
|
---|
45 | float32_t f32_roundToInt( float32_t a, uint_fast8_t roundingMode, bool exact SOFTFLOAT_STATE_DECL_COMMA )
|
---|
46 | {
|
---|
47 | union ui32_f32 uA;
|
---|
48 | uint_fast32_t uiA;
|
---|
49 | int_fast16_t exp;
|
---|
50 | uint_fast32_t uiZ, lastBitMask, roundBitsMask;
|
---|
51 | union ui32_f32 uZ;
|
---|
52 |
|
---|
53 | /*------------------------------------------------------------------------
|
---|
54 | *------------------------------------------------------------------------*/
|
---|
55 | uA.f = a;
|
---|
56 | uiA = uA.ui;
|
---|
57 | exp = expF32UI( uiA );
|
---|
58 | /*------------------------------------------------------------------------
|
---|
59 | *------------------------------------------------------------------------*/
|
---|
60 | if ( exp <= 0x7E ) {
|
---|
61 | if ( !(uint32_t) (uiA<<1) ) return a;
|
---|
62 | if ( exact ) softfloat_exceptionFlags |= softfloat_flag_inexact;
|
---|
63 | uiZ = uiA & packToF32UI( 1, 0, 0 );
|
---|
64 | switch ( roundingMode ) {
|
---|
65 | case softfloat_round_near_even:
|
---|
66 | if ( !fracF32UI( uiA ) ) break;
|
---|
67 | RT_FALL_THROUGH(); /* VBox */
|
---|
68 | case softfloat_round_near_maxMag:
|
---|
69 | if ( exp == 0x7E ) uiZ |= packToF32UI( 0, 0x7F, 0 );
|
---|
70 | break;
|
---|
71 | case softfloat_round_min:
|
---|
72 | if ( uiZ ) uiZ = packToF32UI( 1, 0x7F, 0 );
|
---|
73 | break;
|
---|
74 | case softfloat_round_max:
|
---|
75 | if ( !uiZ ) uiZ = packToF32UI( 0, 0x7F, 0 );
|
---|
76 | break;
|
---|
77 | #ifdef SOFTFLOAT_ROUND_ODD
|
---|
78 | case softfloat_round_odd:
|
---|
79 | uiZ |= packToF32UI( 0, 0x7F, 0 );
|
---|
80 | break;
|
---|
81 | #endif
|
---|
82 | }
|
---|
83 | goto uiZ;
|
---|
84 | }
|
---|
85 | /*------------------------------------------------------------------------
|
---|
86 | *------------------------------------------------------------------------*/
|
---|
87 | if ( 0x96 <= exp ) {
|
---|
88 | if ( (exp == 0xFF) && fracF32UI( uiA ) ) {
|
---|
89 | uiZ = softfloat_propagateNaNF32UI( uiA, 0 SOFTFLOAT_STATE_ARG_COMMA );
|
---|
90 | goto uiZ;
|
---|
91 | }
|
---|
92 | return a;
|
---|
93 | }
|
---|
94 | /*------------------------------------------------------------------------
|
---|
95 | *------------------------------------------------------------------------*/
|
---|
96 | uiZ = uiA;
|
---|
97 | lastBitMask = (uint_fast32_t) 1<<(0x96 - exp);
|
---|
98 | roundBitsMask = lastBitMask - 1;
|
---|
99 | if ( roundingMode == softfloat_round_near_maxMag ) {
|
---|
100 | uiZ += lastBitMask>>1;
|
---|
101 | } else if ( roundingMode == softfloat_round_near_even ) {
|
---|
102 | uiZ += lastBitMask>>1;
|
---|
103 | if ( !(uiZ & roundBitsMask) ) uiZ &= ~lastBitMask;
|
---|
104 | } else if (
|
---|
105 | roundingMode
|
---|
106 | == (signF32UI( uiZ ) ? softfloat_round_min : softfloat_round_max)
|
---|
107 | ) {
|
---|
108 | uiZ += roundBitsMask;
|
---|
109 | }
|
---|
110 | uiZ &= ~roundBitsMask;
|
---|
111 | if ( uiZ != uiA ) {
|
---|
112 | #ifdef SOFTFLOAT_ROUND_ODD
|
---|
113 | if ( roundingMode == softfloat_round_odd ) uiZ |= lastBitMask;
|
---|
114 | #endif
|
---|
115 | if ( exact ) softfloat_exceptionFlags |= softfloat_flag_inexact;
|
---|
116 | }
|
---|
117 | uiZ:
|
---|
118 | uZ.ui = uiZ;
|
---|
119 | return uZ.f;
|
---|
120 |
|
---|
121 | }
|
---|
122 |
|
---|