1997-08-22 00:57:35 +02:00
|
|
|
/* alloca.c -- allocate automatically reclaimed memory
|
|
|
|
(Mostly) portable public-domain implementation -- D A Gwyn
|
|
|
|
|
|
|
|
This implementation of the PWB library alloca function,
|
|
|
|
which is used to allocate space off the run-time stack so
|
|
|
|
that it is automatically reclaimed upon procedure exit,
|
|
|
|
was inspired by discussions with J. Q. Johnson of Cornell.
|
|
|
|
J.Otto Tennant <jot@cray.com> contributed the Cray support.
|
|
|
|
|
|
|
|
There are some preprocessor constants that can
|
|
|
|
be defined when compiling for your specific system, for
|
|
|
|
improved efficiency; however, the defaults should be okay.
|
|
|
|
|
|
|
|
The general concept of this implementation is to keep
|
|
|
|
track of all alloca-allocated blocks, and reclaim any
|
|
|
|
that are found to be deeper in the stack than the current
|
|
|
|
invocation. This heuristic does not reclaim storage as
|
|
|
|
soon as it becomes invalid, but it will do so eventually.
|
|
|
|
|
|
|
|
As a special case, alloca(0) reclaims storage without
|
|
|
|
allocating any. It is a good idea to use alloca(0) in
|
|
|
|
your main control loop, etc. to force garbage collection. */
|
|
|
|
|
configure.in (MAKEINFO, PERL): Detect these.
* configure.in (MAKEINFO, PERL): Detect these.
(--enable-maintainer-mode): Add.
* configure: Regenerate.
* Makefile.in (MAKEINFO, PERL): Define.
(libiberty.info, libiberty.dvi, libiberty.html): New.
(CFILES): Add bsearch.c.
(CONFIGURED_OFILES): New, list of objects configure might add.
(maint-missing, maint-buildall): New, for maintainers only.
(clean, mostlyclean): Add info/dvi/html files.
* libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
* gather-docs: New, for maintainers.
* maint-tool: New, for maintainers.
* alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
documentation.
Co-Authored-By: Phil Edwards <pedwards@disaster.jaj.com>
From-SVN: r45828
2001-09-26 20:16:17 +02:00
|
|
|
/*
|
|
|
|
|
alloca.c, [...]: Improve manual formatting.
* alloca.c, clock.c, getcwd.c, getpagesize.c, getpwd.c, index.c,
libiberty.texi, memchr.c, putenv.c, rindex.c, strchr.c, strdup.c,
strerror.c, strrchr.c, strstr.c, strtod.c, tmpnam.c, vfork.c,
xatexit.c, xmalloc.c, xstrerror.c: Improve manual formatting. Fix
spelling. Give names to function arguments in documentation. Use
(void) prototypes in documentation.
* functions.texi: Regenerate.
From-SVN: r46068
2001-10-07 23:53:31 +02:00
|
|
|
@deftypefn Replacement void* alloca (size_t @var{size})
|
configure.in (MAKEINFO, PERL): Detect these.
* configure.in (MAKEINFO, PERL): Detect these.
(--enable-maintainer-mode): Add.
* configure: Regenerate.
* Makefile.in (MAKEINFO, PERL): Define.
(libiberty.info, libiberty.dvi, libiberty.html): New.
(CFILES): Add bsearch.c.
(CONFIGURED_OFILES): New, list of objects configure might add.
(maint-missing, maint-buildall): New, for maintainers only.
(clean, mostlyclean): Add info/dvi/html files.
* libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
* gather-docs: New, for maintainers.
* maint-tool: New, for maintainers.
* alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
documentation.
Co-Authored-By: Phil Edwards <pedwards@disaster.jaj.com>
From-SVN: r45828
2001-09-26 20:16:17 +02:00
|
|
|
|
|
|
|
This function allocates memory which will be automatically reclaimed
|
|
|
|
after the procedure exits. The @libib{} implementation does not free
|
|
|
|
the memory immediately but will do so eventually during subsequent
|
|
|
|
calls to this function. Memory is allocated using @code{xmalloc} under
|
|
|
|
normal circumstances.
|
|
|
|
|
|
|
|
The header file @file{alloca-conf.h} can be used in conjunction with the
|
|
|
|
GNU Autoconf test @code{AC_FUNC_ALLOCA} to test for and properly make
|
|
|
|
available this function. The @code{AC_FUNC_ALLOCA} test requires that
|
|
|
|
client code use a block of preprocessor code to be safe (see the Autoconf
|
|
|
|
manual for more); this header incorporates that logic and more, including
|
alloca.c, [...]: Improve manual formatting.
* alloca.c, clock.c, getcwd.c, getpagesize.c, getpwd.c, index.c,
libiberty.texi, memchr.c, putenv.c, rindex.c, strchr.c, strdup.c,
strerror.c, strrchr.c, strstr.c, strtod.c, tmpnam.c, vfork.c,
xatexit.c, xmalloc.c, xstrerror.c: Improve manual formatting. Fix
spelling. Give names to function arguments in documentation. Use
(void) prototypes in documentation.
* functions.texi: Regenerate.
From-SVN: r46068
2001-10-07 23:53:31 +02:00
|
|
|
the possibility of a GCC built-in function.
|
configure.in (MAKEINFO, PERL): Detect these.
* configure.in (MAKEINFO, PERL): Detect these.
(--enable-maintainer-mode): Add.
* configure: Regenerate.
* Makefile.in (MAKEINFO, PERL): Define.
(libiberty.info, libiberty.dvi, libiberty.html): New.
(CFILES): Add bsearch.c.
(CONFIGURED_OFILES): New, list of objects configure might add.
(maint-missing, maint-buildall): New, for maintainers only.
(clean, mostlyclean): Add info/dvi/html files.
* libiberty.texi, copying-lib.texi, obstacks.texi, functions.texi: New.
* gather-docs: New, for maintainers.
* maint-tool: New, for maintainers.
* alloca.c, atexit.c, basename.c, bcmp.c, bcopy.c, bsearch.c,
bzero.c, calloc.c, clock.c, configure.in, configure, getcwd.c,
getpagesize.c, getpwd.c, index.c, memchr.c, memcmp.c, memcpy.c,
memmove.c, memset.c, putenv.c, rename.c, rindex.c, setenv.c,
sigsetmask.c, strcasecmp.c, strchr.c, strdup.c, strerror.c,
strncasecmp.c, strncmp.c, strrchr.c, strstr.c, strtod.c, strtol.c,
tmpnam.c, vfork.c, vprintf.c, waitpid.c, xatexit.c, xexit.c,
xmalloc.c, xmemdup.c, xstrdup.c, xstrerror.c: Add or update
documentation.
Co-Authored-By: Phil Edwards <pedwards@disaster.jaj.com>
From-SVN: r45828
2001-09-26 20:16:17 +02:00
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
1998-09-05 12:42:19 +02:00
|
|
|
#include <config.h>
|
1997-08-22 00:57:35 +02:00
|
|
|
#endif
|
|
|
|
|
aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
libiberty:
* aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
* configure.in: Replace all alloca logic with a simple use of
the above new macro.
* config.table: Kill *-*-beos* entry.
* config/mh-beos: Delete.
* configure, config.in: Regenerate.
* Makefile.in (ALLOCA, HFILES): Kill.
(REQUIRED_OFILES): Add alloca.o.
(alloca.o): Depend on libiberty.h.
(argv.o): Don't depend on alloca-conf.h.
* alloca-conf.h: Delete.
* alloca.c: Include libiberty.h. Kill all #ifdef emacs
blocks. Provide the C alloca unconditionally. Use PTR where
appropriate. Make i00afunc static.
* argv.c: Don't include alloca-conf.h.
include:
* libiberty.h: Prototype C_alloca; define alloca to either
__builtin_alloca or C_alloca as appropriate.
gcc:
* aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE
AC_FUNC_ALLOCA.
* configure, config.in: Regenerate.
* config.gcc: Remove references to deleted files.
* genattr.c, genattrtab.c, genextract.c, genoutput.c,
genrecog.c, rtl.c: Do not use alloca anywhere.
* Makefile.in, build-make, system.h, config/x-interix,
config/x-svr4, config/xm-interix.h, config/xm-openbsd.h,
config/alpha/xm-alpha.h, config/alpha/xm-vms.h,
config/arc/xm-arc.h, config/arm/xm-arm.h,
config/d30v/xm-d30v.h, config/dsp16xx/xm-dsp16xx.h,
config/h8300/xm-h8300.h, config/i370/x-oe,
config/i370/xm-linux.h, config/i386/x-aix, config/i386/x-beos,
config/i386/x-ncr3000, config/i386/x-sco5,
config/i386/xm-dgux.h, config/i860/x-sysv4,
config/i960/xm-i960.h, config/m32r/xm-m32r.h,
config/m68k/x-crds, config/m68k/x-dpx2, config/m68k/x-hp320,
config/m68k/x-hp320g, config/m69k/x-mot3300,
config/m68k/x-mot3300-gas, config/m68k/xm-amix.h,
config/m68k/xm-hp320.h, config/m68k/xm-m68kv.h,
config/m68k/xm-mot3300.h, config/m88k/x-dolph,
config/m88k/x-sysv4, config/m88k/x-tekXD88,
config/m88k/xm-m88k.h, config/mcore/xm-mcore.h,
config/mips/x-iris, config/mips/x-iris3,
config/mips/x-sni-svr4, config/mips/x-sysv,
config/mips/xm-iris6.h, config/mips/xm-mips.h,
config/mips/xm-nws3250v4.h, config/pa/x-hpux,
config/pa/x-pa-mpeix, config/pa/xm-pa.h,
config/pa/xm-pa64hpux.h, config/pa/xm-pahpux.h,
config/pa/xm-papro.h, config/romp/xm-romp.h,
config/rs6000/x-aix31, config/rs6000/x-aix41,
config/rs6000/x-beos, config/rs6000/x-lynx,
config/rs6000/x-mach, config/rs6000/x-rs6000,
config/rs6000/x-sysv4, config/rs6000/xm-rs6000.h,
config/rs6000/xm-sysv4.h, config/sh/xm-sh.h,
config/sparc/x-sysv4, config/sparc/xm-linux.h,
config/sparc/xm-pbd.h, config/sparc/xm-sparc.h,
config/vax/xm-vms.h: Eradicate all references to alloca and
related stuff.
* config/xm-alloca.h, config/clipper/x-clix,
config/i386/xm-sysv4.h, config/i860/x-fx2800,
config/i860/x-sysv3, config/m88k/x-sysv3,
config/sparc/xm-sol2.h, config/we32k/x-we32k: Delete
(contained only alloca related hacks).
* config/i386/xm-beos.h, config/rs6000/xm-beos.h: Just define
USE_C_ALLOCA.
From-SVN: r40259
2001-03-06 10:52:35 +01:00
|
|
|
#include <libiberty.h>
|
|
|
|
|
1998-09-05 12:42:19 +02:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
2001-09-17 20:48:45 +02:00
|
|
|
/* These variables are used by the ASTRDUP implementation that relies
|
|
|
|
on C_alloca. */
|
2005-05-24 22:48:25 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
2001-09-17 20:48:45 +02:00
|
|
|
const char *libiberty_optr;
|
|
|
|
char *libiberty_nptr;
|
|
|
|
unsigned long libiberty_len;
|
2005-05-24 22:48:25 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
2001-09-17 20:48:45 +02:00
|
|
|
|
1997-08-22 00:57:35 +02:00
|
|
|
/* If your stack is a linked list of frames, you have to
|
|
|
|
provide an "address metric" ADDRESS_FUNCTION macro. */
|
|
|
|
|
|
|
|
#if defined (CRAY) && defined (CRAY_STACKSEG_END)
|
aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
libiberty:
* aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
* configure.in: Replace all alloca logic with a simple use of
the above new macro.
* config.table: Kill *-*-beos* entry.
* config/mh-beos: Delete.
* configure, config.in: Regenerate.
* Makefile.in (ALLOCA, HFILES): Kill.
(REQUIRED_OFILES): Add alloca.o.
(alloca.o): Depend on libiberty.h.
(argv.o): Don't depend on alloca-conf.h.
* alloca-conf.h: Delete.
* alloca.c: Include libiberty.h. Kill all #ifdef emacs
blocks. Provide the C alloca unconditionally. Use PTR where
appropriate. Make i00afunc static.
* argv.c: Don't include alloca-conf.h.
include:
* libiberty.h: Prototype C_alloca; define alloca to either
__builtin_alloca or C_alloca as appropriate.
gcc:
* aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE
AC_FUNC_ALLOCA.
* configure, config.in: Regenerate.
* config.gcc: Remove references to deleted files.
* genattr.c, genattrtab.c, genextract.c, genoutput.c,
genrecog.c, rtl.c: Do not use alloca anywhere.
* Makefile.in, build-make, system.h, config/x-interix,
config/x-svr4, config/xm-interix.h, config/xm-openbsd.h,
config/alpha/xm-alpha.h, config/alpha/xm-vms.h,
config/arc/xm-arc.h, config/arm/xm-arm.h,
config/d30v/xm-d30v.h, config/dsp16xx/xm-dsp16xx.h,
config/h8300/xm-h8300.h, config/i370/x-oe,
config/i370/xm-linux.h, config/i386/x-aix, config/i386/x-beos,
config/i386/x-ncr3000, config/i386/x-sco5,
config/i386/xm-dgux.h, config/i860/x-sysv4,
config/i960/xm-i960.h, config/m32r/xm-m32r.h,
config/m68k/x-crds, config/m68k/x-dpx2, config/m68k/x-hp320,
config/m68k/x-hp320g, config/m69k/x-mot3300,
config/m68k/x-mot3300-gas, config/m68k/xm-amix.h,
config/m68k/xm-hp320.h, config/m68k/xm-m68kv.h,
config/m68k/xm-mot3300.h, config/m88k/x-dolph,
config/m88k/x-sysv4, config/m88k/x-tekXD88,
config/m88k/xm-m88k.h, config/mcore/xm-mcore.h,
config/mips/x-iris, config/mips/x-iris3,
config/mips/x-sni-svr4, config/mips/x-sysv,
config/mips/xm-iris6.h, config/mips/xm-mips.h,
config/mips/xm-nws3250v4.h, config/pa/x-hpux,
config/pa/x-pa-mpeix, config/pa/xm-pa.h,
config/pa/xm-pa64hpux.h, config/pa/xm-pahpux.h,
config/pa/xm-papro.h, config/romp/xm-romp.h,
config/rs6000/x-aix31, config/rs6000/x-aix41,
config/rs6000/x-beos, config/rs6000/x-lynx,
config/rs6000/x-mach, config/rs6000/x-rs6000,
config/rs6000/x-sysv4, config/rs6000/xm-rs6000.h,
config/rs6000/xm-sysv4.h, config/sh/xm-sh.h,
config/sparc/x-sysv4, config/sparc/xm-linux.h,
config/sparc/xm-pbd.h, config/sparc/xm-sparc.h,
config/vax/xm-vms.h: Eradicate all references to alloca and
related stuff.
* config/xm-alloca.h, config/clipper/x-clix,
config/i386/xm-sysv4.h, config/i860/x-fx2800,
config/i860/x-sysv3, config/m88k/x-sysv3,
config/sparc/xm-sol2.h, config/we32k/x-we32k: Delete
(contained only alloca related hacks).
* config/i386/xm-beos.h, config/rs6000/xm-beos.h: Just define
USE_C_ALLOCA.
From-SVN: r40259
2001-03-06 10:52:35 +01:00
|
|
|
static long i00afunc ();
|
1997-08-22 00:57:35 +02:00
|
|
|
#define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
|
|
|
|
#else
|
|
|
|
#define ADDRESS_FUNCTION(arg) &(arg)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NULL
|
|
|
|
#define NULL 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define STACK_DIRECTION if you know the direction of stack
|
|
|
|
growth for your system; otherwise it will be automatically
|
|
|
|
deduced at run-time.
|
|
|
|
|
|
|
|
STACK_DIRECTION > 0 => grows toward higher addresses
|
|
|
|
STACK_DIRECTION < 0 => grows toward lower addresses
|
|
|
|
STACK_DIRECTION = 0 => direction of growth unknown */
|
|
|
|
|
|
|
|
#ifndef STACK_DIRECTION
|
|
|
|
#define STACK_DIRECTION 0 /* Direction unknown. */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if STACK_DIRECTION != 0
|
|
|
|
|
|
|
|
#define STACK_DIR STACK_DIRECTION /* Known at compile-time. */
|
|
|
|
|
|
|
|
#else /* STACK_DIRECTION == 0; need run-time code. */
|
|
|
|
|
|
|
|
static int stack_dir; /* 1 or -1 once known. */
|
|
|
|
#define STACK_DIR stack_dir
|
|
|
|
|
|
|
|
static void
|
demangle.h: Remove uses of PARAMS.
include/
2005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
* demangle.h: Remove uses of PARAMS.
* libiberty.h (ANSI_PROTOTYPES): Remove guard since
ANSI_PROTOTYPES is always assumed.
Remove uses of PARAMS throughout.
libiberty/
2005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 2/n.
* cp-demangle.h: Remove uses of PARAMS.
* cp-demangle.c: Likewise.
(d_dump, cplus_demangle_fill_name,
cplus_demangle_fill_extended_operator,
cplus_demangle_fill_ctor,
cplus_demangle_fill_dtor, d_make_empty, d_make_comp,
d_make_name,
d_make_builtin_type, d_make_operator,
d_make_extended_operator,
d_make_ctor, d_make_dtor, d_make_template_param, d_make_sub,
cplus_demangle_mangled_name, has_return_type,
is_ctor_dtor_or_conversion, d_encoding, d_name, d_nested_name,
d_prefix, d_unqualified_name, d_source_name, d_number,
d_identifier, d_operator_name, d_special_name, d_call_offset,
d_ctor_dtor_name, cplus_demangle_type, d_cv_qualifiers,
d_function_type, d_bare_function_type, d_class_enum_type,
d_array_type, d_pointer_to_member_type, d_template_param,
d_template_args, d_template_arg, d_expression, d_expr_primary,
d_local_name, d_discriminator, d_add_substitution,
d_substitution, d_print_resize, d_print_append_char,
d_print_append_buffer, d_print_error, cplus_demangle_print,
d_print_comp, d_print_java_identifier, d_print_mod_list,
d_print_mod, d_print_function_type, d_print_array_type,
d_print_expr_op, d_print_cast, cplus_demangle_init_info,
d_demangle, __cxa_demangle, cplus_demangle_v3,
java_demangle_v3,
is_ctor_or_dtor, is_gnu_v3_mangled_ctor,
is_gnu_v3_mangled_dtor,
print_usage, main):
2005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to ISO C prototype style 1/n.
* _doprnt.c: Remove conditional #include <varargs.h> on
ANSI_PROTOTYPES as the latter is always assumed.
(_doprnt, checkit, main): Use ISO C prototype.
* alloca.c (find_stack_direction, C_alloca): Use ISO C
prototype.
* argv.c: Remove conditional #includes on ANSI_PROTOTYPES.
(dupargv, freeargv, buildargv, main): Use ISO C prototype.
* atexit.c (atexit): Likewise
* asprintf.c: Remove conditional include on ANSI_PROTOTYPES.
(asprintf): Use ISO C prototype.
* basename.c (basename): Likewise
* bcmp.c (bcmp): Likewise.
* bcopy.c (bcopy): Likewise.
* bzero.c (bzero): Likewise.
* bsearch.c (bsearch): Likewise. Improve const-correctness.
* choose-temp.c (choose_temp_base): Likewise.
* calloc.c: Remove conditional #include on ANSI_PROTOTYPES.
(calloc): Use ISO C prototype.
* clock.c (clock): Likewise.
* concat.c: Remove conditional #include on ANSI_PROTOTYPES.
(vconcat_length, vconcat_copy, concat_length, concat_copy,
concat_copy2, concat, reconcat, main): Use ISO C prototype.
* copysign.c (copysign): Likewise.
From-SVN: r97085
2005-03-26 20:24:33 +01:00
|
|
|
find_stack_direction (void)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
static char *addr = NULL; /* Address of first `dummy', once known. */
|
|
|
|
auto char dummy; /* To get stack address. */
|
|
|
|
|
|
|
|
if (addr == NULL)
|
|
|
|
{ /* Initial entry. */
|
|
|
|
addr = ADDRESS_FUNCTION (dummy);
|
|
|
|
|
|
|
|
find_stack_direction (); /* Recurse once. */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Second entry. */
|
|
|
|
if (ADDRESS_FUNCTION (dummy) > addr)
|
|
|
|
stack_dir = 1; /* Stack grew upward. */
|
|
|
|
else
|
|
|
|
stack_dir = -1; /* Stack grew downward. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* STACK_DIRECTION == 0 */
|
|
|
|
|
|
|
|
/* An "alloca header" is used to:
|
|
|
|
(a) chain together all alloca'ed blocks;
|
|
|
|
(b) keep track of stack depth.
|
|
|
|
|
|
|
|
It is very important that sizeof(header) agree with malloc
|
|
|
|
alignment chunk size. The following default should work okay. */
|
|
|
|
|
|
|
|
#ifndef ALIGN_SIZE
|
|
|
|
#define ALIGN_SIZE sizeof(double)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef union hdr
|
|
|
|
{
|
|
|
|
char align[ALIGN_SIZE]; /* To force sizeof(header). */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
union hdr *next; /* For chaining headers. */
|
|
|
|
char *deep; /* For stack depth measure. */
|
|
|
|
} h;
|
|
|
|
} header;
|
|
|
|
|
|
|
|
static header *last_alloca_header = NULL; /* -> last alloca header. */
|
|
|
|
|
|
|
|
/* Return a pointer to at least SIZE bytes of storage,
|
|
|
|
which will be automatically reclaimed upon exit from
|
|
|
|
the procedure that called alloca. Originally, this space
|
|
|
|
was supposed to be taken from the current stack frame of the
|
|
|
|
caller, but that method cannot be made to work for some
|
|
|
|
implementations of C, for example under Gould's UTX/32. */
|
|
|
|
|
Makefile.in (TEXIFILES): Add fnmatch.txh.
* Makefile.in (TEXIFILES): Add fnmatch.txh.
(maint-undoc): New.
maint-tool: Add "undoc" tool.
* alloca.c, argv.c, asprintf.c, choose-temp.c, concat.c,
fdmatch.c, ffs.c, getruntime.c, insque.c, lbasename.c,
make-temp-file.c, mkstemps.c, pexecute.c, random.c, spaces.c,
strerror.s, strsignal.c, strtol.c, vasprintf.c: Add or update
documentation.
* fnmatch.txh: New.
* functions.texi: Regenerate.
From-SVN: r46274
2001-10-16 04:50:13 +02:00
|
|
|
/* @undocumented C_alloca */
|
|
|
|
|
aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
libiberty:
* aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
* configure.in: Replace all alloca logic with a simple use of
the above new macro.
* config.table: Kill *-*-beos* entry.
* config/mh-beos: Delete.
* configure, config.in: Regenerate.
* Makefile.in (ALLOCA, HFILES): Kill.
(REQUIRED_OFILES): Add alloca.o.
(alloca.o): Depend on libiberty.h.
(argv.o): Don't depend on alloca-conf.h.
* alloca-conf.h: Delete.
* alloca.c: Include libiberty.h. Kill all #ifdef emacs
blocks. Provide the C alloca unconditionally. Use PTR where
appropriate. Make i00afunc static.
* argv.c: Don't include alloca-conf.h.
include:
* libiberty.h: Prototype C_alloca; define alloca to either
__builtin_alloca or C_alloca as appropriate.
gcc:
* aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE
AC_FUNC_ALLOCA.
* configure, config.in: Regenerate.
* config.gcc: Remove references to deleted files.
* genattr.c, genattrtab.c, genextract.c, genoutput.c,
genrecog.c, rtl.c: Do not use alloca anywhere.
* Makefile.in, build-make, system.h, config/x-interix,
config/x-svr4, config/xm-interix.h, config/xm-openbsd.h,
config/alpha/xm-alpha.h, config/alpha/xm-vms.h,
config/arc/xm-arc.h, config/arm/xm-arm.h,
config/d30v/xm-d30v.h, config/dsp16xx/xm-dsp16xx.h,
config/h8300/xm-h8300.h, config/i370/x-oe,
config/i370/xm-linux.h, config/i386/x-aix, config/i386/x-beos,
config/i386/x-ncr3000, config/i386/x-sco5,
config/i386/xm-dgux.h, config/i860/x-sysv4,
config/i960/xm-i960.h, config/m32r/xm-m32r.h,
config/m68k/x-crds, config/m68k/x-dpx2, config/m68k/x-hp320,
config/m68k/x-hp320g, config/m69k/x-mot3300,
config/m68k/x-mot3300-gas, config/m68k/xm-amix.h,
config/m68k/xm-hp320.h, config/m68k/xm-m68kv.h,
config/m68k/xm-mot3300.h, config/m88k/x-dolph,
config/m88k/x-sysv4, config/m88k/x-tekXD88,
config/m88k/xm-m88k.h, config/mcore/xm-mcore.h,
config/mips/x-iris, config/mips/x-iris3,
config/mips/x-sni-svr4, config/mips/x-sysv,
config/mips/xm-iris6.h, config/mips/xm-mips.h,
config/mips/xm-nws3250v4.h, config/pa/x-hpux,
config/pa/x-pa-mpeix, config/pa/xm-pa.h,
config/pa/xm-pa64hpux.h, config/pa/xm-pahpux.h,
config/pa/xm-papro.h, config/romp/xm-romp.h,
config/rs6000/x-aix31, config/rs6000/x-aix41,
config/rs6000/x-beos, config/rs6000/x-lynx,
config/rs6000/x-mach, config/rs6000/x-rs6000,
config/rs6000/x-sysv4, config/rs6000/xm-rs6000.h,
config/rs6000/xm-sysv4.h, config/sh/xm-sh.h,
config/sparc/x-sysv4, config/sparc/xm-linux.h,
config/sparc/xm-pbd.h, config/sparc/xm-sparc.h,
config/vax/xm-vms.h: Eradicate all references to alloca and
related stuff.
* config/xm-alloca.h, config/clipper/x-clix,
config/i386/xm-sysv4.h, config/i860/x-fx2800,
config/i860/x-sysv3, config/m88k/x-sysv3,
config/sparc/xm-sol2.h, config/we32k/x-we32k: Delete
(contained only alloca related hacks).
* config/i386/xm-beos.h, config/rs6000/xm-beos.h: Just define
USE_C_ALLOCA.
From-SVN: r40259
2001-03-06 10:52:35 +01:00
|
|
|
PTR
|
demangle.h: Remove uses of PARAMS.
include/
2005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
* demangle.h: Remove uses of PARAMS.
* libiberty.h (ANSI_PROTOTYPES): Remove guard since
ANSI_PROTOTYPES is always assumed.
Remove uses of PARAMS throughout.
libiberty/
2005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to use ISO C prototype style 2/n.
* cp-demangle.h: Remove uses of PARAMS.
* cp-demangle.c: Likewise.
(d_dump, cplus_demangle_fill_name,
cplus_demangle_fill_extended_operator,
cplus_demangle_fill_ctor,
cplus_demangle_fill_dtor, d_make_empty, d_make_comp,
d_make_name,
d_make_builtin_type, d_make_operator,
d_make_extended_operator,
d_make_ctor, d_make_dtor, d_make_template_param, d_make_sub,
cplus_demangle_mangled_name, has_return_type,
is_ctor_dtor_or_conversion, d_encoding, d_name, d_nested_name,
d_prefix, d_unqualified_name, d_source_name, d_number,
d_identifier, d_operator_name, d_special_name, d_call_offset,
d_ctor_dtor_name, cplus_demangle_type, d_cv_qualifiers,
d_function_type, d_bare_function_type, d_class_enum_type,
d_array_type, d_pointer_to_member_type, d_template_param,
d_template_args, d_template_arg, d_expression, d_expr_primary,
d_local_name, d_discriminator, d_add_substitution,
d_substitution, d_print_resize, d_print_append_char,
d_print_append_buffer, d_print_error, cplus_demangle_print,
d_print_comp, d_print_java_identifier, d_print_mod_list,
d_print_mod, d_print_function_type, d_print_array_type,
d_print_expr_op, d_print_cast, cplus_demangle_init_info,
d_demangle, __cxa_demangle, cplus_demangle_v3,
java_demangle_v3,
is_ctor_or_dtor, is_gnu_v3_mangled_ctor,
is_gnu_v3_mangled_dtor,
print_usage, main):
2005-03-26 Gabriel Dos Reis <gdr@integrable-solutions.net>
Convert libiberty to ISO C prototype style 1/n.
* _doprnt.c: Remove conditional #include <varargs.h> on
ANSI_PROTOTYPES as the latter is always assumed.
(_doprnt, checkit, main): Use ISO C prototype.
* alloca.c (find_stack_direction, C_alloca): Use ISO C
prototype.
* argv.c: Remove conditional #includes on ANSI_PROTOTYPES.
(dupargv, freeargv, buildargv, main): Use ISO C prototype.
* atexit.c (atexit): Likewise
* asprintf.c: Remove conditional include on ANSI_PROTOTYPES.
(asprintf): Use ISO C prototype.
* basename.c (basename): Likewise
* bcmp.c (bcmp): Likewise.
* bcopy.c (bcopy): Likewise.
* bzero.c (bzero): Likewise.
* bsearch.c (bsearch): Likewise. Improve const-correctness.
* choose-temp.c (choose_temp_base): Likewise.
* calloc.c: Remove conditional #include on ANSI_PROTOTYPES.
(calloc): Use ISO C prototype.
* clock.c (clock): Likewise.
* concat.c: Remove conditional #include on ANSI_PROTOTYPES.
(vconcat_length, vconcat_copy, concat_length, concat_copy,
concat_copy2, concat, reconcat, main): Use ISO C prototype.
* copysign.c (copysign): Likewise.
From-SVN: r97085
2005-03-26 20:24:33 +01:00
|
|
|
C_alloca (size_t size)
|
1997-08-22 00:57:35 +02:00
|
|
|
{
|
|
|
|
auto char probe; /* Probes stack depth: */
|
|
|
|
register char *depth = ADDRESS_FUNCTION (probe);
|
|
|
|
|
|
|
|
#if STACK_DIRECTION == 0
|
|
|
|
if (STACK_DIR == 0) /* Unknown growth direction. */
|
|
|
|
find_stack_direction ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Reclaim garbage, defined as all alloca'd storage that
|
1998-09-05 12:42:19 +02:00
|
|
|
was allocated from deeper in the stack than currently. */
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
register header *hp; /* Traverses linked list. */
|
|
|
|
|
|
|
|
for (hp = last_alloca_header; hp != NULL;)
|
|
|
|
if ((STACK_DIR > 0 && hp->h.deep > depth)
|
|
|
|
|| (STACK_DIR < 0 && hp->h.deep < depth))
|
|
|
|
{
|
|
|
|
register header *np = hp->h.next;
|
|
|
|
|
aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
libiberty:
* aclocal.m4 (libiberty_AC_FUNC_C_ALLOCA): New.
* configure.in: Replace all alloca logic with a simple use of
the above new macro.
* config.table: Kill *-*-beos* entry.
* config/mh-beos: Delete.
* configure, config.in: Regenerate.
* Makefile.in (ALLOCA, HFILES): Kill.
(REQUIRED_OFILES): Add alloca.o.
(alloca.o): Depend on libiberty.h.
(argv.o): Don't depend on alloca-conf.h.
* alloca-conf.h: Delete.
* alloca.c: Include libiberty.h. Kill all #ifdef emacs
blocks. Provide the C alloca unconditionally. Use PTR where
appropriate. Make i00afunc static.
* argv.c: Don't include alloca-conf.h.
include:
* libiberty.h: Prototype C_alloca; define alloca to either
__builtin_alloca or C_alloca as appropriate.
gcc:
* aclocal.m4 (AM_GNU_GETTEXT): Don't AC_REQUIRE
AC_FUNC_ALLOCA.
* configure, config.in: Regenerate.
* config.gcc: Remove references to deleted files.
* genattr.c, genattrtab.c, genextract.c, genoutput.c,
genrecog.c, rtl.c: Do not use alloca anywhere.
* Makefile.in, build-make, system.h, config/x-interix,
config/x-svr4, config/xm-interix.h, config/xm-openbsd.h,
config/alpha/xm-alpha.h, config/alpha/xm-vms.h,
config/arc/xm-arc.h, config/arm/xm-arm.h,
config/d30v/xm-d30v.h, config/dsp16xx/xm-dsp16xx.h,
config/h8300/xm-h8300.h, config/i370/x-oe,
config/i370/xm-linux.h, config/i386/x-aix, config/i386/x-beos,
config/i386/x-ncr3000, config/i386/x-sco5,
config/i386/xm-dgux.h, config/i860/x-sysv4,
config/i960/xm-i960.h, config/m32r/xm-m32r.h,
config/m68k/x-crds, config/m68k/x-dpx2, config/m68k/x-hp320,
config/m68k/x-hp320g, config/m69k/x-mot3300,
config/m68k/x-mot3300-gas, config/m68k/xm-amix.h,
config/m68k/xm-hp320.h, config/m68k/xm-m68kv.h,
config/m68k/xm-mot3300.h, config/m88k/x-dolph,
config/m88k/x-sysv4, config/m88k/x-tekXD88,
config/m88k/xm-m88k.h, config/mcore/xm-mcore.h,
config/mips/x-iris, config/mips/x-iris3,
config/mips/x-sni-svr4, config/mips/x-sysv,
config/mips/xm-iris6.h, config/mips/xm-mips.h,
config/mips/xm-nws3250v4.h, config/pa/x-hpux,
config/pa/x-pa-mpeix, config/pa/xm-pa.h,
config/pa/xm-pa64hpux.h, config/pa/xm-pahpux.h,
config/pa/xm-papro.h, config/romp/xm-romp.h,
config/rs6000/x-aix31, config/rs6000/x-aix41,
config/rs6000/x-beos, config/rs6000/x-lynx,
config/rs6000/x-mach, config/rs6000/x-rs6000,
config/rs6000/x-sysv4, config/rs6000/xm-rs6000.h,
config/rs6000/xm-sysv4.h, config/sh/xm-sh.h,
config/sparc/x-sysv4, config/sparc/xm-linux.h,
config/sparc/xm-pbd.h, config/sparc/xm-sparc.h,
config/vax/xm-vms.h: Eradicate all references to alloca and
related stuff.
* config/xm-alloca.h, config/clipper/x-clix,
config/i386/xm-sysv4.h, config/i860/x-fx2800,
config/i860/x-sysv3, config/m88k/x-sysv3,
config/sparc/xm-sol2.h, config/we32k/x-we32k: Delete
(contained only alloca related hacks).
* config/i386/xm-beos.h, config/rs6000/xm-beos.h: Just define
USE_C_ALLOCA.
From-SVN: r40259
2001-03-06 10:52:35 +01:00
|
|
|
free ((PTR) hp); /* Collect garbage. */
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
hp = np; /* -> next header. */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break; /* Rest are not deeper. */
|
|
|
|
|
|
|
|
last_alloca_header = hp; /* -> last valid storage. */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size == 0)
|
|
|
|
return NULL; /* No allocation required. */
|
|
|
|
|
|
|
|
/* Allocate combined header + user data storage. */
|
|
|
|
|
|
|
|
{
|
2005-05-24 22:48:25 +02:00
|
|
|
register void *new_storage = XNEWVEC (char, sizeof (header) + size);
|
1997-08-22 00:57:35 +02:00
|
|
|
/* Address of header. */
|
|
|
|
|
2005-05-24 22:48:25 +02:00
|
|
|
if (new_storage == 0)
|
1998-09-05 12:42:19 +02:00
|
|
|
abort();
|
|
|
|
|
2005-05-24 22:48:25 +02:00
|
|
|
((header *) new_storage)->h.next = last_alloca_header;
|
|
|
|
((header *) new_storage)->h.deep = depth;
|
1997-08-22 00:57:35 +02:00
|
|
|
|
2005-05-24 22:48:25 +02:00
|
|
|
last_alloca_header = (header *) new_storage;
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
/* User storage begins just after header. */
|
|
|
|
|
2005-05-24 22:48:25 +02:00
|
|
|
return (PTR) ((char *) new_storage + sizeof (header));
|
1997-08-22 00:57:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined (CRAY) && defined (CRAY_STACKSEG_END)
|
|
|
|
|
|
|
|
#ifdef DEBUG_I00AFUNC
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CRAY_STACK
|
|
|
|
#define CRAY_STACK
|
|
|
|
#ifndef CRAY2
|
|
|
|
/* Stack structures for CRAY-1, CRAY X-MP, and CRAY Y-MP */
|
|
|
|
struct stack_control_header
|
|
|
|
{
|
|
|
|
long shgrow:32; /* Number of times stack has grown. */
|
|
|
|
long shaseg:32; /* Size of increments to stack. */
|
|
|
|
long shhwm:32; /* High water mark of stack. */
|
|
|
|
long shsize:32; /* Current size of stack (all segments). */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The stack segment linkage control information occurs at
|
|
|
|
the high-address end of a stack segment. (The stack
|
|
|
|
grows from low addresses to high addresses.) The initial
|
|
|
|
part of the stack segment linkage control information is
|
|
|
|
0200 (octal) words. This provides for register storage
|
|
|
|
for the routine which overflows the stack. */
|
|
|
|
|
|
|
|
struct stack_segment_linkage
|
|
|
|
{
|
|
|
|
long ss[0200]; /* 0200 overflow words. */
|
|
|
|
long sssize:32; /* Number of words in this segment. */
|
|
|
|
long ssbase:32; /* Offset to stack base. */
|
|
|
|
long:32;
|
|
|
|
long sspseg:32; /* Offset to linkage control of previous
|
|
|
|
segment of stack. */
|
|
|
|
long:32;
|
|
|
|
long sstcpt:32; /* Pointer to task common address block. */
|
|
|
|
long sscsnm; /* Private control structure number for
|
|
|
|
microtasking. */
|
|
|
|
long ssusr1; /* Reserved for user. */
|
|
|
|
long ssusr2; /* Reserved for user. */
|
|
|
|
long sstpid; /* Process ID for pid based multi-tasking. */
|
|
|
|
long ssgvup; /* Pointer to multitasking thread giveup. */
|
|
|
|
long sscray[7]; /* Reserved for Cray Research. */
|
|
|
|
long ssa0;
|
|
|
|
long ssa1;
|
|
|
|
long ssa2;
|
|
|
|
long ssa3;
|
|
|
|
long ssa4;
|
|
|
|
long ssa5;
|
|
|
|
long ssa6;
|
|
|
|
long ssa7;
|
|
|
|
long sss0;
|
|
|
|
long sss1;
|
|
|
|
long sss2;
|
|
|
|
long sss3;
|
|
|
|
long sss4;
|
|
|
|
long sss5;
|
|
|
|
long sss6;
|
|
|
|
long sss7;
|
|
|
|
};
|
|
|
|
|
|
|
|
#else /* CRAY2 */
|
|
|
|
/* The following structure defines the vector of words
|
|
|
|
returned by the STKSTAT library routine. */
|
|
|
|
struct stk_stat
|
|
|
|
{
|
|
|
|
long now; /* Current total stack size. */
|
|
|
|
long maxc; /* Amount of contiguous space which would
|
|
|
|
be required to satisfy the maximum
|
|
|
|
stack demand to date. */
|
|
|
|
long high_water; /* Stack high-water mark. */
|
|
|
|
long overflows; /* Number of stack overflow ($STKOFEN) calls. */
|
|
|
|
long hits; /* Number of internal buffer hits. */
|
|
|
|
long extends; /* Number of block extensions. */
|
|
|
|
long stko_mallocs; /* Block allocations by $STKOFEN. */
|
|
|
|
long underflows; /* Number of stack underflow calls ($STKRETN). */
|
|
|
|
long stko_free; /* Number of deallocations by $STKRETN. */
|
|
|
|
long stkm_free; /* Number of deallocations by $STKMRET. */
|
|
|
|
long segments; /* Current number of stack segments. */
|
|
|
|
long maxs; /* Maximum number of stack segments so far. */
|
|
|
|
long pad_size; /* Stack pad size. */
|
|
|
|
long current_address; /* Current stack segment address. */
|
|
|
|
long current_size; /* Current stack segment size. This
|
|
|
|
number is actually corrupted by STKSTAT to
|
|
|
|
include the fifteen word trailer area. */
|
|
|
|
long initial_address; /* Address of initial segment. */
|
|
|
|
long initial_size; /* Size of initial segment. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The following structure describes the data structure which trails
|
|
|
|
any stack segment. I think that the description in 'asdef' is
|
|
|
|
out of date. I only describe the parts that I am sure about. */
|
|
|
|
|
|
|
|
struct stk_trailer
|
|
|
|
{
|
|
|
|
long this_address; /* Address of this block. */
|
|
|
|
long this_size; /* Size of this block (does not include
|
|
|
|
this trailer). */
|
|
|
|
long unknown2;
|
|
|
|
long unknown3;
|
|
|
|
long link; /* Address of trailer block of previous
|
|
|
|
segment. */
|
|
|
|
long unknown5;
|
|
|
|
long unknown6;
|
|
|
|
long unknown7;
|
|
|
|
long unknown8;
|
|
|
|
long unknown9;
|
|
|
|
long unknown10;
|
|
|
|
long unknown11;
|
|
|
|
long unknown12;
|
|
|
|
long unknown13;
|
|
|
|
long unknown14;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* CRAY2 */
|
|
|
|
#endif /* not CRAY_STACK */
|
|
|
|
|
|
|
|
#ifdef CRAY2
|
|
|
|
/* Determine a "stack measure" for an arbitrary ADDRESS.
|
1998-09-05 12:42:19 +02:00
|
|
|
I doubt that "lint" will like this much. */
|
1997-08-22 00:57:35 +02:00
|
|
|
|
|
|
|
static long
|
|
|
|
i00afunc (long *address)
|
|
|
|
{
|
|
|
|
struct stk_stat status;
|
|
|
|
struct stk_trailer *trailer;
|
|
|
|
long *block, size;
|
|
|
|
long result = 0;
|
|
|
|
|
|
|
|
/* We want to iterate through all of the segments. The first
|
|
|
|
step is to get the stack status structure. We could do this
|
|
|
|
more quickly and more directly, perhaps, by referencing the
|
|
|
|
$LM00 common block, but I know that this works. */
|
|
|
|
|
|
|
|
STKSTAT (&status);
|
|
|
|
|
|
|
|
/* Set up the iteration. */
|
|
|
|
|
|
|
|
trailer = (struct stk_trailer *) (status.current_address
|
|
|
|
+ status.current_size
|
|
|
|
- 15);
|
|
|
|
|
|
|
|
/* There must be at least one stack segment. Therefore it is
|
|
|
|
a fatal error if "trailer" is null. */
|
|
|
|
|
|
|
|
if (trailer == 0)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* Discard segments that do not contain our argument address. */
|
|
|
|
|
|
|
|
while (trailer != 0)
|
|
|
|
{
|
|
|
|
block = (long *) trailer->this_address;
|
|
|
|
size = trailer->this_size;
|
|
|
|
if (block == 0 || size == 0)
|
|
|
|
abort ();
|
|
|
|
trailer = (struct stk_trailer *) trailer->link;
|
|
|
|
if ((block <= address) && (address < (block + size)))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the result to the offset in this segment and add the sizes
|
|
|
|
of all predecessor segments. */
|
|
|
|
|
|
|
|
result = address - block;
|
|
|
|
|
|
|
|
if (trailer == 0)
|
|
|
|
{
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (trailer->this_size <= 0)
|
|
|
|
abort ();
|
|
|
|
result += trailer->this_size;
|
|
|
|
trailer = (struct stk_trailer *) trailer->link;
|
|
|
|
}
|
|
|
|
while (trailer != 0);
|
|
|
|
|
|
|
|
/* We are done. Note that if you present a bogus address (one
|
|
|
|
not in any segment), you will get a different number back, formed
|
|
|
|
from subtracting the address of the first block. This is probably
|
|
|
|
not what you want. */
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* not CRAY2 */
|
|
|
|
/* Stack address function for a CRAY-1, CRAY X-MP, or CRAY Y-MP.
|
|
|
|
Determine the number of the cell within the stack,
|
|
|
|
given the address of the cell. The purpose of this
|
|
|
|
routine is to linearize, in some sense, stack addresses
|
|
|
|
for alloca. */
|
|
|
|
|
|
|
|
static long
|
|
|
|
i00afunc (long address)
|
|
|
|
{
|
|
|
|
long stkl = 0;
|
|
|
|
|
|
|
|
long size, pseg, this_segment, stack;
|
|
|
|
long result = 0;
|
|
|
|
|
|
|
|
struct stack_segment_linkage *ssptr;
|
|
|
|
|
|
|
|
/* Register B67 contains the address of the end of the
|
|
|
|
current stack segment. If you (as a subprogram) store
|
|
|
|
your registers on the stack and find that you are past
|
|
|
|
the contents of B67, you have overflowed the segment.
|
|
|
|
|
|
|
|
B67 also points to the stack segment linkage control
|
|
|
|
area, which is what we are really interested in. */
|
|
|
|
|
|
|
|
stkl = CRAY_STACKSEG_END ();
|
|
|
|
ssptr = (struct stack_segment_linkage *) stkl;
|
|
|
|
|
|
|
|
/* If one subtracts 'size' from the end of the segment,
|
|
|
|
one has the address of the first word of the segment.
|
|
|
|
|
|
|
|
If this is not the first segment, 'pseg' will be
|
|
|
|
nonzero. */
|
|
|
|
|
|
|
|
pseg = ssptr->sspseg;
|
|
|
|
size = ssptr->sssize;
|
|
|
|
|
|
|
|
this_segment = stkl - size;
|
|
|
|
|
|
|
|
/* It is possible that calling this routine itself caused
|
|
|
|
a stack overflow. Discard stack segments which do not
|
|
|
|
contain the target address. */
|
|
|
|
|
|
|
|
while (!(this_segment <= address && address <= stkl))
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_I00AFUNC
|
|
|
|
fprintf (stderr, "%011o %011o %011o\n", this_segment, address, stkl);
|
|
|
|
#endif
|
|
|
|
if (pseg == 0)
|
|
|
|
break;
|
|
|
|
stkl = stkl - pseg;
|
|
|
|
ssptr = (struct stack_segment_linkage *) stkl;
|
|
|
|
size = ssptr->sssize;
|
|
|
|
pseg = ssptr->sspseg;
|
|
|
|
this_segment = stkl - size;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = address - this_segment;
|
|
|
|
|
|
|
|
/* If you subtract pseg from the current end of the stack,
|
|
|
|
you get the address of the previous stack segment's end.
|
|
|
|
This seems a little convoluted to me, but I'll bet you save
|
|
|
|
a cycle somewhere. */
|
|
|
|
|
|
|
|
while (pseg != 0)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_I00AFUNC
|
|
|
|
fprintf (stderr, "%011o %011o\n", pseg, size);
|
|
|
|
#endif
|
|
|
|
stkl = stkl - pseg;
|
|
|
|
ssptr = (struct stack_segment_linkage *) stkl;
|
|
|
|
size = ssptr->sssize;
|
|
|
|
pseg = ssptr->sspseg;
|
|
|
|
result += size;
|
|
|
|
}
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* not CRAY2 */
|
|
|
|
#endif /* CRAY */
|