mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
3475651701
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
57 lines
2.1 KiB
C
57 lines
2.1 KiB
C
#ifndef STDARG_H
|
|
#define STDARG_H
|
|
|
|
// When building with GCC, use the official vaarg macros to avoid warnings and possibly bad codegen.
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define va_list __builtin_va_list
|
|
#define va_start __builtin_va_start
|
|
#define va_arg __builtin_va_arg
|
|
#define va_end __builtin_va_end
|
|
|
|
#else
|
|
|
|
#ifndef _VA_LIST_
|
|
# define _VA_LIST_
|
|
typedef char* va_list;
|
|
#endif
|
|
|
|
#define _INT 0
|
|
#define _FP 1
|
|
#define _STRUCT 2
|
|
|
|
#define _VA_FP_SAVE_AREA 0x10
|
|
|
|
#define _VA_ALIGN(p, a) (((unsigned int)(((char*)p) + ((a) > 4 ? (a) : 4) - 1)) & -((a) > 4 ? (a) : 4))
|
|
|
|
#define va_start(list, parmN) (list = ((va_list)&parmN + sizeof(parmN)))
|
|
|
|
#define __va_stack_arg(list, mode) \
|
|
( \
|
|
((list) = (char*)_VA_ALIGN(list, __builtin_alignof(mode)) + \
|
|
_VA_ALIGN(sizeof(mode), 4)), \
|
|
(((char*)list) - (_VA_ALIGN(sizeof(mode), 4) - sizeof(mode))) \
|
|
)
|
|
|
|
#define __va_double_arg(list, mode) \
|
|
( \
|
|
(((long)list & 0x1) /* 1 byte aligned? */ \
|
|
? (list = (char*)((long)list + 7), (char*)((long)list - 6 - _VA_FP_SAVE_AREA)) \
|
|
: (((long)list & 0x2) /* 2 byte aligned? */ \
|
|
? (list = (char*)((long)list + 10), (char*)((long)list - 24 - _VA_FP_SAVE_AREA)) \
|
|
: __va_stack_arg(list, mode))) \
|
|
)
|
|
|
|
#define va_arg(list, mode) \
|
|
((mode*)(((__builtin_classof(mode) == _FP && \
|
|
__builtin_alignof(mode) == sizeof(double)) \
|
|
? __va_double_arg(list, mode) \
|
|
: __va_stack_arg(list, mode))))[-1]
|
|
|
|
/* No cleanup processing is required for the end of a varargs list: */
|
|
#define va_end(__list)
|
|
|
|
#endif /* __GNUC__ */
|
|
|
|
#endif
|