ReactOS 0.4.15-dev-7842-g558ab78
logbf.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
30#define USE_INFINITYF_WITH_FLAGS
31#define USE_HANDLE_ERRORF
32#include "libm_inlines.h"
33#undef USE_INFINITYF_WITH_FLAGS
34#undef USE_HANDLE_ERRORF
35
36#include "libm_errno.h"
37
38float _logbf(float x)
39{
40 unsigned int ux;
41 int u;
42 GET_BITS_SP32(x, ux);
44 if ((ux & ~SIGNBIT_SP32) == 0)
45 /* x is +/-zero. Return -infinity with div-by-zero flag. */
46 return _handle_errorf("_logbf", OP_LOGB, NINFBITPATT_SP32, _SING,
47 AMD_F_DIVBYZERO, ERANGE, x, 0.0F, 1);
48 else if (EMIN_SP32 <= u && u <= EMAX_SP32)
49 /* x is a normal number */
50 return (float)u;
51 else if (u > EMAX_SP32)
52 {
53 /* x is infinity or NaN */
54 if ((ux & MANTBITS_SP32) == 0)
55 /* x is +/-infinity. For VC++, return infinity of same sign. */
56 return x;
57 else
58 /* x is NaN, result is NaN */
59 return _handle_errorf("_logbf", OP_LOGB, ux|0x00400000, _DOMAIN,
60 0, EDOM, x, 0.0F, 1);
61 }
62 else
63 {
64 /* x is denormalized. */
65#ifdef FOLLOW_IEEE754_LOGB
66 /* Return the value of the minimum exponent to ensure that
67 the relationship between logb and scalb, defined in
68 IEEE 754, holds. */
69 return EMIN_SP32;
70#else
71 /* Follow the rule set by IEEE 854 for logb */
72 ux &= MANTBITS_SP32;
73 u = EMIN_SP32;
74 while (ux < IMPBIT_SP32)
75 {
76 ux <<= 1;
77 u--;
78 }
79 return (float)u;
80#endif
81 }
82}
float __cdecl _handle_errorf(char *fname, int opcode, unsigned long long value, int type, int flags, int error, float arg1, float arg2, int nargs)
Definition: _handle_error.c:56
#define ERANGE
Definition: acclib.h:92
#define EDOM
Definition: errno.h:39
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble * u
Definition: glfuncs.h:240
#define _DOMAIN
Definition: math.h:39
#define _SING
Definition: math.h:40
#define AMD_F_DIVBYZERO
Definition: libm_new.h:85
#define GET_BITS_SP32(x, ux)
Definition: libm_util.h:105
#define EXPBITS_SP32
Definition: libm_util.h:69
#define SIGNBIT_SP32
Definition: libm_util.h:68
#define EXPBIAS_SP32
Definition: libm_util.h:79
#define EMAX_SP32
Definition: libm_util.h:84
#define EMIN_SP32
Definition: libm_util.h:82
#define NINFBITPATT_SP32
Definition: libm_util.h:78
#define EXPSHIFTBITS_SP32
Definition: libm_util.h:80
#define MANTBITS_SP32
Definition: libm_util.h:70
#define IMPBIT_SP32
Definition: libm_util.h:74
float _logbf(float x)
Definition: logbf.c:38