VirtualBox

source: vbox/trunk/src/libs/softfloat-3e/source/extF80_roundToInt.c@ 106877

Last change on this file since 106877 was 94566, checked in by vboxsync, 3 years ago

libs/softfloat: Made extF80_roundToInt set our 'c1' flag too, so it can more easily be used to implement the frndint instruction. bugref:9898

  • Property svn:eol-style set to native
File size: 5.9 KB
Line 
1
2/*============================================================================
3
4This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
5Package, Release 3e, by John R. Hauser.
6
7Copyright 2011, 2012, 2013, 2014, 2017 The Regents of the University of
8California. All rights reserved.
9
10Redistribution and use in source and binary forms, with or without
11modification, 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
24THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY
25EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE
27DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
28DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31ON 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
33SOFTWARE, 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
45extFloat80_t
46 extF80_roundToInt( extFloat80_t a, uint_fast8_t roundingMode, bool exact SOFTFLOAT_STATE_DECL_COMMA )
47{
48 union { struct extFloat80M s; extFloat80_t f; } uA;
49 uint_fast16_t uiA64, signUI64;
50 int_fast32_t exp;
51 uint_fast64_t sigA;
52 uint_fast16_t uiZ64;
53 uint_fast64_t sigZ;
54 struct exp32_sig64 normExpSig;
55 struct uint128 uiZ;
56 uint_fast64_t lastBitMask, roundBitsMask;
57 union { struct extFloat80M s; extFloat80_t f; } uZ;
58
59 /*------------------------------------------------------------------------
60 *------------------------------------------------------------------------*/
61 uA.f = a;
62 uiA64 = uA.s.signExp;
63 signUI64 = uiA64 & packToExtF80UI64( 1, 0 );
64 exp = expExtF80UI64( uiA64 );
65 sigA = uA.s.signif;
66 /*------------------------------------------------------------------------
67 *------------------------------------------------------------------------*/
68 if ( !(sigA & UINT64_C( 0x8000000000000000 )) && (exp != 0x7FFF) ) {
69 if ( !sigA ) {
70 uiZ64 = signUI64;
71 sigZ = 0;
72 goto uiZ;
73 }
74 normExpSig = softfloat_normSubnormalExtF80Sig( sigA );
75 exp += normExpSig.exp;
76 sigA = normExpSig.sig;
77 }
78 /*------------------------------------------------------------------------
79 *------------------------------------------------------------------------*/
80 if ( 0x403E <= exp ) {
81 if ( exp == 0x7FFF ) {
82 if ( sigA & UINT64_C( 0x7FFFFFFFFFFFFFFF ) ) {
83 uiZ = softfloat_propagateNaNExtF80UI( uiA64, sigA, 0, 0 SOFTFLOAT_STATE_ARG_COMMA );
84 uiZ64 = uiZ.v64;
85 sigZ = uiZ.v0;
86 goto uiZ;
87 }
88 sigZ = UINT64_C( 0x8000000000000000 );
89 } else {
90 sigZ = sigA;
91 }
92 uiZ64 = signUI64 | exp;
93 goto uiZ;
94 }
95 if ( exp <= 0x3FFE ) {
96 if ( exact ) softfloat_exceptionFlags |= softfloat_flag_inexact;
97 switch ( roundingMode ) {
98 case softfloat_round_near_even:
99 if ( !(sigA & UINT64_C( 0x7FFFFFFFFFFFFFFF )) ) break;
100 RT_FALL_THROUGH(); /* VBox */
101 case softfloat_round_near_maxMag:
102 if ( exp == 0x3FFE ) goto mag1;
103 break;
104 case softfloat_round_min:
105 if ( signUI64 ) goto mag1;
106 break;
107 case softfloat_round_max:
108 if ( !signUI64 ) goto mag1;
109 break;
110#ifdef SOFTFLOAT_ROUND_ODD
111 case softfloat_round_odd:
112 goto mag1;
113#endif
114 }
115 uiZ64 = signUI64;
116 sigZ = 0;
117 goto uiZ;
118 mag1:
119 uiZ64 = signUI64 | 0x3FFF;
120 sigZ = UINT64_C( 0x8000000000000000 );
121 softfloat_exceptionFlags |= softfloat_flag_c1; /* VBox */
122 goto uiZ;
123 }
124 /*------------------------------------------------------------------------
125 *------------------------------------------------------------------------*/
126 uiZ64 = signUI64 | exp;
127 lastBitMask = (uint_fast64_t) 1<<(0x403E - exp);
128 roundBitsMask = lastBitMask - 1;
129 sigZ = sigA;
130 if ( roundingMode == softfloat_round_near_maxMag ) {
131 sigZ += lastBitMask>>1;
132 } else if ( roundingMode == softfloat_round_near_even ) {
133 sigZ += lastBitMask>>1;
134 if ( !(sigZ & roundBitsMask) ) sigZ &= ~lastBitMask;
135 } else if (
136 roundingMode == (signUI64 ? softfloat_round_min : softfloat_round_max)
137 ) {
138 sigZ += roundBitsMask;
139 }
140 sigZ &= ~roundBitsMask;
141 if ( !sigZ ) {
142 ++uiZ64;
143 sigZ = UINT64_C( 0x8000000000000000 );
144 softfloat_exceptionFlags |= softfloat_flag_c1; /* VBox */
145 } else if ( sigZ > sigA ) softfloat_exceptionFlags |= softfloat_flag_c1; /* VBox */
146 if ( sigZ != sigA ) {
147#ifdef SOFTFLOAT_ROUND_ODD
148 if ( roundingMode == softfloat_round_odd ) sigZ |= lastBitMask;
149#endif
150 if ( exact ) softfloat_exceptionFlags |= softfloat_flag_inexact;
151 }
152 uiZ:
153 uZ.s.signExp = uiZ64;
154 uZ.s.signif = sigZ;
155 return uZ.f;
156
157}
158
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette