2003-08-07 20:26:28 +04:00
|
|
|
/* $NetBSD: stdarg.h,v 1.20 2003/08/07 16:29:41 agc Exp $ */
|
1994-11-20 23:51:32 +03:00
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed by the Computer Systems Engineering group
|
|
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
|
|
* contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Lawrence Berkeley Laboratory.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-10-02 13:22:00 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1994-05-25 20:56:03 +04:00
|
|
|
* from: @(#)stdarg.h 8.2 (Berkeley) 9/27/93
|
1993-10-02 13:22:00 +03:00
|
|
|
*/
|
|
|
|
|
1994-10-15 07:57:29 +03:00
|
|
|
#ifndef _SPARC_STDARG_H_
|
|
|
|
#define _SPARC_STDARG_H_
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1994-10-15 07:57:29 +03:00
|
|
|
#include <machine/ansi.h>
|
2000-02-03 19:16:06 +03:00
|
|
|
#include <sys/featuretest.h>
|
1994-10-15 07:57:29 +03:00
|
|
|
|
|
|
|
typedef _BSD_VA_LIST_ va_list;
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1999-05-03 20:20:28 +04:00
|
|
|
#ifdef __lint__
|
1999-05-04 17:36:10 +04:00
|
|
|
#define __builtin_saveregs() (0)
|
|
|
|
#define __builtin_classify_type(t) (0)
|
1999-05-03 20:20:28 +04:00
|
|
|
#define __builtin_next_arg(t) ((t) ? 0 : 0)
|
2002-07-20 12:37:30 +04:00
|
|
|
#define __alignof__(t) (0)
|
1999-05-03 20:20:28 +04:00
|
|
|
#endif
|
|
|
|
|
1995-12-26 01:24:54 +03:00
|
|
|
#define va_start(ap, last) \
|
2000-10-13 07:53:26 +04:00
|
|
|
(void)(__builtin_next_arg(last), (ap) = (va_list)__builtin_saveregs())
|
1993-10-02 13:22:00 +03:00
|
|
|
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if !defined(_ANSI_SOURCE) && \
|
|
|
|
(defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L || \
|
|
|
|
defined(_NETBSD_SOURCE))
|
2002-07-20 12:37:30 +04:00
|
|
|
# define va_copy(dest, src) \
|
|
|
|
((dest) = (src))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define va_end(ap)
|
|
|
|
|
|
|
|
#ifdef __arch64__
|
|
|
|
/*
|
|
|
|
* For sparcv9 code.
|
|
|
|
*/
|
|
|
|
#define __va_arg8(ap, type) \
|
|
|
|
(*(type *)(void *)((ap) += 8, (ap) - 8))
|
|
|
|
#define __va_arg16(ap, type) \
|
|
|
|
(*(type *)(void *)((ap) = (va_list)(((unsigned long)(ap) + 31) & -16),\
|
|
|
|
(ap) - 16))
|
|
|
|
#define __va_int(ap, type) \
|
|
|
|
(*(type *)(void *)((ap) += 8, (ap) - sizeof(type)))
|
|
|
|
|
|
|
|
#define __REAL_TYPE_CLASS 8
|
|
|
|
#define __RECORD_TYPE_CLASS 12
|
|
|
|
#define va_arg(ap, type) \
|
|
|
|
(__builtin_classify_type(*(type *)0) == __REAL_TYPE_CLASS ? \
|
|
|
|
(__alignof__(type) == 16 ? __va_arg16(ap, type) : \
|
|
|
|
__va_arg8(ap, type)) : \
|
|
|
|
(__builtin_classify_type(*(type *)0) < __RECORD_TYPE_CLASS ? \
|
|
|
|
__va_int(ap, type) : \
|
|
|
|
(sizeof(type) <= 8 ? __va_arg8(ap, type) : \
|
|
|
|
(sizeof(type) <= 16 ? __va_arg16(ap, type) : \
|
|
|
|
*__va_arg8(ap, type *)))))
|
|
|
|
|
|
|
|
#else /* __arch64__ */
|
|
|
|
/*
|
|
|
|
* For sparcv8 code.
|
|
|
|
*/
|
|
|
|
#define __va_size(type) \
|
|
|
|
(((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long))
|
|
|
|
|
1993-10-02 13:22:00 +03:00
|
|
|
/*
|
1995-12-26 01:24:54 +03:00
|
|
|
* va_arg picks up the next argument of type `type'. Appending an
|
|
|
|
* asterisk to `type' must produce a pointer to `type' (i.e., `type'
|
|
|
|
* may not be, e.g., `int (*)()').
|
1993-10-02 13:22:00 +03:00
|
|
|
*
|
|
|
|
* Gcc-2.x tries to use ldd/std for double and quad_t values, but Sun's
|
1995-12-26 01:24:54 +03:00
|
|
|
* brain-damaged calling convention does not quad-align these. Thus, for
|
|
|
|
* 8-byte arguments, we have to pick up the actual value four bytes at a
|
|
|
|
* time, and use type punning (i.e., a union) to produce the result.
|
1993-10-02 13:22:00 +03:00
|
|
|
* (We could also do this with a libc function, actually, by returning
|
|
|
|
* 8 byte integers in %o0+%o1 and the same 8 bytes as a double in %f0+%f1.)
|
|
|
|
*
|
1995-12-26 01:24:54 +03:00
|
|
|
* Note: We don't declare __d with type `type', since in C++ the type might
|
|
|
|
* have a constructor.
|
1993-10-02 13:22:00 +03:00
|
|
|
*/
|
1995-12-26 01:24:54 +03:00
|
|
|
|
1999-02-13 23:35:02 +03:00
|
|
|
#ifdef __lint__
|
1999-02-20 03:33:55 +03:00
|
|
|
# define va_arg(ap, type) (*(type *)(void *)(ap))
|
1999-02-13 23:35:02 +03:00
|
|
|
#else /* !__lint__ */
|
1999-05-03 20:20:28 +04:00
|
|
|
# if __GNUC__ < 2
|
2002-07-20 12:37:30 +04:00
|
|
|
# define __extension__ /* delete __extension__ if non-gcc or gcc1 */
|
1999-02-13 23:35:02 +03:00
|
|
|
# endif
|
|
|
|
# define __va_8byte(ap, type) \
|
1995-12-26 02:15:31 +03:00
|
|
|
__extension__ ({ \
|
|
|
|
union { char __d[sizeof(type)]; int __i[2]; } __va_u; \
|
|
|
|
__va_u.__i[0] = ((int *)(void *)(ap))[0]; \
|
|
|
|
__va_u.__i[1] = ((int *)(void *)(ap))[1]; \
|
|
|
|
(ap) += 8; *(type *)(va_list)__va_u.__d; \
|
|
|
|
})
|
|
|
|
|
1999-02-13 23:35:02 +03:00
|
|
|
# define __va_arg(ap, type) \
|
1995-12-26 02:15:31 +03:00
|
|
|
(*(type *)((ap) += __va_size(type), \
|
|
|
|
(ap) - (sizeof(type) < sizeof(long) && \
|
|
|
|
sizeof(type) != __va_size(type) ? \
|
|
|
|
sizeof(type) : __va_size(type))))
|
|
|
|
|
1999-02-13 23:35:02 +03:00
|
|
|
# define __RECORD_TYPE_CLASS 12
|
|
|
|
# define va_arg(ap, type) \
|
1995-12-26 02:15:31 +03:00
|
|
|
(__builtin_classify_type(*(type *)0) >= __RECORD_TYPE_CLASS ? \
|
|
|
|
*__va_arg(ap, type *) : __va_size(type) == 8 ? \
|
|
|
|
__va_8byte(ap, type) : __va_arg(ap, type))
|
1999-02-13 23:35:02 +03:00
|
|
|
#endif /* __lint__ */
|
1993-10-02 13:22:00 +03:00
|
|
|
|
2002-07-20 12:37:30 +04:00
|
|
|
#endif /* __arch64__ */
|
1993-10-02 13:22:00 +03:00
|
|
|
|
1994-10-15 07:57:29 +03:00
|
|
|
#endif /* !_SPARC_STDARG_H_ */
|