1 | /* $Id: __fpclassifyl.cpp 96197 2022-08-14 01:04:34Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - No-CRT - __fpclassifyl().
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2022 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #define IPRT_NO_CRT_FOR_3RD_PARTY
|
---|
32 | #include "internal/nocrt.h"
|
---|
33 | #include <iprt/nocrt/math.h>
|
---|
34 | #include <iprt/assertcompile.h>
|
---|
35 | #include <iprt/assert.h>
|
---|
36 |
|
---|
37 |
|
---|
38 | #undef __fpclassifyl
|
---|
39 | int RT_NOCRT(__fpclassifyl)(long double lrd)
|
---|
40 | {
|
---|
41 | #ifdef RT_COMPILER_WITH_128BIT_LONG_DOUBLE
|
---|
42 | RTFLOAT128U u;
|
---|
43 | u.rd = lrd;
|
---|
44 | if (RTFLOAT128U_IS_ZERO(&u))
|
---|
45 | return RT_NOCRT_FP_ZERO;
|
---|
46 | if (RTFLOAT128U_IS_NORMAL(&u))
|
---|
47 | return RT_NOCRT_FP_NORMAL;
|
---|
48 | if (RTFLOAT128U_IS_NAN(&u))
|
---|
49 | return RT_NOCRT_FP_NAN;
|
---|
50 | if (RTFLOAT128U_IS_INF(&u))
|
---|
51 | return RT_NOCRT_FP_INFINITE;
|
---|
52 | Assert(RTFLOAT128U_IS_SUBNORMAL(&u));
|
---|
53 | return RT_NOCRT_FP_SUBNORMAL;
|
---|
54 |
|
---|
55 | #elif defined(RT_COMPILER_WITH_80BIT_LONG_DOUBLE)
|
---|
56 | RTFLOAT80U2 u;
|
---|
57 | u.lrd = lrd;
|
---|
58 | if (RTFLOAT80U_IS_ZERO(&u))
|
---|
59 | return RT_NOCRT_FP_ZERO;
|
---|
60 | if (RTFLOAT80U_IS_NORMAL(&u))
|
---|
61 | return RT_NOCRT_FP_NORMAL;
|
---|
62 | if (RTFLOAT80U_IS_NAN(&u))
|
---|
63 | return RT_NOCRT_FP_NAN;
|
---|
64 | if (RTFLOAT80U_IS_INF(&u))
|
---|
65 | return RT_NOCRT_FP_INFINITE;
|
---|
66 | if (RTFLOAT80U_IS_DENORMAL_OR_PSEUDO_DENORMAL(&u))
|
---|
67 | return RT_NOCRT_FP_SUBNORMAL;
|
---|
68 |
|
---|
69 | /* Following i387 invalid operand rules here. Adjust as needed for
|
---|
70 | other architectures. */
|
---|
71 | Assert(RTFLOAT80U_IS_387_INVALID(&u));
|
---|
72 | return RT_NOCRT_FP_NAN;
|
---|
73 |
|
---|
74 | #else
|
---|
75 | AssertCompile(sizeof(lrd) == sizeof(uint64_t));
|
---|
76 | RTFLOAT64U u;
|
---|
77 | u.rd = lrd;
|
---|
78 | if (RTFLOAT64U_IS_ZERO(&u))
|
---|
79 | return RT_NOCRT_FP_ZERO;
|
---|
80 | if (RTFLOAT64U_IS_NORMAL(&u))
|
---|
81 | return RT_NOCRT_FP_NORMAL;
|
---|
82 | if (RTFLOAT64U_IS_NAN(&u))
|
---|
83 | return RT_NOCRT_FP_NAN;
|
---|
84 | if (RTFLOAT64U_IS_INF(&u))
|
---|
85 | return RT_NOCRT_FP_INFINITE;
|
---|
86 | Assert(RTFLOAT64U_IS_SUBNORMAL(&u));
|
---|
87 | return RT_NOCRT_FP_SUBNORMAL;
|
---|
88 | #endif
|
---|
89 | }
|
---|
90 | RT_ALIAS_AND_EXPORT_NOCRT_SYMBOL_WITHOUT_UNDERSCORE(__fpclassifyl);
|
---|
91 |
|
---|