Merge from vendor branch AWK:
[dragonfly.git] / sys / i386 / include / stdint.h
1 /*-
2  * Copyright (c) 2001, 2002 Mike Barcroft <mike@FreeBSD.org>
3  * Copyright (c) 2001 The NetBSD Foundation, Inc.  All rights reserved.
4  * Copyright (c) 1990, 1993 The Regents of the University of California. 
5  *              All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Klaus Klein.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *        This product includes software developed by the NetBSD
21  *        Foundation, Inc. and its contributors.
22  * 4. Neither the name of The NetBSD Foundation nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  *
38  * $FreeBSD: src/sys/i386/include/_stdint.h,v 1.1 2002/07/29 17:41:07 mike Exp $
39  * $DragonFly: src/sys/i386/include/Attic/stdint.h,v 1.1 2003/11/09 02:22:35 dillon Exp $
40  */
41
42 #ifndef _MACHINE_STDINT_H_
43 #define _MACHINE_STDINT_H_
44
45 /*
46  * Basic types upon which most other types are built.
47  */
48 typedef __signed char   __int8_t;
49 typedef unsigned char   __uint8_t;
50 typedef short           __int16_t;
51 typedef unsigned short  __uint16_t;
52 typedef int             __int32_t;
53 typedef unsigned int    __uint32_t;
54
55 /*
56  * This mess is to override compiler options that might restrict long long
57  * and for lint which doesn't understand GNUC attributes.
58  */
59 #if defined(lint)
60 typedef long long               __int64_t;
61 typedef unsigned long long      __uint64_t;
62 #elif defined(__GNUC__)
63 typedef int __attribute__((__mode__(__DI__)))           __int64_t;
64 typedef unsigned int __attribute__((__mode__(__DI__)))  __uint64_t;
65 #else
66 typedef long long               __int64_t;
67 typedef unsigned long long      __uint64_t;
68 #endif
69
70 /*
71  * mbstate_t is an opaque object to keep conversion state, during multibyte
72  * stream conversions.  The content must not be referenced by user programs.
73  */
74 typedef union {
75         char            __mbstate8[128];
76         __int64_t       _mbstateL;              /* for alignment */
77 } __mbstate_t;
78
79 /*
80  * Standard type definitions.
81  */
82 typedef __int64_t       __intmax_t;
83 typedef __uint64_t      __uintmax_t;
84
85 typedef __int32_t       __intptr_t;
86 typedef __uint32_t      __uintptr_t;
87
88 typedef __int32_t       __ptrdiff_t;            /* ptr1 - ptr2 */
89
90 typedef __int32_t       __int_fast8_t;
91 typedef __int32_t       __int_fast16_t;
92 typedef __int32_t       __int_fast32_t;
93 typedef __int64_t       __int_fast64_t;
94 typedef __int8_t        __int_least8_t;
95 typedef __int16_t       __int_least16_t;
96 typedef __int32_t       __int_least32_t;
97 typedef __int64_t       __int_least64_t;
98 typedef __uint32_t      __uint_fast8_t;
99 typedef __uint32_t      __uint_fast16_t;
100 typedef __uint32_t      __uint_fast32_t;
101 typedef __uint64_t      __uint_fast64_t;
102 typedef __uint8_t       __uint_least8_t;
103 typedef __uint16_t      __uint_least16_t;
104 typedef __uint32_t      __uint_least32_t;
105 typedef __uint64_t      __uint_least64_t;
106
107 /*
108  * System types conveniently placed in this header file in order to put them
109  * in proximity with the limit macros below and for convenient access by
110  * other include files which need to pick and choose particular types but
111  * do not wish to overly pollute their namespaces.
112  */
113
114 typedef __uint32_t      __size_t;
115 typedef __int32_t       __ssize_t;
116 typedef long            __time_t;
117 typedef int             __timer_t;
118 typedef __int32_t       __register_t;
119 typedef __uint32_t      __u_register_t;
120 typedef __int32_t       __sig_atomic_t;
121 typedef unsigned long   __clock_t;
122 typedef unsigned long   __clockid_t;
123 typedef __uint32_t      __socklen_t;
124
125 /*
126  * Its convenient to put these here rather then create another header file.
127  */
128 #define __offsetof(type, field) ((size_t)(&((type *)0)->field))
129 #define __arysize(ary)          (sizeof(ary)/sizeof((ary)[0]))
130
131 #endif /* _MACHINE_STDINT_H_ */
132
133 /*
134  * OpenGroup stdint.h extensions.  Since these are protected by a define we
135  * do not have to generate __ versions of them.
136  */
137 #if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS)
138 #ifndef _MACHINE_STDINT_H_STDC_CONSTANT_MACROS_
139 #define _MACHINE_STDINT_H_STDC_CONSTANT_MACROS_
140
141 #define INT8_C(c)       (c)
142 #define INT16_C(c)      (c)
143 #define INT32_C(c)      (c)
144 #define INT64_C(c)      (c ## LL)
145
146 #define UINT8_C(c)      (c)
147 #define UINT16_C(c)     (c)
148 #define UINT32_C(c)     (c ## U)
149 #define UINT64_C(c)     (c ## ULL)
150
151 #define INTMAX_C(c)     (c ## LL)
152 #define UINTMAX_C(c)    (c ## ULL)
153
154 #endif
155 #endif /* !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) */
156
157 #if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS)
158 #ifndef _MACHINE_STDINT_H_STDC_LIMIT_MAVROS_
159 #define _MACHINE_STDINT_H_STDC_LIMIT_MAVROS_
160
161 /*
162  * ISO/IEC 9899:1999
163  * 7.18.2.1 Limits of exact-width integer types
164  */
165 /* Minimum values of exact-width signed integer types. */
166 #define INT8_MIN        (-0x7f-1)
167 #define INT16_MIN       (-0x7fff-1)
168 #define INT32_MIN       (-0x7fffffff-1)
169 #define INT64_MIN       (-0x7fffffffffffffffLL-1)
170
171 /* Maximum values of exact-width signed integer types. */
172 #define INT8_MAX        0x7f
173 #define INT16_MAX       0x7fff
174 #define INT32_MAX       0x7fffffff
175 #define INT64_MAX       0x7fffffffffffffffLL
176
177 /* Maximum values of exact-width unsigned integer types. */
178 #define UINT8_MAX       0xff
179 #define UINT16_MAX      0xffff
180 #define UINT32_MAX      0xffffffffU
181 #define UINT64_MAX      0xffffffffffffffffULL
182
183 /*
184  * ISO/IEC 9899:1999
185  * 7.18.2.4  Limits of integer types capable of holding object pointers
186  */
187 #define INTPTR_MIN      INT32_MIN
188 #define INTPTR_MAX      INT32_MAX
189 #define UINTPTR_MAX     UINT32_MAX
190
191 /*
192  * ISO/IEC 9899:1999
193  * 7.18.2.5  Limits of greatest-width integer types
194  */
195 #define INTMAX_MIN      INT64_MIN
196 #define INTMAX_MAX      INT64_MAX
197 #define UINTMAX_MAX     UINT64_MAX
198
199 /*
200  * ISO/IEC 9899:1999
201  * 7.18.3  Limits of other integer types
202  */
203 /* Limits of ptrdiff_t. */
204 #define PTRDIFF_MIN     INT32_MIN       
205 #define PTRDIFF_MAX     INT32_MAX
206
207 /* Limits of sig_atomic_t. */
208 #define SIG_ATOMIC_MIN  INT32_MIN
209 #define SIG_ATOMIC_MAX  INT32_MAX
210
211 /* Limit of size_t. */
212 #define SIZE_MAX        UINT32_MAX
213
214 /* NOTE: wchar and wint macros in sys/stdint.h */
215
216 /*
217  * ISO/IEC 9899:1999
218  * 7.18.2.2  Limits of minimum-width integer types
219  */
220 /* Minimum values of minimum-width signed integer types. */
221 #define INT_LEAST8_MIN          INT8_MIN
222 #define INT_LEAST16_MIN         INT16_MIN
223 #define INT_LEAST32_MIN         INT32_MIN
224 #define INT_LEAST64_MIN         INT64_MIN
225
226 /* Maximum values of minimum-width signed integer types. */
227 #define INT_LEAST8_MAX          INT8_MAX
228 #define INT_LEAST16_MAX         INT16_MAX
229 #define INT_LEAST32_MAX         INT32_MAX
230 #define INT_LEAST64_MAX         INT64_MAX
231
232 /* Maximum values of minimum-width unsigned integer types. */
233 #define UINT_LEAST8_MAX         UINT8_MAX
234 #define UINT_LEAST16_MAX        UINT16_MAX
235 #define UINT_LEAST32_MAX        UINT32_MAX
236 #define UINT_LEAST64_MAX        UINT64_MAX
237
238 /*
239  * ISO/IEC 9899:1999
240  * 7.18.2.3  Limits of fastest minimum-width integer types
241  */
242 /* Minimum values of fastest minimum-width signed integer types. */
243 #define INT_FAST8_MIN           INT32_MIN
244 #define INT_FAST16_MIN          INT32_MIN
245 #define INT_FAST32_MIN          INT32_MIN
246 #define INT_FAST64_MIN          INT64_MIN
247
248 /* Maximum values of fastest minimum-width signed integer types. */
249 #define INT_FAST8_MAX           INT32_MAX
250 #define INT_FAST16_MAX          INT32_MAX
251 #define INT_FAST32_MAX          INT32_MAX
252 #define INT_FAST64_MAX          INT64_MAX
253
254 /* Maximum values of fastest minimum-width unsigned integer types. */
255 #define UINT_FAST8_MAX          UINT32_MAX
256 #define UINT_FAST16_MAX         UINT32_MAX
257 #define UINT_FAST32_MAX         UINT32_MAX
258 #define UINT_FAST64_MAX         UINT64_MAX
259
260 #endif
261 #endif /* !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) */
262