tinycc/include/stdarg.h

53 lines
1.7 KiB
C
Raw Normal View History

2001-11-11 02:54:21 +00:00
#ifndef _STDARG_H
#define _STDARG_H
#ifdef __x86_64__
2009-07-18 20:06:37 +00:00
#ifndef _WIN64
typedef void *va_list;
va_list __va_start(void *fp);
void *__va_arg(va_list ap, int arg_type, int size, int align);
va_list __va_copy(va_list src);
void __va_end(va_list ap);
#define va_start(ap, last) ((ap) = __va_start(__builtin_frame_address(0)))
#define va_arg(ap, type) \
(*(type *)(__va_arg(ap, __builtin_va_arg_types(type), sizeof(type), __alignof__(type))))
#define va_copy(dest, src) ((dest) = __va_copy(src))
#define va_end(ap) __va_end(ap)
2009-07-18 20:06:37 +00:00
#else /* _WIN64 */
2001-11-11 02:54:21 +00:00
typedef char *va_list;
#define va_start(ap,last) __builtin_va_start(ap,last)
#define va_arg(ap,type) (ap += 8, sizeof(type)<=8 ? *(type*)ap : **(type**)ap)
#define va_copy(dest, src) ((dest) = (src))
2009-07-18 20:06:37 +00:00
#define va_end(ap)
#endif
2001-11-11 02:54:21 +00:00
2013-11-25 03:24:02 +00:00
#elif __arm__
typedef char *va_list;
#define _tcc_alignof(type) ((int)&((struct {char c;type x;} *)0)->x)
#define _tcc_align(addr,type) (((unsigned)addr + _tcc_alignof(type) - 1) \
& ~(_tcc_alignof(type) - 1))
#define va_start(ap,last) ap = ((char *)&(last)) + ((sizeof(last)+3)&~3)
#define va_arg(ap,type) (ap = (void *) ((_tcc_align(ap,type)+sizeof(type)+3) \
&~3), *(type *)(ap - ((sizeof(type)+3)&~3)))
#define va_copy(dest, src) (dest) = (src)
#define va_end(ap)
2009-07-18 20:06:37 +00:00
#else /* __i386__ */
typedef char *va_list;
2001-11-11 02:54:21 +00:00
/* only correct for i386 */
2002-08-31 12:43:53 +00:00
#define va_start(ap,last) ap = ((char *)&(last)) + ((sizeof(last)+3)&~3)
#define va_arg(ap,type) (ap += (sizeof(type)+3)&~3, *(type *)(ap - ((sizeof(type)+3)&~3)))
2006-10-28 19:45:50 +00:00
#define va_copy(dest, src) (dest) = (src)
2001-11-11 02:54:21 +00:00
#define va_end(ap)
#endif
2001-11-11 18:01:29 +00:00
/* fix a buggy dependency on GCC in libio.h */
typedef va_list __gnuc_va_list;
2003-01-06 20:22:23 +00:00
#define _VA_LIST_DEFINED
2001-11-11 18:01:29 +00:00
#endif /* _STDARG_H */