OSDN Git Service

* ginclude/stdarg.h: Change __WIN32__ to _WIN32.
[pf3gnuchains/gcc-fork.git] / gcc / ginclude / stdarg.h
1 /* stdarg.h for GNU.
2    Note that the type used in va_arg is supposed to match the
3    actual type **after default promotions**.
4    Thus, va_arg (..., short) is not valid.  */
5
6 #ifndef _STDARG_H
7 #ifndef _ANSI_STDARG_H_
8 #ifndef __need___va_list
9 #define _STDARG_H
10 #define _ANSI_STDARG_H_
11 #endif /* not __need___va_list */
12 #undef __need___va_list
13
14 #ifdef __clipper__
15 #include <va-clipper.h>
16 #else
17 #ifdef __m88k__
18 #include <va-m88k.h>
19 #else
20 #ifdef __i860__
21 #include <va-i860.h>
22 #else
23 #ifdef __hppa__
24 #include <va-pa.h>
25 #else
26 #ifdef __mips__
27 #include <va-mips.h>
28 #else
29 #ifdef __sparc__
30 #include <va-sparc.h>
31 #else
32 #ifdef __i960__
33 #include <va-i960.h>
34 #else
35 #ifdef __alpha__
36 #include <va-alpha.h>
37 #else
38 #if defined (__H8300__) || defined (__H8300H__) || defined (__H8300S__)
39 #include <va-h8300.h>
40 #else
41 #if defined (__PPC__) && (defined (_CALL_SYSV) || defined (_WIN32))
42 #include <va-ppc.h>
43 #else
44 #ifdef __sh__
45 #include <va-sh.h>
46 #else
47
48 /* Define __gnuc_va_list.  */
49
50 #ifndef __GNUC_VA_LIST
51 #define __GNUC_VA_LIST
52 #if defined(__svr4__) || defined(_AIX) || defined(_M_UNIX) || defined(__NetBSD__)
53 typedef char *__gnuc_va_list;
54 #else
55 typedef void *__gnuc_va_list;
56 #endif
57 #endif
58
59 /* Define the standard macros for the user,
60    if this invocation was from the user program.  */
61 #ifdef _STDARG_H
62
63 /* Amount of space required in an argument list for an arg of type TYPE.
64    TYPE may alternatively be an expression whose type is used.  */
65
66 #if defined(sysV68)
67 #define __va_rounded_size(TYPE)  \
68   (((sizeof (TYPE) + sizeof (short) - 1) / sizeof (short)) * sizeof (short))
69 #else
70 #define __va_rounded_size(TYPE)  \
71   (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
72 #endif
73
74 #define va_start(AP, LASTARG)                                           \
75  (AP = ((__gnuc_va_list) __builtin_next_arg (LASTARG)))
76
77 #undef va_end
78 void va_end (__gnuc_va_list);           /* Defined in libgcc.a */
79 #define va_end(AP)      ((void)0)
80
81 /* We cast to void * and then to TYPE * because this avoids
82    a warning about increasing the alignment requirement.  */
83
84 #if defined (__arm__) || defined (__i386__) || defined (__i860__) || defined (__ns32000__) || defined (__vax__)
85 /* This is for little-endian machines; small args are padded upward.  */
86 #define va_arg(AP, TYPE)                                                \
87  (AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)),     \
88   *((TYPE *) (void *) ((char *) (AP) - __va_rounded_size (TYPE))))
89 #else /* big-endian */
90 /* This is for big-endian machines; small args are padded downward.  */
91 #define va_arg(AP, TYPE)                                                \
92  (AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)),     \
93   *((TYPE *) (void *) ((char *) (AP)                                    \
94                        - ((sizeof (TYPE) < __va_rounded_size (char)     \
95                            ? sizeof (TYPE) : __va_rounded_size (TYPE))))))
96 #endif /* big-endian */
97 #endif /* _STDARG_H */
98
99 #endif /* not sh */
100 #endif /* not powerpc with V.4 calling sequence */
101 #endif /* not h8300 */
102 #endif /* not alpha */
103 #endif /* not i960 */
104 #endif /* not sparc */
105 #endif /* not mips */
106 #endif /* not hppa */
107 #endif /* not i860 */
108 #endif /* not m88k */
109 #endif /* not clipper */
110
111 #ifdef _STDARG_H
112 /* Define va_list, if desired, from __gnuc_va_list. */
113 /* We deliberately do not define va_list when called from
114    stdio.h, because ANSI C says that stdio.h is not supposed to define
115    va_list.  stdio.h needs to have access to that data type, 
116    but must not use that name.  It should use the name __gnuc_va_list,
117    which is safe because it is reserved for the implementation.  */
118
119 #ifdef _HIDDEN_VA_LIST  /* On OSF1, this means varargs.h is "half-loaded".  */
120 #undef _VA_LIST
121 #endif
122
123 #ifdef _BSD_VA_LIST
124 #undef _BSD_VA_LIST
125 #endif
126
127 #if defined(__svr4__) || defined(_SCO_DS)
128 /* SVR4.2 uses _VA_LIST for an internal alias for va_list,
129    so we must avoid testing it and setting it here.
130    SVR4 uses _VA_LIST as a flag in stdarg.h, but we should
131    have no conflict with that.  */
132 #ifndef _VA_LIST_
133 #define _VA_LIST_
134 #ifdef __i860__
135 #ifndef _VA_LIST
136 #define _VA_LIST va_list
137 #endif
138 #endif /* __i860__ */
139 typedef __gnuc_va_list va_list;
140 #endif /* _VA_LIST_ */
141 #else /* not __svr4__ || _SCO_DS */
142
143 /* The macro _VA_LIST_ is the same thing used by this file in Ultrix.
144    But on BSD NET2 we must not test or define or undef it.
145    (Note that the comments in NET 2's ansi.h
146    are incorrect for _VA_LIST_--see stdio.h!)  */
147 #if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__) || defined(WINNT)
148 /* The macro _VA_LIST_DEFINED is used in Windows NT 3.5  */
149 #ifndef _VA_LIST_DEFINED
150 /* The macro _VA_LIST is used in SCO Unix 3.2.  */
151 #ifndef _VA_LIST
152 /* The macro _VA_LIST_T_H is used in the Bull dpx2  */
153 #ifndef _VA_LIST_T_H
154 typedef __gnuc_va_list va_list;
155 #endif /* not _VA_LIST_T_H */
156 #endif /* not _VA_LIST */
157 #endif /* not _VA_LIST_DEFINED */
158 #if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__))
159 #define _VA_LIST_
160 #endif
161 #ifndef _VA_LIST
162 #define _VA_LIST
163 #endif
164 #ifndef _VA_LIST_DEFINED
165 #define _VA_LIST_DEFINED
166 #endif
167 #ifndef _VA_LIST_T_H
168 #define _VA_LIST_T_H
169 #endif
170
171 #endif /* not _VA_LIST_, except on certain systems */
172
173 #endif /* not __svr4__ */
174
175 #endif /* _STDARG_H */
176
177 #endif /* not _ANSI_STDARG_H_ */
178 #endif /* not _STDARG_H */