Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
fpmath.h
Go to the documentation of this file.
1/*-
2 * Copyright (c) 2003 Mike Barcroft <mike@FreeBSD.org>
3 * Copyright (c) 2002 David Schultz <das@FreeBSD.ORG>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: src/lib/libc/include/fpmath.h,v 1.4 2008/12/23 22:20:59 marcel Exp $
28 */
29#ifndef _FPMATH_H_
30#define _FPMATH_H_
31
32#if defined(__aarch64__)
33#include "aarch64_fpmath.h"
34#elif defined(__i386__) || defined(__x86_64__) || defined(_M_X64 ) || defined(_M_IX86 )
35#ifdef __LP64__
36#include "amd64_fpmath.h"
37#else
38#include "i386_fpmath.h"
39#endif
40#elif defined(__powerpc__)
41#include "powerpc_fpmath.h"
42#elif defined(__mips__)
43#include "mips_fpmath.h"
44#elif defined(__s390__)
45#include "s390_fpmath.h"
46#elif defined(__riscv)
47#include "riscv_fpmath.h"
48#endif
49
50/* Definitions provided directly by GCC and Clang. */
51#if !(defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__))
52
53#if defined(__GLIBC__)
54
55#include <features.h>
56#include <endian.h>
57#define __ORDER_LITTLE_ENDIAN__ __LITTLE_ENDIAN
58#define __ORDER_BIG_ENDIAN__ __BIG_ENDIAN
59#define __BYTE_ORDER__ __BYTE_ORDER
60
61#elif defined(__APPLE__)
62
63#include <machine/endian.h>
64#define __ORDER_LITTLE_ENDIAN__ LITTLE_ENDIAN
65#define __ORDER_BIG_ENDIAN__ BIG_ENDIAN
66#define __BYTE_ORDER__ BYTE_ORDER
67
68#elif defined(_WIN32)
69
70#define __ORDER_LITTLE_ENDIAN__ 1234
71#define __ORDER_BIG_ENDIAN__ 4321
72#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
73
74#elif defined (__ICCARM__)
75
76#define __ORDER_LITTLE_ENDIAN__ 1234
77#define __ORDER_BIG_ENDIAN__ 4321
78#if defined(__LITTLE_ENDIAN__)
79#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
80#else
81#define __BYTE_ORDER__ __ORDER_BIG_ENDIAN__
82#endif
83
84#else
85
86#error no compatible compiler detected
87
88#endif
89
90#endif /* __BYTE_ORDER__, __ORDER_LITTLE_ENDIAN__ and __ORDER_BIG_ENDIAN__ */
91
92#ifndef __FLOAT_WORD_ORDER__
93#define __FLOAT_WORD_ORDER__ __BYTE_ORDER__
94#endif
95
96#if __FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__
97#if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
98#error "word order is ambiguous" __FLOAT_WORD_ORDER__
99#endif
100#endif
101
103 float f;
104 struct {
105#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
106 unsigned int man :23;
107 unsigned int exp :8;
108 unsigned int sign :1;
109#else /* _BIG_ENDIAN */
110 unsigned int sign :1;
111 unsigned int exp :8;
112 unsigned int man :23;
113#endif
115};
116
117#define DBL_MANH_SIZE 20
118#define DBL_MANL_SIZE 32
119
121 double d;
122 struct {
123#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
124#if __FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__
125 unsigned int manl :32;
126#endif
127 unsigned int manh :20;
128 unsigned int exp :11;
129 unsigned int sign :1;
130#if __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__
131 unsigned int manl :32;
132#endif
133#else /* _BIG_ENDIAN */
134 unsigned int sign :1;
135 unsigned int exp :11;
136 unsigned int manh :20;
137 unsigned int manl :32;
138#endif
140};
141
142#endif
unsigned int manh
Definition fpmath.h:127
double d
Definition fpmath.h:121
unsigned int manl
Definition fpmath.h:125
struct IEEEd2bits::@7 bits
unsigned int exp
Definition fpmath.h:128
unsigned int sign
Definition fpmath.h:129
unsigned int sign
Definition fpmath.h:108
unsigned int exp
Definition fpmath.h:107
struct IEEEf2bits::@6 bits
unsigned int man
Definition fpmath.h:106
float f
Definition fpmath.h:103