OSDN Git Service

Recognize __FreeBSD__.
[pf3gnuchains/gcc-fork.git] / gcc / ginclude / varargs.h
1 #ifndef __GNUC__
2 /* Use the system's macros with the system's compiler.  */
3 #include <varargs.h>
4 #else
5 /* Record that this is varargs.h; this turns off stdarg.h.  */
6
7 #ifndef _VARARGS_H
8 #define _VARARGS_H
9
10 #ifdef __sparc__
11 #include <va-sparc.h>
12 #else
13 #ifdef __spur__
14 #include <va-spur.h>
15 #else
16 #ifdef __mips__
17 #include <va-mips.h>
18 #else
19 #ifdef __i860__
20 #include <va-i860.h>
21 #else
22 #ifdef __pyr__
23 #include <va-pyr.h>
24 #else
25 #ifdef __clipper__
26 #include <va-clipper.h>
27 #else
28 #ifdef __m88k__
29 #include <va-m88k.h>
30 #else
31 #if defined(__hppa__) || defined(hp800)
32 #include <va-pa.h>
33 #else
34 #ifdef __i960__
35 #include <va-i960.h>
36 #else
37 #ifdef __alpha__
38 #include <va-alpha.h>
39 #else
40 #if defined (__H8300__) || defined (__H8300H__)
41 #include <va-h8300.h>
42 #else
43
44 #ifdef __NeXT__
45
46 /* On Next, erase any vestiges of stdarg.h.  */
47
48 #ifdef _ANSI_STDARG_H_
49 #define _VA_LIST_
50 #endif
51 #define _ANSI_STDARG_H_ 
52
53 #undef va_alist
54 #undef va_dcl
55 #undef va_list
56 #undef va_start
57 #undef va_end
58 #undef __va_rounded_size
59 #undef va_arg
60 #endif  /* __NeXT__ */
61
62 /* In GCC version 2, we want an ellipsis at the end of the declaration
63    of the argument list.  GCC version 1 can't parse it.  */
64
65 #if __GNUC__ > 1
66 #define __va_ellipsis ...
67 #else
68 #define __va_ellipsis
69 #endif
70
71 /* These macros implement traditional (non-ANSI) varargs
72    for GNU C.  */
73
74 #define va_alist  __builtin_va_alist
75 /* The ... causes current_function_varargs to be set in cc1.  */
76 #define va_dcl    int __builtin_va_alist; __va_ellipsis
77
78 /* Define __gnuc_va_list, just as in gstdarg.h.  */
79
80 #ifndef __GNUC_VA_LIST
81 #define __GNUC_VA_LIST
82 #if defined(__svr4__) || defined(_AIX) || defined(_M_UNIX)
83 typedef char *__gnuc_va_list;
84 #else
85 typedef void *__gnuc_va_list;
86 #endif
87 #endif
88
89 #define va_start(AP)  AP=(char *) &__builtin_va_alist
90
91 #define va_end(AP)
92
93 #if defined(sysV68)
94 #define __va_rounded_size(TYPE)  \
95   (((sizeof (TYPE) + sizeof (short) - 1) / sizeof (short)) * sizeof (short))
96 #else
97 #define __va_rounded_size(TYPE)  \
98   (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
99 #endif
100
101 #if defined (__arm__) || defined (__i386__) || defined (__i860__) || defined (__ns32000__) || defined (__vax__)
102 /* This is for little-endian machines; small args are padded upward.  */
103 #define va_arg(AP, TYPE)                                                \
104  (AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)),     \
105   *((TYPE *) (void *) ((char *) (AP) - __va_rounded_size (TYPE))))
106 #else /* big-endian */
107 /* This is for big-endian machines; small args are padded downward.  */
108 #define va_arg(AP, TYPE)                                                \
109  (AP = (__gnuc_va_list) ((char *) (AP) + __va_rounded_size (TYPE)),     \
110   *((TYPE *) (void *) ((char *) (AP) - ((sizeof (TYPE) < 4              \
111                                          ? sizeof (TYPE)                \
112                                          : __va_rounded_size (TYPE))))))
113 #endif /* big-endian */
114
115 #endif /* not h8300 */
116 #endif /* not alpha */
117 #endif /* not i960 */
118 #endif /* not hppa */
119 #endif /* not m88k */
120 #endif /* not clipper */
121 #endif /* not pyr */
122 #endif /* not i860 */
123 #endif /* not mips */
124 #endif /* not spur */
125 #endif /* not sparc */
126 #endif /* not _VARARGS_H */
127
128 /* Define va_list from __gnuc_va_list.  */
129
130 #ifdef _HIDDEN_VA_LIST  /* On OSF1, this means varargs.h is "half-loaded".  */
131 #undef _VA_LIST
132 #endif
133
134 #ifdef __svr4__
135 /* SVR4.2 uses _VA_LIST for an internal alias for va_list,
136    so we must avoid testing it and setting it here.
137    SVR4 uses _VA_LIST as a flag in stdarg.h, but we should
138    have no conflict with that.  */
139 #ifndef _VA_LIST_
140 #define _VA_LIST_
141 #ifdef __i860__
142 #ifndef _VA_LIST
143 #define _VA_LIST va_list
144 #endif
145 #endif /* __i860__ */
146 typedef __gnuc_va_list va_list;
147 #endif /* _VA_LIST_ */
148
149 #else /* not __svr4__ */
150
151 /* The macro _VA_LIST_ is the same thing used by this file in Ultrix.
152    But on BSD NET2 we must not test or define or undef it.
153    (Note that the comments in NET 2's ansi.h
154    are incorrect for _VA_LIST_--see stdio.h!)  */
155 /* Michael Eriksson <mer@sics.se> at Thu Sep 30 11:00:57 1993:
156    Sequent defines _VA_LIST_ in <machine/machtypes.h> to be the type to
157    use for va_list (``typedef _VA_LIST_ va_list'') */
158 #if !defined (_VA_LIST_) || defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__)
159 /* The macro _VA_LIST is used in SCO Unix 3.2.  */
160 #ifndef _VA_LIST
161 /* The macro _VA_LIST_T_H is used in the Bull dpx2  */
162 #ifndef _VA_LIST_T_H
163 #define _VA_LIST_T_H
164 #if !(defined (__BSD_NET2__) || defined (____386BSD____) || defined (__bsdi__) || defined (__sequent__) || defined (__FreeBSD__))
165 #define _VA_LIST_
166 #endif
167 #define _VA_LIST
168 typedef __gnuc_va_list va_list;
169 #endif /* not _VA_LIST_T_H */
170 #endif /* not _VA_LIST */
171 #endif /* not _VA_LIST_, except on certain systems */
172
173 #endif /* not __svr4__ */
174
175 /* The next BSD release (if there is one) wants this symbol to be
176    undefined instead of _VA_LIST_.  */
177 #ifdef _BSD_VA_LIST
178 #undef _BSD_VA_LIST
179 #endif
180
181 #endif /* __GNUC__ */