VirtualBox

source: vbox/trunk/include/iprt/stdint.h@ 27615

Last change on this file since 27615 was 27615, checked in by vboxsync, 15 years ago

include,tools/env.sh: applying sparc patches.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
Line 
1/** @file
2 * IPRT - stdint.h wrapper (for backlevel compilers like MSC).
3 */
4
5/*
6 * Copyright (C) 2009 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 *
25 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26 * Clara, CA 95054 USA or visit http://www.sun.com if you need
27 * additional information or have any questions.
28 */
29
30#ifndef __iprt_stdint_h
31#define __iprt_stdint_h
32
33#include <iprt/cdefs.h>
34
35
36/*
37 * Use the stdint.h on systems that have one.
38 */
39#if !(defined(RT_OS_LINUX) && defined(__KERNEL__)) \
40 && !(defined(RT_OS_FREEBSD) && defined(_KERNEL)) \
41 && !defined(_MSC_VER) \
42 && !defined(__IBMC__) \
43 && !defined(__IBMCPP__) \
44 && !defined(IPRT_NO_CRT) \
45 && !defined(IPRT_DONT_USE_SYSTEM_STDINT_H) \
46 && !defined(DOXYGEN_RUNNING)
47
48# ifndef __STDC_CONSTANT_MACROS
49# define __STDC_CONSTANT_MACROS
50# endif
51# ifndef __STDC_LIMIT_MACROS
52# define __STDC_LIMIT_MACROS
53# endif
54# include <stdint.h>
55
56# if defined(RT_OS_DARWIN) && defined(KERNEL) && defined(RT_ARCH_AMD64)
57 /*
58 * Kludge to fix the incorrect 32-bit constant macros in
59 * Kernel.framework/Headers/stdin.h. uint32_t and int32_t are
60 * int not long as these macros use, which is significant when
61 * targeting AMD64. (10a222)
62 */
63# undef INT32_C
64# define INT32_C(Value) (Value)
65# undef UINT32_C
66# define UINT32_C(Value) (Value ## U)
67# endif /* 64-bit darwin kludge. */
68
69#elif defined(RT_OS_FREEBSD) && defined(_KERNEL)
70
71# ifndef __STDC_CONSTANT_MACROS
72# define __STDC_CONSTANT_MACROS
73# endif
74# ifndef __STDC_LIMIT_MACROS
75# define __STDC_LIMIT_MACROS
76# endif
77# include <sys/stdint.h>
78
79#else /* No system stdint.h */
80
81/*
82 * Define the types we use.
83 * The linux kernel defines all these in linux/types.h, so skip it.
84 */
85# if !(defined(RT_OS_LINUX) && defined(__KERNEL__)) \
86 || defined(IPRT_NO_CRT) \
87 || defined(IPRT_DONT_USE_SYSTEM_STDINT_H) \
88 || defined(DOXGEN_RUNNING)
89
90 /* Simplify the [u]int64_t type detection mess. */
91# undef IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES
92# ifdef __IBMCPP__
93# if __IBMCPP__ < 350 && (defined(__WINDOWS__) || defined(_AIX) || defined(__OS2__))
94# defined IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES
95# endif
96# endif
97# ifdef __IBMC__
98# if __IBMC__ < 350 && (defined(__WINDOWS__) || defined(_AIX) || defined(__OS2__))
99# defined IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES
100# endif
101# endif
102
103 /* x-bit types */
104# if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) || defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64)
105# if !defined(_INT8_T_DECLARED) && !defined(_INT8_T)
106typedef signed char int8_t;
107# endif
108# if !defined(_UINT8_T_DECLARED) && !defined(_UINT8_T)
109typedef unsigned char uint8_t;
110# endif
111# if !defined(_INT16_T_DECLARED) && !defined(_INT16_T)
112typedef signed short int16_t;
113# endif
114# if !defined(_UINT16_T_DECLARED) && !defined(_UINT16_T)
115typedef unsigned short uint16_t;
116# endif
117# if !defined(_INT32_T_DECLARED) && !defined(_INT32_T)
118typedef signed int int32_t;
119# endif
120# if !defined(_UINT32_T_DECLARED) && !defined(_UINT32_T)
121typedef unsigned int uint32_t;
122# endif
123# if defined(_MSC_VER)
124# if !defined(_INT64_T_DECLARED) && !defined(_INT64_T)
125typedef signed _int64 int64_t;
126# endif
127# if !defined(_UINT64_T_DECLARED) && !defined(_UINT64_T)
128typedef unsigned _int64 uint64_t;
129# endif
130# elif defined(IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES)
131# if !defined(_INT64_T_DECLARED) && !defined(_INT64_T)
132typedef struct { uint32_t lo; int32_t hi; } int64_t;
133# endif
134# if !defined(_UINT64_T_DECLARED) && !defined(_UINT64_T)
135typedef struct { uint32_t lo; uint32_t hi; } uint64_t;
136# endif
137# else /* Use long long for 64-bit types */
138# if !defined(_INT64_T_DECLARED) && !defined(_INT64_T)
139typedef signed long long int64_t;
140# endif
141# if !defined(_UINT64_T_DECLARED) && !defined(_UINT64_T)
142typedef unsigned long long uint64_t;
143# endif
144# endif
145
146 /* max integer types */
147# if !defined(_INTMAX_T_DECLARED) && !defined(_INTMAX_T)
148typedef int64_t intmax_t;
149# endif
150# if !defined(_UINTMAX_T_DECLARED) && !defined(_UINTMAX_T)
151typedef uint64_t uintmax_t;
152# endif
153
154# else
155# error "PORTME: Add architecture. Don't forget to check the [U]INTx_C() and [U]INTMAX_MIN/MAX macros."
156# endif
157
158# endif /* !linux kernel or stuff */
159
160 /* pointer <-> integer types */
161# if !defined(_MSC_VER) || defined(DOXYGEN_RUNNING)
162# if ARCH_BITS == 32 \
163 || defined(RT_OS_LINUX) \
164 || defined(RT_OS_FREEBSD)
165# if !defined(_INTPTR_T_DECLARED) && !defined(_INTPTR_T)
166typedef signed long intptr_t;
167# endif
168# if !defined(_UINTPTR_T_DECLARED) && !defined(_UINTPTR_T)
169typedef unsigned long uintptr_t;
170# endif
171# else
172# if !defined(_INTPTR_T_DECLARED) && !defined(_INTPTR_T)
173typedef int64_t intptr_t;
174# endif
175# if !defined(_UINTPTR_T_DECLARED) && !defined(_UINTPTR_T)
176typedef uint64_t uintptr_t;
177# endif
178# endif
179# endif /* !_MSC_VER */
180
181#endif /* no system stdint.h */
182
183
184/*
185 * Make sure the [U]INTx_C(c) macros are present.
186 * For In C++ source the system stdint.h may have skipped these if it was
187 * included before we managed to define __STDC_CONSTANT_MACROS. (Kludge alert!)
188 */
189#if !defined(INT8_C) \
190 || !defined(INT16_C) \
191 || !defined(INT32_C) \
192 || !defined(INT64_C) \
193 || !defined(INTMAX_C) \
194 || !defined(UINT8_C) \
195 || !defined(UINT16_C) \
196 || !defined(UINT32_C) \
197 || !defined(UINT64_C) \
198 || !defined(UINTMAX_C)
199# define INT8_C(Value) (Value)
200# define INT16_C(Value) (Value)
201# define INT32_C(Value) (Value)
202# define INT64_C(Value) (Value ## LL)
203# define UINT8_C(Value) (Value)
204# define UINT16_C(Value) (Value)
205# define UINT32_C(Value) (Value ## U)
206# define UINT64_C(Value) (Value ## ULL)
207# define INTMAX_C(Value) INT64_C(Value)
208# define UINTMAX_C(Value) UINT64_C(Value)
209#endif
210
211
212/*
213 * Make sure the INTx_MIN and [U]INTx_MAX macros are present.
214 * For In C++ source the system stdint.h may have skipped these if it was
215 * included before we managed to define __STDC_LIMIT_MACROS. (Kludge alert!)
216 */
217#if !defined(INT8_MIN) \
218 || !defined(INT16_MIN) \
219 || !defined(INT32_MIN) \
220 || !defined(INT64_MIN) \
221 || !defined(INT8_MAX) \
222 || !defined(INT16_MAX) \
223 || !defined(INT32_MAX) \
224 || !defined(INT64_MAX) \
225 || !defined(UINT8_MAX) \
226 || !defined(UINT16_MAX) \
227 || !defined(UINT32_MAX) \
228 || !defined(UINT64_MAX)
229# define INT8_MIN (INT8_C(-0x7f) - 1)
230# define INT16_MIN (INT16_C(-0x7fff) - 1)
231# define INT32_MIN (INT32_C(-0x7fffffff) - 1)
232# define INT64_MIN (INT64_C(-0x7fffffffffffffff) - 1)
233# define INT8_MAX INT8_C(0x7f)
234# define INT16_MAX INT16_C(0x7fff)
235# define INT32_MAX INT32_C(0x7fffffff)
236# define INT64_MAX INT64_C(0x7fffffffffffffff)
237# define UINT8_MAX UINT8_C(0xff)
238# define UINT16_MAX UINT16_C(0xffff)
239# define UINT32_MAX UINT32_C(0xffffffff)
240# define UINT64_MAX UINT64_C(0xffffffffffffffff)
241
242# define INTMAX_MIN INT64_MIN
243# define INTMAX_MAX INT64_MAX
244# define UINTMAX_MAX UINT64_MAX
245#endif
246
247#endif
248
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette