STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
varargs.h
Go to the documentation of this file.
1 /***
2 *varargs.h - XENIX style macros for variable argument functions
3 *
4 * Copyright (c) Microsoft Corporation. All rights reserved.
5 *
6 *Purpose:
7 * This file defines XENIX style macros for accessing arguments of a
8 * function which takes a variable number of arguments.
9 * [System V]
10 *
11 * [Public]
12 *
13 ****/
14 
15 #pragma once
16 
17 #ifndef _INC_VARARGS
18 #define _INC_VARARGS
19 
20 #if !defined (_WIN32)
21 #error ERROR: Only Win32 target supported!
22 #endif /* !defined (_WIN32) */
23 
24 
25 #include <crtdefs.h>
26 
27 /*
28  * Currently, all MS C compilers for Win32 platforms default to 8 byte
29  * alignment.
30  */
31 #pragma pack(push,_CRT_PACKING)
32 
33 #ifdef __cplusplus
34 extern "C" {
35 #endif /* __cplusplus */
36 
37 #if __STDC__
38 #error varargs.h incompatible with ANSI (use stdarg.h)
39 #endif /* __STDC__ */
40 
41 #if !defined (_W64)
42 #if !defined (__midl) && (defined (_X86_) || defined (_M_IX86))
43 #define _W64 __w64
44 #else /* !defined (__midl) && (defined (_X86_) || defined (_M_IX86)) */
45 #define _W64
46 #endif /* !defined (__midl) && (defined (_X86_) || defined (_M_IX86)) */
47 #endif /* !defined (_W64) */
48 
49 #ifndef _UINTPTR_T_DEFINED
50 #ifdef _WIN64
51 typedef unsigned __int64 uintptr_t;
52 #else /* _WIN64 */
53 typedef _W64 unsigned int uintptr_t;
54 #endif /* _WIN64 */
55 #define _UINTPTR_T_DEFINED
56 #endif /* _UINTPTR_T_DEFINED */
57 
58 #ifndef _VA_LIST_DEFINED
59 #ifdef _M_CEE_PURE
60 typedef System::ArgIterator va_list;
61 #else /* _M_CEE_PURE */
62 typedef char * va_list;
63 #endif /* _M_CEE_PURE */
64 #define _VA_LIST_DEFINED
65 #endif /* _VA_LIST_DEFINED */
66 
67 #ifndef va_arg
68 
69 #if defined (_M_CEE)
70 
71 #error varargs.h not supported when targetting _M_CEE (use stdarg.h)
72 
73 #elif defined (_M_IX86)
74 
75 /*
76  * define a macro to compute the size of a type, variable or expression,
77  * rounded up to the nearest multiple of sizeof(int). This number is its
78  * size as function argument (Intel architecture). Note that the macro
79  * depends on sizeof(int) being a power of 2!
80  */
81 #define _INTSIZEOF(n) ( (sizeof(n) + sizeof(int) - 1) & ~(sizeof(int) - 1) )
82 
83 #define va_dcl va_list va_alist;
84 #define va_start(ap) ap = (va_list)&va_alist
85 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
86 #define va_end(ap) ap = (va_list)0
87 
88 #elif defined (_M_ARM)
89 
90 #define _VA_ALIGN 4
91 #define _APALIGN(t,ap) ( ((va_list)0 - (ap)) & (__alignof(t) - 1) )
92 #define va_dcl va_list va_alist;
93 
94 #define _SLOTSIZEOF(t) ( (sizeof(t) + _VA_ALIGN - 1) & ~(_VA_ALIGN - 1) )
95 #define va_start(ap) ( ap = (va_list)&va_alist )
96 #define va_arg(ap,t) (*(t *)((ap += _SLOTSIZEOF(t) + _APALIGN(t,ap)) \
97  - _SLOTSIZEOF(t)))
98 #define va_end(ap) ( ap = (va_list)0 )
99 
100 #elif defined (_M_X64)
101 
102 extern void __cdecl __va_start(va_list *, ...);
103 #define va_dcl va_list va_alist;
104 #define va_start(ap) ( __va_start(&ap, 0) )
105 #define va_arg(ap, t) \
106  ( ( sizeof(t) > sizeof(__int64) || ( sizeof(t) & (sizeof(t) - 1) ) != 0 ) \
107  ? **(t **)( ( ap += sizeof(__int64) ) - sizeof(__int64) ) \
108  : *(t *)( ( ap += sizeof(__int64) ) - sizeof(__int64) ) )
109 #define va_end(ap) ( ap = (va_list)0 )
110 
111 #else /* defined (_M_X64) */
112 
113 /* A guess at the proper definitions for other platforms */
114 
115 #define _INTSIZEOF(n) ( (sizeof(n) + sizeof(int) - 1) & ~(sizeof(int) - 1) )
116 
117 #define va_dcl va_list va_alist;
118 #define va_start(ap) ap = (va_list)&va_alist
119 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) )
120 #define va_end(ap) ap = (va_list)0
121 
122 #endif /* defined (_M_X64) */
123 
124 #endif /* va_arg */
125 
126 
127 #ifdef __cplusplus
128 }
129 #endif /* __cplusplus */
130 
131 #pragma pack(pop)
132 
133 #endif /* _INC_VARARGS */
_W64 unsigned int uintptr_t
Definition: crtdefs.h:521
#define _W64
Definition: crtdefs.h:100
char * va_list
Definition: crtdefs.h:550