2003-08-07 20:26:28 +04:00
|
|
|
/* $NetBSD: stdarg.h,v 1.13 2003/08/07 16:26:33 agc Exp $ */
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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
|
1995-02-14 02:06:39 +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.
|
|
|
|
*
|
|
|
|
* @(#)stdarg.h 8.1 (Berkeley) 6/10/93
|
|
|
|
*/
|
|
|
|
|
1995-12-26 03:15:47 +03:00
|
|
|
#ifndef _ALPHA_STDARG_H_
|
|
|
|
#define _ALPHA_STDARG_H_
|
1995-02-14 02:06:39 +03:00
|
|
|
|
|
|
|
#include <machine/ansi.h>
|
2000-02-03 19:16:06 +03:00
|
|
|
#include <sys/featuretest.h>
|
1995-02-14 02:06:39 +03:00
|
|
|
|
2000-05-10 21:53:45 +04:00
|
|
|
typedef _BSD_VA_LIST_ va_list;
|
|
|
|
|
1996-12-22 11:57:23 +03:00
|
|
|
#ifdef __lint__
|
|
|
|
#define __builtin_saveregs() (0)
|
|
|
|
#define __builtin_classify_type(t) (0)
|
1999-05-03 20:30:31 +04:00
|
|
|
#define __builtin_next_arg(t) ((t) ? 0 : 0)
|
2000-05-10 21:53:45 +04:00
|
|
|
#define __builtin_stdarg_start(a, l) ((a) = ((l) ? 0 : 0))
|
|
|
|
#define __builtin_va_arg(a, t) ((a) ? 0 : 0)
|
|
|
|
#define __builtin_va_end /* nothing */
|
|
|
|
#define __builtin_va_copy(d, s) ((d) = (s))
|
1996-12-22 11:57:23 +03:00
|
|
|
#endif
|
|
|
|
|
2000-05-10 21:53:45 +04:00
|
|
|
#if __GNUC_PREREQ__(2, 96)
|
|
|
|
#define va_start(ap, last) __builtin_stdarg_start((ap), (last))
|
|
|
|
#define va_arg __builtin_va_arg
|
|
|
|
#define va_end __builtin_va_end
|
|
|
|
#define __va_copy(dest, src) __builtin_va_copy((dest), (src))
|
|
|
|
#else
|
1995-02-14 02:06:39 +03:00
|
|
|
#define __va_size(type) \
|
|
|
|
(((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long))
|
|
|
|
|
1995-12-26 03:15:47 +03:00
|
|
|
#define va_start(ap, last) \
|
1997-04-04 08:17:06 +04:00
|
|
|
(__builtin_next_arg(last), (ap) = *(va_list *)__builtin_saveregs(), (ap).__pad = 0)
|
1995-12-26 03:15:47 +03:00
|
|
|
|
1995-02-14 02:06:39 +03:00
|
|
|
#define __REAL_TYPE_CLASS 8
|
1995-12-26 03:15:47 +03:00
|
|
|
#define __va_arg_offset(ap, type) \
|
1995-02-14 02:06:39 +03:00
|
|
|
((__builtin_classify_type(*(type *)0) == __REAL_TYPE_CLASS && \
|
1997-04-04 08:17:06 +04:00
|
|
|
(ap).__offset <= (6 * 8) ? -(6 * 8) : 0) - __va_size(type))
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1995-12-26 03:15:47 +03:00
|
|
|
#define va_arg(ap, type) \
|
1997-04-04 08:17:06 +04:00
|
|
|
(*(type *)((ap).__offset += __va_size(type), \
|
|
|
|
(ap).__base + (ap).__offset + __va_arg_offset(ap, type)))
|
1995-02-14 02:06:39 +03:00
|
|
|
|
2000-05-10 21:53:45 +04:00
|
|
|
#define va_end(ap)
|
|
|
|
|
|
|
|
#define __va_copy(dest, src) \
|
|
|
|
((dest) = (src))
|
|
|
|
#endif
|
|
|
|
|
2000-02-03 19:16:06 +03:00
|
|
|
#if !defined(_ANSI_SOURCE) && \
|
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
|
|
|
(defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L || \
|
|
|
|
defined(_NETBSD_SOURCE))
|
2000-05-10 21:53:45 +04:00
|
|
|
#define va_copy(dest, src) __va_copy((dest), (src))
|
2000-02-03 19:16:06 +03:00
|
|
|
#endif
|
|
|
|
|
1995-12-26 03:15:47 +03:00
|
|
|
#endif /* !_ALPHA_STDARG_H_ */
|