VirtualBox

source: vbox/trunk/include/iprt/cdefs.h@ 103976

Last change on this file since 103976 was 103976, checked in by vboxsync, 6 months ago

iprt/cdefs.h: RT_OVERRIDE adj for clang; added RT_FINAL.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 208.6 KB
Line 
1/** @file
2 * IPRT - Common C and C++ definitions.
3 */
4
5/*
6 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
7 *
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
34 */
35
36#ifndef IPRT_INCLUDED_cdefs_h
37#define IPRT_INCLUDED_cdefs_h
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42
43/** @defgroup grp_rt_cdefs IPRT Common Definitions and Macros
44 * @{
45 */
46
47/** @def RT_C_DECLS_BEGIN
48 * Used to start a block of function declarations which are shared
49 * between C and C++ program.
50 */
51
52/** @def RT_C_DECLS_END
53 * Used to end a block of function declarations which are shared
54 * between C and C++ program.
55 */
56
57#if defined(__cplusplus)
58# define RT_C_DECLS_BEGIN extern "C" {
59# define RT_C_DECLS_END }
60#else
61# define RT_C_DECLS_BEGIN
62# define RT_C_DECLS_END
63#endif
64
65
66/*
67 * Shut up DOXYGEN warnings and guide it properly thru the code.
68 */
69#ifdef DOXYGEN_RUNNING
70# define __AMD64__
71# define __X86__
72# define RT_ARCH_AMD64
73# define RT_ARCH_X86
74# define RT_ARCH_SPARC
75# define RT_ARCH_SPARC64
76# define RT_ARCH_ARM32
77# define RT_ARCH_ARM64
78# define IN_RING0
79# define IN_RING3
80# define IN_RC
81# define IN_RT_RC
82# define IN_RT_R0
83# define IN_RT_R3
84# define IN_RT_STATIC
85# define RT_STRICT
86# define RT_NO_STRICT
87# define RT_LOCK_STRICT
88# define RT_LOCK_NO_STRICT
89# define RT_LOCK_STRICT_ORDER
90# define RT_LOCK_NO_STRICT_ORDER
91# define RT_BREAKPOINT
92# define RT_NO_DEPRECATED_MACROS
93# define RT_EXCEPTIONS_ENABLED
94# define RT_BIG_ENDIAN
95# define RT_LITTLE_ENDIAN
96# define RT_COMPILER_GROKS_64BIT_BITFIELDS
97# define RT_COMPILER_WITH_80BIT_LONG_DOUBLE
98# define RT_COMPILER_WITH_128BIT_LONG_DOUBLE
99# define RT_COMPILER_WITH_128BIT_INT_TYPES
100# define RT_NO_VISIBILITY_HIDDEN
101# define RT_GCC_SUPPORTS_VISIBILITY_HIDDEN
102# define RT_COMPILER_SUPPORTS_VA_ARGS
103# define RT_COMPILER_SUPPORTS_LAMBDA
104#endif /* DOXYGEN_RUNNING */
105
106/** @def RT_ARCH_X86
107 * Indicates that we're compiling for the X86 architecture.
108 */
109
110/** @def RT_ARCH_AMD64
111 * Indicates that we're compiling for the AMD64 architecture.
112 */
113
114/** @def RT_ARCH_SPARC
115 * Indicates that we're compiling for the SPARC V8 architecture (32-bit).
116 */
117
118/** @def RT_ARCH_SPARC64
119 * Indicates that we're compiling for the SPARC V9 architecture (64-bit).
120 */
121
122/** @def RT_ARCH_ARM32
123 * Indicates that we're compiling for the 32-bit ARM architecture, the value
124 * is the version (i.e. 6 for ARMv6).
125 */
126
127/** @def RT_ARCH_ARM64
128 * Indicates that we're compiling for the 64-bit ARM architecture.
129 */
130
131#if !defined(RT_ARCH_X86) \
132 && !defined(RT_ARCH_AMD64) \
133 && !defined(RT_ARCH_SPARC) \
134 && !defined(RT_ARCH_SPARC64) \
135 && !defined(RT_ARCH_ARM32) \
136 && !defined(RT_ARCH_ARM64)
137# if defined(__amd64__) || defined(__x86_64__) || defined(_M_X64) || defined(__AMD64__)
138# define RT_ARCH_AMD64
139# elif defined(__i386__) || defined(_M_IX86) || defined(__X86__)
140# define RT_ARCH_X86
141# elif defined(__sparcv9)
142# define RT_ARCH_SPARC64
143# elif defined(__sparc__)
144# define RT_ARCH_SPARC
145# elif defined(__arm64__) || defined(__aarch64__)
146# define RT_ARCH_ARM64 __ARM_ARCH
147# elif defined(__arm__)
148# define RT_ARCH_ARM32 __ARM_ARCH
149# elif defined(__arm32__)
150# define RT_ARCH_ARM32 __ARM_ARCH
151# else /* PORTME: append test for new archs. */
152# error "Check what predefined macros your compiler uses to indicate architecture."
153# endif
154/* PORTME: append new archs checks. */
155#elif defined(RT_ARCH_X86) && defined(RT_ARCH_AMD64)
156# error "Both RT_ARCH_X86 and RT_ARCH_AMD64 cannot be defined at the same time!"
157#elif defined(RT_ARCH_X86) && defined(RT_ARCH_SPARC)
158# error "Both RT_ARCH_X86 and RT_ARCH_SPARC cannot be defined at the same time!"
159#elif defined(RT_ARCH_X86) && defined(RT_ARCH_SPARC64)
160# error "Both RT_ARCH_X86 and RT_ARCH_SPARC64 cannot be defined at the same time!"
161#elif defined(RT_ARCH_AMD64) && defined(RT_ARCH_SPARC)
162# error "Both RT_ARCH_AMD64 and RT_ARCH_SPARC cannot be defined at the same time!"
163#elif defined(RT_ARCH_AMD64) && defined(RT_ARCH_SPARC64)
164# error "Both RT_ARCH_AMD64 and RT_ARCH_SPARC64 cannot be defined at the same time!"
165#elif defined(RT_ARCH_SPARC) && defined(RT_ARCH_SPARC64)
166# error "Both RT_ARCH_SPARC and RT_ARCH_SPARC64 cannot be defined at the same time!"
167#elif defined(RT_ARCH_ARM32) && defined(RT_ARCH_AMD64)
168# error "Both RT_ARCH_ARM32 and RT_ARCH_AMD64 cannot be defined at the same time!"
169#elif defined(RT_ARCH_ARM32) && defined(RT_ARCH_X86)
170# error "Both RT_ARCH_ARM32 and RT_ARCH_X86 cannot be defined at the same time!"
171#elif defined(RT_ARCH_ARM32) && defined(RT_ARCH_SPARC64)
172# error "Both RT_ARCH_ARM32 and RT_ARCH_SPARC64 cannot be defined at the same time!"
173#elif defined(RT_ARCH_ARM32) && defined(RT_ARCH_SPARC)
174# error "Both RT_ARCH_ARM32 and RT_ARCH_SPARC cannot be defined at the same time!"
175#elif defined(RT_ARCH_ARM64) && defined(RT_ARCH_AMD64)
176# error "Both RT_ARCH_ARM64 and RT_ARCH_AMD64 cannot be defined at the same time!"
177#elif defined(RT_ARCH_ARM64) && defined(RT_ARCH_X86)
178# error "Both RT_ARCH_ARM64 and RT_ARCH_X86 cannot be defined at the same time!"
179#elif defined(RT_ARCH_ARM64) && defined(RT_ARCH_SPARC64)
180# error "Both RT_ARCH_ARM64 and RT_ARCH_SPARC64 cannot be defined at the same time!"
181#elif defined(RT_ARCH_ARM64) && defined(RT_ARCH_SPARC)
182# error "Both RT_ARCH_ARM64 and RT_ARCH_SPARC cannot be defined at the same time!"
183#elif defined(RT_ARCH_ARM64) && defined(RT_ARCH_ARM32)
184# error "Both RT_ARCH_ARM64 and RT_ARCH_ARM32 cannot be defined at the same time!"
185#endif
186#ifdef RT_ARCH_ARM
187# error "RT_ARCH_ARM is now RT_ARCH_ARM32!"
188#endif
189
190/* Final check (PORTME). */
191#if (defined(RT_ARCH_X86) != 0) \
192 + (defined(RT_ARCH_AMD64) != 0) \
193 + (defined(RT_ARCH_SPARC) != 0) \
194 + (defined(RT_ARCH_SPARC64) != 0) \
195 + (defined(RT_ARCH_ARM32) != 0) \
196 + (defined(RT_ARCH_ARM64) != 0) \
197 != 1
198# error "Exactly one RT_ARCH_XXX macro shall be defined"
199#endif
200
201/** @name RT_ARCH_VAL_XXX - Architectures.
202 *
203 * These are values used by RT_ARCH_VAL among others as an alternative to
204 * RT_ARCH_X86, RT_ARCH_AMD64 and friends for identifying the compiler target
205 * architecture. Each value is a power of two (single bit), so they can be
206 * combined together to form an architecture mask if desirable.
207 *
208 * @{ */
209/** */
210#define RT_ARCH_VAL_X86_16 0x00000001
211#define RT_ARCH_VAL_X86 0x00000002
212#define RT_ARCH_VAL_AMD64 0x00000004
213#define RT_ARCH_VAL_ARM32 0x00000010
214#define RT_ARCH_VAL_ARM64 0x00000020
215#define RT_ARCH_VAL_SPARC32 0x00000100
216#define RT_ARCH_VAL_SPARC64 0x00000200
217/** @} */
218
219
220/** @def RT_ARCH_VAL
221 * The RT_ARCH_VAL_XXX for the compiler target architecture. */
222#if defined(RT_ARCH_AMD64)
223# define RT_ARCH_VAL RT_ARCH_VAL_AMD64
224#elif defined(RT_ARCH_ARM64)
225# define RT_ARCH_VAL RT_ARCH_VAL_ARM64
226#elif defined(RT_ARCH_X86)
227# define RT_ARCH_VAL RT_ARCH_VAL_X86
228#elif defined(RT_ARCH_ARM32)
229# define RT_ARCH_VAL RT_ARCH_VAL_ARM32
230#elif defined(RT_ARCH_SPARC)
231# define RT_ARCH_VAL RT_ARCH_VAL_SPARC32
232#elif defined(RT_ARCH_SPARC64)
233# define RT_ARCH_VAL RT_ARCH_VAL_SPARC64
234#else
235# error "RT_ARCH_VAL: port me"
236#endif
237
238/** @def RT_CPLUSPLUS_PREREQ
239 * Require a minimum __cplusplus value, simplifying dealing with non-C++ code.
240 *
241 * @param a_Min The minimum version, e.g. 201100.
242 */
243#ifdef __cplusplus
244# define RT_CPLUSPLUS_PREREQ(a_Min) (__cplusplus >= (a_Min))
245#else
246# define RT_CPLUSPLUS_PREREQ(a_Min) (0)
247#endif
248
249/** @def RT_GNUC_PREREQ
250 * Shorter than fiddling with __GNUC__ and __GNUC_MINOR__.
251 *
252 * @param a_MinMajor Minimum major version
253 * @param a_MinMinor The minor version number part.
254 */
255#define RT_GNUC_PREREQ(a_MinMajor, a_MinMinor) RT_GNUC_PREREQ_EX(a_MinMajor, a_MinMinor, 0)
256/** @def RT_GNUC_PREREQ_EX
257 * Simplified way of checking __GNUC__ and __GNUC_MINOR__ regardless of actual
258 * compiler used, returns @a a_OtherRet for other compilers.
259 *
260 * @param a_MinMajor Minimum major version
261 * @param a_MinMinor The minor version number part.
262 * @param a_OtherRet What to return for non-GCC compilers.
263 */
264#if defined(__GNUC__) && defined(__GNUC_MINOR__)
265# define RT_GNUC_PREREQ_EX(a_MinMajor, a_MinMinor, a_OtherRet) \
266 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((a_MinMajor) << 16) + (a_MinMinor))
267#else
268# define RT_GNUC_PREREQ_EX(a_MinMajor, a_MinMinor, a_OtherRet) (a_OtherRet)
269#endif
270
271/** @def RT_MSC_PREREQ
272 * Convenient way of checking _MSC_VER regardless of actual compiler used
273 * (returns false if not MSC).
274 *
275 * @param a_MinVer Preferably a RT_MSC_VER_XXX value.
276 */
277#define RT_MSC_PREREQ(a_MinVer) RT_MSC_PREREQ_EX(a_MinVer, 0)
278/** @def RT_MSC_PREREQ_EX
279 * Convenient way of checking _MSC_VER regardless of actual compiler used,
280 * returns @a a_OtherRet for other compilers.
281 *
282 * @param a_MinVer Preferably a RT_MSC_VER_XXX value.
283 * @param a_OtherRet What to return for non-MSC compilers.
284 */
285#if defined(_MSC_VER)
286# define RT_MSC_PREREQ_EX(a_MinVer, a_OtherRet) ( (_MSC_VER) >= (a_MinVer) )
287#else
288# define RT_MSC_PREREQ_EX(a_MinVer, a_OtherRet) (a_OtherRet)
289#endif
290/** @name RT_MSC_VER_XXX - _MSC_VER values to use with RT_MSC_PREREQ.
291 * @remarks The VCxxx values are derived from the CRT DLLs shipping with the
292 * compilers.
293 * @{ */
294#define RT_MSC_VER_VC50 (1100) /**< Visual C++ 5.0. */
295#define RT_MSC_VER_VC60 (1200) /**< Visual C++ 6.0. */
296#define RT_MSC_VER_VC70 (1300) /**< Visual C++ 7.0. */
297#define RT_MSC_VER_VC70 (1300) /**< Visual C++ 7.0. */
298#define RT_MSC_VER_VS2003 (1310) /**< Visual Studio 2003, aka Visual C++ 7.1. */
299#define RT_MSC_VER_VC71 RT_MSC_VER_VS2003 /**< Visual C++ 7.1, aka Visual Studio 2003. */
300#define RT_MSC_VER_VS2005 (1400) /**< Visual Studio 2005. */
301#define RT_MSC_VER_VC80 RT_MSC_VER_VS2005 /**< Visual C++ 8.0, aka Visual Studio 2008. */
302#define RT_MSC_VER_VS2008 (1500) /**< Visual Studio 2008. */
303#define RT_MSC_VER_VC90 RT_MSC_VER_VS2008 /**< Visual C++ 9.0, aka Visual Studio 2008. */
304#define RT_MSC_VER_VS2010 (1600) /**< Visual Studio 2010. */
305#define RT_MSC_VER_VC100 RT_MSC_VER_VS2010 /**< Visual C++ 10.0, aka Visual Studio 2010. */
306#define RT_MSC_VER_VS2012 (1700) /**< Visual Studio 2012. */
307#define RT_MSC_VER_VC110 RT_MSC_VER_VS2012 /**< Visual C++ 11.0, aka Visual Studio 2012. */
308#define RT_MSC_VER_VS2013 (1800) /**< Visual Studio 2013. */
309#define RT_MSC_VER_VC120 RT_MSC_VER_VS2013 /**< Visual C++ 12.0, aka Visual Studio 2013. */
310#define RT_MSC_VER_VS2015 (1900) /**< Visual Studio 2015. */
311#define RT_MSC_VER_VC140 RT_MSC_VER_VS2015 /**< Visual C++ 14.0, aka Visual Studio 2015. */
312#define RT_MSC_VER_VS2017 (1910) /**< Visual Studio 2017. */
313#define RT_MSC_VER_VC141 RT_MSC_VER_VS2017 /**< Visual C++ 14.1, aka Visual Studio 2017. */
314#define RT_MSC_VER_VS2019 (1920) /**< Visual Studio 2019. */
315#define RT_MSC_VER_VC142 RT_MSC_VER_VS2019 /**< Visual C++ 14.2, aka Visual Studio 2019. */
316#define RT_MSC_VER_VS2019_U6 (1926) /**< Visual Studio 2019, update 6. */
317#define RT_MSC_VER_VC142_U6 RT_MSC_VER_VS2019_U6 /**< Visual C++ 14.2 update 6. */
318#define RT_MSC_VER_VS2019_U8 (1928) /**< Visual Studio 2019, update 8. */
319#define RT_MSC_VER_VC142_U8 RT_MSC_VER_VS2019_U8 /**< Visual C++ 14.2 update 8. */
320#define RT_MSC_VER_VS2019_U11 (1929) /**< Visual Studio 2019, update 11. */
321#define RT_MSC_VER_VC142_U11 RT_MSC_VER_VS2019_U11 /**< Visual C++ 14.2 update 11. */
322/** @} */
323
324/** @def RT_CLANG_PREREQ
325 * Shorter than fiddling with __clang_major__ and __clang_minor__.
326 *
327 * @param a_MinMajor Minimum major version
328 * @param a_MinMinor The minor version number part.
329 */
330#define RT_CLANG_PREREQ(a_MinMajor, a_MinMinor) RT_CLANG_PREREQ_EX(a_MinMajor, a_MinMinor, 0)
331/** @def RT_CLANG_PREREQ_EX
332 * Simplified way of checking __clang_major__ and __clang_minor__ regardless of
333 * actual compiler used, returns @a a_OtherRet for other compilers.
334 *
335 * @param a_MinMajor Minimum major version
336 * @param a_MinMinor The minor version number part.
337 * @param a_OtherRet What to return for non-GCC compilers.
338 */
339#if defined(__clang_major__) && defined(__clang_minor__)
340# define RT_CLANG_PREREQ_EX(a_MinMajor, a_MinMinor, a_OtherRet) \
341 ((__clang_major__ << 16) + __clang_minor__ >= ((a_MinMajor) << 16) + (a_MinMinor))
342#else
343# define RT_CLANG_PREREQ_EX(a_MinMajor, a_MinMinor, a_OtherRet) (a_OtherRet)
344#endif
345/** @def RT_CLANG_HAS_FEATURE
346 * Wrapper around clang's __has_feature().
347 *
348 * @param a_Feature The feature to check for.
349 */
350#if defined(__clang_major__) && defined(__clang_minor__) && defined(__has_feature)
351# define RT_CLANG_HAS_FEATURE(a_Feature) (__has_feature(a_Feature))
352#else
353# define RT_CLANG_HAS_FEATURE(a_Feature) (0)
354#endif
355
356
357#if !defined(__X86__) && !defined(__AMD64__) && (defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86))
358# if defined(RT_ARCH_AMD64)
359/** Indicates that we're compiling for the AMD64 architecture.
360 * @deprecated
361 */
362# define __AMD64__
363# elif defined(RT_ARCH_X86)
364/** Indicates that we're compiling for the X86 architecture.
365 * @deprecated
366 */
367# define __X86__
368# else
369# error "Check what predefined macros your compiler uses to indicate architecture."
370# endif
371#elif defined(__X86__) && defined(__AMD64__)
372# error "Both __X86__ and __AMD64__ cannot be defined at the same time!"
373#elif defined(__X86__) && !defined(RT_ARCH_X86)
374# error "__X86__ without RT_ARCH_X86!"
375#elif defined(__AMD64__) && !defined(RT_ARCH_AMD64)
376# error "__AMD64__ without RT_ARCH_AMD64!"
377#endif
378
379/** @def RT_BIG_ENDIAN
380 * Defined if the architecture is big endian. */
381/** @def RT_LITTLE_ENDIAN
382 * Defined if the architecture is little endian. */
383#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) || defined(RT_ARCH_ARM32) || defined(RT_ARCH_ARM64)
384# define RT_LITTLE_ENDIAN
385#elif defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64)
386# define RT_BIG_ENDIAN
387#else
388# error "PORTME: architecture endianess"
389#endif
390#if defined(RT_BIG_ENDIAN) && defined(RT_LITTLE_ENDIAN)
391# error "Both RT_BIG_ENDIAN and RT_LITTLE_ENDIAN are defined"
392#endif
393
394
395/** @def IN_RING0
396 * Used to indicate that we're compiling code which is running
397 * in Ring-0 Host Context.
398 */
399
400/** @def IN_RING3
401 * Used to indicate that we're compiling code which is running
402 * in Ring-3 Host Context.
403 */
404
405/** @def IN_RC
406 * Used to indicate that we're compiling code which is running
407 * in the Raw-mode Context (implies R0).
408 */
409#if !defined(IN_RING3) && !defined(IN_RING0) && !defined(IN_RC)
410# error "You must define which context the compiled code should run in; IN_RING3, IN_RING0 or IN_RC"
411#endif
412#if (defined(IN_RING3) && (defined(IN_RING0) || defined(IN_RC)) ) \
413 || (defined(IN_RING0) && (defined(IN_RING3) || defined(IN_RC)) ) \
414 || (defined(IN_RC) && (defined(IN_RING3) || defined(IN_RING0)) )
415# error "Only one of the IN_RING3, IN_RING0, IN_RC defines should be defined."
416#endif
417
418
419/** @def ARCH_BITS
420 * Defines the bit count of the current context.
421 */
422#if !defined(ARCH_BITS) || defined(DOXYGEN_RUNNING)
423# if defined(RT_ARCH_AMD64) || defined(RT_ARCH_SPARC64) || defined(RT_ARCH_ARM64) || defined(DOXYGEN_RUNNING)
424# define ARCH_BITS 64
425# elif !defined(__I86__) || !defined(__WATCOMC__)
426# define ARCH_BITS 32
427# else
428# define ARCH_BITS 16
429# endif
430#endif
431
432/* ARCH_BITS validation (PORTME). */
433#if ARCH_BITS == 64
434 #if defined(RT_ARCH_X86) || defined(RT_ARCH_SPARC) || defined(RT_ARCH_ARM32)
435 # error "ARCH_BITS=64 but non-64-bit RT_ARCH_XXX defined."
436 #endif
437 #if !defined(RT_ARCH_AMD64) && !defined(RT_ARCH_SPARC64) && !defined(RT_ARCH_ARM64)
438 # error "ARCH_BITS=64 but no 64-bit RT_ARCH_XXX defined."
439 #endif
440
441#elif ARCH_BITS == 32
442 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_SPARC64) || defined(RT_ARCH_ARM64)
443 # error "ARCH_BITS=32 but non-32-bit RT_ARCH_XXX defined."
444 #endif
445 #if !defined(RT_ARCH_X86) && !defined(RT_ARCH_SPARC) && !defined(RT_ARCH_ARM32)
446 # error "ARCH_BITS=32 but no 32-bit RT_ARCH_XXX defined."
447 #endif
448
449#elif ARCH_BITS == 16
450 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64) || defined(RT_ARCH_ARM32) || defined(RT_ARCH_ARM64)
451 # error "ARCH_BITS=16 but non-16-bit RT_ARCH_XX defined."
452 #endif
453 #if !defined(RT_ARCH_X86)
454 # error "ARCH_BITS=16 but RT_ARCH_X86 isn't defined."
455 #endif
456
457#else
458# error "Unsupported ARCH_BITS value!"
459#endif
460
461/** @def HC_ARCH_BITS
462 * Defines the host architecture bit count.
463 */
464#if !defined(HC_ARCH_BITS) || defined(DOXYGEN_RUNNING)
465# if !defined(IN_RC) || defined(DOXYGEN_RUNNING)
466# define HC_ARCH_BITS ARCH_BITS
467# else
468# define HC_ARCH_BITS 32
469# endif
470#endif
471
472/** @def GC_ARCH_BITS
473 * Defines the guest architecture bit count.
474 */
475#if !defined(GC_ARCH_BITS) || defined(DOXYGEN_RUNNING)
476# if defined(VBOX_WITH_64_BITS_GUESTS) || defined(DOXYGEN_RUNNING)
477# define GC_ARCH_BITS 64
478# else
479# define GC_ARCH_BITS 32
480# endif
481#endif
482
483/** @def R3_ARCH_BITS
484 * Defines the host ring-3 architecture bit count.
485 */
486#if !defined(R3_ARCH_BITS) || defined(DOXYGEN_RUNNING)
487# ifdef IN_RING3
488# define R3_ARCH_BITS ARCH_BITS
489# else
490# define R3_ARCH_BITS HC_ARCH_BITS
491# endif
492#endif
493
494/** @def R0_ARCH_BITS
495 * Defines the host ring-0 architecture bit count.
496 */
497#if !defined(R0_ARCH_BITS) || defined(DOXYGEN_RUNNING)
498# ifdef IN_RING0
499# define R0_ARCH_BITS ARCH_BITS
500# else
501# define R0_ARCH_BITS HC_ARCH_BITS
502# endif
503#endif
504
505
506
507/** @name RT_OPSYS_XXX - Operative System Identifiers.
508 * These are the value that the RT_OPSYS \#define can take. @{
509 */
510/** Unknown OS. */
511#define RT_OPSYS_UNKNOWN 0
512/** OS Agnostic. */
513#define RT_OPSYS_AGNOSTIC 1
514/** Darwin - aka Mac OS X. */
515#define RT_OPSYS_DARWIN 2
516/** DragonFly BSD. */
517#define RT_OPSYS_DRAGONFLY 3
518/** DOS. */
519#define RT_OPSYS_DOS 4
520/** FreeBSD. */
521#define RT_OPSYS_FREEBSD 5
522/** Haiku. */
523#define RT_OPSYS_HAIKU 6
524/** Linux. */
525#define RT_OPSYS_LINUX 7
526/** L4. */
527#define RT_OPSYS_L4 8
528/** Minix. */
529#define RT_OPSYS_MINIX 9
530/** NetBSD. */
531#define RT_OPSYS_NETBSD 11
532/** Netware. */
533#define RT_OPSYS_NETWARE 12
534/** NT (native). */
535#define RT_OPSYS_NT 13
536/** OpenBSD. */
537#define RT_OPSYS_OPENBSD 14
538/** OS/2. */
539#define RT_OPSYS_OS2 15
540/** Plan 9. */
541#define RT_OPSYS_PLAN9 16
542/** QNX. */
543#define RT_OPSYS_QNX 17
544/** Solaris. */
545#define RT_OPSYS_SOLARIS 18
546/** UEFI. */
547#define RT_OPSYS_UEFI 19
548/** Windows. */
549#define RT_OPSYS_WINDOWS 20
550/** The max RT_OPSYS_XXX value (exclusive). */
551#define RT_OPSYS_MAX 21
552/** @} */
553
554/** @def RT_OPSYS
555 * Indicates which OS we're targeting. It's a \#define with is
556 * assigned one of the RT_OPSYS_XXX defines above.
557 *
558 * So to test if we're on FreeBSD do the following:
559 * @code
560 * #if RT_OPSYS == RT_OPSYS_FREEBSD
561 * some_funky_freebsd_specific_stuff();
562 * #endif
563 * @endcode
564 */
565
566/*
567 * Set RT_OPSYS_XXX according to RT_OS_XXX.
568 *
569 * Search: #define RT_OPSYS_([A-Z0-9]+) .*
570 * Replace: # elif defined(RT_OS_\1)\n# define RT_OPSYS RT_OPSYS_\1
571 */
572#ifndef RT_OPSYS
573# if defined(RT_OS_UNKNOWN) || defined(DOXYGEN_RUNNING)
574# define RT_OPSYS RT_OPSYS_UNKNOWN
575# elif defined(RT_OS_AGNOSTIC)
576# define RT_OPSYS RT_OPSYS_AGNOSTIC
577# elif defined(RT_OS_DARWIN)
578# define RT_OPSYS RT_OPSYS_DARWIN
579# elif defined(RT_OS_DRAGONFLY)
580# define RT_OPSYS RT_OPSYS_DRAGONFLY
581# elif defined(RT_OS_DOS)
582# define RT_OPSYS RT_OPSYS_DOS
583# elif defined(RT_OS_FREEBSD)
584# define RT_OPSYS RT_OPSYS_FREEBSD
585# elif defined(RT_OS_HAIKU)
586# define RT_OPSYS RT_OPSYS_HAIKU
587# elif defined(RT_OS_LINUX)
588# define RT_OPSYS RT_OPSYS_LINUX
589# elif defined(RT_OS_L4)
590# define RT_OPSYS RT_OPSYS_L4
591# elif defined(RT_OS_MINIX)
592# define RT_OPSYS RT_OPSYS_MINIX
593# elif defined(RT_OS_NETBSD)
594# define RT_OPSYS RT_OPSYS_NETBSD
595# elif defined(RT_OS_NETWARE)
596# define RT_OPSYS RT_OPSYS_NETWARE
597# elif defined(RT_OS_NT)
598# define RT_OPSYS RT_OPSYS_NT
599# elif defined(RT_OS_OPENBSD)
600# define RT_OPSYS RT_OPSYS_OPENBSD
601# elif defined(RT_OS_OS2)
602# define RT_OPSYS RT_OPSYS_OS2
603# elif defined(RT_OS_PLAN9)
604# define RT_OPSYS RT_OPSYS_PLAN9
605# elif defined(RT_OS_QNX)
606# define RT_OPSYS RT_OPSYS_QNX
607# elif defined(RT_OS_SOLARIS)
608# define RT_OPSYS RT_OPSYS_SOLARIS
609# elif defined(RT_OS_UEFI)
610# define RT_OPSYS RT_OPSYS_UEFI
611# elif defined(RT_OS_WINDOWS)
612# define RT_OPSYS RT_OPSYS_WINDOWS
613# endif
614#endif
615
616/*
617 * Guess RT_OPSYS based on compiler predefined macros.
618 */
619#ifndef RT_OPSYS
620# if defined(__APPLE__)
621# define RT_OPSYS RT_OPSYS_DARWIN
622# elif defined(__DragonFly__)
623# define RT_OPSYS RT_OPSYS_DRAGONFLY
624# elif defined(__FreeBSD__) /*??*/
625# define RT_OPSYS RT_OPSYS_FREEBSD
626# elif defined(__gnu_linux__)
627# define RT_OPSYS RT_OPSYS_LINUX
628# elif defined(__NetBSD__) /*??*/
629# define RT_OPSYS RT_OPSYS_NETBSD
630# elif defined(__OpenBSD__) /*??*/
631# define RT_OPSYS RT_OPSYS_OPENBSD
632# elif defined(__OS2__)
633# define RT_OPSYS RT_OPSYS_OS2
634# elif defined(__sun__) || defined(__SunOS__) || defined(__sun) || defined(__SunOS)
635# define RT_OPSYS RT_OPSYS_SOLARIS
636# elif defined(_WIN32) || defined(_WIN64)
637# define RT_OPSYS RT_OPSYS_WINDOWS
638# elif defined(MSDOS) || defined(_MSDOS) || defined(DOS16RM) /* OW+MSC || MSC || DMC */
639# define RT_OPSYS RT_OPSYS_DOS
640# else
641# error "Port Me"
642# endif
643#endif
644
645#if RT_OPSYS < RT_OPSYS_UNKNOWN || RT_OPSYS >= RT_OPSYS_MAX
646# error "Invalid RT_OPSYS value."
647#endif
648
649/*
650 * Do some consistency checks.
651 *
652 * Search: #define RT_OPSYS_([A-Z0-9]+) .*
653 * Replace: #if defined(RT_OS_\1) && RT_OPSYS != RT_OPSYS_\1\n# error RT_OPSYS vs RT_OS_\1\n#endif
654 */
655#if defined(RT_OS_UNKNOWN) && RT_OPSYS != RT_OPSYS_UNKNOWN
656# error RT_OPSYS vs RT_OS_UNKNOWN
657#endif
658#if defined(RT_OS_AGNOSTIC) && RT_OPSYS != RT_OPSYS_AGNOSTIC
659# error RT_OPSYS vs RT_OS_AGNOSTIC
660#endif
661#if defined(RT_OS_DARWIN) && RT_OPSYS != RT_OPSYS_DARWIN
662# error RT_OPSYS vs RT_OS_DARWIN
663#endif
664#if defined(RT_OS_DRAGONFLY) && RT_OPSYS != RT_OPSYS_DRAGONFLY
665# error RT_OPSYS vs RT_OS_DRAGONFLY
666#endif
667#if defined(RT_OS_DOS) && RT_OPSYS != RT_OPSYS_DOS
668# error RT_OPSYS vs RT_OS_DOS
669#endif
670#if defined(RT_OS_FREEBSD) && RT_OPSYS != RT_OPSYS_FREEBSD
671# error RT_OPSYS vs RT_OS_FREEBSD
672#endif
673#if defined(RT_OS_HAIKU) && RT_OPSYS != RT_OPSYS_HAIKU
674# error RT_OPSYS vs RT_OS_HAIKU
675#endif
676#if defined(RT_OS_LINUX) && RT_OPSYS != RT_OPSYS_LINUX
677# error RT_OPSYS vs RT_OS_LINUX
678#endif
679#if defined(RT_OS_L4) && RT_OPSYS != RT_OPSYS_L4
680# error RT_OPSYS vs RT_OS_L4
681#endif
682#if defined(RT_OS_MINIX) && RT_OPSYS != RT_OPSYS_MINIX
683# error RT_OPSYS vs RT_OS_MINIX
684#endif
685#if defined(RT_OS_NETBSD) && RT_OPSYS != RT_OPSYS_NETBSD
686# error RT_OPSYS vs RT_OS_NETBSD
687#endif
688#if defined(RT_OS_NETWARE) && RT_OPSYS != RT_OPSYS_NETWARE
689# error RT_OPSYS vs RT_OS_NETWARE
690#endif
691#if defined(RT_OS_NT) && RT_OPSYS != RT_OPSYS_NT
692# error RT_OPSYS vs RT_OS_NT
693#endif
694#if defined(RT_OS_OPENBSD) && RT_OPSYS != RT_OPSYS_OPENBSD
695# error RT_OPSYS vs RT_OS_OPENBSD
696#endif
697#if defined(RT_OS_OS2) && RT_OPSYS != RT_OPSYS_OS2
698# error RT_OPSYS vs RT_OS_OS2
699#endif
700#if defined(RT_OS_PLAN9) && RT_OPSYS != RT_OPSYS_PLAN9
701# error RT_OPSYS vs RT_OS_PLAN9
702#endif
703#if defined(RT_OS_QNX) && RT_OPSYS != RT_OPSYS_QNX
704# error RT_OPSYS vs RT_OS_QNX
705#endif
706#if defined(RT_OS_SOLARIS) && RT_OPSYS != RT_OPSYS_SOLARIS
707# error RT_OPSYS vs RT_OS_SOLARIS
708#endif
709#if defined(RT_OS_UEFI) && RT_OPSYS != RT_OPSYS_UEFI
710# error RT_OPSYS vs RT_OS_UEFI
711#endif
712#if defined(RT_OS_WINDOWS) && RT_OPSYS != RT_OPSYS_WINDOWS
713# error RT_OPSYS vs RT_OS_WINDOWS
714#endif
715
716/*
717 * Make sure the RT_OS_XXX macro is defined.
718 *
719 * Search: #define RT_OPSYS_([A-Z0-9]+) .*
720 * Replace: #elif RT_OPSYS == RT_OPSYS_\1\n# ifndef RT_OS_\1\n# define RT_OS_\1\n# endif
721 */
722#if RT_OPSYS == RT_OPSYS_UNKNOWN
723# ifndef RT_OS_UNKNOWN
724# define RT_OS_UNKNOWN
725# endif
726#elif RT_OPSYS == RT_OPSYS_AGNOSTIC
727# ifndef RT_OS_AGNOSTIC
728# define RT_OS_AGNOSTIC
729# endif
730#elif RT_OPSYS == RT_OPSYS_DARWIN
731# ifndef RT_OS_DARWIN
732# define RT_OS_DARWIN
733# endif
734#elif RT_OPSYS == RT_OPSYS_DRAGONFLY
735# ifndef RT_OS_DRAGONFLY
736# define RT_OS_DRAGONFLY
737# endif
738#elif RT_OPSYS == RT_OPSYS_DOS
739# ifndef RT_OS_DOS
740# define RT_OS_DOS
741# endif
742#elif RT_OPSYS == RT_OPSYS_FREEBSD
743# ifndef RT_OS_FREEBSD
744# define RT_OS_FREEBSD
745# endif
746#elif RT_OPSYS == RT_OPSYS_HAIKU
747# ifndef RT_OS_HAIKU
748# define RT_OS_HAIKU
749# endif
750#elif RT_OPSYS == RT_OPSYS_LINUX
751# ifndef RT_OS_LINUX
752# define RT_OS_LINUX
753# endif
754#elif RT_OPSYS == RT_OPSYS_L4
755# ifndef RT_OS_L4
756# define RT_OS_L4
757# endif
758#elif RT_OPSYS == RT_OPSYS_MINIX
759# ifndef RT_OS_MINIX
760# define RT_OS_MINIX
761# endif
762#elif RT_OPSYS == RT_OPSYS_NETBSD
763# ifndef RT_OS_NETBSD
764# define RT_OS_NETBSD
765# endif
766#elif RT_OPSYS == RT_OPSYS_NETWARE
767# ifndef RT_OS_NETWARE
768# define RT_OS_NETWARE
769# endif
770#elif RT_OPSYS == RT_OPSYS_NT
771# ifndef RT_OS_NT
772# define RT_OS_NT
773# endif
774#elif RT_OPSYS == RT_OPSYS_OPENBSD
775# ifndef RT_OS_OPENBSD
776# define RT_OS_OPENBSD
777# endif
778#elif RT_OPSYS == RT_OPSYS_OS2
779# ifndef RT_OS_OS2
780# define RT_OS_OS2
781# endif
782#elif RT_OPSYS == RT_OPSYS_PLAN9
783# ifndef RT_OS_PLAN9
784# define RT_OS_PLAN9
785# endif
786#elif RT_OPSYS == RT_OPSYS_QNX
787# ifndef RT_OS_QNX
788# define RT_OS_QNX
789# endif
790#elif RT_OPSYS == RT_OPSYS_SOLARIS
791# ifndef RT_OS_SOLARIS
792# define RT_OS_SOLARIS
793# endif
794#elif RT_OPSYS == RT_OPSYS_UEFI
795# ifndef RT_OS_UEFI
796# define RT_OS_UEFI
797# endif
798#elif RT_OPSYS == RT_OPSYS_WINDOWS
799# ifndef RT_OS_WINDOWS
800# define RT_OS_WINDOWS
801# endif
802#else
803# error "Bad RT_OPSYS value."
804#endif
805
806
807/**
808 * Checks whether the given OpSys uses DOS-style paths or not.
809 *
810 * By DOS-style paths we include drive lettering and UNC paths.
811 *
812 * @returns true / false
813 * @param a_OpSys The RT_OPSYS_XXX value to check, will be reference
814 * multiple times.
815 */
816#define RT_OPSYS_USES_DOS_PATHS(a_OpSys) \
817 ( (a_OpSys) == RT_OPSYS_WINDOWS \
818 || (a_OpSys) == RT_OPSYS_OS2 \
819 || (a_OpSys) == RT_OPSYS_DOS )
820
821
822
823/** @def CTXTYPE
824 * Declare a type differently in GC, R3 and R0.
825 *
826 * @param a_GCType The GC type.
827 * @param a_R3Type The R3 type.
828 * @param a_R0Type The R0 type.
829 * @remark For pointers used only in one context use RCPTRTYPE(), R3R0PTRTYPE(), R3PTRTYPE() or R0PTRTYPE().
830 */
831#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
832# define CTXTYPE(a_GCType, a_R3Type, a_R0Type) a_GCType
833#elif defined(IN_RING3) || defined(DOXYGEN_RUNNING)
834# define CTXTYPE(a_GCType, a_R3Type, a_R0Type) a_R3Type
835#else
836# define CTXTYPE(a_GCType, a_R3Type, a_R0Type) a_R0Type
837#endif
838
839/** @def CTX_EXPR
840 * Expression selector for avoiding \#ifdef's.
841 *
842 * @param a_R3Expr The R3 expression.
843 * @param a_R0Expr The R0 expression.
844 * @param a_RCExpr The RC expression.
845 */
846#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
847# define CTX_EXPR(a_R3Expr, a_R0Expr, a_RCExpr) a_RCExpr
848#elif defined(IN_RING0) && !defined(DOXYGEN_RUNNING)
849# define CTX_EXPR(a_R3Expr, a_R0Expr, a_RCExpr) a_R0Expr
850#else
851# define CTX_EXPR(a_R3Expr, a_R0Expr, a_RCExpr) a_R3Expr
852#endif
853
854/** @def RCPTRTYPE
855 * Declare a pointer which is used in the raw mode context but appears in structure(s) used by
856 * both HC and RC. The main purpose is to make sure structures have the same
857 * size when built for different architectures.
858 *
859 * @param a_RCType The RC type.
860 */
861#define RCPTRTYPE(a_RCType) CTXTYPE(a_RCType, RTRCPTR, RTRCPTR)
862
863/** @def RGPTRTYPE
864 * This will become RCPTRTYPE once we've converted all uses of RCPTRTYPE to this.
865 *
866 * @param a_RCType The RC type.
867 */
868#define RGPTRTYPE(a_RCType) CTXTYPE(a_RCType, RTGCPTR, RTGCPTR)
869
870/** @def R3R0PTRTYPE
871 * Declare a pointer which is used in HC, is explicitly valid in ring 3 and 0,
872 * but appears in structure(s) used by both HC and GC. The main purpose is to
873 * make sure structures have the same size when built for different architectures.
874 *
875 * @param a_R3R0Type The R3R0 type.
876 * @remarks This used to be called HCPTRTYPE.
877 */
878#define R3R0PTRTYPE(a_R3R0Type) CTXTYPE(RTHCPTR, a_R3R0Type, a_R3R0Type)
879
880/** @def R3PTRTYPE
881 * Declare a pointer which is used in R3 but appears in structure(s) used by
882 * both HC and GC. The main purpose is to make sure structures have the same
883 * size when built for different architectures.
884 *
885 * @param a_R3Type The R3 type.
886 */
887#define R3PTRTYPE(a_R3Type) CTXTYPE(RTHCUINTPTR, a_R3Type, RTHCUINTPTR)
888
889/** @def R0PTRTYPE
890 * Declare a pointer which is used in R0 but appears in structure(s) used by
891 * both HC and GC. The main purpose is to make sure structures have the same
892 * size when built for different architectures.
893 *
894 * @param a_R0Type The R0 type.
895 */
896#define R0PTRTYPE(a_R0Type) CTXTYPE(RTHCUINTPTR, RTHCUINTPTR, a_R0Type)
897
898/** @def CTXSUFF
899 * Adds the suffix of the current context to the passed in
900 * identifier name. The suffix is HC or GC.
901 *
902 * This is macro should only be used in shared code to avoid a forest of ifdefs.
903 * @param a_Var Identifier name.
904 * @deprecated Use CTX_SUFF. Do NOT use this for new code.
905 */
906/** @def OTHERCTXSUFF
907 * Adds the suffix of the other context to the passed in
908 * identifier name. The suffix is HC or GC.
909 *
910 * This is macro should only be used in shared code to avoid a forest of ifdefs.
911 * @param a_Var Identifier name.
912 * @deprecated Use CTX_SUFF. Do NOT use this for new code.
913 */
914#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
915# define CTXSUFF(a_Var) a_Var##GC
916# define OTHERCTXSUFF(a_Var) a_Var##HC
917#else
918# define CTXSUFF(a_Var) a_Var##HC
919# define OTHERCTXSUFF(a_Var) a_Var##GC
920#endif
921
922/** @def CTXALLSUFF
923 * Adds the suffix of the current context to the passed in
924 * identifier name. The suffix is R3, R0 or GC.
925 *
926 * This is macro should only be used in shared code to avoid a forest of ifdefs.
927 * @param a_Var Identifier name.
928 * @deprecated Use CTX_SUFF. Do NOT use this for new code.
929 */
930#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
931# define CTXALLSUFF(a_Var) a_Var##GC
932#elif defined(IN_RING0) && !defined(DOXYGEN_RUNNING)
933# define CTXALLSUFF(a_Var) a_Var##R0
934#else
935# define CTXALLSUFF(a_Var) a_Var##R3
936#endif
937
938/** @def CTX_SUFF
939 * Adds the suffix of the current context to the passed in
940 * identifier name. The suffix is R3, R0 or RC.
941 *
942 * This is macro should only be used in shared code to avoid a forest of ifdefs.
943 * @param a_Var Identifier name.
944 *
945 * @remark This will replace CTXALLSUFF and CTXSUFF before long.
946 */
947#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
948# define CTX_SUFF(a_Var) a_Var##RC
949#elif defined(IN_RING0) && !defined(DOXYGEN_RUNNING)
950# define CTX_SUFF(a_Var) a_Var##R0
951#else
952# define CTX_SUFF(a_Var) a_Var##R3
953#endif
954
955/** @def CTX_SUFF_Z
956 * Adds the suffix of the current context to the passed in
957 * identifier name, combining RC and R0 into RZ.
958 * The suffix thus is R3 or RZ.
959 *
960 * This is macro should only be used in shared code to avoid a forest of ifdefs.
961 * @param a_Var Identifier name.
962 *
963 * @remark This will replace CTXALLSUFF and CTXSUFF before long.
964 */
965#if defined(IN_RING3) || defined(DOXYGEN_RUNNING)
966# define CTX_SUFF_Z(a_Var) a_Var##R3
967#else
968# define CTX_SUFF_Z(a_Var) a_Var##RZ
969#endif
970
971
972/** @def CTXMID
973 * Adds the current context as a middle name of an identifier name
974 * The middle name is HC or GC.
975 *
976 * This is macro should only be used in shared code to avoid a forest of ifdefs.
977 * @param a_First First name.
978 * @param a_Last Surname.
979 */
980/** @def OTHERCTXMID
981 * Adds the other context as a middle name of an identifier name
982 * The middle name is HC or GC.
983 *
984 * This is macro should only be used in shared code to avoid a forest of ifdefs.
985 * @param a_First First name.
986 * @param a_Last Surname.
987 * @deprecated use CTX_MID or CTX_MID_Z
988 */
989#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
990# define CTXMID(a_First, a_Last) a_First##GC##a_Last
991# define OTHERCTXMID(a_First, a_Last) a_First##HC##a_Last
992#else
993# define CTXMID(a_First, a_Last) a_First##HC##a_Last
994# define OTHERCTXMID(a_First, a_Last) a_First##GC##a_Last
995#endif
996
997/** @def CTXALLMID
998 * Adds the current context as a middle name of an identifier name.
999 * The middle name is R3, R0 or GC.
1000 *
1001 * This is macro should only be used in shared code to avoid a forest of ifdefs.
1002 * @param a_First First name.
1003 * @param a_Last Surname.
1004 * @deprecated use CTX_MID or CTX_MID_Z
1005 */
1006#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
1007# define CTXALLMID(a_First, a_Last) a_First##GC##a_Last
1008#elif defined(IN_RING0) && !defined(DOXYGEN_RUNNING)
1009# define CTXALLMID(a_First, a_Last) a_First##R0##a_Last
1010#else
1011# define CTXALLMID(a_First, a_Last) a_First##R3##a_Last
1012#endif
1013
1014/** @def CTX_MID
1015 * Adds the current context as a middle name of an identifier name.
1016 * The middle name is R3, R0 or RC.
1017 *
1018 * This is macro should only be used in shared code to avoid a forest of ifdefs.
1019 * @param a_First First name.
1020 * @param a_Last Surname.
1021 */
1022#if defined(IN_RC) && !defined(DOXYGEN_RUNNING)
1023# define CTX_MID(a_First, a_Last) a_First##RC##a_Last
1024#elif defined(IN_RING0) && !defined(DOXYGEN_RUNNING)
1025# define CTX_MID(a_First, a_Last) a_First##R0##a_Last
1026#else
1027# define CTX_MID(a_First, a_Last) a_First##R3##a_Last
1028#endif
1029
1030/** @def CTX_MID_Z
1031 * Adds the current context as a middle name of an identifier name, combining RC
1032 * and R0 into RZ.
1033 * The middle name thus is either R3 or RZ.
1034 *
1035 * This is macro should only be used in shared code to avoid a forest of ifdefs.
1036 * @param a_First First name.
1037 * @param a_Last Surname.
1038 */
1039#ifdef IN_RING3
1040# define CTX_MID_Z(a_First, a_Last) a_First##R3##a_Last
1041#else
1042# define CTX_MID_Z(a_First, a_Last) a_First##RZ##a_Last
1043#endif
1044
1045
1046/** @def R3STRING
1047 * A macro which in GC and R0 will return a dummy string while in R3 it will return
1048 * the parameter.
1049 *
1050 * This is typically used to wrap description strings in structures shared
1051 * between R3, R0 and/or GC. The intention is to avoid the \#ifdef IN_RING3 mess.
1052 *
1053 * @param a_pR3String The R3 string. Only referenced in R3.
1054 * @see R0STRING and GCSTRING
1055 */
1056#ifdef IN_RING3
1057# define R3STRING(a_pR3String) (a_pR3String)
1058#else
1059# define R3STRING(a_pR3String) ("<R3_STRING>")
1060#endif
1061
1062/** @def R0STRING
1063 * A macro which in GC and R3 will return a dummy string while in R0 it will return
1064 * the parameter.
1065 *
1066 * This is typically used to wrap description strings in structures shared
1067 * between R3, R0 and/or GC. The intention is to avoid the \#ifdef IN_RING0 mess.
1068 *
1069 * @param a_pR0String The R0 string. Only referenced in R0.
1070 * @see R3STRING and GCSTRING
1071 */
1072#ifdef IN_RING0
1073# define R0STRING(a_pR0String) (a_pR0String)
1074#else
1075# define R0STRING(a_pR0String) ("<R0_STRING>")
1076#endif
1077
1078/** @def RCSTRING
1079 * A macro which in R3 and R0 will return a dummy string while in RC it will return
1080 * the parameter.
1081 *
1082 * This is typically used to wrap description strings in structures shared
1083 * between R3, R0 and/or RC. The intention is to avoid the \#ifdef IN_RC mess.
1084 *
1085 * @param a_pRCString The RC string. Only referenced in RC.
1086 * @see R3STRING, R0STRING
1087 */
1088#ifdef IN_RC
1089# define RCSTRING(a_pRCString) (a_pRCString)
1090#else
1091# define RCSTRING(a_pRCString) ("<RC_STRING>")
1092#endif
1093
1094
1095/** @def RT_NOTHING
1096 * A macro that expands to nothing.
1097 * This is primarily intended as a dummy argument for macros to avoid the
1098 * undefined behavior passing empty arguments to an macro (ISO C90 and C++98,
1099 * gcc v4.4 warns about it).
1100 */
1101#define RT_NOTHING
1102
1103/** @def RT_GCC_EXTENSION
1104 * Macro for shutting up GCC warnings about using language extensions. */
1105#ifdef __GNUC__
1106# define RT_GCC_EXTENSION __extension__
1107#else
1108# define RT_GCC_EXTENSION
1109#endif
1110
1111/** @def RT_GCC_NO_WARN_DEPRECATED_BEGIN
1112 * Used to start a block of code where GCC and Clang should not warn about
1113 * deprecated declarations. */
1114/** @def RT_GCC_NO_WARN_DEPRECATED_END
1115 * Used to end a block of code where GCC and Clang should not warn about
1116 * deprecated declarations. */
1117#if RT_CLANG_PREREQ(4, 0)
1118# define RT_GCC_NO_WARN_DEPRECATED_BEGIN \
1119 _Pragma("clang diagnostic push") \
1120 _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
1121# define RT_GCC_NO_WARN_DEPRECATED_END \
1122 _Pragma("clang diagnostic pop")
1123
1124#elif RT_GNUC_PREREQ(4, 6)
1125# define RT_GCC_NO_WARN_DEPRECATED_BEGIN \
1126 _Pragma("GCC diagnostic push") \
1127 _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
1128# define RT_GCC_NO_WARN_DEPRECATED_END \
1129 _Pragma("GCC diagnostic pop")
1130#else
1131# define RT_GCC_NO_WARN_DEPRECATED_BEGIN
1132# define RT_GCC_NO_WARN_DEPRECATED_END
1133#endif
1134
1135/** @def RT_GCC_NO_WARN_CONVERSION_BEGIN
1136 * Used to start a block of code where GCC should not warn about implicit
1137 * conversions that may alter a value. */
1138#if RT_GNUC_PREREQ(4, 6)
1139# define RT_GCC_NO_WARN_CONVERSION_BEGIN \
1140 _Pragma("GCC diagnostic push") \
1141 _Pragma("GCC diagnostic ignored \"-Wconversion\"")
1142/** @def RT_GCC_NO_WARN_CONVERSION_END
1143 * Used to end a block of code where GCC should not warn about implicit
1144 * conversions that may alter a value. */
1145# define RT_GCC_NO_WARN_CONVERSION_END \
1146 _Pragma("GCC diagnostic pop")
1147#else
1148# define RT_GCC_NO_WARN_CONVERSION_BEGIN
1149# define RT_GCC_NO_WARN_CONVERSION_END
1150#endif
1151
1152/** @def RT_COMPILER_GROKS_64BIT_BITFIELDS
1153 * Macro that is defined if the compiler understands 64-bit bitfields. */
1154#if !defined(RT_OS_OS2) || (!defined(__IBMC__) && !defined(__IBMCPP__))
1155# if !defined(__WATCOMC__) /* watcom compiler doesn't grok it either. */
1156# define RT_COMPILER_GROKS_64BIT_BITFIELDS
1157# endif
1158#endif
1159
1160/** @def RT_COMPILER_LONG_DOUBLE_BITS
1161 * Number of relevant bits in the long double type: 64, 80 or 128 */
1162/** @def RT_COMPILER_WITH_64BIT_LONG_DOUBLE
1163 * Macro that is defined if the compiler implements long double as the
1164 * IEEE precision floating. */
1165/** @def RT_COMPILER_WITH_80BIT_LONG_DOUBLE
1166 * Macro that is defined if the compiler implements long double as the
1167 * IEEE extended precision floating. */
1168/** @def RT_COMPILER_WITH_128BIT_LONG_DOUBLE
1169* Macro that is defined if the compiler implements long double as the
1170* IEEE quadruple precision floating (128-bit).
1171* @note Currently not able to detect this, so must be explicitly defined. */
1172#if defined(__LDBL_MANT_DIG__) /* GCC & clang have this defined and should be more reliable. */
1173# if __LDBL_MANT_DIG__ == 53
1174# define RT_COMPILER_LONG_DOUBLE_BITS 64
1175# define RT_COMPILER_WITH_64BIT_LONG_DOUBLE
1176# undef RT_COMPILER_WITH_80BIT_LONG_DOUBLE
1177# undef RT_COMPILER_WITH_128BIT_LONG_DOUBLE
1178# elif __LDBL_MANT_DIG__ == 64
1179# define RT_COMPILER_LONG_DOUBLE_BITS 80
1180# undef RT_COMPILER_WITH_64BIT_LONG_DOUBLE
1181# define RT_COMPILER_WITH_80BIT_LONG_DOUBLE
1182# undef RT_COMPILER_WITH_128BIT_LONG_DOUBLE
1183# elif __LDBL_MANT_DIG__ == 113
1184# define RT_COMPILER_LONG_DOUBLE_BITS 128
1185# undef RT_COMPILER_WITH_64BIT_LONG_DOUBLE
1186# undef RT_COMPILER_WITH_80BIT_LONG_DOUBLE
1187# define RT_COMPILER_WITH_128BIT_LONG_DOUBLE
1188# else
1189# error "Port me!"
1190# endif
1191#elif defined(RT_OS_WINDOWS) || defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32) /* the M1 arm64 at least */
1192# define RT_COMPILER_LONG_DOUBLE_BITS 64
1193# define RT_COMPILER_WITH_64BIT_LONG_DOUBLE
1194# undef RT_COMPILER_WITH_80BIT_LONG_DOUBLE
1195# undef RT_COMPILER_WITH_128BIT_LONG_DOUBLE
1196#elif defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
1197# define RT_COMPILER_LONG_DOUBLE_BITS 80
1198# undef RT_COMPILER_WITH_64BIT_LONG_DOUBLE
1199# define RT_COMPILER_WITH_80BIT_LONG_DOUBLE
1200# undef RT_COMPILER_WITH_128BIT_LONG_DOUBLE
1201#elif defined(RT_ARCH_SPARC) || defined(RT_ARCH_SPARC64)
1202# define RT_COMPILER_LONG_DOUBLE_BITS 128
1203# undef RT_COMPILER_WITH_64BIT_LONG_DOUBLE
1204# undef RT_COMPILER_WITH_80BIT_LONG_DOUBLE
1205# define RT_COMPILER_WITH_128BIT_LONG_DOUBLE
1206#else
1207# error "Port me!"
1208#endif
1209
1210
1211/*
1212 * The cl.exe frontend emulation of parfait is incorrect and
1213 * it still defines __SIZEOF_INT128__ despite msvc not supporting this
1214 * type and our code relying on the uint18_t type being a struct
1215 * in inline assembler code.
1216 */
1217#if defined(_MSC_VER) && defined(VBOX_WITH_PARFAIT)
1218# undef __SIZEOF_INT128__
1219#endif
1220
1221
1222/** @def RT_COMPILER_WITH_128BIT_INT_TYPES
1223 * Defined when uint128_t and int128_t are native integer types. If
1224 * undefined, they are structure with Hi & Lo members. */
1225#if defined(__SIZEOF_INT128__) || (defined(__GNUC__) && (defined(RT_ARCH_AMD64) || defined(RT_ARCH_ARM64)))
1226# define RT_COMPILER_WITH_128BIT_INT_TYPES
1227#endif
1228
1229/** @def RT_EXCEPTIONS_ENABLED
1230 * Defined when C++ exceptions are enabled.
1231 */
1232#if !defined(RT_EXCEPTIONS_ENABLED) \
1233 && defined(__cplusplus) \
1234 && ( (defined(_MSC_VER) && defined(_CPPUNWIND)) \
1235 || (defined(__GNUC__) && defined(__EXCEPTIONS)))
1236# define RT_EXCEPTIONS_ENABLED
1237#endif
1238
1239/** @def DECL_NOTHROW
1240 * How to declare a function which does not throw C++ exceptions.
1241 *
1242 * @param a_Type The return type.
1243 *
1244 * @note This macro can be combined with other macros, for example
1245 * @code
1246 * RTR3DECL(DECL_NOTHROW(void)) foo(void);
1247 * @endcode
1248 *
1249 * @note GCC is currently restricted to 4.2+ given the ominous comments on
1250 * RT_NOTHROW_PROTO.
1251 */
1252#ifdef __cplusplus
1253# if RT_MSC_PREREQ(RT_MSC_VER_VS2015) /*?*/
1254# define DECL_NOTHROW(a_Type) __declspec(nothrow) a_Type
1255# elif RT_CLANG_PREREQ(6,0) || RT_GNUC_PREREQ(4,2)
1256# define DECL_NOTHROW(a_Type) __attribute__((__nothrow__)) a_Type
1257# else
1258# define DECL_NOTHROW(a_Type) a_Type
1259# endif
1260#else
1261# define DECL_NOTHROW(a_Type) a_Type
1262#endif
1263
1264/** @def RT_NOTHROW_PROTO
1265 * Function does not throw any C++ exceptions, prototype edition.
1266 *
1267 * How to express that a function doesn't throw C++ exceptions and the compiler
1268 * can thus save itself the bother of trying to catch any of them and generate
1269 * unwind info. Put this between the closing parenthesis and the semicolon in
1270 * function prototypes (and implementation if C++).
1271 *
1272 * @note This translates to 'noexcept' when compiling in newer C++ mode.
1273 *
1274 * @remarks The use of the nothrow attribute with GCC is because old compilers
1275 * (4.1.1, 32-bit) leaking the nothrow into global space or something
1276 * when used with RTDECL or similar. Using this forces us to have two
1277 * macros, as the nothrow attribute is not for the function definition.
1278 */
1279/** @def RT_NOTHROW_DEF
1280 * Function does not throw any C++ exceptions, definition edition.
1281 *
1282 * The counter part to RT_NOTHROW_PROTO that is added to the function
1283 * definition.
1284 */
1285#ifdef RT_EXCEPTIONS_ENABLED
1286# if RT_MSC_PREREQ_EX(RT_MSC_VER_VS2015, 0) \
1287 || RT_CLANG_HAS_FEATURE(cxx_noexcept) \
1288 || (RT_GNUC_PREREQ(7, 0) && __cplusplus >= 201100)
1289# define RT_NOTHROW_PROTO noexcept
1290# define RT_NOTHROW_DEF noexcept
1291# elif defined(__GNUC__)
1292# if RT_GNUC_PREREQ(3, 3)
1293# define RT_NOTHROW_PROTO __attribute__((__nothrow__))
1294# else
1295# define RT_NOTHROW_PROTO
1296# endif
1297# define RT_NOTHROW_DEF /* Would need a DECL_NO_THROW like __declspec(nothrow), which we wont do at this point. */
1298# else
1299# define RT_NOTHROW_PROTO throw()
1300# define RT_NOTHROW_DEF throw()
1301# endif
1302#else
1303# define RT_NOTHROW_PROTO
1304# define RT_NOTHROW_DEF
1305#endif
1306/** @def RT_NOTHROW_PROTO
1307 * @deprecated Use RT_NOTHROW_PROTO. */
1308#define RT_NO_THROW_PROTO RT_NOTHROW_PROTO
1309/** @def RT_NOTHROW_DEF
1310 * @deprecated Use RT_NOTHROW_DEF. */
1311#define RT_NO_THROW_DEF RT_NOTHROW_DEF
1312
1313/** @def RT_THROW
1314 * How to express that a method or function throws a type of exceptions. Some
1315 * compilers does not want this kind of information and will warning about it.
1316 *
1317 * @param a_Type The type exception.
1318 *
1319 * @remarks If the actual throwing is done from the header, enclose it by
1320 * \#ifdef RT_EXCEPTIONS_ENABLED ... \#else ... \#endif so the header
1321 * compiles cleanly without exceptions enabled.
1322 *
1323 * Do NOT use this for the actual throwing of exceptions!
1324 */
1325#ifdef RT_EXCEPTIONS_ENABLED
1326# if (__cplusplus + 0) >= 201700
1327# define RT_THROW(a_Type) noexcept(false)
1328# elif RT_MSC_PREREQ_EX(RT_MSC_VER_VC71, 0)
1329# define RT_THROW(a_Type)
1330# elif RT_GNUC_PREREQ(7, 0)
1331# define RT_THROW(a_Type)
1332# else
1333# define RT_THROW(a_Type) throw(a_Type)
1334# endif
1335#else
1336# define RT_THROW(a_Type)
1337#endif
1338
1339
1340/** @def RT_OVERRIDE
1341 * Wrapper for the C++11 override keyword.
1342 *
1343 * @remarks Recognized by g++ starting 4.7, however causes pedantic warnings
1344 * when used without officially enabling the C++11 features.
1345 */
1346#ifdef __cplusplus
1347# if RT_MSC_PREREQ_EX(RT_MSC_VER_VS2012, 0) || RT_CLANG_HAS_FEATURE(cxx_override_control)
1348# define RT_OVERRIDE override
1349# elif RT_GNUC_PREREQ(4, 7) || RT_CLANG_PREREQ(7, 1) /** @todo possibly clang supports this earlier. found no __has_feature check. */
1350# if __cplusplus >= 201100
1351# define RT_OVERRIDE override
1352# else
1353# define RT_OVERRIDE
1354# endif
1355# else
1356# define RT_OVERRIDE
1357# endif
1358#else
1359# define RT_OVERRIDE
1360#endif
1361
1362/** @def RT_FINAL
1363 * Wrapper for the C++11 final keyword.
1364 *
1365 * @remarks Recognized by g++ starting 4.7. Assumes it triggers warnings just
1366 * like override does when C++11 isn't officially enabled.
1367 */
1368#ifdef __cplusplus
1369# if RT_MSC_PREREQ_EX(RT_MSC_VER_VS2015, 0) /** @todo not sure since when this is supported, probably 2012 like override. */
1370# define RT_FINAL final
1371# elif RT_GNUC_PREREQ(4, 7) /** @todo clang and final */
1372# if __cplusplus >= 201100
1373# define RT_FINAL final
1374# else
1375# define RT_FINAL
1376# endif
1377# else
1378# define RT_FINAL
1379# endif
1380#else
1381# define RT_FINAL
1382#endif
1383
1384/** @def RT_NOEXCEPT
1385 * Wrapper for the C++11 noexcept keyword (only true form).
1386 * @note use RT_NOTHROW instead.
1387 */
1388/** @def RT_NOEXCEPT_EX
1389 * Wrapper for the C++11 noexcept keyword with expression.
1390 * @param a_Expr The expression.
1391 */
1392#ifdef __cplusplus
1393# if (RT_MSC_PREREQ_EX(RT_MSC_VER_VS2015, 0) && defined(RT_EXCEPTIONS_ENABLED)) \
1394 || RT_CLANG_HAS_FEATURE(cxx_noexcept) \
1395 || (RT_GNUC_PREREQ(7, 0) && __cplusplus >= 201100)
1396# define RT_NOEXCEPT noexcept
1397# define RT_NOEXCEPT_EX(a_Expr) noexcept(a_Expr)
1398# else
1399# define RT_NOEXCEPT
1400# define RT_NOEXCEPT_EX(a_Expr)
1401# endif
1402#else
1403# define RT_NOEXCEPT
1404# define RT_NOEXCEPT_EX(a_Expr)
1405#endif
1406
1407/** @def RT_ALIGNAS_VAR
1408 * Wrapper for the C++ alignas keyword when used on variables.
1409 *
1410 * This must be put before the storage class and type.
1411 *
1412 * @param a_cbAlign The alignment. Must be power of two.
1413 * @note If C++11 is not enabled/detectable, alternatives will be used where
1414 * available. */
1415/** @def RT_ALIGNAS_TYPE
1416 * Wrapper for the C++ alignas keyword when used on types.
1417 *
1418 * When using struct, this must follow the struct keyword.
1419 *
1420 * @param a_cbAlign The alignment. Must be power of two.
1421 * @note If C++11 is not enabled/detectable, alternatives will be used where
1422 * available. */
1423/** @def RT_ALIGNAS_MEMB
1424 * Wrapper for the C++ alignas keyword when used on structure members.
1425 *
1426 * This must be put before the variable type.
1427 *
1428 * @param a_cbAlign The alignment. Must be power of two.
1429 * @note If C++11 is not enabled/detectable, alternatives will be used where
1430 * available. */
1431#ifdef __cplusplus
1432# if __cplusplus >= 201100 || defined(DOXYGEN_RUNNING)
1433# define RT_ALIGNAS_VAR(a_cbAlign) alignas(a_cbAlign)
1434# define RT_ALIGNAS_TYPE(a_cbAlign) alignas(a_cbAlign)
1435# define RT_ALIGNAS_MEMB(a_cbAlign) alignas(a_cbAlign)
1436# endif
1437#endif
1438#ifndef RT_ALIGNAS_VAR
1439# ifdef _MSC_VER
1440# define RT_ALIGNAS_VAR(a_cbAlign) __declspec(align(a_cbAlign))
1441# define RT_ALIGNAS_TYPE(a_cbAlign) __declspec(align(a_cbAlign))
1442# define RT_ALIGNAS_MEMB(a_cbAlign) __declspec(align(a_cbAlign))
1443# elif defined(__GNUC__)
1444# define RT_ALIGNAS_VAR(a_cbAlign) __attribute__((__aligned__(a_cbAlign)))
1445# define RT_ALIGNAS_TYPE(a_cbAlign) __attribute__((__aligned__(a_cbAlign)))
1446# define RT_ALIGNAS_MEMB(a_cbAlign) __attribute__((__aligned__(a_cbAlign)))
1447# else
1448# define RT_ALIGNAS_VAR(a_cbAlign)
1449# define RT_ALIGNAS_TYPE(a_cbAlign)
1450# define RT_ALIGNAS_MEMB(a_cbAlign)
1451# endif
1452#endif
1453
1454/** @def RT_CACHELINE_SIZE
1455 * The typical cache line size for the target architecture.
1456 * @see RT_ALIGNAS_VAR, RT_ALIGNAS_TYPE, RT_ALIGNAS_MEMB
1457 */
1458#if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64) \
1459 || defined(RT_ARCH_ARM32) || defined(RT_ARCH_ARM64) \
1460 || defined(RT_ARCH_SPARC32) || defined(RT_ARCH_SPARC64) \
1461 || defined(DOXYGEN_RUNNING)
1462# define RT_CACHELINE_SIZE 64
1463#else
1464# define RT_CACHELINE_SIZE 128 /* better overdo it */
1465#endif
1466
1467/** @def RT_FALL_THROUGH
1468 * Tell the compiler that we're falling through to the next case in a switch.
1469 * @sa RT_FALL_THRU */
1470#if RT_CLANG_PREREQ(4, 0) && RT_CPLUSPLUS_PREREQ(201100)
1471# define RT_FALL_THROUGH() [[clang::fallthrough]]
1472#elif RT_CLANG_PREREQ(12, 0) || RT_GNUC_PREREQ(7, 0)
1473# define RT_FALL_THROUGH() __attribute__((__fallthrough__))
1474#else
1475# define RT_FALL_THROUGH() (void)0
1476#endif
1477/** @def RT_FALL_THRU
1478 * Tell the compiler that we're falling thru to the next case in a switch.
1479 * @sa RT_FALL_THROUGH */
1480#define RT_FALL_THRU() RT_FALL_THROUGH()
1481
1482
1483/** @def RT_IPRT_FORMAT_ATTR
1484 * Identifies a function taking an IPRT format string.
1485 * @param a_iFmt The index (1-based) of the format string argument.
1486 * @param a_iArgs The index (1-based) of the first format argument, use 0 for
1487 * va_list.
1488 */
1489#if defined(__GNUC__) && defined(WITH_IPRT_FORMAT_ATTRIBUTE)
1490# define RT_IPRT_FORMAT_ATTR(a_iFmt, a_iArgs) __attribute__((__iprt_format__(a_iFmt, a_iArgs)))
1491#else
1492# define RT_IPRT_FORMAT_ATTR(a_iFmt, a_iArgs)
1493#endif
1494
1495/** @def RT_IPRT_FORMAT_ATTR_MAYBE_NULL
1496 * Identifies a function taking an IPRT format string, NULL is allowed.
1497 * @param a_iFmt The index (1-based) of the format string argument.
1498 * @param a_iArgs The index (1-based) of the first format argument, use 0 for
1499 * va_list.
1500 */
1501#if defined(__GNUC__) && defined(WITH_IPRT_FORMAT_ATTRIBUTE)
1502# define RT_IPRT_FORMAT_ATTR_MAYBE_NULL(a_iFmt, a_iArgs) __attribute__((__iprt_format_maybe_null__(a_iFmt, a_iArgs)))
1503#else
1504# define RT_IPRT_FORMAT_ATTR_MAYBE_NULL(a_iFmt, a_iArgs)
1505#endif
1506
1507
1508/** @def RT_GCC_SUPPORTS_VISIBILITY_HIDDEN
1509 * Indicates that the "hidden" visibility attribute can be used (GCC) */
1510#if defined(__GNUC__)
1511# if __GNUC__ >= 4 && !defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS)
1512# define RT_GCC_SUPPORTS_VISIBILITY_HIDDEN
1513# endif
1514#endif
1515
1516/** @def RT_COMPILER_SUPPORTS_VA_ARGS
1517 * If the defined, the compiler supports the variadic macro feature (..., __VA_ARGS__). */
1518#if defined(_MSC_VER)
1519# if _MSC_VER >= 1600 /* Visual C++ v10.0 / 2010 */
1520# define RT_COMPILER_SUPPORTS_VA_ARGS
1521# endif
1522#elif defined(__GNUC__)
1523# if __GNUC__ >= 3 /* not entirely sure when this was added */
1524# define RT_COMPILER_SUPPORTS_VA_ARGS
1525# endif
1526#elif defined(__WATCOMC__)
1527# define RT_COMPILER_SUPPORTS_VA_ARGS
1528#endif
1529
1530/** @def RT_CB_LOG_CAST
1531 * Helper for logging function pointers to function may throw stuff.
1532 *
1533 * Not needed for function pointer types declared using our DECLCALLBACK
1534 * macros, only external types. */
1535#if defined(_MSC_VER) && defined(RT_EXCEPTIONS_ENABLED)
1536# define RT_CB_LOG_CAST(a_pfnCallback) ((uintptr_t)(a_pfnCallback) + 1 - 1)
1537#else
1538# define RT_CB_LOG_CAST(a_pfnCallback) (a_pfnCallback)
1539#endif
1540
1541
1542
1543/** @def RTCALL
1544 * The standard calling convention for the Runtime interfaces.
1545 *
1546 * @remarks The regparm(0) in the X86/GNUC variant deals with -mregparm=x use in
1547 * the linux kernel and potentially elsewhere (3rd party).
1548 */
1549#if defined(_MSC_VER) || defined(__WATCOMC__)
1550# define RTCALL __cdecl
1551#elif defined(RT_OS_OS2)
1552# define RTCALL __cdecl
1553#elif defined(__GNUC__) && defined(RT_ARCH_X86)
1554# define RTCALL __attribute__((__cdecl__,__regparm__(0)))
1555#else
1556# define RTCALL
1557#endif
1558
1559/** @def DECLEXPORT
1560 * How to declare an exported function.
1561 * @param a_RetType The return type of the function declaration.
1562 */
1563#if defined(_MSC_VER) || defined(RT_OS_OS2)
1564# define DECLEXPORT(a_RetType) __declspec(dllexport) a_RetType
1565#elif defined(RT_USE_VISIBILITY_DEFAULT)
1566# define DECLEXPORT(a_RetType) __attribute__((visibility("default"))) a_RetType
1567#else
1568# define DECLEXPORT(a_RetType) a_RetType
1569#endif
1570
1571/** @def DECL_EXPORT_NOTHROW
1572 * How to declare an exported function that does not throw C++ exceptions.
1573 * @param a_RetType The return type of the function declaration.
1574 */
1575#define DECL_EXPORT_NOTHROW(a_RetType) DECL_NOTHROW(DECLEXPORT(a_RetType))
1576
1577/** @def DECLIMPORT
1578 * How to declare an imported function.
1579 * @param a_RetType The return type of the function declaration.
1580 */
1581#if defined(_MSC_VER) || (defined(RT_OS_OS2) && !defined(__IBMC__) && !defined(__IBMCPP__))
1582# define DECLIMPORT(a_RetType) __declspec(dllimport) a_RetType
1583#else
1584# define DECLIMPORT(a_RetType) a_RetType
1585#endif
1586
1587/** @def DECL_IMPORT_NOTHROW
1588 * How to declare an imported function that does not throw C++ exceptions.
1589 * @param a_RetType The return type of the function declaration.
1590 */
1591#define DECL_IMPORT_NOTHROW(a_RetType) DECL_NOTHROW(DECLIMPORT(a_RetType))
1592
1593/** @def DECL_HIDDEN_ONLY
1594 * How to declare a non-exported function or variable.
1595 * @param a_Type The return type of the function or the data type of the variable.
1596 * @sa DECL_HIDDEN, DECL_HIDDEN_DATA, DECL_HIDDEN_CONST
1597 * @internal Considered more or less internal.
1598 */
1599#if !defined(RT_GCC_SUPPORTS_VISIBILITY_HIDDEN) || defined(RT_NO_VISIBILITY_HIDDEN)
1600# define DECL_HIDDEN_ONLY(a_Type) a_Type
1601#else
1602# define DECL_HIDDEN_ONLY(a_Type) __attribute__((visibility("hidden"))) a_Type
1603#endif
1604
1605/** @def DECLHIDDEN
1606 * How to declare a non-exported function or variable.
1607 * @param a_Type The return type of the function or the data type of the variable.
1608 * @sa DECL_HIDDEN_THROW, DECL_HIDDEN_DATA, DECL_HIDDEN_CONST
1609 * @todo split up into data and non-data.
1610 */
1611#define DECLHIDDEN(a_Type) DECL_NOTHROW(DECL_HIDDEN_ONLY(a_Type))
1612
1613/** @def DECL_HIDDEN_NOTHROW
1614 * How to declare a non-exported function that does not throw C++ exceptions.
1615 * @param a_RetType The return type of the function.
1616 * @note Same as DECLHIDDEN but provided to go along with DECL_IMPORT_NOTHROW
1617 * and DECL_EXPORT_NOTHROW.
1618 */
1619#define DECL_HIDDEN_NOTHROW(a_RetType) DECL_NOTHROW(DECL_HIDDEN_ONLY(a_RetType))
1620
1621/** @def DECL_HIDDEN_THROW
1622 * How to declare a non-exported function that may throw C++ exceptions.
1623 * @param a_RetType The return type of the function.
1624 */
1625#define DECL_HIDDEN_THROW(a_RetType) DECL_HIDDEN_ONLY(a_RetType)
1626
1627/** @def DECL_HIDDEN_DATA
1628 * How to declare a non-exported variable.
1629 * @param a_Type The data type of the variable.
1630 * @sa DECL_HIDDEN_CONST
1631 */
1632#if !defined(RT_GCC_SUPPORTS_VISIBILITY_HIDDEN) || defined(RT_NO_VISIBILITY_HIDDEN)
1633# define DECL_HIDDEN_DATA(a_Type) a_Type
1634#else
1635# define DECL_HIDDEN_DATA(a_Type) __attribute__((visibility("hidden"))) a_Type
1636#endif
1637
1638/** @def DECL_HIDDEN_CONST
1639 * Workaround for g++ warnings when applying the hidden attribute to a const
1640 * definition. Use DECL_HIDDEN_DATA for the declaration.
1641 * @param a_Type The data type of the variable.
1642 * @sa DECL_HIDDEN_DATA
1643 */
1644#if defined(__cplusplus) && defined(__GNUC__)
1645# define DECL_HIDDEN_CONST(a_Type) a_Type
1646#else
1647# define DECL_HIDDEN_CONST(a_Type) DECL_HIDDEN_DATA(a_Type)
1648#endif
1649
1650/** @def DECL_INVALID
1651 * How to declare a function not available for linking in the current context.
1652 * The purpose is to create compile or like time errors when used. This isn't
1653 * possible on all platforms.
1654 * @param a_RetType The return type of the function.
1655 */
1656#if defined(_MSC_VER)
1657# define DECL_INVALID(a_RetType) __declspec(dllimport) a_RetType __stdcall
1658#elif defined(__GNUC__) && defined(__cplusplus)
1659# define DECL_INVALID(a_RetType) extern "C++" a_RetType
1660#else
1661# define DECL_INVALID(a_RetType) a_RetType
1662#endif
1663
1664/** @def DECLASM
1665 * How to declare an internal assembly function.
1666 * @param a_RetType The return type of the function declaration.
1667 * @note DECL_NOTHROW is implied.
1668 */
1669#ifdef __cplusplus
1670# define DECLASM(a_RetType) extern "C" DECL_NOTHROW(a_RetType RTCALL)
1671#else
1672# define DECLASM(a_RetType) DECL_NOTHROW(a_RetType RTCALL)
1673#endif
1674
1675/** @def RT_ASM_DECL_PRAGMA_WATCOM
1676 * How to declare a assembly method prototype with watcom \#pragma aux definition. */
1677/** @def RT_ASM_DECL_PRAGMA_WATCOM_386
1678 * Same as RT_ASM_DECL_PRAGMA_WATCOM, but there is no 16-bit version when
1679 * 8086, 80186 or 80286 is selected as the target CPU. */
1680#if defined(__WATCOMC__) && ARCH_BITS == 16 && defined(RT_ARCH_X86)
1681# define RT_ASM_DECL_PRAGMA_WATCOM(a_RetType) a_RetType
1682# if defined(__SW_0) || defined(__SW_1) || defined(__SW_2)
1683# define RT_ASM_DECL_PRAGMA_WATCOM_386(a_RetType) DECLASM(a_RetType)
1684# else
1685# define RT_ASM_DECL_PRAGMA_WATCOM_386(a_RetType) a_RetType
1686# endif
1687#elif defined(__WATCOMC__) && ARCH_BITS == 32 && defined(RT_ARCH_X86)
1688# define RT_ASM_DECL_PRAGMA_WATCOM(a_RetType) a_RetType
1689# define RT_ASM_DECL_PRAGMA_WATCOM_386(a_RetType) a_RetType
1690#else
1691# define RT_ASM_DECL_PRAGMA_WATCOM(a_RetType) DECLASM(a_RetType)
1692# define RT_ASM_DECL_PRAGMA_WATCOM_386(a_RetType) DECLASM(a_RetType)
1693#endif
1694
1695/** @def DECL_NO_RETURN
1696 * How to declare a function which does not return.
1697 * @note This macro can be combined with other macros, for example
1698 * @code
1699 * RTR3DECL(DECL_NO_RETURN(void)) foo(void);
1700 * @endcode
1701 */
1702#ifdef _MSC_VER
1703# define DECL_NO_RETURN(a_RetType) __declspec(noreturn) a_RetType
1704#elif defined(__GNUC__)
1705# define DECL_NO_RETURN(a_RetType) __attribute__((noreturn)) a_RetType
1706#else
1707# define DECL_NO_RETURN(a_RetType) a_RetType
1708#endif
1709
1710/** @def DECL_RETURNS_TWICE
1711 * How to declare a function which may return more than once.
1712 * @note This macro can be combined with other macros, for example
1713 * @code
1714 * RTR3DECL(DECL_RETURNS_TWICE(void)) MySetJmp(void);
1715 * @endcode
1716 */
1717#if RT_GNUC_PREREQ(4, 1)
1718# define DECL_RETURNS_TWICE(a_RetType) __attribute__((returns_twice)) a_RetType
1719#else
1720# define DECL_RETURNS_TWICE(a_RetType) a_RetType
1721#endif
1722
1723/** @def DECL_CHECK_RETURN
1724 * Require a return value to be checked.
1725 * @note This macro can be combined with other macros, for example
1726 * @code
1727 * RTR3DECL(DECL_CHECK_RETURN(int)) MayReturnInfoStatus(void);
1728 * @endcode
1729 */
1730#if RT_GNUC_PREREQ(3, 4)
1731# define DECL_CHECK_RETURN(a_RetType) __attribute__((warn_unused_result)) a_RetType
1732#elif defined(_MSC_VER)
1733# define DECL_CHECK_RETURN(a_RetType) __declspec("SAL_checkReturn") a_RetType
1734#else
1735# define DECL_CHECK_RETURN(a_RetType) a_RetType
1736#endif
1737
1738/** @def DECL_CHECK_RETURN_NOT_R3
1739 * Variation of DECL_CHECK_RETURN that only applies the required to non-ring-3
1740 * code.
1741 */
1742#ifndef IN_RING3
1743# define DECL_CHECK_RETURN_NOT_R3(a_RetType) DECL_CHECK_RETURN(a_RetType)
1744#else
1745# define DECL_CHECK_RETURN_NOT_R3(a_RetType) a_RetType
1746#endif
1747
1748/** @def DECLWEAK
1749 * How to declare a variable which is not necessarily resolved at
1750 * runtime.
1751 * @note This macro can be combined with other macros, for example
1752 * @code
1753 * RTR3DECL(DECLWEAK(int)) foo;
1754 * @endcode
1755 */
1756#if defined(__GNUC__)
1757# define DECLWEAK(a_Type) a_Type __attribute__((weak))
1758#else
1759# define DECLWEAK(a_Type) a_Type
1760#endif
1761
1762/** @def DECLCALLBACK
1763 * How to declare an call back function.
1764 * @param a_RetType The return type of the function declaration.
1765 * @note DECL_NOTHROW is implied.
1766 * @note Use DECLCALLBACKTYPE for typedefs.
1767 */
1768#define DECLCALLBACK(a_RetType) DECL_NOTHROW(a_RetType RT_FAR_CODE RTCALL)
1769
1770/** @def DECL_HIDDEN_CALLBACK
1771 * How to declare an call back function with hidden visibility.
1772 * @param a_RetType The return type of the function declaration.
1773 * @note DECL_NOTHROW is implied.
1774 * @note Use DECLCALLBACKTYPE for typedefs.
1775 */
1776#define DECL_HIDDEN_CALLBACK(a_RetType) DECL_HIDDEN_ONLY(DECLCALLBACK(a_RetType))
1777
1778/** @def DECLCALLBACKTYPE_EX
1779 * How to declare an call back function type.
1780 * @param a_RetType The return type of the function declaration.
1781 * @param a_CallConv Calling convention.
1782 * @param a_Name The name of the typedef
1783 * @param a_Args The argument list enclosed in parentheses.
1784 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1785 */
1786#if RT_CLANG_PREREQ(6,0) && !defined(RT_RELAXED_CALLBACKS_TYPES)
1787# define DECLCALLBACKTYPE_EX(a_RetType, a_CallConv, a_Name, a_Args) __attribute__((__nothrow__)) a_RetType a_CallConv a_Name a_Args
1788#elif RT_MSC_PREREQ(RT_MSC_VER_VS2015) /*?*/ && defined(__cplusplus) && defined(_MSC_EXTENSIONS) && !defined(RT_RELAXED_CALLBACKS_TYPES)
1789# define DECLCALLBACKTYPE_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType a_CallConv a_Name a_Args throw()
1790#else
1791# define DECLCALLBACKTYPE_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType a_CallConv a_Name a_Args
1792#endif
1793/** @def DECLCALLBACKTYPE
1794 * How to declare an call back function type.
1795 * @param a_RetType The return type of the function declaration.
1796 * @param a_Name The name of the typedef
1797 * @param a_Args The argument list enclosed in parentheses.
1798 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1799 */
1800#define DECLCALLBACKTYPE(a_RetType, a_Name, a_Args) DECLCALLBACKTYPE_EX(a_RetType, RT_FAR_CODE RTCALL, a_Name, a_Args)
1801
1802/** @def DECLCALLBACKPTR_EX
1803 * How to declare an call back function pointer.
1804 * @param a_RetType The return type of the function declaration.
1805 * @param a_CallConv Calling convention.
1806 * @param a_Name The name of the variable member.
1807 * @param a_Args The argument list enclosed in parentheses.
1808 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1809 */
1810#if defined(__IBMC__) || defined(__IBMCPP__)
1811# define DECLCALLBACKPTR_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType (* a_CallConv a_Name) a_Args
1812#elif RT_CLANG_PREREQ(6,0) && !defined(RT_RELAXED_CALLBACKS_TYPES)
1813# define DECLCALLBACKPTR_EX(a_RetType, a_CallConv, a_Name, a_Args) __attribute__((__nothrow__)) a_RetType (a_CallConv * a_Name) a_Args
1814#elif RT_MSC_PREREQ(RT_MSC_VER_VS2015) /*?*/ && defined(__cplusplus) && defined(_MSC_EXTENSIONS) && !defined(RT_RELAXED_CALLBACKS_TYPES)
1815# define DECLCALLBACKPTR_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType (a_CallConv * a_Name) a_Args throw()
1816#else
1817# define DECLCALLBACKPTR_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType (a_CallConv * a_Name) a_Args
1818#endif
1819/** @def DECLCALLBACKPTR
1820 * How to declare an call back function pointer.
1821 * @param a_RetType The return type of the function declaration.
1822 * @param a_Name The name of the variable member.
1823 * @param a_Args The argument list enclosed in parentheses.
1824 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1825 */
1826#define DECLCALLBACKPTR(a_RetType, a_Name, a_Args) DECLCALLBACKPTR_EX(a_RetType, RT_FAR_CODE RTCALL, a_Name, a_Args)
1827
1828/** @def DECLCALLBACKMEMBER_EX
1829 * How to declare an call back function pointer member.
1830 * @param a_RetType The return type of the function declaration.
1831 * @param a_CallConv Calling convention.
1832 * @param a_Name The name of the struct/union/class member.
1833 * @param a_Args The argument list enclosed in parentheses.
1834 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1835 */
1836#if defined(__IBMC__) || defined(__IBMCPP__)
1837# define DECLCALLBACKMEMBER_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType (* a_CallConv a_Name) a_Args
1838#elif RT_CLANG_PREREQ(6,0) && !defined(RT_RELAXED_CALLBACKS_TYPES)
1839# define DECLCALLBACKMEMBER_EX(a_RetType, a_CallConv, a_Name, a_Args) __attribute__((__nothrow__)) a_RetType (a_CallConv *a_Name) a_Args
1840#elif RT_MSC_PREREQ(RT_MSC_VER_VS2015) /*?*/ && defined(__cplusplus) && defined(_MSC_EXTENSIONS) && !defined(RT_RELAXED_CALLBACKS_TYPES)
1841# define DECLCALLBACKMEMBER_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType (a_CallConv *a_Name) a_Args throw()
1842#else
1843# define DECLCALLBACKMEMBER_EX(a_RetType, a_CallConv, a_Name, a_Args) a_RetType (a_CallConv *a_Name) a_Args
1844#endif
1845/** @def DECLCALLBACKMEMBER
1846 * How to declare an call back function pointer member.
1847 * @param a_RetType The return type of the function declaration.
1848 * @param a_Name The name of the struct/union/class member.
1849 * @param a_Args The argument list enclosed in parentheses.
1850 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1851 */
1852#define DECLCALLBACKMEMBER(a_RetType, a_Name, a_Args) DECLCALLBACKMEMBER_EX(a_RetType, RT_FAR_CODE RTCALL, a_Name, a_Args)
1853
1854/** @def DECLR3CALLBACKMEMBER
1855 * How to declare an call back function pointer member - R3 Ptr.
1856 * @param a_RetType The return type of the function declaration.
1857 * @param a_Name The name of the struct/union/class member.
1858 * @param a_Args The argument list enclosed in parentheses.
1859 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1860 */
1861#if defined(IN_RING3) || defined(DOXYGEN_RUNNING)
1862# define DECLR3CALLBACKMEMBER(a_RetType, a_Name, a_Args) DECLCALLBACKMEMBER(a_RetType, a_Name, a_Args)
1863#else
1864# define DECLR3CALLBACKMEMBER(a_RetType, a_Name, a_Args) RTR3PTR a_Name
1865#endif
1866
1867/** @def DECLRCCALLBACKMEMBER
1868 * How to declare an call back function pointer member - RC Ptr.
1869 * @param a_RetType The return type of the function declaration.
1870 * @param a_Name The name of the struct/union/class member.
1871 * @param a_Args The argument list enclosed in parentheses.
1872 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1873 */
1874#if defined(IN_RC) || defined(DOXYGEN_RUNNING)
1875# define DECLRCCALLBACKMEMBER(a_RetType, a_Name, a_Args) DECLCALLBACKMEMBER(a_RetType, a_Name, a_Args)
1876#else
1877# define DECLRCCALLBACKMEMBER(a_RetType, a_Name, a_Args) RTRCPTR a_Name
1878#endif
1879#if defined(IN_RC) || defined(DOXYGEN_RUNNING)
1880# define DECLRGCALLBACKMEMBER(a_RetType, a_Name, a_Args) DECLCALLBACKMEMBER(a_RetType, a_Name, a_Args)
1881#else
1882# define DECLRGCALLBACKMEMBER(a_RetType, a_Name, a_Args) RTRGPTR a_Name
1883#endif
1884
1885/** @def DECLR0CALLBACKMEMBER
1886 * How to declare an call back function pointer member - R0 Ptr.
1887 * @param a_RetType The return type of the function declaration.
1888 * @param a_Name The name of the struct/union/class member.
1889 * @param a_Args The argument list enclosed in parentheses.
1890 * @note DECL_NOTHROW is implied, but not supported by all compilers yet.
1891 */
1892#if defined(IN_RING0) || defined(DOXYGEN_RUNNING)
1893# define DECLR0CALLBACKMEMBER(a_RetType, a_Name, a_Args) DECLCALLBACKMEMBER(a_RetType, a_Name, a_Args)
1894#else
1895# define DECLR0CALLBACKMEMBER(a_RetType, a_Name, a_Args) RTR0PTR a_Name
1896#endif
1897
1898/** @def DECLINLINE
1899 * How to declare a function as inline that does not throw any C++ exceptions.
1900 * @param a_RetType The return type of the function declaration.
1901 * @remarks Don't use this macro on C++ methods.
1902 * @sa DECL_INLINE_THROW
1903 */
1904#if defined(__GNUC__) && !defined(DOXYGEN_RUNNING)
1905# define DECLINLINE(a_RetType) DECL_NOTHROW(static __inline__ a_RetType)
1906#elif defined(__cplusplus) || defined(DOXYGEN_RUNNING)
1907# define DECLINLINE(a_RetType) DECL_NOTHROW(static inline a_RetType)
1908#elif defined(_MSC_VER)
1909# define DECLINLINE(a_RetType) DECL_NOTHROW(static _inline a_RetType)
1910#elif defined(__IBMC__)
1911# define DECLINLINE(a_RetType) DECL_NOTHROW(_Inline a_RetType)
1912#else
1913# define DECLINLINE(a_RetType) DECL_NOTHROW(inline a_RetType)
1914#endif
1915
1916/** @def DECL_INLINE_THROW
1917 * How to declare a function as inline that throws C++ exceptions.
1918 * @param a_RetType The return type of the function declaration.
1919 * @remarks Don't use this macro on C++ methods.
1920 */
1921#if defined(__GNUC__) && !defined(DOXYGEN_RUNNING)
1922# define DECL_INLINE_THROW(a_RetType) static __inline__ a_RetType
1923#elif defined(__cplusplus) || defined(DOXYGEN_RUNNING)
1924# define DECL_INLINE_THROW(a_RetType) static inline a_RetType
1925#elif defined(_MSC_VER)
1926# define DECL_INLINE_THROW(a_RetType) static _inline a_RetType
1927#elif defined(__IBMC__)
1928# define DECL_INLINE_THROW(a_RetType) _Inline a_RetType
1929#else
1930# define DECL_INLINE_THROW(a_RetType) inline a_RetType
1931#endif
1932
1933/** @def DECL_FORCE_INLINE
1934 * How to declare a function that does not throw any C++ exceptions as inline
1935 * and try convince the compiler to always inline it regardless of optimization
1936 * switches.
1937 * @param a_RetType The return type of the function declaration.
1938 * @remarks Use sparsely and with care. Don't use this macro on C++ methods.
1939 * @sa DECL_FORCE_INLINE_THROW
1940 */
1941#ifdef __GNUC__
1942# define DECL_FORCE_INLINE(a_RetType) __attribute__((__always_inline__)) DECLINLINE(a_RetType)
1943#elif defined(_MSC_VER)
1944# define DECL_FORCE_INLINE(a_RetType) DECL_NOTHROW(__forceinline a_RetType)
1945#else
1946# define DECL_FORCE_INLINE(a_RetType) DECLINLINE(a_RetType)
1947#endif
1948
1949/** @def DECL_FORCE_INLINE_THROW
1950 * How to declare a function throwing C++ exceptions as inline and try convince
1951 * the compiler to always inline it regardless of optimization switches.
1952 * @param a_RetType The return type of the function declaration.
1953 * @remarks Use sparsely and with care. Don't use this macro on C++ methods.
1954 */
1955#ifdef __GNUC__
1956# define DECL_FORCE_INLINE_THROW(a_RetType) __attribute__((__always_inline__)) DECL_INLINE_THROW(a_RetType)
1957#elif defined(_MSC_VER)
1958# define DECL_FORCE_INLINE_THROW(a_RetType) __forceinline a_RetType
1959#else
1960# define DECL_FORCE_INLINE_THROW(a_RetType) DECL_INLINE_THROW(a_RetType)
1961#endif
1962
1963
1964/** @def DECL_NO_INLINE
1965 * How to declare a function telling the compiler not to inline it.
1966 * @param scope The function scope, static or RT_NOTHING.
1967 * @param a_RetType The return type of the function declaration.
1968 * @remarks Don't use this macro on C++ methods.
1969 */
1970#ifdef __GNUC__
1971# define DECL_NO_INLINE(scope, a_RetType) __attribute__((__noinline__)) scope a_RetType
1972#elif defined(_MSC_VER)
1973# define DECL_NO_INLINE(scope, a_RetType) __declspec(noinline) scope a_RetType
1974#else
1975# define DECL_NO_INLINE(scope,a_RetType) scope a_RetType
1976#endif
1977
1978
1979/** @def IN_RT_STATIC
1980 * Used to indicate whether we're linking against a static IPRT
1981 * or not.
1982 *
1983 * The IPRT symbols will be declared as hidden (if supported). Note that this
1984 * define has no effect without also setting one of the IN_RT_R0, IN_RT_R3 or
1985 * IN_RT_RC indicators.
1986 */
1987
1988/** @def IN_RT_R0
1989 * Used to indicate whether we're inside the same link module as the host
1990 * context ring-0 Runtime Library.
1991 */
1992/** @def RTR0DECL(a_RetType)
1993 * Runtime Library host context ring-0 export or import declaration.
1994 * @param a_RetType The return a_RetType of the function declaration.
1995 * @remarks This is only used inside IPRT. Other APIs need to define their own
1996 * XXXX_DECL macros for dealing with import/export/static visibility.
1997 * @note DECL_NOTHROW is implied.
1998 */
1999#ifdef IN_RT_R0
2000# ifdef IN_RT_STATIC
2001# define RTR0DECL(a_RetType) DECL_HIDDEN_NOTHROW(a_RetType) RTCALL
2002# else
2003# define RTR0DECL(a_RetType) DECL_EXPORT_NOTHROW(a_RetType) RTCALL
2004# endif
2005#else
2006# define RTR0DECL(a_RetType) DECL_IMPORT_NOTHROW(a_RetType) RTCALL
2007#endif
2008
2009/** @def IN_RT_R3
2010 * Used to indicate whether we're inside the same link module as the host
2011 * context ring-3 Runtime Library.
2012 */
2013/** @def RTR3DECL(a_RetType)
2014 * Runtime Library host context ring-3 export or import declaration.
2015 * @param a_RetType The return type of the function declaration.
2016 * @remarks This is only used inside IPRT. Other APIs need to define their own
2017 * XXXX_DECL macros for dealing with import/export/static visibility.
2018 * @note DECL_NOTHROW is implied.
2019 */
2020#ifdef IN_RT_R3
2021# ifdef IN_RT_STATIC
2022# define RTR3DECL(a_RetType) DECL_HIDDEN_NOTHROW(a_RetType) RTCALL
2023# else
2024# define RTR3DECL(a_RetType) DECL_EXPORT_NOTHROW(a_RetType) RTCALL
2025# endif
2026#else
2027# define RTR3DECL(a_RetType) DECL_IMPORT_NOTHROW(a_RetType) RTCALL
2028#endif
2029
2030/** @def IN_RT_RC
2031 * Used to indicate whether we're inside the same link module as the raw-mode
2032 * context (RC) runtime library.
2033 */
2034/** @def RTRCDECL(a_RetType)
2035 * Runtime Library raw-mode context export or import declaration.
2036 * @param a_RetType The return type of the function declaration.
2037 * @remarks This is only used inside IPRT. Other APIs need to define their own
2038 * XXXX_DECL macros for dealing with import/export/static visibility.
2039 * @note DECL_NOTHROW is implied.
2040 */
2041#ifdef IN_RT_RC
2042# ifdef IN_RT_STATIC
2043# define RTRCDECL(a_RetType) DECL_HIDDEN_NOTHROW(a_RetType) RTCALL
2044# else
2045# define RTRCDECL(a_RetType) DECL_EXPORT_NOTHROW(a_RetType) RTCALL
2046# endif
2047#else
2048# define RTRCDECL(a_RetType) DECL_IMPORT_NOTHROW(a_RetType) RTCALL
2049#endif
2050
2051/** @def RTDECL(a_RetType)
2052 * Runtime Library export or import declaration.
2053 * Functions declared using this macro exists in all contexts.
2054 * @param a_RetType The return type of the function declaration.
2055 * @remarks This is only used inside IPRT. Other APIs need to define their own
2056 * XXXX_DECL macros for dealing with import/export/static visibility.
2057 * @note DECL_NOTHROW is implied.
2058 */
2059#if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0)
2060# ifdef IN_RT_STATIC
2061# define RTDECL(a_RetType) DECL_HIDDEN_NOTHROW(a_RetType) RTCALL
2062# else
2063# define RTDECL(a_RetType) DECL_EXPORT_NOTHROW(a_RetType) RTCALL
2064# endif
2065#else
2066# define RTDECL(a_RetType) DECL_IMPORT_NOTHROW(a_RetType) RTCALL
2067#endif
2068
2069/** @def RTDATADECL(a_Type)
2070 * Runtime Library export or import declaration.
2071 * Data declared using this macro exists in all contexts.
2072 * @param a_Type The data type.
2073 * @remarks This is only used inside IPRT. Other APIs need to define their own
2074 * XXXX_DECL macros for dealing with import/export/static visibility.
2075 */
2076/** @def RT_DECL_DATA_CONST(a_Type)
2077 * Definition of a const variable. See DECL_HIDDEN_CONST.
2078 * @param a_Type The const data type.
2079 * @remarks This is only used inside IPRT. Other APIs need to define their own
2080 * XXXX_DECL macros for dealing with import/export/static visibility.
2081 */
2082#if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0)
2083# ifdef IN_RT_STATIC
2084# define RTDATADECL(a_Type) DECL_HIDDEN_DATA(a_Type)
2085# define RT_DECL_DATA_CONST(a_Type) DECL_HIDDEN_CONST(a_Type)
2086# else
2087# define RTDATADECL(a_Type) DECLEXPORT(a_Type)
2088# if defined(__cplusplus) && defined(__GNUC__)
2089# define RT_DECL_DATA_CONST(a_Type) a_Type
2090# else
2091# define RT_DECL_DATA_CONST(a_Type) DECLEXPORT(a_Type)
2092# endif
2093# endif
2094#else
2095# define RTDATADECL(a_Type) DECLIMPORT(a_Type)
2096# define RT_DECL_DATA_CONST(a_Type) DECLIMPORT(a_Type)
2097#endif
2098
2099/** @def RT_DECL_CLASS
2100 * Declares an class living in the runtime.
2101 * @remarks This is only used inside IPRT. Other APIs need to define their own
2102 * XXXX_DECL macros for dealing with import/export/static visibility.
2103 */
2104#if defined(IN_RT_R3) || defined(IN_RT_RC) || defined(IN_RT_R0)
2105# ifdef IN_RT_STATIC
2106# define RT_DECL_CLASS
2107# else
2108# define RT_DECL_CLASS DECLEXPORT_CLASS
2109# endif
2110#else
2111# define RT_DECL_CLASS DECLIMPORT_CLASS
2112#endif
2113
2114
2115/** @def RT_NOCRT
2116 * Symbol name wrapper for the No-CRT bits.
2117 *
2118 * In order to coexist in the same process as other CRTs, we need to
2119 * decorate the symbols such that they don't conflict the ones in the
2120 * other CRTs. The result of such conflicts / duplicate symbols can
2121 * confuse the dynamic loader on Unix like systems.
2122 *
2123 * Define RT_WITHOUT_NOCRT_WRAPPERS to drop the wrapping.
2124 * Define RT_WITHOUT_NOCRT_WRAPPER_ALIASES to drop the aliases to the
2125 * wrapped names.
2126 */
2127/** @def RT_NOCRT_STR
2128 * Same as RT_NOCRT only it'll return a double quoted string of the result.
2129 */
2130#if !defined(RT_WITHOUT_NOCRT_WRAPPERS) || defined(RT_FORCE_NOCRT_WRAPPERS)
2131# define RT_NOCRT(name) nocrt_ ## name
2132# define RT_NOCRT_STR(name) "nocrt_" # name
2133#else
2134# define RT_NOCRT(name) name
2135# define RT_NOCRT_STR(name) #name
2136#endif
2137
2138
2139/** @name Untrusted data classifications.
2140 * @{ */
2141/** @def RT_UNTRUSTED_USER
2142 * For marking non-volatile (race free) data from user mode as untrusted.
2143 * This is just for visible documentation. */
2144#define RT_UNTRUSTED_USER
2145/** @def RT_UNTRUSTED_VOLATILE_USER
2146 * For marking volatile data shared with user mode as untrusted.
2147 * This is more than just documentation as it specifies the 'volatile' keyword,
2148 * because the guest could modify the data at any time. */
2149#define RT_UNTRUSTED_VOLATILE_USER volatile
2150
2151/** @def RT_UNTRUSTED_GUEST
2152 * For marking non-volatile (race free) data from the guest as untrusted.
2153 * This is just for visible documentation. */
2154#define RT_UNTRUSTED_GUEST
2155/** @def RT_UNTRUSTED_VOLATILE_GUEST
2156 * For marking volatile data shared with the guest as untrusted.
2157 * This is more than just documentation as it specifies the 'volatile' keyword,
2158 * because the guest could modify the data at any time. */
2159#define RT_UNTRUSTED_VOLATILE_GUEST volatile
2160
2161/** @def RT_UNTRUSTED_HOST
2162 * For marking non-volatile (race free) data from the host as untrusted.
2163 * This is just for visible documentation. */
2164#define RT_UNTRUSTED_HOST
2165/** @def RT_UNTRUSTED_VOLATILE_HOST
2166 * For marking volatile data shared with the host as untrusted.
2167 * This is more than just documentation as it specifies the 'volatile' keyword,
2168 * because the host could modify the data at any time. */
2169#define RT_UNTRUSTED_VOLATILE_HOST volatile
2170
2171/** @def RT_UNTRUSTED_HSTGST
2172 * For marking non-volatile (race free) data from the host/gust as untrusted.
2173 * This is just for visible documentation. */
2174#define RT_UNTRUSTED_HSTGST
2175/** @def RT_UNTRUSTED_VOLATILE_HSTGST
2176 * For marking volatile data shared with the host/guest as untrusted.
2177 * This is more than just documentation as it specifies the 'volatile' keyword,
2178 * because the host could modify the data at any time. */
2179#define RT_UNTRUSTED_VOLATILE_HSTGST volatile
2180/** @} */
2181
2182/** @name Fences for use when handling untrusted data.
2183 * @{ */
2184/** For use after copying untruated volatile data to a non-volatile location.
2185 * This translates to a compiler memory barrier and will help ensure that the
2186 * compiler uses the non-volatile copy of the data. */
2187#define RT_UNTRUSTED_NONVOLATILE_COPY_FENCE() ASMCompilerBarrier()
2188/** For use after finished validating guest input.
2189 * What this translates to is architecture dependent. On intel it will
2190 * translate to a CPU load+store fence as well as a compiler memory barrier. */
2191#if defined(RT_ARCH_AMD64) || (defined(RT_ARCH_X86) && !defined(RT_WITH_OLD_CPU_SUPPORT))
2192# define RT_UNTRUSTED_VALIDATED_FENCE() do { ASMCompilerBarrier(); ASMReadFence(); } while (0)
2193#elif defined(RT_ARCH_X86)
2194# define RT_UNTRUSTED_VALIDATED_FENCE() do { ASMCompilerBarrier(); ASMMemoryFence(); } while (0)
2195#else
2196# define RT_UNTRUSTED_VALIDATED_FENCE() do { ASMCompilerBarrier(); } while (0)
2197#endif
2198/** @} */
2199
2200
2201/** @def RT_LIKELY
2202 * Give the compiler a hint that an expression is very likely to hold true.
2203 *
2204 * Some compilers support explicit branch prediction so that the CPU backend
2205 * can hint the processor and also so that code blocks can be reordered such
2206 * that the predicted path sees a more linear flow, thus improving cache
2207 * behaviour, etc.
2208 *
2209 * IPRT provides the macros RT_LIKELY() and RT_UNLIKELY() as a way to utilize
2210 * this compiler feature when present.
2211 *
2212 * A few notes about the usage:
2213 *
2214 * - Generally, order your code use RT_LIKELY() instead of RT_UNLIKELY().
2215 *
2216 * - Generally, use RT_UNLIKELY() with error condition checks (unless you
2217 * have some _strong_ reason to do otherwise, in which case document it),
2218 * and/or RT_LIKELY() with success condition checks, assuming you want
2219 * to optimize for the success path.
2220 *
2221 * - Other than that, if you don't know the likelihood of a test succeeding
2222 * from empirical or other 'hard' evidence, don't make predictions unless
2223 * you happen to be a Dirk Gently character.
2224 *
2225 * - These macros are meant to be used in places that get executed a lot. It
2226 * is wasteful to make predictions in code that is executed rarely (e.g.
2227 * at subsystem initialization time) as the basic block reordering that this
2228 * affects can often generate larger code.
2229 *
2230 * - Note that RT_SUCCESS() and RT_FAILURE() already makes use of RT_LIKELY()
2231 * and RT_UNLIKELY(). Should you wish for prediction free status checks,
2232 * use the RT_SUCCESS_NP() and RT_FAILURE_NP() macros instead.
2233 *
2234 *
2235 * @returns the boolean result of the expression.
2236 * @param expr The expression that's very likely to be true.
2237 * @see RT_UNLIKELY
2238 */
2239/** @def RT_UNLIKELY
2240 * Give the compiler a hint that an expression is highly unlikely to hold true.
2241 *
2242 * See the usage instructions give in the RT_LIKELY() docs.
2243 *
2244 * @returns the boolean result of the expression.
2245 * @param expr The expression that's very unlikely to be true.
2246 * @see RT_LIKELY
2247 *
2248 * @deprecated Please use RT_LIKELY() instead wherever possible! That gives us
2249 * a better chance of the windows compilers to generate favorable code
2250 * too. The belief is that the compiler will by default assume the
2251 * if-case is more likely than the else-case.
2252 */
2253#if defined(__GNUC__)
2254# if __GNUC__ >= 3 && !defined(FORTIFY_RUNNING)
2255# define RT_LIKELY(expr) __builtin_expect(!!(expr), 1)
2256# define RT_UNLIKELY(expr) __builtin_expect(!!(expr), 0)
2257# else
2258# define RT_LIKELY(expr) (expr)
2259# define RT_UNLIKELY(expr) (expr)
2260# endif
2261#else
2262# define RT_LIKELY(expr) (expr)
2263# define RT_UNLIKELY(expr) (expr)
2264#endif
2265
2266/** @def RT_EXPAND_2
2267 * Helper for RT_EXPAND. */
2268#define RT_EXPAND_2(a_Expr) a_Expr
2269/** @def RT_EXPAND
2270 * Returns the expanded expression.
2271 * @param a_Expr The expression to expand. */
2272#define RT_EXPAND(a_Expr) RT_EXPAND_2(a_Expr)
2273
2274/** @def RT_STR
2275 * Returns the argument as a string constant.
2276 * @param str Argument to stringify. */
2277#define RT_STR(str) #str
2278/** @def RT_XSTR
2279 * Returns the expanded argument as a string.
2280 * @param str Argument to expand and stringify. */
2281#define RT_XSTR(str) RT_STR(str)
2282
2283/** @def RT_LSTR_2
2284 * Helper for RT_WSTR that gets the expanded @a str.
2285 * @param str String litteral to prefix with 'L'. */
2286#define RT_LSTR_2(str) L##str
2287/** @def RT_LSTR
2288 * Returns the expanded argument with a L string prefix.
2289 *
2290 * Intended for converting ASCII string \#defines into wide char string
2291 * litterals on Windows.
2292 *
2293 * @param str String litteral to . */
2294#define RT_LSTR(str) RT_LSTR_2(str)
2295
2296/** @def RT_UNPACK_CALL
2297 * Unpacks the an argument list inside an extra set of parenthesis and turns it
2298 * into a call to @a a_Fn.
2299 *
2300 * @param a_Fn Function/macro to call.
2301 * @param a_Args Parameter list in parenthesis.
2302 */
2303#define RT_UNPACK_CALL(a_Fn, a_Args) a_Fn a_Args
2304
2305#if defined(RT_COMPILER_SUPPORTS_VA_ARGS) || defined(DOXYGEN_RUNNING)
2306
2307/** @def RT_UNPACK_ARGS
2308 * Returns the arguments without parenthesis.
2309 *
2310 * @param ... Parameter list in parenthesis.
2311 * @remarks Requires RT_COMPILER_SUPPORTS_VA_ARGS.
2312 */
2313# define RT_UNPACK_ARGS(...) __VA_ARGS__
2314
2315/** @def RT_COUNT_VA_ARGS_HLP
2316 * Helper for RT_COUNT_VA_ARGS that picks out the argument count from
2317 * RT_COUNT_VA_ARGS_REV_SEQ. */
2318# define RT_COUNT_VA_ARGS_HLP( \
2319 c69, c68, c67, c66, c65, c64, c63, c62, c61, c60, \
2320 c59, c58, c57, c56, c55, c54, c53, c52, c51, c50, \
2321 c49, c48, c47, c46, c45, c44, c43, c42, c41, c40, \
2322 c39, c38, c37, c36, c35, c34, c33, c32, c31, c30, \
2323 c29, c28, c27, c26, c25, c24, c23, c22, c21, c20, \
2324 c19, c18, c17, c16, c15, c14, c13, c12, c11, c10, \
2325 c9, c8, c7, c6, c5, c4, c3, c2, c1, cArgs, ...) cArgs
2326/** Argument count sequence. */
2327# define RT_COUNT_VA_ARGS_REV_SEQ \
2328 69, 68, 67, 66, 65, 64, 63, 62, 61, 60, \
2329 59, 58, 57, 56, 55, 54, 53, 52, 51, 50, \
2330 49, 48, 47, 46, 45, 44, 43, 42, 41, 40, \
2331 39, 38, 37, 36, 35, 34, 33, 32, 31, 30, \
2332 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, \
2333 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, \
2334 9, 8, 7, 6, 5, 4, 3, 2, 1, 0
2335/** This is for zero arguments. At least Visual C++ requires it. */
2336# define RT_COUNT_VA_ARGS_PREFIX_RT_NOTHING RT_COUNT_VA_ARGS_REV_SEQ
2337/**
2338 * Counts the number of arguments given to the variadic macro.
2339 *
2340 * Max is 69.
2341 *
2342 * @returns Number of arguments in the ellipsis
2343 * @param ... Arguments to count.
2344 * @remarks Requires RT_COMPILER_SUPPORTS_VA_ARGS.
2345 */
2346# define RT_COUNT_VA_ARGS(...) \
2347 RT_UNPACK_CALL(RT_COUNT_VA_ARGS_HLP, (RT_COUNT_VA_ARGS_PREFIX_ ## __VA_ARGS__ ## RT_NOTHING, \
2348 RT_COUNT_VA_ARGS_REV_SEQ))
2349
2350#endif /* RT_COMPILER_SUPPORTS_VA_ARGS */
2351
2352
2353/** @def RT_CONCAT
2354 * Concatenate the expanded arguments without any extra spaces in between.
2355 *
2356 * @param a The first part.
2357 * @param b The second part.
2358 */
2359#define RT_CONCAT(a,b) RT_CONCAT_HLP(a,b)
2360/** RT_CONCAT helper, don't use. */
2361#define RT_CONCAT_HLP(a,b) a##b
2362
2363/** @def RT_CONCAT3
2364 * Concatenate the expanded arguments without any extra spaces in between.
2365 *
2366 * @param a The 1st part.
2367 * @param b The 2nd part.
2368 * @param c The 3rd part.
2369 */
2370#define RT_CONCAT3(a,b,c) RT_CONCAT3_HLP(a,b,c)
2371/** RT_CONCAT3 helper, don't use. */
2372#define RT_CONCAT3_HLP(a,b,c) a##b##c
2373
2374/** @def RT_CONCAT4
2375 * Concatenate the expanded arguments without any extra spaces in between.
2376 *
2377 * @param a The 1st part.
2378 * @param b The 2nd part.
2379 * @param c The 3rd part.
2380 * @param d The 4th part.
2381 */
2382#define RT_CONCAT4(a,b,c,d) RT_CONCAT4_HLP(a,b,c,d)
2383/** RT_CONCAT4 helper, don't use. */
2384#define RT_CONCAT4_HLP(a,b,c,d) a##b##c##d
2385
2386/** @def RT_CONCAT5
2387 * Concatenate the expanded arguments without any extra spaces in between.
2388 *
2389 * @param a The 1st part.
2390 * @param b The 2nd part.
2391 * @param c The 3rd part.
2392 * @param d The 4th part.
2393 * @param e The 5th part.
2394 */
2395#define RT_CONCAT5(a,b,c,d,e) RT_CONCAT5_HLP(a,b,c,d,e)
2396/** RT_CONCAT5 helper, don't use. */
2397#define RT_CONCAT5_HLP(a,b,c,d,e) a##b##c##d##e
2398
2399/** @def RT_CONCAT6
2400 * Concatenate the expanded arguments without any extra spaces in between.
2401 *
2402 * @param a The 1st part.
2403 * @param b The 2nd part.
2404 * @param c The 3rd part.
2405 * @param d The 4th part.
2406 * @param e The 5th part.
2407 * @param f The 6th part.
2408 */
2409#define RT_CONCAT6(a,b,c,d,e,f) RT_CONCAT6_HLP(a,b,c,d,e,f)
2410/** RT_CONCAT6 helper, don't use. */
2411#define RT_CONCAT6_HLP(a,b,c,d,e,f) a##b##c##d##e##f
2412
2413/** @def RT_CONCAT7
2414 * Concatenate the expanded arguments without any extra spaces in between.
2415 *
2416 * @param a The 1st part.
2417 * @param b The 2nd part.
2418 * @param c The 3rd part.
2419 * @param d The 4th part.
2420 * @param e The 5th part.
2421 * @param f The 6th part.
2422 * @param g The 7th part.
2423 */
2424#define RT_CONCAT7(a,b,c,d,e,f,g) RT_CONCAT7_HLP(a,b,c,d,e,f,g)
2425/** RT_CONCAT7 helper, don't use. */
2426#define RT_CONCAT7_HLP(a,b,c,d,e,f,g) a##b##c##d##e##f##g
2427
2428/** @def RT_CONCAT8
2429 * Concatenate the expanded arguments without any extra spaces in between.
2430 *
2431 * @param a The 1st part.
2432 * @param b The 2nd part.
2433 * @param c The 3rd part.
2434 * @param d The 4th part.
2435 * @param e The 5th part.
2436 * @param f The 6th part.
2437 * @param g The 7th part.
2438 * @param h The 8th part.
2439 */
2440#define RT_CONCAT8(a,b,c,d,e,f,g,h) RT_CONCAT8_HLP(a,b,c,d,e,f,g,h)
2441/** RT_CONCAT8 helper, don't use. */
2442#define RT_CONCAT8_HLP(a,b,c,d,e,f,g,h) a##b##c##d##e##f##g##h
2443
2444/** @def RT_CONCAT9
2445 * Concatenate the expanded arguments without any extra spaces in between.
2446 *
2447 * @param a The 1st part.
2448 * @param b The 2nd part.
2449 * @param c The 3rd part.
2450 * @param d The 4th part.
2451 * @param e The 5th part.
2452 * @param f The 6th part.
2453 * @param g The 7th part.
2454 * @param h The 8th part.
2455 * @param i The 9th part.
2456 */
2457#define RT_CONCAT9(a,b,c,d,e,f,g,h,i) RT_CONCAT9_HLP(a,b,c,d,e,f,g,h,i)
2458/** RT_CONCAT9 helper, don't use. */
2459#define RT_CONCAT9_HLP(a,b,c,d,e,f,g,h,i) a##b##c##d##e##f##g##h##i
2460
2461/**
2462 * String constant tuple - string constant, strlen(string constant).
2463 *
2464 * @param a_szConst String constant.
2465 * @sa RTSTRTUPLE
2466 */
2467#define RT_STR_TUPLE(a_szConst) a_szConst, (sizeof(a_szConst) - 1)
2468
2469
2470/**
2471 * Macro for using in switch statements that turns constants into strings.
2472 *
2473 * @param a_Const The constant (not string).
2474 */
2475#define RT_CASE_RET_STR(a_Const) case a_Const: return #a_Const
2476
2477
2478/** @def RT_BIT
2479 * Convert a bit number into an integer bitmask (unsigned).
2480 * @param bit The bit number.
2481 */
2482#define RT_BIT(bit) ( 1U << (bit) )
2483
2484/** @def RT_BIT_32
2485 * Convert a bit number into a 32-bit bitmask (unsigned).
2486 * @param bit The bit number.
2487 */
2488#define RT_BIT_32(bit) ( UINT32_C(1) << (bit) )
2489
2490/** @def RT_BIT_64
2491 * Convert a bit number into a 64-bit bitmask (unsigned).
2492 * @param bit The bit number.
2493 */
2494#define RT_BIT_64(bit) ( UINT64_C(1) << (bit) )
2495
2496/** @def RT_BIT_Z
2497 * Convert a bit number into a size_t bitmask (for avoid MSC warnings).
2498 * @param a_iBit The bit number.
2499 */
2500#define RT_BIT_Z(a_iBit) ( (size_t)(1) << (a_iBit) )
2501
2502
2503/** @def RT_BF_GET
2504 * Gets the value of a bit field in an integer value.
2505 *
2506 * This requires a couple of macros to be defined for the field:
2507 * - \<a_FieldNm\>_SHIFT: The shift count to get to the field.
2508 * - \<a_FieldNm\>_MASK: The field mask.
2509 *
2510 * @returns The bit field value.
2511 * @param a_uValue The integer value containing the field.
2512 * @param a_FieldNm The field name prefix for getting at the _SHIFT and
2513 * _MASK macros.
2514 * @sa #RT_BF_CLEAR, #RT_BF_SET, #RT_BF_MAKE, #RT_BF_ZMASK
2515 */
2516#define RT_BF_GET(a_uValue, a_FieldNm) ( ((a_uValue) >> RT_CONCAT(a_FieldNm,_SHIFT)) & RT_BF_ZMASK(a_FieldNm) )
2517
2518/** @def RT_BF_SET
2519 * Sets the given bit field in the integer value.
2520 *
2521 * This requires a couple of macros to be defined for the field:
2522 * - \<a_FieldNm\>_SHIFT: The shift count to get to the field.
2523 * - \<a_FieldNm\>_MASK: The field mask. Must have the same type as the
2524 * integer value!!
2525 *
2526 * @returns Integer value with bit field set to @a a_uFieldValue.
2527 * @param a_uValue The integer value containing the field.
2528 * @param a_FieldNm The field name prefix for getting at the _SHIFT and
2529 * _MASK macros.
2530 * @param a_uFieldValue The new field value.
2531 * @sa #RT_BF_GET, #RT_BF_CLEAR, #RT_BF_MAKE, #RT_BF_ZMASK
2532 */
2533#define RT_BF_SET(a_uValue, a_FieldNm, a_uFieldValue) ( RT_BF_CLEAR(a_uValue, a_FieldNm) | RT_BF_MAKE(a_FieldNm, a_uFieldValue) )
2534
2535/** @def RT_BF_CLEAR
2536 * Clears the given bit field in the integer value.
2537 *
2538 * This requires a couple of macros to be defined for the field:
2539 * - \<a_FieldNm\>_SHIFT: The shift count to get to the field.
2540 * - \<a_FieldNm\>_MASK: The field mask. Must have the same type as the
2541 * integer value!!
2542 *
2543 * @returns Integer value with bit field set to zero.
2544 * @param a_uValue The integer value containing the field.
2545 * @param a_FieldNm The field name prefix for getting at the _SHIFT and
2546 * _MASK macros.
2547 * @sa #RT_BF_GET, #RT_BF_SET, #RT_BF_MAKE, #RT_BF_ZMASK
2548 */
2549#define RT_BF_CLEAR(a_uValue, a_FieldNm) ( (a_uValue) & ~RT_CONCAT(a_FieldNm,_MASK) )
2550
2551/** @def RT_BF_MAKE
2552 * Shifts and masks a bit field value into position in the integer value.
2553 *
2554 * This requires a couple of macros to be defined for the field:
2555 * - \<a_FieldNm\>_SHIFT: The shift count to get to the field.
2556 * - \<a_FieldNm\>_MASK: The field mask.
2557 *
2558 * @param a_FieldNm The field name prefix for getting at the _SHIFT and
2559 * _MASK macros.
2560 * @param a_uFieldValue The field value that should be masked and shifted
2561 * into position.
2562 * @sa #RT_BF_GET, #RT_BF_SET, #RT_BF_CLEAR, #RT_BF_ZMASK
2563 */
2564#define RT_BF_MAKE(a_FieldNm, a_uFieldValue) ( ((a_uFieldValue) & RT_BF_ZMASK(a_FieldNm) ) << RT_CONCAT(a_FieldNm,_SHIFT) )
2565
2566/** @def RT_BF_ZMASK
2567 * Helper for getting the field mask shifted to bit position zero.
2568 *
2569 * @param a_FieldNm The field name prefix for getting at the _SHIFT and
2570 * _MASK macros.
2571 * @sa #RT_BF_GET, #RT_BF_SET, #RT_BF_CLEAR, #RT_BF_MAKE
2572 */
2573#define RT_BF_ZMASK(a_FieldNm) ( RT_CONCAT(a_FieldNm,_MASK) >> RT_CONCAT(a_FieldNm,_SHIFT) )
2574
2575/** Bit field compile time check helper
2576 * @internal */
2577#define RT_BF_CHECK_DO_XOR_MASK(a_uLeft, a_RightPrefix, a_FieldNm) ((a_uLeft) ^ RT_CONCAT3(a_RightPrefix, a_FieldNm, _MASK))
2578/** Bit field compile time check helper
2579 * @internal */
2580#define RT_BF_CHECK_DO_OR_MASK(a_uLeft, a_RightPrefix, a_FieldNm) ((a_uLeft) | RT_CONCAT3(a_RightPrefix, a_FieldNm, _MASK))
2581/** Bit field compile time check helper
2582 * @internal */
2583#define RT_BF_CHECK_DO_1ST_MASK_BIT(a_uLeft, a_RightPrefix, a_FieldNm) \
2584 ((a_uLeft) && ( (RT_CONCAT3(a_RightPrefix, a_FieldNm, _MASK) >> RT_CONCAT3(a_RightPrefix, a_FieldNm, _SHIFT)) & 1U ) )
2585/** Used to check that a bit field mask does not start too early.
2586 * @internal */
2587#define RT_BF_CHECK_DO_MASK_START(a_uLeft, a_RightPrefix, a_FieldNm) \
2588 ( (a_uLeft) \
2589 && ( RT_CONCAT3(a_RightPrefix, a_FieldNm, _SHIFT) == 0 \
2590 || ( ( ( ((RT_CONCAT3(a_RightPrefix, a_FieldNm, _MASK) >> RT_CONCAT3(a_RightPrefix, a_FieldNm, _SHIFT)) & 1U) \
2591 << RT_CONCAT3(a_RightPrefix, a_FieldNm, _SHIFT)) /* => single bit mask, correct type */ \
2592 - 1U) /* => mask of all bits below the field */ \
2593 & RT_CONCAT3(a_RightPrefix, a_FieldNm, _MASK)) == 0 ) )
2594/** @name Bit field compile time check recursion workers.
2595 * @internal
2596 * @{ */
2597#define RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix, f1) \
2598 a_DoThis(a_uLeft, a_RightPrefix, f1)
2599#define RT_BF_CHECK_DO_2(a_DoThis, a_uLeft, a_RightPrefix, f1, f2) \
2600 RT_BF_CHECK_DO_1(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2)
2601#define RT_BF_CHECK_DO_3(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3) \
2602 RT_BF_CHECK_DO_2(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3)
2603#define RT_BF_CHECK_DO_4(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4) \
2604 RT_BF_CHECK_DO_3(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4)
2605#define RT_BF_CHECK_DO_5(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5) \
2606 RT_BF_CHECK_DO_4(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5)
2607#define RT_BF_CHECK_DO_6(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6) \
2608 RT_BF_CHECK_DO_5(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6)
2609#define RT_BF_CHECK_DO_7(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7) \
2610 RT_BF_CHECK_DO_6(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7)
2611#define RT_BF_CHECK_DO_8(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8) \
2612 RT_BF_CHECK_DO_7(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8)
2613#define RT_BF_CHECK_DO_9(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
2614 RT_BF_CHECK_DO_8(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9)
2615#define RT_BF_CHECK_DO_10(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10) \
2616 RT_BF_CHECK_DO_9(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10)
2617#define RT_BF_CHECK_DO_11(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11) \
2618 RT_BF_CHECK_DO_10(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11)
2619#define RT_BF_CHECK_DO_12(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12) \
2620 RT_BF_CHECK_DO_11(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12)
2621#define RT_BF_CHECK_DO_13(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13) \
2622 RT_BF_CHECK_DO_12(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13)
2623#define RT_BF_CHECK_DO_14(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14) \
2624 RT_BF_CHECK_DO_13(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14)
2625#define RT_BF_CHECK_DO_15(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15) \
2626 RT_BF_CHECK_DO_14(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15)
2627#define RT_BF_CHECK_DO_16(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16) \
2628 RT_BF_CHECK_DO_15(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16)
2629#define RT_BF_CHECK_DO_17(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17) \
2630 RT_BF_CHECK_DO_16(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17)
2631#define RT_BF_CHECK_DO_18(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18) \
2632 RT_BF_CHECK_DO_17(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18)
2633#define RT_BF_CHECK_DO_19(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19) \
2634 RT_BF_CHECK_DO_18(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19)
2635#define RT_BF_CHECK_DO_20(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20) \
2636 RT_BF_CHECK_DO_19(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20)
2637#define RT_BF_CHECK_DO_21(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21) \
2638 RT_BF_CHECK_DO_20(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21)
2639#define RT_BF_CHECK_DO_22(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22) \
2640 RT_BF_CHECK_DO_21(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22)
2641#define RT_BF_CHECK_DO_23(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23) \
2642 RT_BF_CHECK_DO_22(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23)
2643#define RT_BF_CHECK_DO_24(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24) \
2644 RT_BF_CHECK_DO_23(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24)
2645#define RT_BF_CHECK_DO_25(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25) \
2646 RT_BF_CHECK_DO_24(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25)
2647#define RT_BF_CHECK_DO_26(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26) \
2648 RT_BF_CHECK_DO_25(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26)
2649#define RT_BF_CHECK_DO_27(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27) \
2650 RT_BF_CHECK_DO_26(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27)
2651#define RT_BF_CHECK_DO_28(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28) \
2652 RT_BF_CHECK_DO_27(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28)
2653#define RT_BF_CHECK_DO_29(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29) \
2654 RT_BF_CHECK_DO_28(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29)
2655#define RT_BF_CHECK_DO_30(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30) \
2656 RT_BF_CHECK_DO_29(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30)
2657#define RT_BF_CHECK_DO_31(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31) \
2658 RT_BF_CHECK_DO_30(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31)
2659#define RT_BF_CHECK_DO_32(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32) \
2660 RT_BF_CHECK_DO_31(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32)
2661#define RT_BF_CHECK_DO_33(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33) \
2662 RT_BF_CHECK_DO_32(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33)
2663#define RT_BF_CHECK_DO_34(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34) \
2664 RT_BF_CHECK_DO_33(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34)
2665#define RT_BF_CHECK_DO_35(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35) \
2666 RT_BF_CHECK_DO_34(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35)
2667#define RT_BF_CHECK_DO_36(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36) \
2668 RT_BF_CHECK_DO_35(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36)
2669#define RT_BF_CHECK_DO_37(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37) \
2670 RT_BF_CHECK_DO_36(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37)
2671#define RT_BF_CHECK_DO_38(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38) \
2672 RT_BF_CHECK_DO_37(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38)
2673#define RT_BF_CHECK_DO_39(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39) \
2674 RT_BF_CHECK_DO_38(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39)
2675#define RT_BF_CHECK_DO_40(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40) \
2676 RT_BF_CHECK_DO_39(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40)
2677#define RT_BF_CHECK_DO_41(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41) \
2678 RT_BF_CHECK_DO_40(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41)
2679#define RT_BF_CHECK_DO_42(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42) \
2680 RT_BF_CHECK_DO_41(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42)
2681#define RT_BF_CHECK_DO_43(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43) \
2682 RT_BF_CHECK_DO_42(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43)
2683#define RT_BF_CHECK_DO_44(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44) \
2684 RT_BF_CHECK_DO_43(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44)
2685#define RT_BF_CHECK_DO_45(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45) \
2686 RT_BF_CHECK_DO_44(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45)
2687#define RT_BF_CHECK_DO_46(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46) \
2688 RT_BF_CHECK_DO_45(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46)
2689#define RT_BF_CHECK_DO_47(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47) \
2690 RT_BF_CHECK_DO_46(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47)
2691#define RT_BF_CHECK_DO_48(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48) \
2692 RT_BF_CHECK_DO_47(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48)
2693#define RT_BF_CHECK_DO_49(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49) \
2694 RT_BF_CHECK_DO_48(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49)
2695#define RT_BF_CHECK_DO_50(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50) \
2696 RT_BF_CHECK_DO_49(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50)
2697#define RT_BF_CHECK_DO_51(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51) \
2698 RT_BF_CHECK_DO_40(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51)
2699#define RT_BF_CHECK_DO_52(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52) \
2700 RT_BF_CHECK_DO_51(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52)
2701#define RT_BF_CHECK_DO_53(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53) \
2702 RT_BF_CHECK_DO_52(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53)
2703#define RT_BF_CHECK_DO_54(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54) \
2704 RT_BF_CHECK_DO_53(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54)
2705#define RT_BF_CHECK_DO_55(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55) \
2706 RT_BF_CHECK_DO_54(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55)
2707#define RT_BF_CHECK_DO_56(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56) \
2708 RT_BF_CHECK_DO_55(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56)
2709#define RT_BF_CHECK_DO_57(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57) \
2710 RT_BF_CHECK_DO_56(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57)
2711#define RT_BF_CHECK_DO_58(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58) \
2712 RT_BF_CHECK_DO_57(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58)
2713#define RT_BF_CHECK_DO_59(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59) \
2714 RT_BF_CHECK_DO_58(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59)
2715#define RT_BF_CHECK_DO_60(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60) \
2716 RT_BF_CHECK_DO_59(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60)
2717#define RT_BF_CHECK_DO_61(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61) \
2718 RT_BF_CHECK_DO_60(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61)
2719#define RT_BF_CHECK_DO_62(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61, f62) \
2720 RT_BF_CHECK_DO_61(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61, f62)
2721#define RT_BF_CHECK_DO_63(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61, f62, f63) \
2722 RT_BF_CHECK_DO_62(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61, f62, f63)
2723#define RT_BF_CHECK_DO_64(a_DoThis, a_uLeft, a_RightPrefix, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61, f62, f63, f64) \
2724 RT_BF_CHECK_DO_63(a_DoThis, RT_BF_CHECK_DO_1(a_DoThis, a_uLeft, a_RightPrefix,f1), a_RightPrefix, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16, f17, f18, f19, f20, f21, f22, f23, f24, f25, f26, f27, f28, f29, f30, f31, f32, f33, f34, f35, f36, f37, f38, f39, f40, f41, f42, f43, f44, f45, f46, f47, f48, f49, f50, f51, f52, f53, f54, f55, f56, f57, f58, f59, f60, f61, f62, f63, f64)
2725/** @} */
2726
2727/** @def RT_BF_ASSERT_COMPILE_CHECKS
2728 * Emits a series of AssertCompile statements checking that the bit-field
2729 * declarations doesn't overlap, has holes, and generally makes some sense.
2730 *
2731 * This requires variadic macros because its too much to type otherwise.
2732 */
2733#if defined(RT_COMPILER_SUPPORTS_VA_ARGS) || defined(DOXYGEN_RUNNING)
2734# define RT_BF_ASSERT_COMPILE_CHECKS(a_Prefix, a_uZero, a_uCovered, a_Fields) \
2735 AssertCompile(RT_BF_CHECK_DO_N(RT_BF_CHECK_DO_OR_MASK, a_uZero, a_Prefix, RT_UNPACK_ARGS a_Fields ) == a_uCovered); \
2736 AssertCompile(RT_BF_CHECK_DO_N(RT_BF_CHECK_DO_XOR_MASK, a_uCovered, a_Prefix, RT_UNPACK_ARGS a_Fields ) == 0); \
2737 AssertCompile(RT_BF_CHECK_DO_N(RT_BF_CHECK_DO_1ST_MASK_BIT, true, a_Prefix, RT_UNPACK_ARGS a_Fields ) == true); \
2738 AssertCompile(RT_BF_CHECK_DO_N(RT_BF_CHECK_DO_MASK_START, true, a_Prefix, RT_UNPACK_ARGS a_Fields ) == true)
2739/** Bit field compile time check helper
2740 * @internal */
2741# define RT_BF_CHECK_DO_N(a_DoThis, a_uLeft, a_RightPrefix, ...) \
2742 RT_UNPACK_CALL(RT_CONCAT(RT_BF_CHECK_DO_, RT_EXPAND(RT_COUNT_VA_ARGS(__VA_ARGS__))), (a_DoThis, a_uLeft, a_RightPrefix, __VA_ARGS__))
2743#else
2744# define RT_BF_ASSERT_COMPILE_CHECKS(a_Prefix, a_uZero, a_uCovered, a_Fields) AssertCompile(true)
2745#endif
2746
2747
2748/** @def RT_ALIGN
2749 * Align macro.
2750 * @param u Value to align.
2751 * @param uAlignment The alignment. Power of two!
2752 *
2753 * @remark Be extremely careful when using this macro with type which sizeof != sizeof int.
2754 * When possible use any of the other RT_ALIGN_* macros. And when that's not
2755 * possible, make 101% sure that uAlignment is specified with a right sized type.
2756 *
2757 * Specifying an unsigned 32-bit alignment constant with a 64-bit value will give
2758 * you a 32-bit return value!
2759 *
2760 * In short: Don't use this macro. Use RT_ALIGN_T() instead.
2761 */
2762#define RT_ALIGN(u, uAlignment) ( ((u) + ((uAlignment) - 1)) & ~((uAlignment) - 1) )
2763
2764/** @def RT_ALIGN_T
2765 * Align macro.
2766 * @param u Value to align.
2767 * @param uAlignment The alignment. Power of two!
2768 * @param type Integer type to use while aligning.
2769 * @remark This macro is the preferred alignment macro, it doesn't have any of the pitfalls RT_ALIGN has.
2770 */
2771#define RT_ALIGN_T(u, uAlignment, type) ( ((type)(u) + ((uAlignment) - 1)) & ~(type)((uAlignment) - 1) )
2772
2773/** @def RT_ALIGN_32
2774 * Align macro for a 32-bit value.
2775 * @param u32 Value to align.
2776 * @param uAlignment The alignment. Power of two!
2777 */
2778#define RT_ALIGN_32(u32, uAlignment) RT_ALIGN_T(u32, uAlignment, uint32_t)
2779
2780/** @def RT_ALIGN_64
2781 * Align macro for a 64-bit value.
2782 * @param u64 Value to align.
2783 * @param uAlignment The alignment. Power of two!
2784 */
2785#define RT_ALIGN_64(u64, uAlignment) RT_ALIGN_T(u64, uAlignment, uint64_t)
2786
2787/** @def RT_ALIGN_Z
2788 * Align macro for size_t.
2789 * @param cb Value to align.
2790 * @param uAlignment The alignment. Power of two!
2791 */
2792#define RT_ALIGN_Z(cb, uAlignment) RT_ALIGN_T(cb, uAlignment, size_t)
2793
2794/** @def RT_ALIGN_P
2795 * Align macro for pointers.
2796 * @param pv Value to align.
2797 * @param uAlignment The alignment. Power of two!
2798 */
2799#define RT_ALIGN_P(pv, uAlignment) RT_ALIGN_PT(pv, uAlignment, void *)
2800
2801/** @def RT_ALIGN_PT
2802 * Align macro for pointers with type cast.
2803 * @param u Value to align.
2804 * @param uAlignment The alignment. Power of two!
2805 * @param CastType The type to cast the result to.
2806 */
2807#define RT_ALIGN_PT(u, uAlignment, CastType) ( (CastType)RT_ALIGN_T(u, uAlignment, uintptr_t) )
2808
2809/** @def RT_ALIGN_R3PT
2810 * Align macro for ring-3 pointers with type cast.
2811 * @param u Value to align.
2812 * @param uAlignment The alignment. Power of two!
2813 * @param CastType The type to cast the result to.
2814 */
2815#define RT_ALIGN_R3PT(u, uAlignment, CastType) ( (CastType)RT_ALIGN_T(u, uAlignment, RTR3UINTPTR) )
2816
2817/** @def RT_ALIGN_R0PT
2818 * Align macro for ring-0 pointers with type cast.
2819 * @param u Value to align.
2820 * @param uAlignment The alignment. Power of two!
2821 * @param CastType The type to cast the result to.
2822 */
2823#define RT_ALIGN_R0PT(u, uAlignment, CastType) ( (CastType)RT_ALIGN_T(u, uAlignment, RTR0UINTPTR) )
2824
2825/** @def RT_ALIGN_GCPT
2826 * Align macro for GC pointers with type cast.
2827 * @param u Value to align.
2828 * @param uAlignment The alignment. Power of two!
2829 * @param CastType The type to cast the result to.
2830 */
2831#define RT_ALIGN_GCPT(u, uAlignment, CastType) ( (CastType)RT_ALIGN_T(u, uAlignment, RTGCUINTPTR) )
2832
2833
2834/** @def RT_OFFSETOF
2835 * Our own special offsetof() variant, returns a signed result.
2836 *
2837 * @returns offset into the structure of the specified member. signed.
2838 * @param type Structure type.
2839 * @param member Member.
2840 *
2841 * @remarks Only use this for static offset calculations. Please
2842 * use RT_UOFFSETOF_DYN for dynamic ones (i.e. involves
2843 * non-constant array indexing).
2844 *
2845 */
2846#if RT_GNUC_PREREQ(4, 0)
2847# define RT_OFFSETOF(type, member) ( (int)__builtin_offsetof(type, member) )
2848#else
2849# define RT_OFFSETOF(type, member) ( (int)(intptr_t)&( ((type *)(void *)0)->member) )
2850#endif
2851
2852/** @def RT_UOFFSETOF
2853 * Our own offsetof() variant, returns an unsigned result.
2854 *
2855 * @returns offset into the structure of the specified member. unsigned.
2856 * @param type Structure type.
2857 * @param member Member.
2858 *
2859 * @remarks Only use this for static offset calculations. Please
2860 * use RT_UOFFSETOF_DYN for dynamic ones (i.e. involves
2861 * non-constant array indexing).
2862 */
2863#if RT_GNUC_PREREQ(4, 0)
2864# define RT_UOFFSETOF(type, member) ( (uintptr_t)__builtin_offsetof(type, member) )
2865#else
2866# define RT_UOFFSETOF(type, member) ( (uintptr_t)&( ((type *)(void *)0)->member) )
2867#endif
2868
2869/** @def RT_OFFSETOF_ADD
2870 * RT_OFFSETOF with an addend.
2871 *
2872 * @returns offset into the structure of the specified member. signed.
2873 * @param type Structure type.
2874 * @param member Member.
2875 * @param addend The addend to add to the offset.
2876 *
2877 * @remarks Only use this for static offset calculations.
2878 */
2879#define RT_OFFSETOF_ADD(type, member, addend) ( (int)RT_UOFFSETOF_ADD(type, member, addend) )
2880
2881/** @def RT_UOFFSETOF_ADD
2882 * RT_UOFFSETOF with an addend.
2883 *
2884 * @returns offset into the structure of the specified member. signed.
2885 * @param type Structure type.
2886 * @param member Member.
2887 * @param addend The addend to add to the offset.
2888 *
2889 * @remarks Only use this for static offset calculations.
2890 */
2891#if RT_GNUC_PREREQ(4, 0)
2892# define RT_UOFFSETOF_ADD(type, member, addend) ( (uintptr_t)(__builtin_offsetof(type, member) + (addend)))
2893#else
2894# define RT_UOFFSETOF_ADD(type, member, addend) ( (uintptr_t)&( ((type *)(void *)(uintptr_t)(addend))->member) )
2895#endif
2896
2897/** @def RT_UOFFSETOF_DYN
2898 * Dynamic (runtime) structure offset calculations, involving
2899 * indexing of array members via variable.
2900 *
2901 * @returns offset into the structure of the specified member. signed.
2902 * @param type Structure type.
2903 * @param memberarray Member.
2904 */
2905#if defined(__cplusplus) && RT_GNUC_PREREQ(4, 4)
2906# define RT_UOFFSETOF_DYN(type, memberarray) ( (uintptr_t)&( ((type *)(void *)0x1000)->memberarray) - 0x1000 )
2907#else
2908# define RT_UOFFSETOF_DYN(type, memberarray) ( (uintptr_t)&( ((type *)(void *)0)->memberarray) )
2909#endif
2910
2911
2912/** @def RT_SIZEOFMEMB
2913 * Get the size of a structure member.
2914 *
2915 * @returns size of the structure member.
2916 * @param type Structure type.
2917 * @param member Member.
2918 */
2919#define RT_SIZEOFMEMB(type, member) ( sizeof(((type *)(void *)0)->member) )
2920
2921/** @def RT_UOFFSET_AFTER
2922 * Returns the offset of the first byte following a structure/union member.
2923 *
2924 * @return byte offset into the struct.
2925 * @param a_Type Structure type.
2926 * @param a_Member The member name.
2927 */
2928#define RT_UOFFSET_AFTER(a_Type, a_Member) ( RT_UOFFSETOF(a_Type, a_Member) + RT_SIZEOFMEMB(a_Type, a_Member) )
2929
2930/** @def RT_FROM_MEMBER
2931 * Convert a pointer to a structure member into a pointer to the structure.
2932 *
2933 * @returns pointer to the structure.
2934 * @param pMem Pointer to the member.
2935 * @param Type Structure type.
2936 * @param Member Member name.
2937 */
2938#define RT_FROM_MEMBER(pMem, Type, Member) ( (Type *) ((uint8_t *)(void *)(pMem) - RT_UOFFSETOF(Type, Member)) )
2939
2940/** @def RT_FROM_CPP_MEMBER
2941 * Same as RT_FROM_MEMBER except it avoids the annoying g++ warnings about
2942 * invalid access to non-static data member of NULL object.
2943 *
2944 * @returns pointer to the structure.
2945 * @param pMem Pointer to the member.
2946 * @param Type Structure type.
2947 * @param Member Member name.
2948 *
2949 * @remarks Using the __builtin_offsetof does not shut up the compiler.
2950 */
2951#if defined(__GNUC__) && defined(__cplusplus)
2952# define RT_FROM_CPP_MEMBER(pMem, Type, Member) \
2953 ( (Type *) ((uintptr_t)(pMem) - (uintptr_t)&((Type *)0x1000)->Member + 0x1000U) )
2954#else
2955# define RT_FROM_CPP_MEMBER(pMem, Type, Member) RT_FROM_MEMBER(pMem, Type, Member)
2956#endif
2957
2958/** @def RT_FROM_MEMBER_DYN
2959 * Convert a pointer to a structure member into a pointer to the structure.
2960 *
2961 * @returns pointer to the structure.
2962 * @param pMem Pointer to the member.
2963 * @param Type Structure type.
2964 * @param Member Member name dynamic size (some array is index by
2965 * non-constant value).
2966 */
2967#define RT_FROM_MEMBER_DYN(pMem, Type, Member) ( (Type *) ((uint8_t *)(void *)(pMem) - RT_UOFFSETOF_DYN(Type, Member)) )
2968
2969/** @def RT_ELEMENTS
2970 * Calculates the number of elements in a statically sized array.
2971 * @returns Element count.
2972 * @param aArray Array in question.
2973 */
2974#define RT_ELEMENTS(aArray) ( sizeof(aArray) / sizeof((aArray)[0]) )
2975
2976/** @def RT_SAFE_SUBSCRIPT
2977 * Safe array subscript using modulo and size_t cast.
2978 * @param a_Array The array.
2979 * @param a_idx The array index, cast to size_t to ensure unsigned.
2980 */
2981#define RT_SAFE_SUBSCRIPT(a_Array, a_idx) (a_Array)[(size_t)(a_idx) % RT_ELEMENTS(a_Array)]
2982
2983/** @def RT_SAFE_SUBSCRIPT32
2984 * Safe array subscript using modulo and uint32_t cast.
2985 * @param a_Array The array.
2986 * @param a_idx The array index, cast to size_t to ensure unsigned.
2987 * @note Only consider using this if array size is not power of two.
2988 */
2989#define RT_SAFE_SUBSCRIPT32(a_Array, a_idx) (a_Array)[(uint32_t)(a_idx) % RT_ELEMENTS(a_Array)]
2990
2991/** @def RT_SAFE_SUBSCRIPT16
2992 * Safe array subscript using modulo and uint16_t cast.
2993 * @param a_Array The array.
2994 * @param a_idx The array index, cast to size_t to ensure unsigned.
2995 * @note Only consider using this if array size is not power of two.
2996 */
2997#define RT_SAFE_SUBSCRIPT16(a_Array, a_idx) (a_Array)[(uint16_t)(a_idx) % RT_ELEMENTS(a_Array)]
2998
2999/** @def RT_SAFE_SUBSCRIPT8
3000 * Safe array subscript using modulo and uint8_t cast.
3001 * @param a_Array The array.
3002 * @param a_idx The array index, cast to size_t to ensure unsigned.
3003 * @note Only consider using this if array size is not power of two.
3004 */
3005#define RT_SAFE_SUBSCRIPT8(a_Array, a_idx) (a_Array)[(uint8_t)(a_idx) % RT_ELEMENTS(a_Array)]
3006
3007/** @def RT_SAFE_SUBSCRIPT_NC
3008 * Safe array subscript using modulo but no cast.
3009 * @param a_Array The array.
3010 * @param a_idx The array index - assumes unsigned type.
3011 * @note Only consider using this if array size is not power of two.
3012 */
3013#define RT_SAFE_SUBSCRIPT_NC(a_Array, a_idx) (a_Array)[(a_idx) % RT_ELEMENTS(a_Array)]
3014
3015/** @def RT_FLEXIBLE_ARRAY
3016 * What to up inside the square brackets when declaring a structure member
3017 * with a flexible size.
3018 *
3019 * @note RT_FLEXIBLE_ARRAY_EXTENSION must always preceed the type, unless
3020 * it's C-only code.
3021 *
3022 * @note Use RT_UOFFSETOF() to calculate the structure size.
3023 *
3024 * @note Never do a sizeof() on the structure or member!
3025 *
3026 * @note The member must be the last one.
3027 *
3028 * @note GCC does not permit using this in a union. So, for unions you must
3029 * use RT_FLEXIBLE_ARRAY_IN_UNION instead.
3030 *
3031 * @note GCC does not permit using this in nested structures, where as MSC
3032 * does. So, use RT_FLEXIBLE_ARRAY_NESTED for that.
3033 *
3034 * @sa RT_FLEXIBLE_ARRAY_NESTED, RT_FLEXIBLE_ARRAY_IN_UNION
3035 */
3036#if RT_MSC_PREREQ(RT_MSC_VER_VS2005) /** @todo Probably much much earlier. */ \
3037 || (defined(__cplusplus) && RT_GNUC_PREREQ(6, 1)) /* not tested 7.x, but hope it works with __extension__ too. */ \
3038 || defined(__WATCOMC__) /* openwatcom 1.9 supports it, we don't care about older atm. */ \
3039 || RT_CLANG_PREREQ_EX(3, 4, 0) /* Only tested clang v3.4, support is probably older. */
3040# define RT_FLEXIBLE_ARRAY
3041# if defined(__cplusplus) && defined(_MSC_VER)
3042# pragma warning(disable:4200) /* -wd4200 does not work with VS2010 */
3043# pragma warning(disable:4815) /* -wd4815 does not work with VS2019 */
3044# endif
3045#elif defined(__STDC_VERSION__)
3046# if __STDC_VERSION__ >= 199901L
3047# define RT_FLEXIBLE_ARRAY
3048# else /* __STDC_VERSION__ < 199901L */
3049# define RT_FLEXIBLE_ARRAY 1
3050# endif /* __STDC_VERSION__ < 199901L */
3051#else
3052# define RT_FLEXIBLE_ARRAY 1
3053#endif
3054
3055/** @def RT_FLEXIBLE_ARRAY_EXTENSION
3056 * A trick to make GNU C++ quietly accept flexible arrays in C++ code when
3057 * pedantic warnings are enabled. Put this on the line before the flexible
3058 * array. */
3059#if (RT_GNUC_PREREQ(7, 0) && defined(__cplusplus)) || defined(DOXGYEN_RUNNING)
3060# define RT_FLEXIBLE_ARRAY_EXTENSION RT_GCC_EXTENSION
3061#else
3062# define RT_FLEXIBLE_ARRAY_EXTENSION
3063#endif
3064
3065/** @def RT_FLEXIBLE_ARRAY_NESTED
3066 * Variant of RT_FLEXIBLE_ARRAY for use in structures that are nested.
3067 *
3068 * GCC only allow the use of flexible array member in the top structure, whereas
3069 * MSC is less strict and let you do struct { struct { char szName[]; } s; };
3070 *
3071 * @note See notes for RT_FLEXIBLE_ARRAY.
3072 *
3073 * @note GCC does not permit using this in a union. So, for unions you must
3074 * use RT_FLEXIBLE_ARRAY_IN_NESTED_UNION instead.
3075 *
3076 * @sa RT_FLEXIBLE_ARRAY, RT_FLEXIBLE_ARRAY_IN_NESTED_UNION
3077 */
3078#ifdef _MSC_VER
3079# define RT_FLEXIBLE_ARRAY_NESTED RT_FLEXIBLE_ARRAY
3080#else
3081# define RT_FLEXIBLE_ARRAY_NESTED 1
3082#endif
3083
3084/** @def RT_FLEXIBLE_ARRAY_IN_UNION
3085 * The union version of RT_FLEXIBLE_ARRAY.
3086 *
3087 * @remarks GCC does not support flexible array members in unions, 6.1.x
3088 * actively checks for this. Visual C++ 2010 seems happy with it.
3089 *
3090 * @note See notes for RT_FLEXIBLE_ARRAY.
3091 *
3092 * @sa RT_FLEXIBLE_ARRAY, RT_FLEXIBLE_ARRAY_IN_NESTED_UNION
3093 */
3094#ifdef _MSC_VER
3095# define RT_FLEXIBLE_ARRAY_IN_UNION RT_FLEXIBLE_ARRAY
3096#else
3097# define RT_FLEXIBLE_ARRAY_IN_UNION 1
3098#endif
3099
3100/** @def RT_FLEXIBLE_ARRAY_IN_NESTED_UNION
3101 * The union version of RT_FLEXIBLE_ARRAY_NESTED.
3102 *
3103 * @note See notes for RT_FLEXIBLE_ARRAY.
3104 *
3105 * @sa RT_FLEXIBLE_ARRAY, RT_FLEXIBLE_ARRAY_IN_NESTED_UNION
3106 */
3107#ifdef _MSC_VER
3108# define RT_FLEXIBLE_ARRAY_IN_NESTED_UNION RT_FLEXIBLE_ARRAY_NESTED
3109#else
3110# define RT_FLEXIBLE_ARRAY_IN_NESTED_UNION 1
3111#endif
3112
3113/** @def RT_UNION_NM
3114 * For compilers (like DTrace) that does not grok nameless unions, we have a
3115 * little hack to make them palatable.
3116 */
3117/** @def RT_STRUCT_NM
3118 * For compilers (like DTrace) that does not grok nameless structs (it is
3119 * non-standard C++), we have a little hack to make them palatable.
3120 */
3121#ifdef IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
3122# define RT_UNION_NM(a_Nm) a_Nm
3123# define RT_STRUCT_NM(a_Nm) a_Nm
3124#else
3125# define RT_UNION_NM(a_Nm)
3126# define RT_STRUCT_NM(a_Nm)
3127#endif
3128
3129/**
3130 * Checks if the value is a power of two.
3131 *
3132 * @returns true if power of two, false if not.
3133 * @param uVal The value to test.
3134 * @remarks 0 is a power of two.
3135 * @see VERR_NOT_POWER_OF_TWO
3136 */
3137#define RT_IS_POWER_OF_TWO(uVal) ( ((uVal) & ((uVal) - 1)) == 0)
3138
3139#ifdef RT_OS_OS2
3140/* Undefine RT_MAX since there is an unfortunate clash with the max
3141 resource type define in os2.h. */
3142# undef RT_MAX
3143#endif
3144
3145/** @def RT_MAX
3146 * Finds the maximum value.
3147 * @returns The higher of the two.
3148 * @param Value1 Value 1
3149 * @param Value2 Value 2
3150 */
3151#define RT_MAX(Value1, Value2) ( (Value1) >= (Value2) ? (Value1) : (Value2) )
3152
3153/** @def RT_MIN
3154 * Finds the minimum value.
3155 * @returns The lower of the two.
3156 * @param Value1 Value 1
3157 * @param Value2 Value 2
3158 */
3159#define RT_MIN(Value1, Value2) ( (Value1) <= (Value2) ? (Value1) : (Value2) )
3160
3161/** @def RT_CLAMP
3162 * Clamps the value to minimum and maximum values.
3163 * @returns The clamped value.
3164 * @param Value The value to check.
3165 * @param Min Minimum value.
3166 * @param Max Maximum value.
3167 */
3168#define RT_CLAMP(Value, Min, Max) ( (Value) > (Max) ? (Max) : (Value) < (Min) ? (Min) : (Value) )
3169
3170/** @def RT_ABS
3171 * Get the absolute (non-negative) value.
3172 * @returns The absolute value of Value.
3173 * @param Value The value.
3174 */
3175#define RT_ABS(Value) ( (Value) >= 0 ? (Value) : -(Value) )
3176
3177/** @def RT_BOOL
3178 * Turn non-zero/zero into true/false
3179 * @returns The resulting boolean value.
3180 * @param Value The value.
3181 */
3182#define RT_BOOL(Value) ( !!(Value) )
3183
3184/** @def RT_LO_U8
3185 * Gets the low uint8_t of a uint16_t or something equivalent. */
3186#ifdef __GNUC__
3187# define RT_LO_U8(a) __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint16_t)); (uint8_t)(a); })
3188#elif defined(_MSC_VER) /* shut up cast truncates constant value warnings */
3189# define RT_LO_U8(a) ( (uint8_t)(UINT8_MAX & (a)) )
3190#else
3191# define RT_LO_U8(a) ( (uint8_t)(a) )
3192#endif
3193/** @def RT_HI_U8
3194 * Gets the high uint8_t of a uint16_t or something equivalent. */
3195#ifdef __GNUC__
3196# define RT_HI_U8(a) __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint16_t)); (uint8_t)((a) >> 8); })
3197#else
3198# define RT_HI_U8(a) ( (uint8_t)((a) >> 8) )
3199#endif
3200
3201/** @def RT_LO_U16
3202 * Gets the low uint16_t of a uint32_t or something equivalent. */
3203#ifdef __GNUC__
3204# define RT_LO_U16(a) __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint32_t)); (uint16_t)(a); })
3205#elif defined(_MSC_VER) /* shut up cast truncates constant value warnings */
3206# define RT_LO_U16(a) ( (uint16_t)(UINT16_MAX & (a)) )
3207#else
3208# define RT_LO_U16(a) ( (uint16_t)(a) )
3209#endif
3210/** @def RT_HI_U16
3211 * Gets the high uint16_t of a uint32_t or something equivalent. */
3212#ifdef __GNUC__
3213# define RT_HI_U16(a) __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint32_t)); (uint16_t)((a) >> 16); })
3214#else
3215# define RT_HI_U16(a) ( (uint16_t)((a) >> 16) )
3216#endif
3217
3218/** @def RT_LO_U32
3219 * Gets the low uint32_t of a uint64_t or something equivalent. */
3220#ifdef __GNUC__
3221# define RT_LO_U32(a) __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint64_t)); (uint32_t)(a); })
3222#elif defined(_MSC_VER) /* shut up cast truncates constant value warnings */
3223# define RT_LO_U32(a) ( (uint32_t)(UINT32_MAX & (a)) )
3224#else
3225# define RT_LO_U32(a) ( (uint32_t)(a) )
3226#endif
3227/** @def RT_HI_U32
3228 * Gets the high uint32_t of a uint64_t or something equivalent. */
3229#ifdef __GNUC__
3230# define RT_HI_U32(a) __extension__ ({ AssertCompile(sizeof((a)) == sizeof(uint64_t)); (uint32_t)((a) >> 32); })
3231#else
3232# define RT_HI_U32(a) ( (uint32_t)((a) >> 32) )
3233#endif
3234
3235/** @def RT_BYTE1
3236 * Gets the first byte of something. */
3237#define RT_BYTE1(a) ( (uint8_t)((a) & 0xff) )
3238/** @def RT_BYTE2
3239 * Gets the second byte of something. */
3240#define RT_BYTE2(a) ( (uint8_t)(((a) >> 8) & 0xff) )
3241/** @def RT_BYTE3
3242 * Gets the second byte of something. */
3243#define RT_BYTE3(a) ( (uint8_t)(((a) >> 16) & 0xff) )
3244/** @def RT_BYTE4
3245 * Gets the fourth byte of something. */
3246#define RT_BYTE4(a) ( (uint8_t)(((a) >> 24) & 0xff) )
3247/** @def RT_BYTE5
3248 * Gets the fifth byte of something. */
3249#define RT_BYTE5(a) ( (uint8_t)(((a) >> 32) & 0xff) )
3250/** @def RT_BYTE6
3251 * Gets the sixth byte of something. */
3252#define RT_BYTE6(a) ( (uint8_t)(((a) >> 40) & 0xff) )
3253/** @def RT_BYTE7
3254 * Gets the seventh byte of something. */
3255#define RT_BYTE7(a) ( (uint8_t)(((a) >> 48) & 0xff) )
3256/** @def RT_BYTE8
3257 * Gets the eight byte of something. */
3258#define RT_BYTE8(a) ( (uint8_t)(((a) >> 56) & 0xff) )
3259
3260
3261/** @def RT_LODWORD
3262 * Gets the low dword (=uint32_t) of something.
3263 * @deprecated Use RT_LO_U32. */
3264#define RT_LODWORD(a) ( (uint32_t)(a) )
3265/** @def RT_HIDWORD
3266 * Gets the high dword (=uint32_t) of a 64-bit of something.
3267 * @deprecated Use RT_HI_U32. */
3268#define RT_HIDWORD(a) ( (uint32_t)((a) >> 32) )
3269
3270/** @def RT_LOWORD
3271 * Gets the low word (=uint16_t) of something.
3272 * @deprecated Use RT_LO_U16. */
3273#define RT_LOWORD(a) ( (a) & 0xffff )
3274/** @def RT_HIWORD
3275 * Gets the high word (=uint16_t) of a 32-bit something.
3276 * @deprecated Use RT_HI_U16. */
3277#define RT_HIWORD(a) ( (a) >> 16 )
3278
3279/** @def RT_LOBYTE
3280 * Gets the low byte of something.
3281 * @deprecated Use RT_LO_U8. */
3282#define RT_LOBYTE(a) ( (a) & 0xff )
3283/** @def RT_HIBYTE
3284 * Gets the high byte of a 16-bit something.
3285 * @deprecated Use RT_HI_U8. */
3286#define RT_HIBYTE(a) ( (a) >> 8 )
3287
3288
3289/** @def RT_MAKE_U64
3290 * Constructs a uint64_t value from two uint32_t values.
3291 */
3292#define RT_MAKE_U64(Lo, Hi) ( (uint64_t)((uint32_t)(Hi)) << 32 | (uint32_t)(Lo) )
3293
3294/** @def RT_MAKE_U64_FROM_U16
3295 * Constructs a uint64_t value from four uint16_t values, with parameters in
3296 * least significant word first order.
3297 * @see RT_MAKE_U64_FROM_MSW_U16
3298 */
3299#define RT_MAKE_U64_FROM_U16(w0, w1, w2, w3) \
3300 ((uint64_t)( (uint64_t)((uint16_t)(w3)) << 48 \
3301 | (uint64_t)((uint16_t)(w2)) << 32 \
3302 | (uint32_t)((uint16_t)(w1)) << 16 \
3303 | (uint16_t)(w0) ))
3304
3305/** @def RT_MAKE_U64_FROM_U16
3306 * Constructs a uint64_t value from four uint16_t values, with parameters in
3307 * most significant word first order.
3308 * @see RT_MAKE_U64_FROM_U16
3309 */
3310#define RT_MAKE_U64_FROM_MSW_U16(w3, w2, w1, w0) RT_MAKE_U64_FROM_U16(w0, w1, w2, w3)
3311
3312/** @def RT_MAKE_U64_FROM_U8
3313 * Constructs a uint64_t value from eight uint8_t values, with parameters in
3314 * least significant byte first order.
3315 * @see RT_MAKE_U64_FROM_MSB_U8
3316 */
3317#define RT_MAKE_U64_FROM_U8(b0, b1, b2, b3, b4, b5, b6, b7) \
3318 ((uint64_t)( (uint64_t)((uint8_t)(b7)) << 56 \
3319 | (uint64_t)((uint8_t)(b6)) << 48 \
3320 | (uint64_t)((uint8_t)(b5)) << 40 \
3321 | (uint64_t)((uint8_t)(b4)) << 32 \
3322 | (uint64_t)((uint8_t)(b3)) << 24 \
3323 | (uint64_t)((uint8_t)(b2)) << 16 \
3324 | (uint64_t)((uint8_t)(b1)) << 8 \
3325 | (uint64_t) (uint8_t)(b0) ))
3326
3327/** @def RT_MAKE_U64_FROM_MSB_U8
3328 * Constructs a uint64_t value from eight uint8_t values, with parameters in
3329 * most significant byte first order.
3330 * @see RT_MAKE_U64_FROM_U8
3331 */
3332#define RT_MAKE_U64_FROM_MSB_U8(b7, b6, b5, b4, b3, b2, b1, b0) RT_MAKE_U64_FROM_U8(b0, b1, b2, b3, b4, b5, b6, b7)
3333
3334/** @def RT_MAKE_U32
3335 * Constructs a uint32_t value from two uint16_t values.
3336 */
3337#define RT_MAKE_U32(Lo, Hi) \
3338 ((uint32_t)( (uint32_t)((uint16_t)(Hi)) << 16 \
3339 | (uint16_t)(Lo) ))
3340
3341/** @def RT_MAKE_U32_FROM_U8
3342 * Constructs a uint32_t value from four uint8_t values, with parameters in
3343 * least significant byte first order.
3344 * @see RT_MAKE_U32_FROM_MSB_U8
3345 */
3346#define RT_MAKE_U32_FROM_U8(b0, b1, b2, b3) \
3347 ((uint32_t)( (uint32_t)((uint8_t)(b3)) << 24 \
3348 | (uint32_t)((uint8_t)(b2)) << 16 \
3349 | (uint32_t)((uint8_t)(b1)) << 8 \
3350 | (uint8_t)(b0) ))
3351
3352/** @def RT_MAKE_U32_FROM_MSB_U8
3353 * Constructs a uint32_t value from four uint8_t values, with parameters in most
3354 * significant byte first order.
3355 * @see RT_MAKE_U32_FROM_8
3356 */
3357#define RT_MAKE_U32_FROM_MSB_U8(b3, b2, b1, b0) RT_MAKE_U32_FROM_U8(b0, b1, b2, b3)
3358
3359/** @def RT_MAKE_U16
3360 * Constructs a uint16_t value from two uint8_t values.
3361 */
3362#define RT_MAKE_U16(Lo, Hi) \
3363 ((uint16_t)( (uint16_t)((uint8_t)(Hi)) << 8 \
3364 | (uint8_t)(Lo) ))
3365
3366
3367/** @def RT_BSWAP_U64
3368 * Reverses the byte order of an uint64_t value. */
3369#if defined(__GNUC__)
3370# define RT_BSWAP_U64(u64) (__builtin_constant_p((u64)) ? RT_BSWAP_U64_C(u64) : ASMByteSwapU64(u64))
3371#else
3372# define RT_BSWAP_U64(u64) ASMByteSwapU64(u64)
3373#endif
3374
3375/** @def RT_BSWAP_U32
3376 * Reverses the byte order of an uint32_t value. */
3377#if defined(__GNUC__)
3378# define RT_BSWAP_U32(u32) (__builtin_constant_p((u32)) ? RT_BSWAP_U32_C(u32) : ASMByteSwapU32(u32))
3379#else
3380# define RT_BSWAP_U32(u32) ASMByteSwapU32(u32)
3381#endif
3382
3383/** @def RT_BSWAP_U16
3384 * Reverses the byte order of an uint16_t value. */
3385#if defined(__GNUC__)
3386# define RT_BSWAP_U16(u16) (__builtin_constant_p((u16)) ? RT_BSWAP_U16_C(u16) : ASMByteSwapU16(u16))
3387#else
3388# define RT_BSWAP_U16(u16) ASMByteSwapU16(u16)
3389#endif
3390
3391/** @def RT_BSWAP_S64
3392 * Reverses the byte order of an int64_t value. */
3393#define RT_BSWAP_S64(i64) ((int64_t)RT_BSWAP_U64((uint64_t)i64))
3394
3395/** @def RT_BSWAP_S32
3396 * Reverses the byte order of an int32_t value. */
3397#define RT_BSWAP_S32(i32) ((int32_t)RT_BSWAP_U32((uint32_t)i32))
3398
3399/** @def RT_BSWAP_S16
3400 * Reverses the byte order of an int16_t value. */
3401#define RT_BSWAP_S16(i16) ((int16_t)RT_BSWAP_U16((uint16_t)i16))
3402
3403
3404/** @def RT_BSWAP_U64_C
3405 * Reverses the byte order of an uint64_t constant. */
3406#define RT_BSWAP_U64_C(u64) RT_MAKE_U64(RT_BSWAP_U32_C((u64) >> 32), RT_BSWAP_U32_C((u64) & 0xffffffff))
3407
3408/** @def RT_BSWAP_U32_C
3409 * Reverses the byte order of an uint32_t constant. */
3410#define RT_BSWAP_U32_C(u32) RT_MAKE_U32_FROM_U8(RT_BYTE4(u32), RT_BYTE3(u32), RT_BYTE2(u32), RT_BYTE1(u32))
3411
3412/** @def RT_BSWAP_U16_C
3413 * Reverses the byte order of an uint16_t constant. */
3414#define RT_BSWAP_U16_C(u16) RT_MAKE_U16(RT_HIBYTE(u16), RT_LOBYTE(u16))
3415
3416/** @def RT_BSWAP_S64_C
3417 * Reverses the byte order of an int64_t constant. */
3418#define RT_BSWAP_S64_C(i64) ((int64_t)RT_MAKE_U64(RT_BSWAP_U32_C((uint64_t)(i64) >> 32), RT_BSWAP_U32_C((uint32_t)(i64))))
3419
3420/** @def RT_BSWAP_S32_C
3421 * Reverses the byte order of an int32_t constant. */
3422#define RT_BSWAP_S32_C(i32) ((int32_t)RT_MAKE_U32_FROM_U8(RT_BYTE4(i32), RT_BYTE3(i32), RT_BYTE2(i32), RT_BYTE1(i)))
3423
3424/** @def RT_BSWAP_S16_C
3425 * Reverses the byte order of an uint16_t constant. */
3426#define RT_BSWAP_S16_C(i16) ((int16_t)RT_MAKE_U16(RT_HIBYTE(i16), RT_LOBYTE(i16)))
3427
3428
3429
3430/** @name Host to/from little endian.
3431 * @note Typically requires iprt/asm.h to be included.
3432 * @{ */
3433
3434/** @def RT_H2LE_U64
3435 * Converts an uint64_t value from host to little endian byte order. */
3436#ifdef RT_BIG_ENDIAN
3437# define RT_H2LE_U64(u64) RT_BSWAP_U64(u64)
3438#else
3439# define RT_H2LE_U64(u64) (u64)
3440#endif
3441
3442/** @def RT_H2LE_U64_C
3443 * Converts an uint64_t constant from host to little endian byte order. */
3444#ifdef RT_BIG_ENDIAN
3445# define RT_H2LE_U64_C(u64) RT_BSWAP_U64_C(u64)
3446#else
3447# define RT_H2LE_U64_C(u64) (u64)
3448#endif
3449
3450/** @def RT_H2LE_U32
3451 * Converts an uint32_t value from host to little endian byte order. */
3452#ifdef RT_BIG_ENDIAN
3453# define RT_H2LE_U32(u32) RT_BSWAP_U32(u32)
3454#else
3455# define RT_H2LE_U32(u32) (u32)
3456#endif
3457
3458/** @def RT_H2LE_U32_C
3459 * Converts an uint32_t constant from host to little endian byte order. */
3460#ifdef RT_BIG_ENDIAN
3461# define RT_H2LE_U32_C(u32) RT_BSWAP_U32_C(u32)
3462#else
3463# define RT_H2LE_U32_C(u32) (u32)
3464#endif
3465
3466/** @def RT_H2LE_U16
3467 * Converts an uint16_t value from host to little endian byte order. */
3468#ifdef RT_BIG_ENDIAN
3469# define RT_H2LE_U16(u16) RT_BSWAP_U16(u16)
3470#else
3471# define RT_H2LE_U16(u16) (u16)
3472#endif
3473
3474/** @def RT_H2LE_U16_C
3475 * Converts an uint16_t constant from host to little endian byte order. */
3476#ifdef RT_BIG_ENDIAN
3477# define RT_H2LE_U16_C(u16) RT_BSWAP_U16_C(u16)
3478#else
3479# define RT_H2LE_U16_C(u16) (u16)
3480#endif
3481
3482
3483/** @def RT_LE2H_U64
3484 * Converts an uint64_t value from little endian to host byte order. */
3485#ifdef RT_BIG_ENDIAN
3486# define RT_LE2H_U64(u64) RT_BSWAP_U64(u64)
3487#else
3488# define RT_LE2H_U64(u64) (u64)
3489#endif
3490
3491/** @def RT_LE2H_U64_C
3492 * Converts an uint64_t constant from little endian to host byte order. */
3493#ifdef RT_BIG_ENDIAN
3494# define RT_LE2H_U64_C(u64) RT_BSWAP_U64_C(u64)
3495#else
3496# define RT_LE2H_U64_C(u64) (u64)
3497#endif
3498
3499/** @def RT_LE2H_U32
3500 * Converts an uint32_t value from little endian to host byte order. */
3501#ifdef RT_BIG_ENDIAN
3502# define RT_LE2H_U32(u32) RT_BSWAP_U32(u32)
3503#else
3504# define RT_LE2H_U32(u32) (u32)
3505#endif
3506
3507/** @def RT_LE2H_U32_C
3508 * Converts an uint32_t constant from little endian to host byte order. */
3509#ifdef RT_BIG_ENDIAN
3510# define RT_LE2H_U32_C(u32) RT_BSWAP_U32_C(u32)
3511#else
3512# define RT_LE2H_U32_C(u32) (u32)
3513#endif
3514
3515/** @def RT_LE2H_U16
3516 * Converts an uint16_t value from little endian to host byte order. */
3517#ifdef RT_BIG_ENDIAN
3518# define RT_LE2H_U16(u16) RT_BSWAP_U16(u16)
3519#else
3520# define RT_LE2H_U16(u16) (u16)
3521#endif
3522
3523/** @def RT_LE2H_U16_C
3524 * Converts an uint16_t constant from little endian to host byte order. */
3525#ifdef RT_BIG_ENDIAN
3526# define RT_LE2H_U16_C(u16) RT_BSWAP_U16_C(u16)
3527#else
3528# define RT_LE2H_U16_C(u16) (u16)
3529#endif
3530
3531/** @def RT_H2LE_S64
3532 * Converts an int64_t value from host to little endian byte order. */
3533#ifdef RT_BIG_ENDIAN
3534# define RT_H2LE_S64(i64) RT_BSWAP_S64(i64)
3535#else
3536# define RT_H2LE_S64(i64) (i64)
3537#endif
3538
3539/** @def RT_H2LE_S64_C
3540 * Converts an int64_t constant from host to little endian byte order. */
3541#ifdef RT_BIG_ENDIAN
3542# define RT_H2LE_S64_C(i64) RT_BSWAP_S64_C(i64)
3543#else
3544# define RT_H2LE_S64_C(i64) (i64)
3545#endif
3546
3547/** @def RT_H2LE_S32
3548 * Converts an int32_t value from host to little endian byte order. */
3549#ifdef RT_BIG_ENDIAN
3550# define RT_H2LE_S32(i32) RT_BSWAP_S32(i32)
3551#else
3552# define RT_H2LE_S32(i32) (i32)
3553#endif
3554
3555/** @def RT_H2LE_S32_C
3556 * Converts an int32_t constant from host to little endian byte order. */
3557#ifdef RT_BIG_ENDIAN
3558# define RT_H2LE_S32_C(i32) RT_BSWAP_S32_C(i32)
3559#else
3560# define RT_H2LE_S32_C(i32) (i32)
3561#endif
3562
3563/** @def RT_H2LE_S16
3564 * Converts an int16_t value from host to little endian byte order. */
3565#ifdef RT_BIG_ENDIAN
3566# define RT_H2LE_S16(i16) RT_BSWAP_S16(i16)
3567#else
3568# define RT_H2LE_S16(i16) (i16)
3569#endif
3570
3571/** @def RT_H2LE_S16_C
3572 * Converts an int16_t constant from host to little endian byte order. */
3573#ifdef RT_BIG_ENDIAN
3574# define RT_H2LE_S16_C(i16) RT_BSWAP_S16_C(i16)
3575#else
3576# define RT_H2LE_S16_C(i16) (i16)
3577#endif
3578
3579/** @def RT_LE2H_S64
3580 * Converts an int64_t value from little endian to host byte order. */
3581#ifdef RT_BIG_ENDIAN
3582# define RT_LE2H_S64(i64) RT_BSWAP_S64(i64)
3583#else
3584# define RT_LE2H_S64(i64) (i64)
3585#endif
3586
3587/** @def RT_LE2H_S64_C
3588 * Converts an int64_t constant from little endian to host byte order. */
3589#ifdef RT_BIG_ENDIAN
3590# define RT_LE2H_S64_C(i64) RT_BSWAP_S64_C(i64)
3591#else
3592# define RT_LE2H_S64_C(i64) (i64)
3593#endif
3594
3595/** @def RT_LE2H_S32
3596 * Converts an int32_t value from little endian to host byte order. */
3597#ifdef RT_BIG_ENDIAN
3598# define RT_LE2H_S32(i32) RT_BSWAP_S32(i32)
3599#else
3600# define RT_LE2H_S32(i32) (i32)
3601#endif
3602
3603/** @def RT_LE2H_S32_C
3604 * Converts an int32_t constant from little endian to host byte order. */
3605#ifdef RT_BIG_ENDIAN
3606# define RT_LE2H_S32_C(i32) RT_BSWAP_S32_C(i32)
3607#else
3608# define RT_LE2H_S32_C(i32) (i32)
3609#endif
3610
3611/** @def RT_LE2H_S16
3612 * Converts an int16_t value from little endian to host byte order. */
3613#ifdef RT_BIG_ENDIAN
3614# define RT_LE2H_S16(i16) RT_BSWAP_S16(i16)
3615#else
3616# define RT_LE2H_S16(i16) (i16)
3617#endif
3618
3619/** @def RT_LE2H_S16_C
3620 * Converts an int16_t constant from little endian to host byte order. */
3621#ifdef RT_BIG_ENDIAN
3622# define RT_LE2H_S16_C(i16) RT_BSWAP_S16_C(i16)
3623#else
3624# define RT_LE2H_S16_C(i16) (i16)
3625#endif
3626
3627/** @} */
3628
3629/** @name Host to/from big endian.
3630 * @note Typically requires iprt/asm.h to be included.
3631 * @{ */
3632
3633/** @def RT_H2BE_U64
3634 * Converts an uint64_t value from host to big endian byte order. */
3635#ifdef RT_BIG_ENDIAN
3636# define RT_H2BE_U64(u64) (u64)
3637#else
3638# define RT_H2BE_U64(u64) RT_BSWAP_U64(u64)
3639#endif
3640
3641/** @def RT_H2BE_U64_C
3642 * Converts an uint64_t constant from host to big endian byte order. */
3643#ifdef RT_BIG_ENDIAN
3644# define RT_H2BE_U64_C(u64) (u64)
3645#else
3646# define RT_H2BE_U64_C(u64) RT_BSWAP_U64_C(u64)
3647#endif
3648
3649/** @def RT_H2BE_U32
3650 * Converts an uint32_t value from host to big endian byte order. */
3651#ifdef RT_BIG_ENDIAN
3652# define RT_H2BE_U32(u32) (u32)
3653#else
3654# define RT_H2BE_U32(u32) RT_BSWAP_U32(u32)
3655#endif
3656
3657/** @def RT_H2BE_U32_C
3658 * Converts an uint32_t constant from host to big endian byte order. */
3659#ifdef RT_BIG_ENDIAN
3660# define RT_H2BE_U32_C(u32) (u32)
3661#else
3662# define RT_H2BE_U32_C(u32) RT_BSWAP_U32_C(u32)
3663#endif
3664
3665/** @def RT_H2BE_U16
3666 * Converts an uint16_t value from host to big endian byte order. */
3667#ifdef RT_BIG_ENDIAN
3668# define RT_H2BE_U16(u16) (u16)
3669#else
3670# define RT_H2BE_U16(u16) RT_BSWAP_U16(u16)
3671#endif
3672
3673/** @def RT_H2BE_U16_C
3674 * Converts an uint16_t constant from host to big endian byte order. */
3675#ifdef RT_BIG_ENDIAN
3676# define RT_H2BE_U16_C(u16) (u16)
3677#else
3678# define RT_H2BE_U16_C(u16) RT_BSWAP_U16_C(u16)
3679#endif
3680
3681/** @def RT_BE2H_U64
3682 * Converts an uint64_t value from big endian to host byte order. */
3683#ifdef RT_BIG_ENDIAN
3684# define RT_BE2H_U64(u64) (u64)
3685#else
3686# define RT_BE2H_U64(u64) RT_BSWAP_U64(u64)
3687#endif
3688
3689/** @def RT_BE2H_U64
3690 * Converts an uint64_t constant from big endian to host byte order. */
3691#ifdef RT_BIG_ENDIAN
3692# define RT_BE2H_U64_C(u64) (u64)
3693#else
3694# define RT_BE2H_U64_C(u64) RT_BSWAP_U64_C(u64)
3695#endif
3696
3697/** @def RT_BE2H_U32
3698 * Converts an uint32_t value from big endian to host byte order. */
3699#ifdef RT_BIG_ENDIAN
3700# define RT_BE2H_U32(u32) (u32)
3701#else
3702# define RT_BE2H_U32(u32) RT_BSWAP_U32(u32)
3703#endif
3704
3705/** @def RT_BE2H_U32_C
3706 * Converts an uint32_t value from big endian to host byte order. */
3707#ifdef RT_BIG_ENDIAN
3708# define RT_BE2H_U32_C(u32) (u32)
3709#else
3710# define RT_BE2H_U32_C(u32) RT_BSWAP_U32_C(u32)
3711#endif
3712
3713/** @def RT_BE2H_U16
3714 * Converts an uint16_t value from big endian to host byte order. */
3715#ifdef RT_BIG_ENDIAN
3716# define RT_BE2H_U16(u16) (u16)
3717#else
3718# define RT_BE2H_U16(u16) RT_BSWAP_U16(u16)
3719#endif
3720
3721/** @def RT_BE2H_U16_C
3722 * Converts an uint16_t constant from big endian to host byte order. */
3723#ifdef RT_BIG_ENDIAN
3724# define RT_BE2H_U16_C(u16) (u16)
3725#else
3726# define RT_BE2H_U16_C(u16) RT_BSWAP_U16_C(u16)
3727#endif
3728
3729/** @def RT_H2BE_S64
3730 * Converts an int64_t value from host to big endian byte order. */
3731#ifdef RT_BIG_ENDIAN
3732# define RT_H2BE_S64(i64) (i64)
3733#else
3734# define RT_H2BE_S64(i64) RT_BSWAP_S64(i64)
3735#endif
3736
3737/** @def RT_H2BE_S64_C
3738 * Converts an int64_t constant from host to big endian byte order. */
3739#ifdef RT_BIG_ENDIAN
3740# define RT_H2BE_S64_C(i64) (i64)
3741#else
3742# define RT_H2BE_S64_C(i64) RT_BSWAP_S64_C(i64)
3743#endif
3744
3745/** @def RT_H2BE_S32
3746 * Converts an int32_t value from host to big endian byte order. */
3747#ifdef RT_BIG_ENDIAN
3748# define RT_H2BE_S32(i32) (i32)
3749#else
3750# define RT_H2BE_S32(i32) RT_BSWAP_S32(i32)
3751#endif
3752
3753/** @def RT_H2BE_S32_C
3754 * Converts an int32_t constant from host to big endian byte order. */
3755#ifdef RT_BIG_ENDIAN
3756# define RT_H2BE_S32_C(i32) (i32)
3757#else
3758# define RT_H2BE_S32_C(i32) RT_BSWAP_S32_C(i32)
3759#endif
3760
3761/** @def RT_H2BE_S16
3762 * Converts an int16_t value from host to big endian byte order. */
3763#ifdef RT_BIG_ENDIAN
3764# define RT_H2BE_S16(i16) (i16)
3765#else
3766# define RT_H2BE_S16(i16) RT_BSWAP_S16(i16)
3767#endif
3768
3769/** @def RT_H2BE_S16_C
3770 * Converts an int16_t constant from host to big endian byte order. */
3771#ifdef RT_BIG_ENDIAN
3772# define RT_H2BE_S16_C(i16) (i16)
3773#else
3774# define RT_H2BE_S16_C(i16) RT_BSWAP_S16_C(i16)
3775#endif
3776
3777/** @def RT_BE2H_S64
3778 * Converts an int64_t value from big endian to host byte order. */
3779#ifdef RT_BIG_ENDIAN
3780# define RT_BE2H_S64(i64) (i64)
3781#else
3782# define RT_BE2H_S64(i64) RT_BSWAP_S64(i64)
3783#endif
3784
3785/** @def RT_BE2H_S64
3786 * Converts an int64_t constant from big endian to host byte order. */
3787#ifdef RT_BIG_ENDIAN
3788# define RT_BE2H_S64_C(i64) (i64)
3789#else
3790# define RT_BE2H_S64_C(i64) RT_BSWAP_S64_C(i64)
3791#endif
3792
3793/** @def RT_BE2H_S32
3794 * Converts an int32_t value from big endian to host byte order. */
3795#ifdef RT_BIG_ENDIAN
3796# define RT_BE2H_S32(i32) (i32)
3797#else
3798# define RT_BE2H_S32(i32) RT_BSWAP_S32(i32)
3799#endif
3800
3801/** @def RT_BE2H_S32_C
3802 * Converts an int32_t value from big endian to host byte order. */
3803#ifdef RT_BIG_ENDIAN
3804# define RT_BE2H_S32_C(i32) (i32)
3805#else
3806# define RT_BE2H_S32_C(i32) RT_BSWAP_S32_C(i32)
3807#endif
3808
3809/** @def RT_BE2H_S16
3810 * Converts an int16_t value from big endian to host byte order. */
3811#ifdef RT_BIG_ENDIAN
3812# define RT_BE2H_S16(i16) (i16)
3813#else
3814# define RT_BE2H_S16(i16) RT_BSWAP_S16(i16)
3815#endif
3816
3817/** @def RT_BE2H_S16_C
3818 * Converts an int16_t constant from big endian to host byte order. */
3819#ifdef RT_BIG_ENDIAN
3820# define RT_BE2H_S16_C(i16) (i16)
3821#else
3822# define RT_BE2H_S16_C(i16) RT_BSWAP_S16_C(i16)
3823#endif
3824/** @} */
3825
3826/** @name Host to/from network byte order.
3827 * @note Typically requires iprt/asm.h to be included.
3828 * @{ */
3829
3830/** @def RT_H2N_U64
3831 * Converts an uint64_t value from host to network byte order. */
3832#define RT_H2N_U64(u64) RT_H2BE_U64(u64)
3833
3834/** @def RT_H2N_U64_C
3835 * Converts an uint64_t constant from host to network byte order. */
3836#define RT_H2N_U64_C(u64) RT_H2BE_U64_C(u64)
3837
3838/** @def RT_H2N_U32
3839 * Converts an uint32_t value from host to network byte order. */
3840#define RT_H2N_U32(u32) RT_H2BE_U32(u32)
3841
3842/** @def RT_H2N_U32_C
3843 * Converts an uint32_t constant from host to network byte order. */
3844#define RT_H2N_U32_C(u32) RT_H2BE_U32_C(u32)
3845
3846/** @def RT_H2N_U16
3847 * Converts an uint16_t value from host to network byte order. */
3848#define RT_H2N_U16(u16) RT_H2BE_U16(u16)
3849
3850/** @def RT_H2N_U16_C
3851 * Converts an uint16_t constant from host to network byte order. */
3852#define RT_H2N_U16_C(u16) RT_H2BE_U16_C(u16)
3853
3854/** @def RT_N2H_U64
3855 * Converts an uint64_t value from network to host byte order. */
3856#define RT_N2H_U64(u64) RT_BE2H_U64(u64)
3857
3858/** @def RT_N2H_U64_C
3859 * Converts an uint64_t constant from network to host byte order. */
3860#define RT_N2H_U64_C(u64) RT_BE2H_U64_C(u64)
3861
3862/** @def RT_N2H_U32
3863 * Converts an uint32_t value from network to host byte order. */
3864#define RT_N2H_U32(u32) RT_BE2H_U32(u32)
3865
3866/** @def RT_N2H_U32_C
3867 * Converts an uint32_t constant from network to host byte order. */
3868#define RT_N2H_U32_C(u32) RT_BE2H_U32_C(u32)
3869
3870/** @def RT_N2H_U16
3871 * Converts an uint16_t value from network to host byte order. */
3872#define RT_N2H_U16(u16) RT_BE2H_U16(u16)
3873
3874/** @def RT_N2H_U16_C
3875 * Converts an uint16_t value from network to host byte order. */
3876#define RT_N2H_U16_C(u16) RT_BE2H_U16_C(u16)
3877
3878/** @def RT_H2N_S64
3879 * Converts an int64_t value from host to network byte order. */
3880#define RT_H2N_S64(i64) RT_H2BE_S64(i64)
3881
3882/** @def RT_H2N_S64_C
3883 * Converts an int64_t constant from host to network byte order. */
3884#define RT_H2N_S64_C(i64) RT_H2BE_S64_C(i64)
3885
3886/** @def RT_H2N_S32
3887 * Converts an int32_t value from host to network byte order. */
3888#define RT_H2N_S32(i32) RT_H2BE_S32(i32)
3889
3890/** @def RT_H2N_S32_C
3891 * Converts an int32_t constant from host to network byte order. */
3892#define RT_H2N_S32_C(i32) RT_H2BE_S32_C(i32)
3893
3894/** @def RT_H2N_S16
3895 * Converts an int16_t value from host to network byte order. */
3896#define RT_H2N_S16(i16) RT_H2BE_S16(i16)
3897
3898/** @def RT_H2N_S16_C
3899 * Converts an int16_t constant from host to network byte order. */
3900#define RT_H2N_S16_C(i16) RT_H2BE_S16_C(i16)
3901
3902/** @def RT_N2H_S64
3903 * Converts an int64_t value from network to host byte order. */
3904#define RT_N2H_S64(i64) RT_BE2H_S64(i64)
3905
3906/** @def RT_N2H_S64_C
3907 * Converts an int64_t constant from network to host byte order. */
3908#define RT_N2H_S64_C(i64) RT_BE2H_S64_C(i64)
3909
3910/** @def RT_N2H_S32
3911 * Converts an int32_t value from network to host byte order. */
3912#define RT_N2H_S32(i32) RT_BE2H_S32(i32)
3913
3914/** @def RT_N2H_S32_C
3915 * Converts an int32_t constant from network to host byte order. */
3916#define RT_N2H_S32_C(i32) RT_BE2H_S32_C(i32)
3917
3918/** @def RT_N2H_S16
3919 * Converts an int16_t value from network to host byte order. */
3920#define RT_N2H_S16(i16) RT_BE2H_S16(i16)
3921
3922/** @def RT_N2H_S16_C
3923 * Converts an int16_t value from network to host byte order. */
3924#define RT_N2H_S16_C(i16) RT_BE2H_S16_C(i16)
3925
3926/** @} */
3927
3928
3929/*
3930 * The BSD sys/param.h + machine/param.h file is a major source of
3931 * namespace pollution. Kill off some of the worse ones unless we're
3932 * compiling kernel code.
3933 */
3934#if defined(RT_OS_DARWIN) \
3935 && !defined(KERNEL) \
3936 && !defined(RT_NO_BSD_PARAM_H_UNDEFING) \
3937 && ( defined(_SYS_PARAM_H_) || defined(_I386_PARAM_H_) )
3938/* sys/param.h: */
3939# undef PSWP
3940# undef PVM
3941# undef PINOD
3942# undef PRIBO
3943# undef PVFS
3944# undef PZERO
3945# undef PSOCK
3946# undef PWAIT
3947# undef PLOCK
3948# undef PPAUSE
3949# undef PUSER
3950# undef PRIMASK
3951# undef MINBUCKET
3952# undef MAXALLOCSAVE
3953# undef FSHIFT
3954# undef FSCALE
3955
3956/* i386/machine.h: */
3957# undef ALIGN
3958# undef ALIGNBYTES
3959# undef DELAY
3960# undef STATUS_WORD
3961# undef USERMODE
3962# undef BASEPRI
3963# undef MSIZE
3964# undef CLSIZE
3965# undef CLSIZELOG2
3966#endif
3967
3968/** @def NIL_OFFSET
3969 * NIL offset.
3970 * Whenever we use offsets instead of pointers to save space and relocation effort
3971 * NIL_OFFSET shall be used as the equivalent to NULL.
3972 */
3973#define NIL_OFFSET (~0U)
3974
3975
3976/** @def NOREF
3977 * Keeps the compiler from bitching about an unused parameter, local variable,
3978 * or other stuff, will never use _Pragma are is thus more flexible.
3979 */
3980#define NOREF(var) (void)(var)
3981
3982/** @def RT_NOREF_PV
3983 * Keeps the compiler from bitching about an unused parameter or local variable.
3984 * This one cannot be used with structure members and such, like for instance
3985 * AssertRC may end up doing due to its generic nature.
3986 */
3987#if defined(__cplusplus) && RT_CLANG_PREREQ(6, 0)
3988# define RT_NOREF_PV(var) _Pragma(RT_STR(unused(var)))
3989#else
3990# define RT_NOREF_PV(var) (void)(var)
3991#endif
3992
3993/** @def RT_NOREF1
3994 * RT_NOREF_PV shorthand taking on parameter. */
3995#define RT_NOREF1(var1) RT_NOREF_PV(var1)
3996/** @def RT_NOREF2
3997 * RT_NOREF_PV shorthand taking two parameters. */
3998#define RT_NOREF2(var1, var2) RT_NOREF_PV(var1); RT_NOREF1(var2)
3999/** @def RT_NOREF3
4000 * RT_NOREF_PV shorthand taking three parameters. */
4001#define RT_NOREF3(var1, var2, var3) RT_NOREF_PV(var1); RT_NOREF2(var2, var3)
4002/** @def RT_NOREF4
4003 * RT_NOREF_PV shorthand taking four parameters. */
4004#define RT_NOREF4(var1, var2, var3, var4) RT_NOREF_PV(var1); RT_NOREF3(var2, var3, var4)
4005/** @def RT_NOREF5
4006 * RT_NOREF_PV shorthand taking five parameters. */
4007#define RT_NOREF5(var1, var2, var3, var4, var5) RT_NOREF_PV(var1); RT_NOREF4(var2, var3, var4, var5)
4008/** @def RT_NOREF6
4009 * RT_NOREF_PV shorthand taking six parameters. */
4010#define RT_NOREF6(var1, var2, var3, var4, var5, var6) RT_NOREF_PV(var1); RT_NOREF5(var2, var3, var4, var5, var6)
4011/** @def RT_NOREF7
4012 * RT_NOREF_PV shorthand taking seven parameters. */
4013#define RT_NOREF7(var1, var2, var3, var4, var5, var6, var7) \
4014 RT_NOREF_PV(var1); RT_NOREF6(var2, var3, var4, var5, var6, var7)
4015/** @def RT_NOREF8
4016 * RT_NOREF_PV shorthand taking eight parameters. */
4017#define RT_NOREF8(var1, var2, var3, var4, var5, var6, var7, var8) \
4018 RT_NOREF_PV(var1); RT_NOREF7(var2, var3, var4, var5, var6, var7, var8)
4019/** @def RT_NOREF9
4020 * RT_NOREF_PV shorthand taking nine parameters. */
4021#define RT_NOREF9(var1, var2, var3, var4, var5, var6, var7, var8, var9) \
4022 RT_NOREF_PV(var1); RT_NOREF8(var2, var3, var4, var5, var6, var7, var8, var9)
4023/** @def RT_NOREF10
4024 * RT_NOREF_PV shorthand taking ten parameters. */
4025#define RT_NOREF10(var1, var2, var3, var4, var5, var6, var7, var8, var9, var10) \
4026 RT_NOREF_PV(var1); RT_NOREF_PV(var2); RT_NOREF_PV(var3); RT_NOREF_PV(var4); RT_NOREF_PV(var5); RT_NOREF_PV(var6); \
4027 RT_NOREF_PV(var7); RT_NOREF_PV(var8); RT_NOREF_PV(var9); RT_NOREF_PV(var10)
4028/** @def RT_NOREF11
4029 * RT_NOREF_PV shorthand taking eleven parameters. */
4030#define RT_NOREF11(var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11) \
4031 RT_NOREF_PV(var1); RT_NOREF10(var2, var3, var4, var5, var6, var7, var8, var9, var10, var11)
4032/** @def RT_NOREF12
4033 * RT_NOREF_PV shorthand taking twelve parameters. */
4034#define RT_NOREF12(var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12) \
4035 RT_NOREF_PV(var1); RT_NOREF11(var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12)
4036/** @def RT_NOREF13
4037 * RT_NOREF_PV shorthand taking thirteen parameters. */
4038#define RT_NOREF13(var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13) \
4039 RT_NOREF_PV(var1); RT_NOREF12(var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13)
4040/** @def RT_NOREF14
4041 * RT_NOREF_PV shorthand taking fourteen parameters. */
4042#define RT_NOREF14(var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13, var14) \
4043 RT_NOREF_PV(var1); RT_NOREF13(var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13, var14)
4044/** @def RT_NOREF15
4045 * RT_NOREF_PV shorthand taking fifteen parameters. */
4046#define RT_NOREF15(var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13, var14, var15) \
4047 RT_NOREF_PV(var1); RT_NOREF14(var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13, var14, var15)
4048/** @def RT_NOREF16
4049 * RT_NOREF_PV shorthand taking fifteen parameters. */
4050#define RT_NOREF16(var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13, var14, var15, var16) \
4051 RT_NOREF_PV(var1); RT_NOREF15(var2, var3, var4, var5, var6, var7, var8, var9, var10, var11, var12, var13, var14, var15, var16)
4052/** @def RT_NOREF17
4053 * RT_NOREF_PV shorthand taking seventeen parameters. */
4054#define RT_NOREF17(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) \
4055 RT_NOREF_PV(v1); RT_NOREF16(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17)
4056/** @def RT_NOREF18
4057 * RT_NOREF_PV shorthand taking eighteen parameters. */
4058#define RT_NOREF18(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) \
4059 RT_NOREF_PV(v1); RT_NOREF17(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18)
4060/** @def RT_NOREF19
4061 * RT_NOREF_PV shorthand taking nineteen parameters. */
4062#define RT_NOREF19(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) \
4063 RT_NOREF_PV(v1); RT_NOREF18(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19)
4064/** @def RT_NOREF20
4065 * RT_NOREF_PV shorthand taking twenty parameters. */
4066#define RT_NOREF20(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) \
4067 RT_NOREF_PV(v1); RT_NOREF19(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20)
4068/** @def RT_NOREF21
4069 * RT_NOREF_PV shorthand taking twentyone parameters. */
4070#define RT_NOREF21(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) \
4071 RT_NOREF_PV(v1); RT_NOREF20(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21)
4072/** @def RT_NOREF22
4073 * RT_NOREF_PV shorthand taking twentytwo parameters. */
4074#define RT_NOREF22(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) \
4075 RT_NOREF_PV(v1); RT_NOREF21(v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22)
4076
4077/** @def RT_NOREF
4078 * RT_NOREF_PV variant using the variadic macro feature of C99.
4079 * @remarks Only use this in sources */
4080#ifdef RT_COMPILER_SUPPORTS_VA_ARGS
4081# define RT_NOREF(...) \
4082 RT_UNPACK_CALL(RT_CONCAT(RT_NOREF, RT_EXPAND(RT_COUNT_VA_ARGS(__VA_ARGS__))),(__VA_ARGS__))
4083#endif
4084
4085
4086/** @def RT_BREAKPOINT
4087 * Emit a debug breakpoint instruction.
4088 *
4089 * @remarks In the x86/amd64 gnu world we add a nop instruction after the int3
4090 * to force gdb to remain at the int3 source line.
4091 * @remarks The L4 kernel will try make sense of the breakpoint, thus the jmp on
4092 * x86/amd64.
4093 */
4094#ifdef __GNUC__
4095# if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
4096# if !defined(__L4ENV__)
4097# define RT_BREAKPOINT() __asm__ __volatile__("int $3\n\tnop\n\t")
4098# else
4099# define RT_BREAKPOINT() __asm__ __volatile__("int3; jmp 1f; 1:\n\t")
4100# endif
4101# elif defined(RT_ARCH_SPARC64)
4102# define RT_BREAKPOINT() __asm__ __volatile__("illtrap 0\n\t") /** @todo Sparc64: this is just a wild guess. */
4103# elif defined(RT_ARCH_SPARC)
4104# define RT_BREAKPOINT() __asm__ __volatile__("unimp 0\n\t") /** @todo Sparc: this is just a wild guess (same as Sparc64, just different name). */
4105# elif defined(RT_ARCH_ARM32) || defined(RT_ARCH_ARM64)
4106# define RT_BREAKPOINT() __asm__ __volatile__("brk #0xf000\n\t")
4107# endif
4108#endif
4109#ifdef _MSC_VER
4110# define RT_BREAKPOINT() __debugbreak()
4111#endif
4112#if defined(__IBMC__) || defined(__IBMCPP__)
4113# define RT_BREAKPOINT() __interrupt(3)
4114#endif
4115#if defined(__WATCOMC__)
4116# define RT_BREAKPOINT() _asm { int 3 }
4117#endif
4118#ifndef RT_BREAKPOINT
4119# error "This compiler/arch is not supported!"
4120#endif
4121
4122
4123/** @defgroup grp_rt_cdefs_size Size Constants
4124 * (Of course, these are binary computer terms, not SI.)
4125 * @{
4126 */
4127/** 1 K (Kilo) (1 024). */
4128#define _1K 0x00000400
4129/** 2 K (Kilo) (2 048). */
4130#define _2K 0x00000800
4131/** 4 K (Kilo) (4 096). */
4132#define _4K 0x00001000
4133/** 8 K (Kilo) (8 192). */
4134#define _8K 0x00002000
4135/** 16 K (Kilo) (16 384). */
4136#define _16K 0x00004000
4137/** 32 K (Kilo) (32 768). */
4138#define _32K 0x00008000
4139/** 64 K (Kilo) (65 536). */
4140#if ARCH_BITS != 16
4141# define _64K 0x00010000
4142#else
4143# define _64K UINT32_C(0x00010000)
4144#endif
4145/** 128 K (Kilo) (131 072). */
4146#if ARCH_BITS != 16
4147# define _128K 0x00020000
4148#else
4149# define _128K UINT32_C(0x00020000)
4150#endif
4151/** 256 K (Kilo) (262 144). */
4152#if ARCH_BITS != 16
4153# define _256K 0x00040000
4154#else
4155# define _256K UINT32_C(0x00040000)
4156#endif
4157/** 512 K (Kilo) (524 288). */
4158#if ARCH_BITS != 16
4159# define _512K 0x00080000
4160#else
4161# define _512K UINT32_C(0x00080000)
4162#endif
4163/** 1 M (Mega) (1 048 576). */
4164#if ARCH_BITS != 16
4165# define _1M 0x00100000
4166#else
4167# define _1M UINT32_C(0x00100000)
4168#endif
4169/** 2 M (Mega) (2 097 152). */
4170#if ARCH_BITS != 16
4171# define _2M 0x00200000
4172#else
4173# define _2M UINT32_C(0x00200000)
4174#endif
4175/** 4 M (Mega) (4 194 304). */
4176#if ARCH_BITS != 16
4177# define _4M 0x00400000
4178#else
4179# define _4M UINT32_C(0x00400000)
4180#endif
4181/** 8 M (Mega) (8 388 608). */
4182#define _8M UINT32_C(0x00800000)
4183/** 16 M (Mega) (16 777 216). */
4184#define _16M UINT32_C(0x01000000)
4185/** 32 M (Mega) (33 554 432). */
4186#define _32M UINT32_C(0x02000000)
4187/** 64 M (Mega) (67 108 864). */
4188#define _64M UINT32_C(0x04000000)
4189/** 128 M (Mega) (134 217 728). */
4190#define _128M UINT32_C(0x08000000)
4191/** 256 M (Mega) (268 435 456). */
4192#define _256M UINT32_C(0x10000000)
4193/** 512 M (Mega) (536 870 912). */
4194#define _512M UINT32_C(0x20000000)
4195/** 1 G (Giga) (1 073 741 824). (32-bit) */
4196#if ARCH_BITS != 16
4197# define _1G 0x40000000
4198#else
4199# define _1G UINT32_C(0x40000000)
4200#endif
4201/** 1 G (Giga) (1 073 741 824). (64-bit) */
4202#if ARCH_BITS != 16
4203# define _1G64 0x40000000LL
4204#else
4205# define _1G64 UINT64_C(0x40000000)
4206#endif
4207/** 2 G (Giga) (2 147 483 648). (32-bit) */
4208#define _2G32 UINT32_C(0x80000000)
4209/** 2 G (Giga) (2 147 483 648). (64-bit) */
4210#if ARCH_BITS != 16
4211# define _2G 0x0000000080000000LL
4212#else
4213# define _2G UINT64_C(0x0000000080000000)
4214#endif
4215/** 4 G (Giga) (4 294 967 296). */
4216#if ARCH_BITS != 16
4217# define _4G 0x0000000100000000LL
4218#else
4219# define _4G UINT64_C(0x0000000100000000)
4220#endif
4221/** 1 T (Tera) (1 099 511 627 776). */
4222#if ARCH_BITS != 16
4223# define _1T 0x0000010000000000LL
4224#else
4225# define _1T UINT64_C(0x0000010000000000)
4226#endif
4227/** 1 P (Peta) (1 125 899 906 842 624). */
4228#if ARCH_BITS != 16
4229# define _1P 0x0004000000000000LL
4230#else
4231# define _1P UINT64_C(0x0004000000000000)
4232#endif
4233/** 1 E (Exa) (1 152 921 504 606 846 976). */
4234#if ARCH_BITS != 16
4235# define _1E 0x1000000000000000LL
4236#else
4237# define _1E UINT64_C(0x1000000000000000)
4238#endif
4239/** 2 E (Exa) (2 305 843 009 213 693 952). */
4240#if ARCH_BITS != 16
4241# define _2E 0x2000000000000000ULL
4242#else
4243# define _2E UINT64_C(0x2000000000000000)
4244#endif
4245/** @} */
4246
4247/** @defgroup grp_rt_cdefs_decimal_grouping Decimal Constant Grouping Macros
4248 * @{ */
4249#define RT_D1(g1) g1
4250#define RT_D2(g1, g2) g1#g2
4251#define RT_D3(g1, g2, g3) g1#g2#g3
4252#define RT_D4(g1, g2, g3, g4) g1#g2#g3#g4
4253#define RT_D5(g1, g2, g3, g4, g5) g1#g2#g3#g4#g5
4254#define RT_D6(g1, g2, g3, g4, g5, g6) g1#g2#g3#g4#g5#g6
4255#define RT_D7(g1, g2, g3, g4, g5, g6, g7) g1#g2#g3#g4#g5#g6#g7
4256
4257#define RT_D1_U(g1) UINT32_C(g1)
4258#define RT_D2_U(g1, g2) UINT32_C(g1#g2)
4259#define RT_D3_U(g1, g2, g3) UINT32_C(g1#g2#g3)
4260#define RT_D4_U(g1, g2, g3, g4) UINT64_C(g1#g2#g3#g4)
4261#define RT_D5_U(g1, g2, g3, g4, g5) UINT64_C(g1#g2#g3#g4#g5)
4262#define RT_D6_U(g1, g2, g3, g4, g5, g6) UINT64_C(g1#g2#g3#g4#g5#g6)
4263#define RT_D7_U(g1, g2, g3, g4, g5, g6, g7) UINT64_C(g1#g2#g3#g4#g5#g6#g7)
4264
4265#define RT_D1_S(g1) INT32_C(g1)
4266#define RT_D2_S(g1, g2) INT32_C(g1#g2)
4267#define RT_D3_S(g1, g2, g3) INT32_C(g1#g2#g3)
4268#define RT_D4_S(g1, g2, g3, g4) INT64_C(g1#g2#g3#g4)
4269#define RT_D5_S(g1, g2, g3, g4, g5) INT64_C(g1#g2#g3#g4#g5)
4270#define RT_D6_S(g1, g2, g3, g4, g5, g6) INT64_C(g1#g2#g3#g4#g5#g6)
4271#define RT_D7_S(g1, g2, g3, g4, g5, g6, g7) INT64_C(g1#g2#g3#g4#g5#g6#g7)
4272
4273#define RT_D1_U32(g1) UINT32_C(g1)
4274#define RT_D2_U32(g1, g2) UINT32_C(g1#g2)
4275#define RT_D3_U32(g1, g2, g3) UINT32_C(g1#g2#g3)
4276#define RT_D4_U32(g1, g2, g3, g4) UINT32_C(g1#g2#g3#g4)
4277
4278#define RT_D1_S32(g1) INT32_C(g1)
4279#define RT_D2_S32(g1, g2) INT32_C(g1#g2)
4280#define RT_D3_S32(g1, g2, g3) INT32_C(g1#g2#g3)
4281#define RT_D4_S32(g1, g2, g3, g4) INT32_C(g1#g2#g3#g4)
4282
4283#define RT_D1_U64(g1) UINT64_C(g1)
4284#define RT_D2_U64(g1, g2) UINT64_C(g1#g2)
4285#define RT_D3_U64(g1, g2, g3) UINT64_C(g1#g2#g3)
4286#define RT_D4_U64(g1, g2, g3, g4) UINT64_C(g1#g2#g3#g4)
4287#define RT_D5_U64(g1, g2, g3, g4, g5) UINT64_C(g1#g2#g3#g4#g5)
4288#define RT_D6_U64(g1, g2, g3, g4, g5, g6) UINT64_C(g1#g2#g3#g4#g5#g6)
4289#define RT_D7_U64(g1, g2, g3, g4, g5, g6, g7) UINT64_C(g1#g2#g3#g4#g5#g6#g7)
4290
4291#define RT_D1_S64(g1) INT64_C(g1)
4292#define RT_D2_S64(g1, g2) INT64_C(g1#g2)
4293#define RT_D3_S64(g1, g2, g3) INT64_C(g1#g2#g3)
4294#define RT_D4_S64(g1, g2, g3, g4) INT64_C(g1#g2#g3#g4)
4295#define RT_D5_S64(g1, g2, g3, g4, g5) INT64_C(g1#g2#g3#g4#g5)
4296#define RT_D6_S64(g1, g2, g3, g4, g5, g6) INT64_C(g1#g2#g3#g4#g5#g6)
4297#define RT_D7_S64(g1, g2, g3, g4, g5, g6, g7) INT64_C(g1#g2#g3#g4#g5#g6#g7)
4298/** @} */
4299
4300
4301/** @defgroup grp_rt_cdefs_time Time Constants
4302 * @{
4303 */
4304/** 1 week expressed in nanoseconds (64-bit). */
4305#define RT_NS_1WEEK UINT64_C(604800000000000)
4306/** 1 day expressed in nanoseconds (64-bit). */
4307#define RT_NS_1DAY UINT64_C(86400000000000)
4308/** 1 hour expressed in nanoseconds (64-bit). */
4309#define RT_NS_1HOUR UINT64_C(3600000000000)
4310/** 30 minutes expressed in nanoseconds (64-bit). */
4311#define RT_NS_30MIN UINT64_C(1800000000000)
4312/** 5 minutes expressed in nanoseconds (64-bit). */
4313#define RT_NS_5MIN UINT64_C(300000000000)
4314/** 1 minute expressed in nanoseconds (64-bit). */
4315#define RT_NS_1MIN UINT64_C(60000000000)
4316/** 45 seconds expressed in nanoseconds (64-bit). */
4317#define RT_NS_45SEC UINT64_C(45000000000)
4318/** 30 seconds expressed in nanoseconds (64-bit). */
4319#define RT_NS_30SEC UINT64_C(30000000000)
4320/** 20 seconds expressed in nanoseconds (64-bit). */
4321#define RT_NS_20SEC UINT64_C(20000000000)
4322/** 15 seconds expressed in nanoseconds (64-bit). */
4323#define RT_NS_15SEC UINT64_C(15000000000)
4324/** 10 seconds expressed in nanoseconds (64-bit). */
4325#define RT_NS_10SEC UINT64_C(10000000000)
4326/** 1 second expressed in nanoseconds. */
4327#define RT_NS_1SEC UINT32_C(1000000000)
4328/** 100 millsecond expressed in nanoseconds. */
4329#define RT_NS_100MS UINT32_C(100000000)
4330/** 10 millsecond expressed in nanoseconds. */
4331#define RT_NS_10MS UINT32_C(10000000)
4332/** 8 millsecond expressed in nanoseconds. */
4333#define RT_NS_8MS UINT32_C(8000000)
4334/** 2 millsecond expressed in nanoseconds. */
4335#define RT_NS_2MS UINT32_C(2000000)
4336/** 1 millsecond expressed in nanoseconds. */
4337#define RT_NS_1MS UINT32_C(1000000)
4338/** 100 microseconds expressed in nanoseconds. */
4339#define RT_NS_100US UINT32_C(100000)
4340/** 10 microseconds expressed in nanoseconds. */
4341#define RT_NS_10US UINT32_C(10000)
4342/** 1 microsecond expressed in nanoseconds. */
4343#define RT_NS_1US UINT32_C(1000)
4344
4345/** 1 second expressed in nanoseconds - 64-bit type. */
4346#define RT_NS_1SEC_64 UINT64_C(1000000000)
4347/** 100 millsecond expressed in nanoseconds - 64-bit type. */
4348#define RT_NS_100MS_64 UINT64_C(100000000)
4349/** 10 millsecond expressed in nanoseconds - 64-bit type. */
4350#define RT_NS_10MS_64 UINT64_C(10000000)
4351/** 1 millsecond expressed in nanoseconds - 64-bit type. */
4352#define RT_NS_1MS_64 UINT64_C(1000000)
4353/** 100 microseconds expressed in nanoseconds - 64-bit type. */
4354#define RT_NS_100US_64 UINT64_C(100000)
4355/** 10 microseconds expressed in nanoseconds - 64-bit type. */
4356#define RT_NS_10US_64 UINT64_C(10000)
4357/** 1 microsecond expressed in nanoseconds - 64-bit type. */
4358#define RT_NS_1US_64 UINT64_C(1000)
4359
4360/** 1 week expressed in microseconds (64-bit). */
4361#define RT_US_1WEEK UINT64_C(604800000000)
4362/** 1 day expressed in microseconds (64-bit). */
4363#define RT_US_1DAY UINT64_C(86400000000)
4364/** 1 hour expressed in microseconds. */
4365#define RT_US_1HOUR UINT32_C(3600000000)
4366/** 30 minutes expressed in microseconds. */
4367#define RT_US_30MIN UINT32_C(1800000000)
4368/** 5 minutes expressed in microseconds. */
4369#define RT_US_5MIN UINT32_C(300000000)
4370/** 1 minute expressed in microseconds. */
4371#define RT_US_1MIN UINT32_C(60000000)
4372/** 45 seconds expressed in microseconds. */
4373#define RT_US_45SEC UINT32_C(45000000)
4374/** 30 seconds expressed in microseconds. */
4375#define RT_US_30SEC UINT32_C(30000000)
4376/** 20 seconds expressed in microseconds. */
4377#define RT_US_20SEC UINT32_C(20000000)
4378/** 15 seconds expressed in microseconds. */
4379#define RT_US_15SEC UINT32_C(15000000)
4380/** 10 seconds expressed in microseconds. */
4381#define RT_US_10SEC UINT32_C(10000000)
4382/** 5 seconds expressed in microseconds. */
4383#define RT_US_5SEC UINT32_C(5000000)
4384/** 1 second expressed in microseconds. */
4385#define RT_US_1SEC UINT32_C(1000000)
4386/** 100 millsecond expressed in microseconds. */
4387#define RT_US_100MS UINT32_C(100000)
4388/** 10 millsecond expressed in microseconds. */
4389#define RT_US_10MS UINT32_C(10000)
4390/** 1 millsecond expressed in microseconds. */
4391#define RT_US_1MS UINT32_C(1000)
4392
4393/** 1 hour expressed in microseconds - 64-bit type. */
4394#define RT_US_1HOUR_64 UINT64_C(3600000000)
4395/** 30 minutes expressed in microseconds - 64-bit type. */
4396#define RT_US_30MIN_64 UINT64_C(1800000000)
4397/** 5 minutes expressed in microseconds - 64-bit type. */
4398#define RT_US_5MIN_64 UINT64_C(300000000)
4399/** 1 minute expressed in microseconds - 64-bit type. */
4400#define RT_US_1MIN_64 UINT64_C(60000000)
4401/** 45 seconds expressed in microseconds - 64-bit type. */
4402#define RT_US_45SEC_64 UINT64_C(45000000)
4403/** 30 seconds expressed in microseconds - 64-bit type. */
4404#define RT_US_30SEC_64 UINT64_C(30000000)
4405/** 20 seconds expressed in microseconds - 64-bit type. */
4406#define RT_US_20SEC_64 UINT64_C(20000000)
4407/** 15 seconds expressed in microseconds - 64-bit type. */
4408#define RT_US_15SEC_64 UINT64_C(15000000)
4409/** 10 seconds expressed in microseconds - 64-bit type. */
4410#define RT_US_10SEC_64 UINT64_C(10000000)
4411/** 5 seconds expressed in microseconds - 64-bit type. */
4412#define RT_US_5SEC_64 UINT64_C(5000000)
4413/** 1 second expressed in microseconds - 64-bit type. */
4414#define RT_US_1SEC_64 UINT64_C(1000000)
4415/** 100 millsecond expressed in microseconds - 64-bit type. */
4416#define RT_US_100MS_64 UINT64_C(100000)
4417/** 10 millsecond expressed in microseconds - 64-bit type. */
4418#define RT_US_10MS_64 UINT64_C(10000)
4419/** 1 millsecond expressed in microseconds - 64-bit type. */
4420#define RT_US_1MS_64 UINT64_C(1000)
4421
4422/** 1 week expressed in milliseconds. */
4423#define RT_MS_1WEEK UINT32_C(604800000)
4424/** 1 day expressed in milliseconds. */
4425#define RT_MS_1DAY UINT32_C(86400000)
4426/** 1 hour expressed in milliseconds. */
4427#define RT_MS_1HOUR UINT32_C(3600000)
4428/** 30 minutes expressed in milliseconds. */
4429#define RT_MS_30MIN UINT32_C(1800000)
4430/** 5 minutes expressed in milliseconds. */
4431#define RT_MS_5MIN UINT32_C(300000)
4432/** 1 minute expressed in milliseconds. */
4433#define RT_MS_1MIN UINT32_C(60000)
4434/** 45 seconds expressed in milliseconds. */
4435#define RT_MS_45SEC UINT32_C(45000)
4436/** 30 seconds expressed in milliseconds. */
4437#define RT_MS_30SEC UINT32_C(30000)
4438/** 20 seconds expressed in milliseconds. */
4439#define RT_MS_20SEC UINT32_C(20000)
4440/** 15 seconds expressed in milliseconds. */
4441#define RT_MS_15SEC UINT32_C(15000)
4442/** 10 seconds expressed in milliseconds. */
4443#define RT_MS_10SEC UINT32_C(10000)
4444/** 5 seconds expressed in milliseconds. */
4445#define RT_MS_5SEC UINT32_C(5000)
4446/** 1 second expressed in milliseconds. */
4447#define RT_MS_1SEC UINT32_C(1000)
4448
4449/** 1 week expressed in milliseconds - 64-bit type. */
4450#define RT_MS_1WEEK_64 UINT64_C(604800000)
4451/** 1 day expressed in milliseconds - 64-bit type. */
4452#define RT_MS_1DAY_64 UINT64_C(86400000)
4453/** 1 hour expressed in milliseconds - 64-bit type. */
4454#define RT_MS_1HOUR_64 UINT64_C(3600000)
4455/** 30 minutes expressed in milliseconds - 64-bit type. */
4456#define RT_MS_30MIN_64 UINT64_C(1800000)
4457/** 5 minutes expressed in milliseconds - 64-bit type. */
4458#define RT_MS_5MIN_64 UINT64_C(300000)
4459/** 1 minute expressed in milliseconds - 64-bit type. */
4460#define RT_MS_1MIN_64 UINT64_C(60000)
4461/** 45 seconds expressed in milliseconds - 64-bit type. */
4462#define RT_MS_45SEC_64 UINT64_C(45000)
4463/** 30 seconds expressed in milliseconds - 64-bit type. */
4464#define RT_MS_30SEC_64 UINT64_C(30000)
4465/** 20 seconds expressed in milliseconds - 64-bit type. */
4466#define RT_MS_20SEC_64 UINT64_C(20000)
4467/** 15 seconds expressed in milliseconds - 64-bit type. */
4468#define RT_MS_15SEC_64 UINT64_C(15000)
4469/** 10 seconds expressed in milliseconds - 64-bit type. */
4470#define RT_MS_10SEC_64 UINT64_C(10000)
4471/** 5 seconds expressed in milliseconds - 64-bit type. */
4472#define RT_MS_5SEC_64 UINT64_C(5000)
4473/** 1 second expressed in milliseconds - 64-bit type. */
4474#define RT_MS_1SEC_64 UINT64_C(1000)
4475
4476/** The number of seconds per week. */
4477#define RT_SEC_1WEEK UINT32_C(604800)
4478/** The number of seconds per day. */
4479#define RT_SEC_1DAY UINT32_C(86400)
4480/** The number of seconds per hour. */
4481#define RT_SEC_1HOUR UINT32_C(3600)
4482
4483/** The number of seconds per week - 64-bit type. */
4484#define RT_SEC_1WEEK_64 UINT64_C(604800)
4485/** The number of seconds per day - 64-bit type. */
4486#define RT_SEC_1DAY_64 UINT64_C(86400)
4487/** The number of seconds per hour - 64-bit type. */
4488#define RT_SEC_1HOUR_64 UINT64_C(3600)
4489/** @} */
4490
4491
4492/** @defgroup grp_rt_cdefs_dbgtype Debug Info Types
4493 * @{ */
4494/** Other format. */
4495#define RT_DBGTYPE_OTHER RT_BIT_32(0)
4496/** Stabs. */
4497#define RT_DBGTYPE_STABS RT_BIT_32(1)
4498/** Debug With Arbitrary Record Format (DWARF). */
4499#define RT_DBGTYPE_DWARF RT_BIT_32(2)
4500/** Microsoft Codeview debug info. */
4501#define RT_DBGTYPE_CODEVIEW RT_BIT_32(3)
4502/** Watcom debug info. */
4503#define RT_DBGTYPE_WATCOM RT_BIT_32(4)
4504/** IBM High Level Language debug info. */
4505#define RT_DBGTYPE_HLL RT_BIT_32(5)
4506/** Old OS/2 and Windows symbol file. */
4507#define RT_DBGTYPE_SYM RT_BIT_32(6)
4508/** Map file. */
4509#define RT_DBGTYPE_MAP RT_BIT_32(7)
4510/** @} */
4511
4512
4513/** @defgroup grp_rt_cdefs_exetype Executable Image Types
4514 * @{ */
4515/** Some other format. */
4516#define RT_EXETYPE_OTHER RT_BIT_32(0)
4517/** Portable Executable. */
4518#define RT_EXETYPE_PE RT_BIT_32(1)
4519/** Linear eXecutable. */
4520#define RT_EXETYPE_LX RT_BIT_32(2)
4521/** Linear Executable. */
4522#define RT_EXETYPE_LE RT_BIT_32(3)
4523/** New Executable. */
4524#define RT_EXETYPE_NE RT_BIT_32(4)
4525/** DOS Executable (Mark Zbikowski). */
4526#define RT_EXETYPE_MZ RT_BIT_32(5)
4527/** COM Executable. */
4528#define RT_EXETYPE_COM RT_BIT_32(6)
4529/** a.out Executable. */
4530#define RT_EXETYPE_AOUT RT_BIT_32(7)
4531/** Executable and Linkable Format. */
4532#define RT_EXETYPE_ELF RT_BIT_32(8)
4533/** Mach-O Executable (including FAT ones). */
4534#define RT_EXETYPE_MACHO RT_BIT_32(9)
4535/** TE from UEFI. */
4536#define RT_EXETYPE_TE RT_BIT_32(9)
4537/** @} */
4538
4539
4540/** @def RT_VALID_PTR
4541 * Pointer validation macro.
4542 * @param ptr The pointer.
4543 */
4544#ifdef VBOX_WITH_PARFAIT
4545/*
4546 * Parfait will report memory leaks when something returns after a memory allocation
4547 * using a check containing RT_VALID_PTR() (AssertPtrReturn and friends for example).
4548 * To avoid those false positives the macro will just check for the pointer being != NULL.
4549 */
4550# define RT_VALID_PTR(ptr) (ptr != NULL)
4551#else
4552#if defined(RT_ARCH_AMD64)
4553# ifdef IN_RING3
4554# if defined(RT_OS_DARWIN) /* first 4GB is reserved for legacy kernel. */
4555# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) >= _4G \
4556 && !((uintptr_t)(ptr) & 0xffff800000000000ULL) )
4557# elif defined(RT_OS_SOLARIS) /* The kernel only used the top 2TB, but keep it simple. */
4558# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x1000U >= 0x2000U \
4559 && ( ((uintptr_t)(ptr) & 0xffff800000000000ULL) == 0xffff800000000000ULL \
4560 || ((uintptr_t)(ptr) & 0xffff800000000000ULL) == 0) )
4561# elif defined(RT_OS_LINUX) /* May use 5-level paging (see Documentation/x86/x86_64/mm.rst). */
4562# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) >= 0x1000U /* one invalid page at the bottom */ \
4563 && !((uintptr_t)(ptr) & 0xff00000000000000ULL) )
4564# else
4565# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) >= 0x1000U \
4566 && !((uintptr_t)(ptr) & 0xffff800000000000ULL) )
4567# endif
4568# else /* !IN_RING3 */
4569# if defined(RT_OS_LINUX) /* May use 5-level paging (see Documentation/x86/x86_64/mm.rst). */
4570# if 1 /* User address are no longer considered valid in kernel mode (SMAP, etc). */
4571# define RT_VALID_PTR(ptr) ((uintptr_t)(ptr) - 0xff00000000000000ULL < 0x00ffffffffe00000ULL) /* 2MB invalid space at the top */
4572# else
4573# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x200000 >= 0x201000U /* one invalid page at the bottom and 2MB at the top */ \
4574 && ( ((uintptr_t)(ptr) & 0xff00000000000000ULL) == 0xff00000000000000ULL \
4575 || ((uintptr_t)(ptr) & 0xff00000000000000ULL) == 0) )
4576# endif
4577# else
4578# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x1000U >= 0x2000U \
4579 && ( ((uintptr_t)(ptr) & 0xffff800000000000ULL) == 0xffff800000000000ULL \
4580 || ((uintptr_t)(ptr) & 0xffff800000000000ULL) == 0) )
4581# endif
4582# endif /* !IN_RING3 */
4583
4584# elif defined(RT_ARCH_X86)
4585# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x1000U >= 0x2000U )
4586
4587# elif defined(RT_ARCH_SPARC64)
4588# ifdef IN_RING3
4589# if defined(RT_OS_SOLARIS)
4590/** Sparc64 user mode: According to Figure 9.4 in solaris internals */
4591/** @todo # define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x80004000U >= 0x80004000U + 0x100000000ULL ) - figure this. */
4592# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x80000000U >= 0x80000000U + 0x100000000ULL )
4593# else
4594# error "Port me"
4595# endif
4596# else /* !IN_RING3 */
4597# if defined(RT_OS_SOLARIS)
4598/** @todo Sparc64 kernel mode: This is according to Figure 11.1 in solaris
4599 * internals. Verify in sources. */
4600# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) >= 0x01000000U )
4601# else
4602# error "Port me"
4603# endif
4604# endif /* !IN_RING3 */
4605
4606# elif defined(RT_ARCH_SPARC)
4607# ifdef IN_RING3
4608# ifdef RT_OS_SOLARIS
4609/** Sparc user mode: According to
4610 * http://cvs.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/uts/sun4/os/startup.c#510 */
4611# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x400000U >= 0x400000U + 0x2000U )
4612
4613# else
4614# error "Port me"
4615# endif
4616# else /* !IN_RING3 */
4617# ifdef RT_OS_SOLARIS
4618/** @todo Sparc kernel mode: Check the sources! */
4619# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x1000U >= 0x2000U )
4620# else
4621# error "Port me"
4622# endif
4623# endif /* !IN_RING3 */
4624
4625# elif defined(RT_ARCH_ARM32) || defined(RT_ARCH_ARM64)
4626/* ASSUMES that at least the last and first 4K are out of bounds. */
4627# define RT_VALID_PTR(ptr) ( (uintptr_t)(ptr) + 0x1000U >= 0x2000U )
4628
4629# else
4630# error "Architecture identifier missing / not implemented."
4631# endif
4632#endif /*!VBOX_WITH_PARFAIT*/
4633
4634/** @def RT_VALID_ALIGNED_PTR
4635 * Pointer validation macro that also checks the alignment.
4636 * @param ptr The pointer.
4637 * @param align The alignment, must be a power of two.
4638 */
4639#define RT_VALID_ALIGNED_PTR(ptr, align) \
4640 ( !((uintptr_t)(ptr) & (uintptr_t)((align) - 1)) \
4641 && RT_VALID_PTR(ptr) )
4642
4643
4644/** @def VALID_PHYS32
4645 * 32 bits physical address validation macro.
4646 * @param Phys The RTGCPHYS address.
4647 */
4648#define VALID_PHYS32(Phys) ( (uint64_t)(Phys) < (uint64_t)_4G )
4649
4650/** @def N_
4651 * The \#define N_ is used to mark a string for translation. This is usable in
4652 * any part of the code, as it is only used by the tools that create message
4653 * catalogs. This macro is a no-op as far as the compiler and code generation
4654 * is concerned.
4655 *
4656 * If you want to both mark a string for translation and translate it, use _().
4657 */
4658#define N_(s) (s)
4659
4660/** @def _
4661 * The \#define _ is used to mark a string for translation and to translate it
4662 * in one step.
4663 *
4664 * If you want to only mark a string for translation, use N_().
4665 */
4666#define _(s) gettext(s)
4667
4668
4669#if (!defined(__GNUC__) && !defined(__PRETTY_FUNCTION__)) || defined(DOXYGEN_RUNNING)
4670# if defined(_MSC_VER) || defined(DOXYGEN_RUNNING)
4671/** With GNU C we'd like to use the builtin __PRETTY_FUNCTION__, so define that
4672 * for the other compilers. */
4673# define __PRETTY_FUNCTION__ __FUNCSIG__
4674# else
4675# define __PRETTY_FUNCTION__ __FUNCTION__
4676# endif
4677#endif
4678
4679
4680/** @def RT_STRICT
4681 * The \#define RT_STRICT controls whether or not assertions and other runtime
4682 * checks should be compiled in or not. This is defined when DEBUG is defined.
4683 * If RT_NO_STRICT is defined, it will unconditionally be undefined.
4684 *
4685 * If you want assertions which are not subject to compile time options use
4686 * the AssertRelease*() flavors.
4687 */
4688#if !defined(RT_STRICT) && defined(DEBUG)
4689# define RT_STRICT
4690#endif
4691#ifdef RT_NO_STRICT
4692# undef RT_STRICT
4693#endif
4694
4695/** @todo remove this: */
4696#if !defined(RT_LOCK_STRICT) && !defined(DEBUG_bird)
4697# define RT_LOCK_NO_STRICT
4698#endif
4699#if !defined(RT_LOCK_STRICT_ORDER) && !defined(DEBUG_bird)
4700# define RT_LOCK_NO_STRICT_ORDER
4701#endif
4702
4703/** @def RT_LOCK_STRICT
4704 * The \#define RT_LOCK_STRICT controls whether deadlock detection and related
4705 * checks are done in the lock and semaphore code. It is by default enabled in
4706 * RT_STRICT builds, but this behavior can be overridden by defining
4707 * RT_LOCK_NO_STRICT. */
4708#if !defined(RT_LOCK_STRICT) && !defined(RT_LOCK_NO_STRICT) && defined(RT_STRICT)
4709# define RT_LOCK_STRICT
4710#endif
4711/** @def RT_LOCK_NO_STRICT
4712 * The \#define RT_LOCK_NO_STRICT disables RT_LOCK_STRICT. */
4713#if defined(RT_LOCK_NO_STRICT) && defined(RT_LOCK_STRICT)
4714# undef RT_LOCK_STRICT
4715#endif
4716
4717/** @def RT_LOCK_STRICT_ORDER
4718 * The \#define RT_LOCK_STRICT_ORDER controls whether locking order is checked
4719 * by the lock and semaphore code. It is by default enabled in RT_STRICT
4720 * builds, but this behavior can be overridden by defining
4721 * RT_LOCK_NO_STRICT_ORDER. */
4722#if !defined(RT_LOCK_STRICT_ORDER) && !defined(RT_LOCK_NO_STRICT_ORDER) && defined(RT_STRICT)
4723# define RT_LOCK_STRICT_ORDER
4724#endif
4725/** @def RT_LOCK_NO_STRICT_ORDER
4726 * The \#define RT_LOCK_NO_STRICT_ORDER disables RT_LOCK_STRICT_ORDER. */
4727#if defined(RT_LOCK_NO_STRICT_ORDER) && defined(RT_LOCK_STRICT_ORDER)
4728# undef RT_LOCK_STRICT_ORDER
4729#endif
4730
4731
4732/** Source position. */
4733#define RT_SRC_POS __FILE__, __LINE__, RT_GCC_EXTENSION __PRETTY_FUNCTION__
4734
4735/** Source position declaration. */
4736#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction
4737
4738/** Source position arguments. */
4739#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction
4740
4741/** Applies NOREF() to the source position arguments. */
4742#define RT_SRC_POS_NOREF() do { NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); } while (0)
4743
4744
4745/** @def RT_INLINE_ASM_EXTERNAL
4746 * Defined as 1 if the compiler does not support inline assembly.
4747 * The ASM* functions will then be implemented in external .asm files.
4748 */
4749#if (defined(_MSC_VER) && defined(RT_ARCH_AMD64)) \
4750 || (!defined(RT_ARCH_AMD64) && !defined(RT_ARCH_X86) && !defined(RT_ARCH_ARM64) && !defined(RT_ARCH_ARM32)) \
4751 || defined(__WATCOMC__)
4752# define RT_INLINE_ASM_EXTERNAL 1
4753#else
4754# define RT_INLINE_ASM_EXTERNAL 0
4755#endif
4756
4757/** @def RT_INLINE_ASM_EXTERNAL_TMP_ARM
4758 * Temporary version of RT_INLINE_ASM_EXTERNAL that excludes ARM. */
4759#if RT_INLINE_ASM_EXTERNAL && !(defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32))
4760# define RT_INLINE_ASM_EXTERNAL_TMP_ARM 1
4761#else
4762# define RT_INLINE_ASM_EXTERNAL_TMP_ARM 0
4763#endif
4764
4765/** @def RT_INLINE_ASM_GNU_STYLE
4766 * Defined as 1 if the compiler understands GNU style inline assembly.
4767 */
4768#if defined(_MSC_VER) || defined(__WATCOMC__)
4769# define RT_INLINE_ASM_GNU_STYLE 0
4770#else
4771# define RT_INLINE_ASM_GNU_STYLE 1
4772#endif
4773
4774/** @def RT_INLINE_ASM_USES_INTRIN
4775 * Defined as one of the RT_MSC_VER_XXX MSC version values if the compiler have
4776 * and uses intrin.h. Otherwise it is 0. */
4777#ifdef _MSC_VER
4778# if _MSC_VER >= RT_MSC_VER_VS2019 /* Visual C++ v14.2 */
4779# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2019
4780# elif _MSC_VER >= RT_MSC_VER_VS2017 /* Visual C++ v14.1 */
4781# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2017
4782# elif _MSC_VER >= RT_MSC_VER_VS2015 /* Visual C++ v14.0 */
4783# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2015
4784# elif _MSC_VER >= RT_MSC_VER_VS2013 /* Visual C++ v12.0 */
4785# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2013
4786# elif _MSC_VER >= RT_MSC_VER_VS2012 /* Visual C++ v11.0 */
4787# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2012
4788# elif _MSC_VER >= RT_MSC_VER_VS2010 /* Visual C++ v10.0 */
4789# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2010
4790# elif _MSC_VER >= RT_MSC_VER_VS2008 /* Visual C++ v9.0 */
4791# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2008
4792# elif _MSC_VER >= RT_MSC_VER_VS2005 /* Visual C++ v8.0 */
4793# define RT_INLINE_ASM_USES_INTRIN RT_MSC_VER_VS2005
4794# endif
4795#endif
4796#ifndef RT_INLINE_ASM_USES_INTRIN
4797# define RT_INLINE_ASM_USES_INTRIN 0
4798#endif
4799
4800#define RT_MSC_VER_VS2012 (1700) /**< Visual Studio 2012. */
4801#define RT_MSC_VER_VC110 RT_MSC_VER_VS2012 /**< Visual C++ 11.0, aka Visual Studio 2012. */
4802#define RT_MSC_VER_VS2013 (1800) /**< Visual Studio 2013. */
4803#define RT_MSC_VER_VC120 RT_MSC_VER_VS2013 /**< Visual C++ 12.0, aka Visual Studio 2013. */
4804#define RT_MSC_VER_VS2015 (1900) /**< Visual Studio 2015. */
4805#define RT_MSC_VER_VC140 RT_MSC_VER_VS2015 /**< Visual C++ 14.0, aka Visual Studio 2015. */
4806#define RT_MSC_VER_VS2017 (1910) /**< Visual Studio 2017. */
4807#define RT_MSC_VER_VC141 RT_MSC_VER_VS2017 /**< Visual C++ 14.1, aka Visual Studio 2017. */
4808#define RT_MSC_VER_VS2019 (1920) /**< Visual Studio 2017. */
4809#define RT_MSC_VER_VC142 RT_MSC_VER_VS2019 /**< Visual C++ 14.2, aka Visual Studio 2019. */
4810
4811/** @def RT_COMPILER_SUPPORTS_LAMBDA
4812 * If the defined, the compiler supports lambda expressions. These expressions
4813 * are useful for embedding assertions and type checks into macros. */
4814#if defined(_MSC_VER) && defined(__cplusplus)
4815# if _MSC_VER >= 1600 /* Visual C++ v10.0 / 2010 */
4816# define RT_COMPILER_SUPPORTS_LAMBDA
4817# endif
4818#elif defined(__GNUC__) && defined(__cplusplus)
4819/* 4.5 or later, I think, if in ++11 mode... */
4820#endif
4821
4822/** @def RT_DATA_IS_FAR
4823 * Set to 1 if we're in 16-bit mode and use far pointers.
4824 */
4825#if ARCH_BITS == 16 && defined(__WATCOMC__) \
4826 && (defined(__COMPACT__) || defined(__LARGE__))
4827# define RT_DATA_IS_FAR 1
4828#else
4829# define RT_DATA_IS_FAR 0
4830#endif
4831
4832/** @def RT_FAR
4833 * For indicating far pointers in 16-bit code.
4834 * Does nothing in 32-bit and 64-bit code. */
4835/** @def RT_NEAR
4836 * For indicating near pointers in 16-bit code.
4837 * Does nothing in 32-bit and 64-bit code. */
4838/** @def RT_FAR_CODE
4839 * For indicating far 16-bit functions.
4840 * Does nothing in 32-bit and 64-bit code. */
4841/** @def RT_NEAR_CODE
4842 * For indicating near 16-bit functions.
4843 * Does nothing in 32-bit and 64-bit code. */
4844/** @def RT_FAR_DATA
4845 * For indicating far 16-bit external data, i.e. in a segment other than DATA16.
4846 * Does nothing in 32-bit and 64-bit code. */
4847#if ARCH_BITS == 16
4848# define RT_FAR __far
4849# define RT_NEAR __near
4850# define RT_FAR_CODE __far
4851# define RT_NEAR_CODE __near
4852# define RT_FAR_DATA __far
4853#else
4854# define RT_FAR
4855# define RT_NEAR
4856# define RT_FAR_CODE
4857# define RT_NEAR_CODE
4858# define RT_FAR_DATA
4859#endif
4860
4861
4862/** @} */
4863
4864
4865/** @defgroup grp_rt_cdefs_cpp Special Macros for C++
4866 * @ingroup grp_rt_cdefs
4867 * @{
4868 */
4869
4870#ifdef __cplusplus
4871
4872/** @def DECLEXPORT_CLASS
4873 * How to declare an exported class. Place this macro after the 'class'
4874 * keyword in the declaration of every class you want to export.
4875 *
4876 * @note It is necessary to use this macro even for inner classes declared
4877 * inside the already exported classes. This is a GCC specific requirement,
4878 * but it seems not to harm other compilers.
4879 */
4880#if defined(_MSC_VER) || defined(RT_OS_OS2)
4881# define DECLEXPORT_CLASS __declspec(dllexport)
4882#elif defined(RT_USE_VISIBILITY_DEFAULT)
4883# define DECLEXPORT_CLASS __attribute__((visibility("default")))
4884#else
4885# define DECLEXPORT_CLASS
4886#endif
4887
4888/** @def DECLIMPORT_CLASS
4889 * How to declare an imported class Place this macro after the 'class'
4890 * keyword in the declaration of every class you want to export.
4891 *
4892 * @note It is necessary to use this macro even for inner classes declared
4893 * inside the already exported classes. This is a GCC specific requirement,
4894 * but it seems not to harm other compilers.
4895 */
4896#if defined(_MSC_VER) || (defined(RT_OS_OS2) && !defined(__IBMC__) && !defined(__IBMCPP__))
4897# define DECLIMPORT_CLASS __declspec(dllimport)
4898#elif defined(RT_USE_VISIBILITY_DEFAULT)
4899# define DECLIMPORT_CLASS __attribute__((visibility("default")))
4900#else
4901# define DECLIMPORT_CLASS
4902#endif
4903
4904/** @def WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP
4905 * Macro to work around error C2593 of the not-so-smart MSVC 7.x ambiguity
4906 * resolver. The following snippet clearly demonstrates the code causing this
4907 * error:
4908 * @code
4909 * class A
4910 * {
4911 * public:
4912 * operator bool() const { return false; }
4913 * operator int*() const { return NULL; }
4914 * };
4915 * int main()
4916 * {
4917 * A a;
4918 * if (!a);
4919 * if (a && 0);
4920 * return 0;
4921 * }
4922 * @endcode
4923 * The code itself seems pretty valid to me and GCC thinks the same.
4924 *
4925 * This macro fixes the compiler error by explicitly overloading implicit
4926 * global operators !, && and || that take the given class instance as one of
4927 * their arguments.
4928 *
4929 * The best is to use this macro right after the class declaration.
4930 *
4931 * @note The macro expands to nothing for compilers other than MSVC.
4932 *
4933 * @param Cls Class to apply the workaround to
4934 */
4935#if defined(_MSC_VER)
4936# define WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP(Cls) \
4937 inline bool operator! (const Cls &that) { return !bool (that); } \
4938 inline bool operator&& (const Cls &that, bool b) { return bool (that) && b; } \
4939 inline bool operator|| (const Cls &that, bool b) { return bool (that) || b; } \
4940 inline bool operator&& (bool b, const Cls &that) { return b && bool (that); } \
4941 inline bool operator|| (bool b, const Cls &that) { return b || bool (that); }
4942#else
4943# define WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP(Cls)
4944#endif
4945
4946/** @def WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP_TPL
4947 * Version of WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP for template classes.
4948 *
4949 * @param Tpl Name of the template class to apply the workaround to
4950 * @param ArgsDecl arguments of the template, as declared in |<>| after the
4951 * |template| keyword, including |<>|
4952 * @param Args arguments of the template, as specified in |<>| after the
4953 * template class name when using the, including |<>|
4954 *
4955 * Example:
4956 * @code
4957 * // template class declaration
4958 * template <class C>
4959 * class Foo { ... };
4960 * // applied workaround
4961 * WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP_TPL (Foo, <class C>, <C>)
4962 * @endcode
4963 */
4964#if defined(_MSC_VER)
4965# define WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP_TPL(Tpl, ArgsDecl, Args) \
4966 template ArgsDecl \
4967 inline bool operator! (const Tpl Args &that) { return !bool (that); } \
4968 template ArgsDecl \
4969 inline bool operator&& (const Tpl Args &that, bool b) { return bool (that) && b; } \
4970 template ArgsDecl \
4971 inline bool operator|| (const Tpl Args &that, bool b) { return bool (that) || b; } \
4972 template ArgsDecl \
4973 inline bool operator&& (bool b, const Tpl Args &that) { return b && bool (that); } \
4974 template ArgsDecl \
4975 inline bool operator|| (bool b, const Tpl Args &that) { return b || bool (that); }
4976#else
4977# define WORKAROUND_MSVC7_ERROR_C2593_FOR_BOOL_OP_TPL(Tpl, ArgsDecl, Args)
4978#endif
4979
4980
4981/** @def DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP
4982 * Declares the copy constructor and the assignment operation as inlined no-ops
4983 * (non-existent functions) for the given class. Use this macro inside the
4984 * private section if you want to effectively disable these operations for your
4985 * class.
4986 *
4987 * @param Cls class name to declare for
4988 */
4989#define DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(Cls) \
4990 inline Cls(const Cls &); \
4991 inline Cls &operator= (const Cls &)
4992
4993
4994/** @def DECLARE_CLS_NEW_DELETE_NOOP
4995 * Declares the new and delete operations as no-ops (non-existent functions)
4996 * for the given class. Use this macro inside the private section if you want
4997 * to effectively limit creating class instances on the stack only.
4998 *
4999 * @note The destructor of the given class must not be virtual, otherwise a
5000 * compile time error will occur. Note that this is not a drawback: having
5001 * the virtual destructor for a stack-based class is absolutely useless
5002 * (the real class of the stack-based instance is always known to the compiler
5003 * at compile time, so it will always call the correct destructor).
5004 *
5005 * @param Cls class name to declare for
5006 */
5007#define DECLARE_CLS_NEW_DELETE_NOOP(Cls) \
5008 inline static void *operator new (size_t); \
5009 inline static void operator delete (void *)
5010
5011#endif /* __cplusplus */
5012
5013/** @} */
5014
5015#endif /* !IPRT_INCLUDED_cdefs_h */
5016
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