1998-09-07 01:45:24 +02:00
|
|
|
#ifndef _ALLOCA_H
|
|
|
|
|
1995-02-18 02:27:10 +01:00
|
|
|
#include <stdlib/alloca.h>
|
2002-11-20 20:42:37 +01:00
|
|
|
#include <stackinfo.h>
|
1998-08-09 19:39:48 +02:00
|
|
|
|
|
|
|
#undef __alloca
|
|
|
|
|
|
|
|
/* Now define the internal interfaces. */
|
1999-11-23 18:22:17 +01:00
|
|
|
extern void *__alloca (size_t __size);
|
1998-08-09 19:39:48 +02:00
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
# define __alloca(size) __builtin_alloca (size)
|
|
|
|
#endif /* GCC. */
|
1998-09-07 01:45:24 +02:00
|
|
|
|
2002-10-09 11:42:48 +02: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 20:42:37 +01: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
|
2006-01-06 10:55:30 +01:00
|
|
|
# define extend_alloca(buf, len, newlen) \
|
2002-11-20 20:42:37 +01:00
|
|
|
__alloca (((len) = (newlen)))
|
|
|
|
#endif
|
|
|
|
|
1998-09-07 01:45:24 +02:00
|
|
|
#endif
|