1 // SPDX-License-Identifier: BSD-3-Clause
2 
3 /*============================================================================
4 
5 This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
6 Package, Release 3a, by John R. Hauser.
7 
8 Copyright 2011, 2012, 2013, 2014 The Regents of the University of California.
9 All rights reserved.
10 
11 Redistribution and use in source and binary forms, with or without
12 modification, are permitted provided that the following conditions are met:
13 
14  1. Redistributions of source code must retain the above copyright notice,
15     this list of conditions, and the following disclaimer.
16 
17  2. Redistributions in binary form must reproduce the above copyright notice,
18     this list of conditions, and the following disclaimer in the documentation
19     and/or other materials provided with the distribution.
20 
21  3. Neither the name of the University nor the names of its contributors may
22     be used to endorse or promote products derived from this software without
23     specific prior written permission.
24 
25 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY
26 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
27 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE
28 DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
29 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
32 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 
36 =============================================================================*/
37 
38 #include <stdint.h>
39 #include "platform.h"
40 #include "internals.h"
41 #include "softfloat_types.h"
42 
43 int
softfloat_compareNonnormExtF80M(const struct extFloat80M * aSPtr,const struct extFloat80M * bSPtr)44  softfloat_compareNonnormExtF80M(
45      const struct extFloat80M *aSPtr, const struct extFloat80M *bSPtr )
46 {
47     uint_fast16_t uiA64, uiB64;
48     uint64_t sigA;
49     bool signB;
50     uint64_t sigB;
51     int32_t expA, expB;
52 
53     /*------------------------------------------------------------------------
54     *------------------------------------------------------------------------*/
55     uiA64 = aSPtr->signExp;
56     uiB64 = bSPtr->signExp;
57     sigA = aSPtr->signif;
58     signB = signExtF80UI64( uiB64 );
59     sigB = bSPtr->signif;
60     /*------------------------------------------------------------------------
61     *------------------------------------------------------------------------*/
62     if ( (uiA64 ^ uiB64) & 0x8000 ) {
63         if ( ! (sigA | sigB) ) return 0;
64         goto resultFromSignB;
65     }
66     /*------------------------------------------------------------------------
67     *------------------------------------------------------------------------*/
68     expA = expExtF80UI64( uiA64 );
69     expB = expExtF80UI64( uiB64 );
70     if ( expA == 0x7FFF ) {
71         if (expB == 0x7FFF) return 0;
72         signB = ! signB;
73         goto resultFromSignB;
74     }
75     if ( expB == 0x7FFF ) {
76         goto resultFromSignB;
77     }
78     /*------------------------------------------------------------------------
79     *------------------------------------------------------------------------*/
80     if ( ! expA ) expA = 1;
81     if ( ! (sigA & UINT64_C( 0x8000000000000000 )) ) {
82         if ( sigA ) {
83             expA += softfloat_normExtF80SigM( &sigA );
84         } else {
85             expA = -128;
86         }
87     }
88     if ( ! expB ) expB = 1;
89     if ( ! (sigB & UINT64_C( 0x8000000000000000 )) ) {
90         if ( sigB ) {
91             expB += softfloat_normExtF80SigM( &sigB );
92         } else {
93             expB = -128;
94         }
95     }
96     /*------------------------------------------------------------------------
97     *------------------------------------------------------------------------*/
98     if ( signB ) {
99         if ( expA < expB ) return 1;
100         if ( (expB < expA) || (sigB < sigA) ) return -1;
101     } else {
102         if ( expB < expA ) return 1;
103         if ( (expA < expB) || (sigA < sigB) ) return -1;
104     }
105     return (sigA != sigB);
106     /*------------------------------------------------------------------------
107     *------------------------------------------------------------------------*/
108  resultFromSignB:
109     return signB ? 1 : -1;
110 
111 }
112 
113