Fix linker set creation for GCC 3.4 with -funit-at-a-time.
[dragonfly.git] / sys / sys / cdefs.h
1 /*
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Berkeley Software Design, Inc.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      @(#)cdefs.h     8.8 (Berkeley) 1/9/95
37  * $FreeBSD: src/sys/sys/cdefs.h,v 1.28.2.8 2002/09/18 04:05:13 mikeh Exp $
38  * $DragonFly: src/sys/sys/cdefs.h,v 1.11 2004/08/27 12:08:41 joerg Exp $
39  */
40
41 #ifndef _SYS_CDEFS_H_
42 #define _SYS_CDEFS_H_
43
44 #if defined(__cplusplus)
45 #define __BEGIN_DECLS   extern "C" {
46 #define __END_DECLS     }
47 #else
48 #define __BEGIN_DECLS
49 #define __END_DECLS
50 #endif
51
52 /*
53  * Macro to test if we are using a specific version of gcc or later.
54  */
55 #ifdef __GNUC__
56 #define __GNUC_PREREQ__(ma, mi)         \
57         (__GNUC__ > (ma) || __GNUC__ == (ma) && __GNUC_MINOR__ >= (mi))
58 #else
59 #define __GNUC_PREREQ__(ma, mi)         \
60         0
61 #endif
62
63 /*
64  * The VM_CACHELINE_SIZE macro defines the common cache line alignment
65  * size that can be found across most recent and somewhat latest Intel
66  * hardware, i.e. L1 cache sizes etc.
67  *
68  * If needed, this value can be TUNED.  Suitable values for this macro
69  * are 32, 64 and 128 bytes.  The unit of measurement for this macro is
70  * bytes.
71  * 
72  * XXX: This macro and related macros will eventually move to a MD
73  * header, but currently, we do need such a hierarchy.
74  */
75 #define VM_CACHELINE_SIZE       32
76
77 /*
78  * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
79  * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
80  * The __CONCAT macro is a bit tricky to use if it must work in non-ANSI
81  * mode -- there must be no spaces between its arguments, and for nested
82  * __CONCAT's, all the __CONCAT's must be at the left.  __CONCAT can also
83  * concatenate double-quoted strings produced by the __STRING macro, but
84  * this only works with ANSI C.
85  *
86  * __XSTRING is like __STRING, but it expands any macros in its argument
87  * first.  It is only available with ANSI C.
88  */
89 #if defined(__STDC__) || defined(__cplusplus)
90 #define __P(protos)     protos          /* full-blown ANSI C */
91 #define __CONCAT1(x,y)  x ## y
92 #define __CONCAT(x,y)   __CONCAT1(x,y)
93 #define __STRING(x)     #x              /* stringify without expanding x */
94 #define __XSTRING(x)    __STRING(x)     /* expand x, then stringify */
95
96 #define __const         const           /* define reserved names to standard */
97 #define __signed        signed
98 #define __volatile      volatile
99 #if defined(__cplusplus)
100 #define __inline        inline          /* convert to C++ keyword */
101 #else
102 #ifndef __GNUC__
103 #define __inline                        /* delete GCC keyword */
104 #endif /* !__GNUC__ */
105 #endif /* !__cplusplus */
106
107 #else   /* !(__STDC__ || __cplusplus) */
108 #define __P(protos)     ()              /* traditional C preprocessor */
109 #define __CONCAT(x,y)   x/**/y
110 #define __STRING(x)     "x"
111
112 #ifndef __GNUC__
113 #define __const                         /* delete pseudo-ANSI C keywords */
114 #define __inline
115 #define __signed
116 #define __volatile
117 /*
118  * In non-ANSI C environments, new programs will want ANSI-only C keywords
119  * deleted from the program and old programs will want them left alone.
120  * When using a compiler other than gcc, programs using the ANSI C keywords
121  * const, inline etc. as normal identifiers should define -DNO_ANSI_KEYWORDS.
122  * When using "gcc -traditional", we assume that this is the intent; if
123  * __GNUC__ is defined but __STDC__ is not, we leave the new keywords alone.
124  */
125 #ifndef NO_ANSI_KEYWORDS
126 #define const                           /* delete ANSI C keywords */
127 #define inline
128 #define signed
129 #define volatile
130 #endif  /* !NO_ANSI_KEYWORDS */
131 #endif  /* !__GNUC__ */
132 #endif  /* !(__STDC__ || __cplusplus) */
133
134 /*
135  * Compiler-dependent macros to help declare dead (non-returning) and
136  * pure (no side effects) functions, and unused variables.  They are
137  * null except for versions of gcc that are known to support the features
138  * properly (old versions of gcc-2 supported the dead and pure features
139  * in a different (wrong) way).
140  */
141 #ifdef lint
142
143 #define __dead2
144 #define __pure2
145 #define __unused
146 #define __packed
147 #define __aligned(x)
148 #define __section(x)
149 #define __always_inline
150 #define __nonnull(x)
151
152 #else
153
154 #if !__GNUC_PREREQ__(2, 5)
155 #define __dead2
156 #define __pure2
157 #define __unused
158 #endif
159
160 #if __GNUC__ == 2 && __GNUC_MINOR__ >= 5 && __GNUC_MINOR__ < 7
161 #define __dead2         __attribute__((__noreturn__))
162 #define __pure2         __attribute__((__const__))
163 #define __unused
164 #endif
165
166 #if __GNUC_PREREQ__(2, 7)
167 #define __dead2         __attribute__((__noreturn__))
168 #define __pure2         __attribute__((__const__))
169 #define __unused        __attribute__((__unused__))
170 #define __packed        __attribute__((__packed__))
171 #define __aligned(x)    __attribute__((__aligned__(x)))
172 #define __section(x)    __attribute__((__section__(x)))
173 #endif
174
175 #if __GNUC_PREREQ__(3, 1)
176 #define __always_inline __attribute__((__always_inline__))
177 #else
178 #define __always_inline
179 #endif
180
181 #if __GNUC_PREREQ__(3, 3)
182 #define __nonnull(x)    __attribute__((__nonnull__(x)))
183 #define __used          __attribute__((__used__))
184 #else
185 #define __nonnull(x)
186 #define __used          __unused
187 #endif
188
189 /* XXX: should use `#if __STDC_VERSION__ < 199901'. */
190 #if !__GNUC_PREREQ__(2, 7)
191 #define __func__        NULL
192 #endif
193
194 #endif  /* LINT */
195
196 /* XXX: should use `#if __STDC_VERSION__ < 199901'. */
197 #if !(__GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3)
198 #define __func__        NULL
199 #endif
200
201 #if __GNUC__ >= 2 && !defined(__STRICT_ANSI__) || __STDC_VERSION__ >= 199901
202 #define __LONG_LONG_SUPPORTED
203 #endif
204
205 /*
206  * GCC 2.95 provides `__restrict' as an extention to C90 to support the
207  * C99-specific `restrict' type qualifier.  We happen to use `__restrict' as
208  * a way to define the `restrict' type qualifier without disturbing older
209  * software that is unaware of C99 keywords.
210  */
211 #if !(__GNUC__ == 2 && __GNUC_MINOR__ == 95)
212 #if __STDC_VERSION__ < 199901
213 #define __restrict
214 #else
215 #define __restrict      restrict
216 #endif
217 #endif
218
219 /*
220  * Compiler-dependent macros to declare that functions take printf-like
221  * or scanf-like arguments.  They are null except for versions of gcc
222  * that are known to support the features properly (old versions of gcc-2
223  * didn't permit keeping the keywords out of the application namespace).
224  */
225 #if __GNUC__ < 2 || __GNUC__ == 2 && __GNUC_MINOR__ < 7
226 #define __printflike(fmtarg, firstvararg)
227 #define __scanflike(fmtarg, firstvararg)
228 #else
229 #define __printflike(fmtarg, firstvararg) \
230             __attribute__((__format__ (__printf__, fmtarg, firstvararg)))
231 #define __scanflike(fmtarg, firstvararg) \
232             __attribute__((__format__ (__scanf__, fmtarg, firstvararg)))
233 #endif
234
235 #if __GNUC__ < 3
236 #define __ARRAY_ZERO    0
237 #else
238 #define __ARRAY_ZERO
239 #endif
240
241 /* Compiler-dependent macros that rely on FreeBSD-specific extensions. */
242 #if defined(__DragonFly__) || __FreeBSD_cc_version >= 300001
243 #define __printf0like(fmtarg, firstvararg) \
244             __attribute__((__format__ (__printf0__, fmtarg, firstvararg)))
245 #else
246 #define __printf0like(fmtarg, firstvararg)
247 #endif
248
249 /*
250  * Handy GCC based macros:
251  *
252  *      __cachealign:
253  *      
254  *      The __cachealign macro can be used for cache line aligning structures
255  *      of small to medium size.  It aligns the particular structure or
256  *      storage type to a system default cache line alignment, thus giving us
257  *      a much more better cache utilization by making the hardware work at
258  *      its best burst speeds.
259  *
260  *      __usereg:
261  *      
262  *      The __usereg macro can/should be used when a function contains
263  *      arguments not more than 3.  It can be very useful to us due to the
264  *      message-passing nature of the kernel.
265  *
266  * !!NOTE - USAGE INFORMATION!!
267  *
268  * The __cachealign macro should not be used for data structures that are
269  * as big struct proc, struct vnode, struct thread, and other structs which
270  * are as big as them; simply because it will be useless in that case.
271  *
272  * The __usereg macro should be used whenever possible, i.e., when a function
273  * does not exceed more than 3 arguments, and should not be used for vararg
274  * type functions.
275  *
276  * In other words, AVOID MISUSE OF THESE MACROS. :-)
277  */
278 #ifdef __GNUC__
279 #define __cachealign    __attribute__((aligned(VM_CACHELINE_SIZE)))
280 #define __usereg        __attribute__((regparm(3)))
281 #else
282 #define __cachealign
283 #define __usereg
284 #endif
285
286 #ifdef __GNUC__
287 #define __strong_reference(sym,aliassym)        \
288         extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym)));
289 #ifdef __STDC__
290 #define __weak_reference(sym,alias)     \
291         __asm__(".weak " #alias);       \
292         __asm__(".equ "  #alias ", " #sym)
293 #define __warn_references(sym,msg)      \
294         __asm__(".section .gnu.warning." #sym); \
295         __asm__(".asciz \"" msg "\"");  \
296         __asm__(".previous")
297 #else
298 #define __weak_reference(sym,alias)     \
299         __asm__(".weak alias");         \
300         __asm__(".equ alias, sym")
301 #define __warn_references(sym,msg)      \
302         __asm__(".section .gnu.warning.sym"); \
303         __asm__(".asciz \"msg\"");      \
304         __asm__(".previous")
305 #endif  /* __STDC__ */
306 #endif  /* __GNUC__ */
307
308 #if defined(__GNUC__)
309 #define __IDSTRING(name,string) __asm__(".ident\t\"" string "\"")
310 #endif
311
312 #ifndef __RCSID
313 #define __RCSID(s)      __IDSTRING(rcsid,s)
314 #endif
315
316 #ifndef __RCSID_SOURCE
317 #define __RCSID_SOURCE(s) __IDSTRING(rcsid_source,s)
318 #endif
319
320 #ifndef __COPYRIGHT
321 #define __COPYRIGHT(s)  __IDSTRING(copyright,s)
322 #endif
323
324 #ifndef __DECONST
325 #define __DECONST(type, var)    ((type)(uintptr_t)(const void *)(var))
326 #endif
327
328 #ifndef __DEVOLATILE
329 #define __DEVOLATILE(type, var) ((type)(uintptr_t)(volatile void *)(var))
330 #endif
331
332 #ifndef __DEQUALIFY
333 #define __DEQUALIFY(type, var)  ((type)(uintptr_t)(const volatile void *)(var))
334 #endif
335
336 /*-
337  * The following definitions are an extension of the behavior originally
338  * implemented in <sys/_posix.h>, but with a different level of granularity.
339  * POSIX.1 requires that the macros we test be defined before any standard
340  * header file is included.
341  *
342  * Here's a quick run-down of the versions:
343  *  defined(_POSIX_SOURCE)              1003.1-1988
344  *  _POSIX_C_SOURCE == 1                1003.1-1990
345  *  _POSIX_C_SOURCE == 2                1003.2-1992 C Language Binding Option
346  *  _POSIX_C_SOURCE == 199309           1003.1b-1993
347  *  _POSIX_C_SOURCE == 199506           1003.1c-1995, 1003.1i-1995,
348  *                                      and the omnibus ISO/IEC 9945-1: 1996
349  *  _POSIX_C_SOURCE == 200112           1003.1-2001
350  *
351  * In addition, the X/Open Portability Guide, which is now the Single UNIX
352  * Specification, defines a feature-test macro which indicates the version of
353  * that specification, and which subsumes _POSIX_C_SOURCE.
354  *
355  * Our macros begin with two underscores to avoid namespace screwage.
356  */
357
358 #if defined(_POSIX_C_SOURCE)
359
360 /* Deal with IEEE Std. 1003.1-1990, in which _POSIX_C_SOURCE == 1. */
361 #if _POSIX_C_SOURCE == 1
362 #undef _POSIX_C_SOURCE          /* Probably illegal, but beyond caring now. */
363 #define _POSIX_C_SOURCE         199009
364 #endif
365
366 /* Deal with IEEE Std. 1003.2-1992, in which _POSIX_C_SOURCE == 2. */
367 #if _POSIX_C_SOURCE == 2
368 #undef _POSIX_C_SOURCE
369 #define _POSIX_C_SOURCE         199209
370 #endif
371
372 #endif  /* _POSIX_C_SOURCE */
373
374 /* Deal with various X/Open Portability Guides and Single UNIX Spec. */
375 #ifdef _XOPEN_SOURCE
376 #if _XOPEN_SOURCE - 0 >= 600
377 #define __XSI_VISIBLE           600
378 #undef _POSIX_C_SOURCE
379 #define _POSIX_C_SOURCE         200112
380 #elif _XOPEN_SOURCE - 0 >= 500
381 #define __XSI_VISIBLE           500
382 #undef _POSIX_C_SOURCE
383 #define _POSIX_C_SOURCE         199506
384 #endif
385 #endif
386
387 /*
388  * Deal with all versions of POSIX.  The ordering relative to the tests above is
389  * important.
390  */
391 #if defined(_POSIX_SOURCE) && !defined(_POSIX_C_SOURCE)
392 #define _POSIX_C_SOURCE         198808
393 #endif
394 #ifdef _POSIX_C_SOURCE
395 #if _POSIX_C_SOURCE >= 200112
396 #define __POSIX_VISIBLE         200112
397 #define __ISO_C_VISIBLE         1999
398 #elif _POSIX_C_SOURCE >= 199506
399 #define __POSIX_VISIBLE         199506
400 #define __ISO_C_VISIBLE         1990
401 #elif _POSIX_C_SOURCE >= 199309
402 #define __POSIX_VISIBLE         199309
403 #define __ISO_C_VISIBLE         1990
404 #elif _POSIX_C_SOURCE >= 199209
405 #define __POSIX_VISIBLE         199209
406 #define __ISO_C_VISIBLE         1990
407 #elif _POSIX_C_SOURCE >= 199009
408 #define __POSIX_VISIBLE         199009
409 #define __ISO_C_VISIBLE         1990
410 #else
411 #define __POSIX_VISIBLE         198808
412 #define __ISO_C_VISIBLE         0
413 #endif /* _POSIX_C_SOURCE */
414 #else
415 /*-
416  * Deal with _ANSI_SOURCE:
417  * If it is defined, and no other compilation environment is explicitly
418  * requested, then define our internal feature-test macros to zero.  This
419  * makes no difference to the preprocessor (undefined symbols in preprocessing
420  * expressions are defined to have value zero), but makes it more convenient for
421  * a test program to print out the values.
422  *
423  * If a program mistakenly defines _ANSI_SOURCE and some other macro such as
424  * _POSIX_C_SOURCE, we will assume that it wants the broader compilation
425  * environment (and in fact we will never get here).
426  */
427 #ifdef _ANSI_SOURCE             /* Hide almost everything. */
428 #define __POSIX_VISIBLE         0
429 #define __XSI_VISIBLE           0
430 #define __BSD_VISIBLE           0
431 #define __ISO_C_VISIBLE         1990
432 #else                           /* Default environment: show everything. */
433 #define __POSIX_VISIBLE         200112
434 #define __XSI_VISIBLE           600
435 #define __BSD_VISIBLE           1
436 #define __ISO_C_VISIBLE         1999
437 #endif
438 #endif
439
440 #endif /* !_SYS_CDEFS_H_ */