VirtualBox

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

Last change on this file since 60844 was 60844, checked in by vboxsync, 8 years ago

iprt/stdint.h: Our visual C++ version (2010) has stdint.h, include it before someone else does and create conflicting defines.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.3 KB
Line 
1/** @file
2 * IPRT - stdint.h wrapper (for backlevel compilers like MSC).
3 */
4
5/*
6 * Copyright (C) 2009-2015 Oracle Corporation
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
26#ifndef __iprt_stdint_h
27#define __iprt_stdint_h
28
29#include <iprt/cdefs.h>
30
31
32/*
33 * Use the stdint.h on systems that have one.
34 */
35#if !(defined(RT_OS_LINUX) && defined(__KERNEL__)) \
36 && !(defined(RT_OS_FREEBSD) && defined(_KERNEL)) \
37 && RT_MSC_PREREQ_EX(RT_MSC_VER_VS2010, 1 /*non-msc*/) \
38 && !defined(__IBMC__) \
39 && !defined(__IBMCPP__) \
40 && !defined(IPRT_NO_CRT) \
41 && !defined(IPRT_DONT_USE_SYSTEM_STDINT_H) \
42 && !defined(DOXYGEN_RUNNING)
43
44# ifndef __STDC_CONSTANT_MACROS
45# define __STDC_CONSTANT_MACROS
46# endif
47# ifndef __STDC_LIMIT_MACROS
48# define __STDC_LIMIT_MACROS
49# endif
50# include <stdint.h>
51
52# if defined(RT_OS_DARWIN) && defined(KERNEL) && defined(RT_ARCH_AMD64)
53 /*
54 * Kludge to fix the incorrect 32-bit constant macros in
55 * Kernel.framework/Headers/stdin.h. uint32_t and int32_t are
56 * int not long as these macros use, which is significant when
57 * targeting AMD64. (10a222)
58 */
59# undef INT32_C
60# define INT32_C(Value) (Value)
61# undef UINT32_C
62# define UINT32_C(Value) (Value ## U)
63# endif /* 64-bit darwin kludge. */
64
65#elif defined(RT_OS_FREEBSD) && defined(_KERNEL)
66
67# ifndef __STDC_CONSTANT_MACROS
68# define __STDC_CONSTANT_MACROS
69# endif
70# ifndef __STDC_LIMIT_MACROS
71# define __STDC_LIMIT_MACROS
72# endif
73# include <sys/stdint.h>
74
75#else /* No system stdint.h */
76
77/*
78 * Define the types we use.
79 * The linux kernel defines all these in linux/types.h, so skip it.
80 */
81# if !(defined(RT_OS_LINUX) && defined(__KERNEL__)) \
82 || defined(IPRT_NO_CRT) \
83 || defined(IPRT_DONT_USE_SYSTEM_STDINT_H) \
84 || defined(DOXGEN_RUNNING)
85
86 /* Simplify the [u]int64_t type detection mess. */
87# undef IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES
88# ifdef __IBMCPP__
89# if __IBMCPP__ < 350 && (defined(__WINDOWS__) || defined(_AIX) || defined(__OS2__))
90# define IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES
91# endif
92# endif
93# ifdef __IBMC__
94# if __IBMC__ < 350 && (defined(__WINDOWS__) || defined(_AIX) || defined(__OS2__))
95# define IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES
96# endif
97# endif
98
99 /* x-bit types */
100# if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) || defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64)
101# if !defined(_INT8_T_DECLARED) && !defined(_INT8_T)
102typedef signed char int8_t;
103# endif
104# if !defined(_UINT8_T_DECLARED) && !defined(_UINT8_T)
105typedef unsigned char uint8_t;
106# endif
107# if !defined(_INT16_T_DECLARED) && !defined(_INT16_T)
108typedef signed short int16_t;
109# endif
110# if !defined(_UINT16_T_DECLARED) && !defined(_UINT16_T)
111typedef unsigned short uint16_t;
112# endif
113# if !defined(_INT32_T_DECLARED) && !defined(_INT32_T)
114# if ARCH_BITS != 16
115typedef signed int int32_t;
116# else
117typedef signed long int32_t;
118# endif
119# endif
120# if !defined(_UINT32_T_DECLARED) && !defined(_UINT32_T)
121# if ARCH_BITS != 16
122typedef unsigned int uint32_t;
123# else
124typedef unsigned long uint32_t;
125# endif
126# endif
127# if defined(_MSC_VER)
128# if !defined(_INT64_T_DECLARED) && !defined(_INT64_T)
129typedef signed _int64 int64_t;
130# endif
131# if !defined(_UINT64_T_DECLARED) && !defined(_UINT64_T)
132typedef unsigned _int64 uint64_t;
133# endif
134# elif defined(__WATCOMC__)
135# if !defined(_INT64_T_DECLARED) && !defined(_INT64_T)
136typedef signed __int64 int64_t;
137# endif
138# if !defined(_UINT64_T_DECLARED) && !defined(_UINT64_T)
139typedef unsigned __int64 uint64_t;
140# endif
141# elif defined(IPRT_STDINT_USE_STRUCT_FOR_64_BIT_TYPES)
142# if !defined(_INT64_T_DECLARED) && !defined(_INT64_T)
143typedef struct { uint32_t lo; int32_t hi; } int64_t;
144# endif
145# if !defined(_UINT64_T_DECLARED) && !defined(_UINT64_T)
146typedef struct { uint32_t lo; uint32_t hi; } uint64_t;
147# endif
148# else /* Use long long for 64-bit types */
149# if !defined(_INT64_T_DECLARED) && !defined(_INT64_T)
150typedef signed long long int64_t;
151# endif
152# if !defined(_UINT64_T_DECLARED) && !defined(_UINT64_T)
153typedef unsigned long long uint64_t;
154# endif
155# endif
156
157 /* max integer types */
158# if !defined(_INTMAX_T_DECLARED) && !defined(_INTMAX_T)
159typedef int64_t intmax_t;
160# endif
161# if !defined(_UINTMAX_T_DECLARED) && !defined(_UINTMAX_T)
162typedef uint64_t uintmax_t;
163# endif
164
165# else
166# error "PORTME: Add architecture. Don't forget to check the [U]INTx_C() and [U]INTMAX_MIN/MAX macros."
167# endif
168
169# endif /* !linux kernel or stuff */
170
171 /* pointer <-> integer types */
172# if !defined(_MSC_VER) || defined(DOXYGEN_RUNNING)
173# if ARCH_BITS == 32 \
174 || defined(RT_OS_LINUX) \
175 || defined(RT_OS_FREEBSD)
176# if !defined(_INTPTR_T_DECLARED) && !defined(_INTPTR_T)
177typedef signed long intptr_t;
178# endif
179# if !defined(_UINTPTR_T_DECLARED) && !defined(_UINTPTR_T)
180typedef unsigned long uintptr_t;
181# endif
182# else
183# if !defined(_INTPTR_T_DECLARED) && !defined(_INTPTR_T)
184typedef int64_t intptr_t;
185# endif
186# if !defined(_UINTPTR_T_DECLARED) && !defined(_UINTPTR_T)
187typedef uint64_t uintptr_t;
188# endif
189# endif
190# endif /* !_MSC_VER */
191
192#endif /* no system stdint.h */
193
194
195/*
196 * Make sure the [U]INTx_C(c) macros are present.
197 * For In C++ source the system stdint.h may have skipped these if it was
198 * included before we managed to define __STDC_CONSTANT_MACROS. (Kludge alert!)
199 */
200#if !defined(INT8_C) \
201 || !defined(INT16_C) \
202 || !defined(INT32_C) \
203 || !defined(INT64_C) \
204 || !defined(INTMAX_C) \
205 || !defined(UINT8_C) \
206 || !defined(UINT16_C) \
207 || !defined(UINT32_C) \
208 || !defined(UINT64_C) \
209 || !defined(UINTMAX_C)
210# define INT8_C(Value) (Value)
211# define INT16_C(Value) (Value)
212# define UINT8_C(Value) (Value)
213# define UINT16_C(Value) (Value)
214# if ARCH_BITS != 16
215# define INT32_C(Value) (Value)
216# define UINT32_C(Value) (Value ## U)
217# define INT64_C(Value) (Value ## LL)
218# define UINT64_C(Value) (Value ## ULL)
219# else
220# define INT32_C(Value) (Value ## L)
221# define UINT32_C(Value) (Value ## UL)
222# define INT64_C(Value) (Value ## LL)
223# define UINT64_C(Value) (Value ## ULL)
224# endif
225# define INTMAX_C(Value) INT64_C(Value)
226# define UINTMAX_C(Value) UINT64_C(Value)
227#endif
228
229
230/*
231 * Make sure the INTx_MIN and [U]INTx_MAX macros are present.
232 * For In C++ source the system stdint.h may have skipped these if it was
233 * included before we managed to define __STDC_LIMIT_MACROS. (Kludge alert!)
234 */
235#if !defined(INT8_MIN) \
236 || !defined(INT16_MIN) \
237 || !defined(INT32_MIN) \
238 || !defined(INT64_MIN) \
239 || !defined(INT8_MAX) \
240 || !defined(INT16_MAX) \
241 || !defined(INT32_MAX) \
242 || !defined(INT64_MAX) \
243 || !defined(UINT8_MAX) \
244 || !defined(UINT16_MAX) \
245 || !defined(UINT32_MAX) \
246 || !defined(UINT64_MAX)
247# define INT8_MIN (INT8_C(-0x7f) - 1)
248# define INT16_MIN (INT16_C(-0x7fff) - 1)
249# define INT32_MIN (INT32_C(-0x7fffffff) - 1)
250# define INT64_MIN (INT64_C(-0x7fffffffffffffff) - 1)
251# define INT8_MAX INT8_C(0x7f)
252# define INT16_MAX INT16_C(0x7fff)
253# define INT32_MAX INT32_C(0x7fffffff)
254# define INT64_MAX INT64_C(0x7fffffffffffffff)
255# define UINT8_MAX UINT8_C(0xff)
256# define UINT16_MAX UINT16_C(0xffff)
257# define UINT32_MAX UINT32_C(0xffffffff)
258# define UINT64_MAX UINT64_C(0xffffffffffffffff)
259
260# define INTMAX_MIN INT64_MIN
261# define INTMAX_MAX INT64_MAX
262# define UINTMAX_MAX UINT64_MAX
263#endif
264
265#endif
266
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