ReactOS 0.4.15-dev-7953-g1f49173
modf.c
Go to the documentation of this file.
1
2/*******************************************************************************
3MIT License
4-----------
5
6Copyright (c) 2002-2019 Advanced Micro Devices, Inc.
7
8Permission is hereby granted, free of charge, to any person obtaining a copy
9of this Software and associated documentaon files (the "Software"), to deal
10in the Software without restriction, including without limitation the rights
11to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12copies of the Software, and to permit persons to whom the Software is
13furnished to do so, subject to the following conditions:
14
15The above copyright notice and this permission notice shall be included in
16all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24THE SOFTWARE.
25*******************************************************************************/
26
27#include "libm.h"
28#include "libm_util.h"
29
30double modf(double x, double *iptr)
31{
32 /* modf splits the argument x into integer and fraction parts,
33 each with the same sign as x. */
34
35
36 long long xexp;
37 unsigned long long ux, ax, mask;
38
39 GET_BITS_DP64(x, ux);
40 ax = ux & (~SIGNBIT_DP64);
41
42 if (ax >= 0x4340000000000000)
43 {
44 /* abs(x) is either NaN, infinity, or >= 2^53 */
45 if (ax > 0x7ff0000000000000)
46 {
47 /* x is NaN */
48 *iptr = x;
49 return x + x; /* Raise invalid if it is a signalling NaN */
50 }
51 else
52 {
53 /* x is infinity or large. Return zero with the sign of x */
54 *iptr = x;
56 return x;
57 }
58 }
59 else if (ax < 0x3ff0000000000000)
60 {
61 /* abs(x) < 1.0. Set iptr to zero with the sign of x
62 and return x. */
63 PUT_BITS_DP64(ux & SIGNBIT_DP64, *iptr);
64 return x;
65 }
66 else
67 {
68 xexp = ((ux & EXPBITS_DP64) >> EXPSHIFTBITS_DP64) - EXPBIAS_DP64;
69 /* Mask out the bits of x that we don't want */
70 mask = 1;
71 mask = (mask << (EXPSHIFTBITS_DP64 - xexp)) - 1;
72 PUT_BITS_DP64(ux & ~mask, *iptr);
73 return x - *iptr;
74 }
75
76}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLenum GLint GLuint mask
Definition: glext.h:6028
double modf(double x, double *iptr)
Definition: modf.c:30
#define EXPSHIFTBITS_DP64
Definition: libm_util.h:56
#define GET_BITS_DP64(x, ux)
Definition: libm_util.h:118
#define SIGNBIT_DP64
Definition: libm_util.h:44
#define EXPBITS_DP64
Definition: libm_util.h:45
#define EXPBIAS_DP64
Definition: libm_util.h:55
#define PUT_BITS_DP64(ux, x)
Definition: libm_util.h:124
ecx edi movl ebx edx edi decl ecx esi eax jecxz decl eax andl eax esi movl edx movl TEMP incl eax andl eax ecx incl ebx testl eax jnz xchgl ecx incl TEMP esp ecx subl ebx pushl ecx ecx edx ecx shrl ecx mm0 mm4 mm0 mm4 mm1 mm5 mm1 mm5 mm2 mm6 mm2 mm6 mm3 mm7 mm3 mm7 paddd mm0 paddd mm4 paddd mm0 paddd mm4 paddd mm0 paddd mm4 movq mm1 movq mm5 psrlq mm1 psrlq mm5 paddd mm0 paddd mm4 psrad mm0 psrad mm4 packssdw mm0 packssdw mm4 mm1 punpckldq mm0 pand mm1 pand mm0 por mm1 movq edi esi edx edi decl ecx jnz popl ecx andl ecx jecxz mm0 mm0 mm1 mm1 mm2 mm2 mm3 mm3 paddd mm0 paddd mm0 paddd mm0 movq mm1 psrlq mm1 paddd mm0 psrad mm0 packssdw mm0 movd eax movw ax
Definition: synth_sse3d.h:180