| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /* stdarg.h: ANSI 'C' (X3J11 Oct 88) library header, section 4.8 */
- /* Copyright (C) Codemist Ltd., 1988 */
- /* Copyright (C) ARM Ltd., 1991-1999. All rights reserved */
- /*
- * RCS $Revision$
- * Checkin $Date$
- * Revising $Author: agrant $
- */
- #ifndef __stdarg_h
- #define __stdarg_h
- #define __ARMCLIB_VERSION 5060019
- #ifndef __STDARG_DECLS
- #define __STDARG_DECLS
- #undef __CLIBNS
- #ifdef __cplusplus
- namespace std {
- #define __CLIBNS ::std::
- extern "C" {
- #else
- #define __CLIBNS
- #endif /* __cplusplus */
- /*
- * stdarg.h declares a type and defines macros for advancing through a
- * list of arguments whose number and types are not known to the called
- * function when it is translated. A function may be called with a variable
- * number of arguments of differing types. Its parameter list contains one or
- * more parameters. The rightmost parameter plays a special role in the access
- * mechanism, and will be called parmN in this description.
- */
- /* N.B. <stdio.h> is required to declare vfprintf() without defining */
- /* va_list. Clearly the type __va_list there must keep in step. */
- #ifdef __clang__
- typedef __builtin_va_list va_list;
- #define va_start(ap, param) __builtin_va_start(ap, param)
- #define va_end(ap) __builtin_va_end(ap)
- #define va_arg(ap, type) __builtin_va_arg(ap, type)
- #if __STDC_VERSION__ >= 199900L || __cplusplus >= 201103L || !defined(__STRICT_ANSI__)
- #define va_copy(dest, src) __builtin_va_copy(dest, src)
- #endif
- #else
- #ifdef __TARGET_ARCH_AARCH64
- typedef struct __va_list {
- void *__stack;
- void *__gr_top;
- void *__vr_top;
- int __gr_offs;
- int __vr_offs;
- } va_list;
- #else
- typedef struct __va_list { void *__ap; } va_list;
- #endif
- /*
- * an array type suitable for holding information needed by the macro va_arg
- * and the function va_end. The called function shall declare a variable
- * (referred to as ap) having type va_list. The variable ap may be passed as
- * an argument to another function.
- * Note: va_list is an array type so that when an object of that type
- * is passed as an argument it gets passed by reference.
- */
- #define va_start(ap, parmN) __va_start(ap, parmN)
- /*
- * The va_start macro shall be executed before any access to the unnamed
- * arguments. The parameter ap points to an object that has type va_list.
- * The va_start macro initialises ap for subsequent use by va_arg and
- * va_end. The parameter parmN is the identifier of the rightmost parameter
- * in the variable parameter list in the function definition (the one just
- * before the '...'). If the parameter parmN is declared with the register
- * storage class an error is given.
- * If parmN is a narrow type (char, short, float) an error is given in
- * strict ANSI mode, or a warning otherwise.
- * Returns: no value.
- */
- #define va_arg(ap, type) __va_arg(ap, type)
- /*
- * The va_arg macro expands to an expression that has the type and value of
- * the next argument in the call. The parameter ap shall be the same as the
- * va_list ap initialised by va_start. Each invocation of va_arg modifies
- * ap so that successive arguments are returned in turn. The parameter
- * 'type' is a type name such that the type of a pointer to an object that
- * has the specified type can be obtained simply by postfixing a * to
- * 'type'. If type is a narrow type, an error is given in strict ANSI
- * mode, or a warning otherwise. If the type is an array or function type,
- * an error is given.
- * In non-strict ANSI mode, 'type' is allowed to be any expression.
- * Returns: The first invocation of the va_arg macro after that of the
- * va_start macro returns the value of the argument after that
- * specified by parmN. Successive invocations return the values of
- * the remaining arguments in succession.
- * The result is cast to 'type', even if 'type' is narrow.
- */
- #define __va_copy(dest, src) ((void)((dest) = (src)))
- #if !defined(__STRICT_ANSI__) || (defined(__STDC_VERSION__) && 199901L <= __STDC_VERSION__) || (defined(__cplusplus) && 201103L <= __cplusplus)
- /* va_copy is in C99 and non-strict C90 and non-strict C++
- * __va_copy is always present.
- */
- #define va_copy(dest, src) ((void)((dest) = (src)))
- /* The va_copy macro makes the va_list dest be a copy of
- * the va_list src, as if the va_start macro had been applied
- * to it followed by the same sequence of uses of the va_arg
- * macro as had previously been used to reach the present state
- * of src.
- */
- #endif
- #define va_end(ap) __va_end(ap)
- /*
- * The va_end macro facilitates a normal return from the function whose
- * variable argument list was referenced by the expansion of va_start that
- * initialised the va_list ap. If the va_end macro is not invoked before
- * the return, the behaviour is undefined.
- * Returns: no value.
- */
- #endif /* __clang__ */
- #ifdef __cplusplus
- } /* extern "C" */
- } /* namespace std */
- #endif /* __cplusplus */
- #ifdef __GNUC__
- /* be cooperative with glibc */
- typedef __CLIBNS va_list __gnuc_va_list;
- #define __GNUC_VA_LIST
- #undef __need___va_list
- #endif
- #endif /* __STDARG_DECLS */
- #ifdef __cplusplus
- #ifndef __STDARG_NO_EXPORTS
- using ::std::va_list;
- #endif
- #endif /* __cplusplus */
- #endif
- /* end of stdarg.h */
|