1998-09-06 23:45:24 +00:00
|
|
|
#ifndef _ALLOCA_H
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <stdlib/alloca.h>
|
2002-11-20 19:42:37 +00:00
|
|
|
#include <stackinfo.h>
|
1998-08-09 17:39:48 +00:00
|
|
|
|
|
|
|
#undef __alloca
|
|
|
|
|
|
|
|
/* Now define the internal interfaces. */
|
1999-11-23 17:22:17 +00:00
|
|
|
extern void *__alloca (size_t __size);
|
1998-08-09 17:39:48 +00:00
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
# define __alloca(size) __builtin_alloca (size)
|
|
|
|
#endif /* GCC. */
|
1998-09-06 23:45:24 +00:00
|
|
|
|
2002-10-09 09:42:48 +00:00
|
|
|
extern int __libc_use_alloca (size_t size) __attribute__ ((const));
|
|
|
|
extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const));
|
|
|
|
|
|
|
|
#define __MAX_ALLOCA_CUTOFF 65536
|
|
|
|
|
|
|
|
#include <allocalim.h>
|
|
|
|
|
2002-11-20 19:42:37 +00:00
|
|
|
#if _STACK_GROWS_DOWN
|
|
|
|
# define extend_alloca(buf, len, newlen) \
|
|
|
|
(__typeof (buf)) ({ size_t __newlen = (newlen); \
|
|
|
|
char *__newbuf = __alloca (__newlen); \
|
|
|
|
if (__newbuf + __newlen == (char *) buf) \
|
|
|
|
len += __newlen; \
|
|
|
|
else \
|
|
|
|
len = __newlen; \
|
|
|
|
__newbuf; })
|
|
|
|
#elif _STACK_GROWS_UP
|
|
|
|
# define extend_alloca(buf, len, newlen) \
|
|
|
|
(__typeof (buf)) ({ size_t __newlen = (newlen); \
|
|
|
|
char *__newbuf = __alloca (__newlen); \
|
|
|
|
char *__buf = (buf); \
|
|
|
|
if (__buf + __newlen == __newbuf) \
|
|
|
|
{ \
|
|
|
|
len += __newlen; \
|
|
|
|
__newbuf = __buf; \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
len = __newlen; \
|
|
|
|
__newbuf; })
|
|
|
|
#else
|
2004-12-22 20:10:10 +00:00
|
|
|
# define extern_alloca(buf, len, newlen) \
|
2002-11-20 19:42:37 +00:00
|
|
|
__alloca (((len) = (newlen)))
|
|
|
|
#endif
|
|
|
|
|
1998-09-06 23:45:24 +00:00
|
|
|
#endif
|