OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [libiberty/] [alloca.c] - Diff between revs 156 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 156 Rev 816
/* alloca.c -- allocate automatically reclaimed memory
/* alloca.c -- allocate automatically reclaimed memory
   (Mostly) portable public-domain implementation -- D A Gwyn
   (Mostly) portable public-domain implementation -- D A Gwyn
 
 
   This implementation of the PWB library alloca function,
   This implementation of the PWB library alloca function,
   which is used to allocate space off the run-time stack so
   which is used to allocate space off the run-time stack so
   that it is automatically reclaimed upon procedure exit,
   that it is automatically reclaimed upon procedure exit,
   was inspired by discussions with J. Q. Johnson of Cornell.
   was inspired by discussions with J. Q. Johnson of Cornell.
   J.Otto Tennant <jot@cray.com> contributed the Cray support.
   J.Otto Tennant <jot@cray.com> contributed the Cray support.
 
 
   There are some preprocessor constants that can
   There are some preprocessor constants that can
   be defined when compiling for your specific system, for
   be defined when compiling for your specific system, for
   improved efficiency; however, the defaults should be okay.
   improved efficiency; however, the defaults should be okay.
 
 
   The general concept of this implementation is to keep
   The general concept of this implementation is to keep
   track of all alloca-allocated blocks, and reclaim any
   track of all alloca-allocated blocks, and reclaim any
   that are found to be deeper in the stack than the current
   that are found to be deeper in the stack than the current
   invocation.  This heuristic does not reclaim storage as
   invocation.  This heuristic does not reclaim storage as
   soon as it becomes invalid, but it will do so eventually.
   soon as it becomes invalid, but it will do so eventually.
 
 
   As a special case, alloca(0) reclaims storage without
   As a special case, alloca(0) reclaims storage without
   allocating any.  It is a good idea to use alloca(0) in
   allocating any.  It is a good idea to use alloca(0) in
   your main control loop, etc. to force garbage collection.  */
   your main control loop, etc. to force garbage collection.  */
 
 
/*
/*
 
 
@deftypefn Replacement void* alloca (size_t @var{size})
@deftypefn Replacement void* alloca (size_t @var{size})
 
 
This function allocates memory which will be automatically reclaimed
This function allocates memory which will be automatically reclaimed
after the procedure exits.  The @libib{} implementation does not free
after the procedure exits.  The @libib{} implementation does not free
the memory immediately but will do so eventually during subsequent
the memory immediately but will do so eventually during subsequent
calls to this function.  Memory is allocated using @code{xmalloc} under
calls to this function.  Memory is allocated using @code{xmalloc} under
normal circumstances.
normal circumstances.
 
 
The header file @file{alloca-conf.h} can be used in conjunction with the
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
GNU Autoconf test @code{AC_FUNC_ALLOCA} to test for and properly make
available this function.  The @code{AC_FUNC_ALLOCA} test requires that
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
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
manual for more); this header incorporates that logic and more, including
the possibility of a GCC built-in function.
the possibility of a GCC built-in function.
 
 
@end deftypefn
@end deftypefn
 
 
*/
*/
 
 
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#include <config.h>
#endif
#endif
 
 
#include <libiberty.h>
#include <libiberty.h>
 
 
#ifdef HAVE_STRING_H
#ifdef HAVE_STRING_H
#include <string.h>
#include <string.h>
#endif
#endif
#ifdef HAVE_STDLIB_H
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#include <stdlib.h>
#endif
#endif
 
 
/* These variables are used by the ASTRDUP implementation that relies
/* These variables are used by the ASTRDUP implementation that relies
   on C_alloca.  */
   on C_alloca.  */
#ifdef __cplusplus
#ifdef __cplusplus
extern "C" {
extern "C" {
#endif /* __cplusplus */
#endif /* __cplusplus */
const char *libiberty_optr;
const char *libiberty_optr;
char *libiberty_nptr;
char *libiberty_nptr;
unsigned long libiberty_len;
unsigned long libiberty_len;
#ifdef __cplusplus
#ifdef __cplusplus
}
}
#endif /* __cplusplus */
#endif /* __cplusplus */
 
 
/* If your stack is a linked list of frames, you have to
/* If your stack is a linked list of frames, you have to
   provide an "address metric" ADDRESS_FUNCTION macro.  */
   provide an "address metric" ADDRESS_FUNCTION macro.  */
 
 
#if defined (CRAY) && defined (CRAY_STACKSEG_END)
#if defined (CRAY) && defined (CRAY_STACKSEG_END)
static long i00afunc ();
static long i00afunc ();
#define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
#define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
#else
#else
#define ADDRESS_FUNCTION(arg) &(arg)
#define ADDRESS_FUNCTION(arg) &(arg)
#endif
#endif
 
 
#ifndef NULL
#ifndef NULL
#define NULL    0
#define NULL    0
#endif
#endif
 
 
/* Define STACK_DIRECTION if you know the direction of stack
/* Define STACK_DIRECTION if you know the direction of stack
   growth for your system; otherwise it will be automatically
   growth for your system; otherwise it will be automatically
   deduced at run-time.
   deduced at run-time.
 
 
   STACK_DIRECTION > 0 => grows toward higher addresses
   STACK_DIRECTION > 0 => grows toward higher addresses
   STACK_DIRECTION < 0 => grows toward lower addresses
   STACK_DIRECTION < 0 => grows toward lower addresses
   STACK_DIRECTION = 0 => direction of growth unknown  */
   STACK_DIRECTION = 0 => direction of growth unknown  */
 
 
#ifndef STACK_DIRECTION
#ifndef STACK_DIRECTION
#define STACK_DIRECTION 0        /* Direction unknown.  */
#define STACK_DIRECTION 0        /* Direction unknown.  */
#endif
#endif
 
 
#if STACK_DIRECTION != 0
#if STACK_DIRECTION != 0
 
 
#define STACK_DIR       STACK_DIRECTION /* Known at compile-time.  */
#define STACK_DIR       STACK_DIRECTION /* Known at compile-time.  */
 
 
#else /* STACK_DIRECTION == 0; need run-time code.  */
#else /* STACK_DIRECTION == 0; need run-time code.  */
 
 
static int stack_dir;           /* 1 or -1 once known.  */
static int stack_dir;           /* 1 or -1 once known.  */
#define STACK_DIR       stack_dir
#define STACK_DIR       stack_dir
 
 
static void
static void
find_stack_direction (void)
find_stack_direction (void)
{
{
  static char *addr = NULL;     /* Address of first `dummy', once known.  */
  static char *addr = NULL;     /* Address of first `dummy', once known.  */
  auto char dummy;              /* To get stack address.  */
  auto char dummy;              /* To get stack address.  */
 
 
  if (addr == NULL)
  if (addr == NULL)
    {                           /* Initial entry.  */
    {                           /* Initial entry.  */
      addr = ADDRESS_FUNCTION (dummy);
      addr = ADDRESS_FUNCTION (dummy);
 
 
      find_stack_direction ();  /* Recurse once.  */
      find_stack_direction ();  /* Recurse once.  */
    }
    }
  else
  else
    {
    {
      /* Second entry.  */
      /* Second entry.  */
      if (ADDRESS_FUNCTION (dummy) > addr)
      if (ADDRESS_FUNCTION (dummy) > addr)
        stack_dir = 1;          /* Stack grew upward.  */
        stack_dir = 1;          /* Stack grew upward.  */
      else
      else
        stack_dir = -1;         /* Stack grew downward.  */
        stack_dir = -1;         /* Stack grew downward.  */
    }
    }
}
}
 
 
#endif /* STACK_DIRECTION == 0 */
#endif /* STACK_DIRECTION == 0 */
 
 
/* An "alloca header" is used to:
/* An "alloca header" is used to:
   (a) chain together all alloca'ed blocks;
   (a) chain together all alloca'ed blocks;
   (b) keep track of stack depth.
   (b) keep track of stack depth.
 
 
   It is very important that sizeof(header) agree with malloc
   It is very important that sizeof(header) agree with malloc
   alignment chunk size.  The following default should work okay.  */
   alignment chunk size.  The following default should work okay.  */
 
 
#ifndef ALIGN_SIZE
#ifndef ALIGN_SIZE
#define ALIGN_SIZE      sizeof(double)
#define ALIGN_SIZE      sizeof(double)
#endif
#endif
 
 
typedef union hdr
typedef union hdr
{
{
  char align[ALIGN_SIZE];       /* To force sizeof(header).  */
  char align[ALIGN_SIZE];       /* To force sizeof(header).  */
  struct
  struct
    {
    {
      union hdr *next;          /* For chaining headers.  */
      union hdr *next;          /* For chaining headers.  */
      char *deep;               /* For stack depth measure.  */
      char *deep;               /* For stack depth measure.  */
    } h;
    } h;
} header;
} header;
 
 
static header *last_alloca_header = NULL;       /* -> last alloca header.  */
static header *last_alloca_header = NULL;       /* -> last alloca header.  */
 
 
/* Return a pointer to at least SIZE bytes of storage,
/* Return a pointer to at least SIZE bytes of storage,
   which will be automatically reclaimed upon exit from
   which will be automatically reclaimed upon exit from
   the procedure that called alloca.  Originally, this space
   the procedure that called alloca.  Originally, this space
   was supposed to be taken from the current stack frame of the
   was supposed to be taken from the current stack frame of the
   caller, but that method cannot be made to work for some
   caller, but that method cannot be made to work for some
   implementations of C, for example under Gould's UTX/32.  */
   implementations of C, for example under Gould's UTX/32.  */
 
 
/* @undocumented C_alloca */
/* @undocumented C_alloca */
 
 
PTR
PTR
C_alloca (size_t size)
C_alloca (size_t size)
{
{
  auto char probe;              /* Probes stack depth: */
  auto char probe;              /* Probes stack depth: */
  register char *depth = ADDRESS_FUNCTION (probe);
  register char *depth = ADDRESS_FUNCTION (probe);
 
 
#if STACK_DIRECTION == 0
#if STACK_DIRECTION == 0
  if (STACK_DIR == 0)            /* Unknown growth direction.  */
  if (STACK_DIR == 0)            /* Unknown growth direction.  */
    find_stack_direction ();
    find_stack_direction ();
#endif
#endif
 
 
  /* Reclaim garbage, defined as all alloca'd storage that
  /* Reclaim garbage, defined as all alloca'd storage that
     was allocated from deeper in the stack than currently.  */
     was allocated from deeper in the stack than currently.  */
 
 
  {
  {
    register header *hp;        /* Traverses linked list.  */
    register header *hp;        /* Traverses linked list.  */
 
 
    for (hp = last_alloca_header; hp != NULL;)
    for (hp = last_alloca_header; hp != NULL;)
      if ((STACK_DIR > 0 && hp->h.deep > depth)
      if ((STACK_DIR > 0 && hp->h.deep > depth)
          || (STACK_DIR < 0 && hp->h.deep < depth))
          || (STACK_DIR < 0 && hp->h.deep < depth))
        {
        {
          register header *np = hp->h.next;
          register header *np = hp->h.next;
 
 
          free ((PTR) hp);      /* Collect garbage.  */
          free ((PTR) hp);      /* Collect garbage.  */
 
 
          hp = np;              /* -> next header.  */
          hp = np;              /* -> next header.  */
        }
        }
      else
      else
        break;                  /* Rest are not deeper.  */
        break;                  /* Rest are not deeper.  */
 
 
    last_alloca_header = hp;    /* -> last valid storage.  */
    last_alloca_header = hp;    /* -> last valid storage.  */
  }
  }
 
 
  if (size == 0)
  if (size == 0)
    return NULL;                /* No allocation required.  */
    return NULL;                /* No allocation required.  */
 
 
  /* Allocate combined header + user data storage.  */
  /* Allocate combined header + user data storage.  */
 
 
  {
  {
    register void *new_storage = XNEWVEC (char, sizeof (header) + size);
    register void *new_storage = XNEWVEC (char, sizeof (header) + size);
    /* Address of header.  */
    /* Address of header.  */
 
 
    if (new_storage == 0)
    if (new_storage == 0)
      abort();
      abort();
 
 
    ((header *) new_storage)->h.next = last_alloca_header;
    ((header *) new_storage)->h.next = last_alloca_header;
    ((header *) new_storage)->h.deep = depth;
    ((header *) new_storage)->h.deep = depth;
 
 
    last_alloca_header = (header *) new_storage;
    last_alloca_header = (header *) new_storage;
 
 
    /* User storage begins just after header.  */
    /* User storage begins just after header.  */
 
 
    return (PTR) ((char *) new_storage + sizeof (header));
    return (PTR) ((char *) new_storage + sizeof (header));
  }
  }
}
}
 
 
#if defined (CRAY) && defined (CRAY_STACKSEG_END)
#if defined (CRAY) && defined (CRAY_STACKSEG_END)
 
 
#ifdef DEBUG_I00AFUNC
#ifdef DEBUG_I00AFUNC
#include <stdio.h>
#include <stdio.h>
#endif
#endif
 
 
#ifndef CRAY_STACK
#ifndef CRAY_STACK
#define CRAY_STACK
#define CRAY_STACK
#ifndef CRAY2
#ifndef CRAY2
/* Stack structures for CRAY-1, CRAY X-MP, and CRAY Y-MP */
/* Stack structures for CRAY-1, CRAY X-MP, and CRAY Y-MP */
struct stack_control_header
struct stack_control_header
  {
  {
    long shgrow:32;             /* Number of times stack has grown.  */
    long shgrow:32;             /* Number of times stack has grown.  */
    long shaseg:32;             /* Size of increments to stack.  */
    long shaseg:32;             /* Size of increments to stack.  */
    long shhwm:32;              /* High water mark of stack.  */
    long shhwm:32;              /* High water mark of stack.  */
    long shsize:32;             /* Current size of stack (all segments).  */
    long shsize:32;             /* Current size of stack (all segments).  */
  };
  };
 
 
/* The stack segment linkage control information occurs at
/* The stack segment linkage control information occurs at
   the high-address end of a stack segment.  (The stack
   the high-address end of a stack segment.  (The stack
   grows from low addresses to high addresses.)  The initial
   grows from low addresses to high addresses.)  The initial
   part of the stack segment linkage control information is
   part of the stack segment linkage control information is
   0200 (octal) words.  This provides for register storage
   0200 (octal) words.  This provides for register storage
   for the routine which overflows the stack.  */
   for the routine which overflows the stack.  */
 
 
struct stack_segment_linkage
struct stack_segment_linkage
  {
  {
    long ss[0200];              /* 0200 overflow words.  */
    long ss[0200];              /* 0200 overflow words.  */
    long sssize:32;             /* Number of words in this segment.  */
    long sssize:32;             /* Number of words in this segment.  */
    long ssbase:32;             /* Offset to stack base.  */
    long ssbase:32;             /* Offset to stack base.  */
    long:32;
    long:32;
    long sspseg:32;             /* Offset to linkage control of previous
    long sspseg:32;             /* Offset to linkage control of previous
                                   segment of stack.  */
                                   segment of stack.  */
    long:32;
    long:32;
    long sstcpt:32;             /* Pointer to task common address block.  */
    long sstcpt:32;             /* Pointer to task common address block.  */
    long sscsnm;                /* Private control structure number for
    long sscsnm;                /* Private control structure number for
                                   microtasking.  */
                                   microtasking.  */
    long ssusr1;                /* Reserved for user.  */
    long ssusr1;                /* Reserved for user.  */
    long ssusr2;                /* Reserved for user.  */
    long ssusr2;                /* Reserved for user.  */
    long sstpid;                /* Process ID for pid based multi-tasking.  */
    long sstpid;                /* Process ID for pid based multi-tasking.  */
    long ssgvup;                /* Pointer to multitasking thread giveup.  */
    long ssgvup;                /* Pointer to multitasking thread giveup.  */
    long sscray[7];             /* Reserved for Cray Research.  */
    long sscray[7];             /* Reserved for Cray Research.  */
    long ssa0;
    long ssa0;
    long ssa1;
    long ssa1;
    long ssa2;
    long ssa2;
    long ssa3;
    long ssa3;
    long ssa4;
    long ssa4;
    long ssa5;
    long ssa5;
    long ssa6;
    long ssa6;
    long ssa7;
    long ssa7;
    long sss0;
    long sss0;
    long sss1;
    long sss1;
    long sss2;
    long sss2;
    long sss3;
    long sss3;
    long sss4;
    long sss4;
    long sss5;
    long sss5;
    long sss6;
    long sss6;
    long sss7;
    long sss7;
  };
  };
 
 
#else /* CRAY2 */
#else /* CRAY2 */
/* The following structure defines the vector of words
/* The following structure defines the vector of words
   returned by the STKSTAT library routine.  */
   returned by the STKSTAT library routine.  */
struct stk_stat
struct stk_stat
  {
  {
    long now;                   /* Current total stack size.  */
    long now;                   /* Current total stack size.  */
    long maxc;                  /* Amount of contiguous space which would
    long maxc;                  /* Amount of contiguous space which would
                                   be required to satisfy the maximum
                                   be required to satisfy the maximum
                                   stack demand to date.  */
                                   stack demand to date.  */
    long high_water;            /* Stack high-water mark.  */
    long high_water;            /* Stack high-water mark.  */
    long overflows;             /* Number of stack overflow ($STKOFEN) calls.  */
    long overflows;             /* Number of stack overflow ($STKOFEN) calls.  */
    long hits;                  /* Number of internal buffer hits.  */
    long hits;                  /* Number of internal buffer hits.  */
    long extends;               /* Number of block extensions.  */
    long extends;               /* Number of block extensions.  */
    long stko_mallocs;          /* Block allocations by $STKOFEN.  */
    long stko_mallocs;          /* Block allocations by $STKOFEN.  */
    long underflows;            /* Number of stack underflow calls ($STKRETN).  */
    long underflows;            /* Number of stack underflow calls ($STKRETN).  */
    long stko_free;             /* Number of deallocations by $STKRETN.  */
    long stko_free;             /* Number of deallocations by $STKRETN.  */
    long stkm_free;             /* Number of deallocations by $STKMRET.  */
    long stkm_free;             /* Number of deallocations by $STKMRET.  */
    long segments;              /* Current number of stack segments.  */
    long segments;              /* Current number of stack segments.  */
    long maxs;                  /* Maximum number of stack segments so far.  */
    long maxs;                  /* Maximum number of stack segments so far.  */
    long pad_size;              /* Stack pad size.  */
    long pad_size;              /* Stack pad size.  */
    long current_address;       /* Current stack segment address.  */
    long current_address;       /* Current stack segment address.  */
    long current_size;          /* Current stack segment size.  This
    long current_size;          /* Current stack segment size.  This
                                   number is actually corrupted by STKSTAT to
                                   number is actually corrupted by STKSTAT to
                                   include the fifteen word trailer area.  */
                                   include the fifteen word trailer area.  */
    long initial_address;       /* Address of initial segment.  */
    long initial_address;       /* Address of initial segment.  */
    long initial_size;          /* Size of initial segment.  */
    long initial_size;          /* Size of initial segment.  */
  };
  };
 
 
/* The following structure describes the data structure which trails
/* The following structure describes the data structure which trails
   any stack segment.  I think that the description in 'asdef' is
   any stack segment.  I think that the description in 'asdef' is
   out of date.  I only describe the parts that I am sure about.  */
   out of date.  I only describe the parts that I am sure about.  */
 
 
struct stk_trailer
struct stk_trailer
  {
  {
    long this_address;          /* Address of this block.  */
    long this_address;          /* Address of this block.  */
    long this_size;             /* Size of this block (does not include
    long this_size;             /* Size of this block (does not include
                                   this trailer).  */
                                   this trailer).  */
    long unknown2;
    long unknown2;
    long unknown3;
    long unknown3;
    long link;                  /* Address of trailer block of previous
    long link;                  /* Address of trailer block of previous
                                   segment.  */
                                   segment.  */
    long unknown5;
    long unknown5;
    long unknown6;
    long unknown6;
    long unknown7;
    long unknown7;
    long unknown8;
    long unknown8;
    long unknown9;
    long unknown9;
    long unknown10;
    long unknown10;
    long unknown11;
    long unknown11;
    long unknown12;
    long unknown12;
    long unknown13;
    long unknown13;
    long unknown14;
    long unknown14;
  };
  };
 
 
#endif /* CRAY2 */
#endif /* CRAY2 */
#endif /* not CRAY_STACK */
#endif /* not CRAY_STACK */
 
 
#ifdef CRAY2
#ifdef CRAY2
/* Determine a "stack measure" for an arbitrary ADDRESS.
/* Determine a "stack measure" for an arbitrary ADDRESS.
   I doubt that "lint" will like this much.  */
   I doubt that "lint" will like this much.  */
 
 
static long
static long
i00afunc (long *address)
i00afunc (long *address)
{
{
  struct stk_stat status;
  struct stk_stat status;
  struct stk_trailer *trailer;
  struct stk_trailer *trailer;
  long *block, size;
  long *block, size;
  long result = 0;
  long result = 0;
 
 
  /* We want to iterate through all of the segments.  The first
  /* We want to iterate through all of the segments.  The first
     step is to get the stack status structure.  We could do this
     step is to get the stack status structure.  We could do this
     more quickly and more directly, perhaps, by referencing the
     more quickly and more directly, perhaps, by referencing the
     $LM00 common block, but I know that this works.  */
     $LM00 common block, but I know that this works.  */
 
 
  STKSTAT (&status);
  STKSTAT (&status);
 
 
  /* Set up the iteration.  */
  /* Set up the iteration.  */
 
 
  trailer = (struct stk_trailer *) (status.current_address
  trailer = (struct stk_trailer *) (status.current_address
                                    + status.current_size
                                    + status.current_size
                                    - 15);
                                    - 15);
 
 
  /* There must be at least one stack segment.  Therefore it is
  /* There must be at least one stack segment.  Therefore it is
     a fatal error if "trailer" is null.  */
     a fatal error if "trailer" is null.  */
 
 
  if (trailer == 0)
  if (trailer == 0)
    abort ();
    abort ();
 
 
  /* Discard segments that do not contain our argument address.  */
  /* Discard segments that do not contain our argument address.  */
 
 
  while (trailer != 0)
  while (trailer != 0)
    {
    {
      block = (long *) trailer->this_address;
      block = (long *) trailer->this_address;
      size = trailer->this_size;
      size = trailer->this_size;
      if (block == 0 || size == 0)
      if (block == 0 || size == 0)
        abort ();
        abort ();
      trailer = (struct stk_trailer *) trailer->link;
      trailer = (struct stk_trailer *) trailer->link;
      if ((block <= address) && (address < (block + size)))
      if ((block <= address) && (address < (block + size)))
        break;
        break;
    }
    }
 
 
  /* Set the result to the offset in this segment and add the sizes
  /* Set the result to the offset in this segment and add the sizes
     of all predecessor segments.  */
     of all predecessor segments.  */
 
 
  result = address - block;
  result = address - block;
 
 
  if (trailer == 0)
  if (trailer == 0)
    {
    {
      return result;
      return result;
    }
    }
 
 
  do
  do
    {
    {
      if (trailer->this_size <= 0)
      if (trailer->this_size <= 0)
        abort ();
        abort ();
      result += trailer->this_size;
      result += trailer->this_size;
      trailer = (struct stk_trailer *) trailer->link;
      trailer = (struct stk_trailer *) trailer->link;
    }
    }
  while (trailer != 0);
  while (trailer != 0);
 
 
  /* We are done.  Note that if you present a bogus address (one
  /* We are done.  Note that if you present a bogus address (one
     not in any segment), you will get a different number back, formed
     not in any segment), you will get a different number back, formed
     from subtracting the address of the first block.  This is probably
     from subtracting the address of the first block.  This is probably
     not what you want.  */
     not what you want.  */
 
 
  return (result);
  return (result);
}
}
 
 
#else /* not CRAY2 */
#else /* not CRAY2 */
/* Stack address function for a CRAY-1, CRAY X-MP, or CRAY Y-MP.
/* Stack address function for a CRAY-1, CRAY X-MP, or CRAY Y-MP.
   Determine the number of the cell within the stack,
   Determine the number of the cell within the stack,
   given the address of the cell.  The purpose of this
   given the address of the cell.  The purpose of this
   routine is to linearize, in some sense, stack addresses
   routine is to linearize, in some sense, stack addresses
   for alloca.  */
   for alloca.  */
 
 
static long
static long
i00afunc (long address)
i00afunc (long address)
{
{
  long stkl = 0;
  long stkl = 0;
 
 
  long size, pseg, this_segment, stack;
  long size, pseg, this_segment, stack;
  long result = 0;
  long result = 0;
 
 
  struct stack_segment_linkage *ssptr;
  struct stack_segment_linkage *ssptr;
 
 
  /* Register B67 contains the address of the end of the
  /* Register B67 contains the address of the end of the
     current stack segment.  If you (as a subprogram) store
     current stack segment.  If you (as a subprogram) store
     your registers on the stack and find that you are past
     your registers on the stack and find that you are past
     the contents of B67, you have overflowed the segment.
     the contents of B67, you have overflowed the segment.
 
 
     B67 also points to the stack segment linkage control
     B67 also points to the stack segment linkage control
     area, which is what we are really interested in.  */
     area, which is what we are really interested in.  */
 
 
  stkl = CRAY_STACKSEG_END ();
  stkl = CRAY_STACKSEG_END ();
  ssptr = (struct stack_segment_linkage *) stkl;
  ssptr = (struct stack_segment_linkage *) stkl;
 
 
  /* If one subtracts 'size' from the end of the segment,
  /* If one subtracts 'size' from the end of the segment,
     one has the address of the first word of the segment.
     one has the address of the first word of the segment.
 
 
     If this is not the first segment, 'pseg' will be
     If this is not the first segment, 'pseg' will be
     nonzero.  */
     nonzero.  */
 
 
  pseg = ssptr->sspseg;
  pseg = ssptr->sspseg;
  size = ssptr->sssize;
  size = ssptr->sssize;
 
 
  this_segment = stkl - size;
  this_segment = stkl - size;
 
 
  /* It is possible that calling this routine itself caused
  /* It is possible that calling this routine itself caused
     a stack overflow.  Discard stack segments which do not
     a stack overflow.  Discard stack segments which do not
     contain the target address.  */
     contain the target address.  */
 
 
  while (!(this_segment <= address && address <= stkl))
  while (!(this_segment <= address && address <= stkl))
    {
    {
#ifdef DEBUG_I00AFUNC
#ifdef DEBUG_I00AFUNC
      fprintf (stderr, "%011o %011o %011o\n", this_segment, address, stkl);
      fprintf (stderr, "%011o %011o %011o\n", this_segment, address, stkl);
#endif
#endif
      if (pseg == 0)
      if (pseg == 0)
        break;
        break;
      stkl = stkl - pseg;
      stkl = stkl - pseg;
      ssptr = (struct stack_segment_linkage *) stkl;
      ssptr = (struct stack_segment_linkage *) stkl;
      size = ssptr->sssize;
      size = ssptr->sssize;
      pseg = ssptr->sspseg;
      pseg = ssptr->sspseg;
      this_segment = stkl - size;
      this_segment = stkl - size;
    }
    }
 
 
  result = address - this_segment;
  result = address - this_segment;
 
 
  /* If you subtract pseg from the current end of the stack,
  /* If you subtract pseg from the current end of the stack,
     you get the address of the previous stack segment's end.
     you get the address of the previous stack segment's end.
     This seems a little convoluted to me, but I'll bet you save
     This seems a little convoluted to me, but I'll bet you save
     a cycle somewhere.  */
     a cycle somewhere.  */
 
 
  while (pseg != 0)
  while (pseg != 0)
    {
    {
#ifdef DEBUG_I00AFUNC
#ifdef DEBUG_I00AFUNC
      fprintf (stderr, "%011o %011o\n", pseg, size);
      fprintf (stderr, "%011o %011o\n", pseg, size);
#endif
#endif
      stkl = stkl - pseg;
      stkl = stkl - pseg;
      ssptr = (struct stack_segment_linkage *) stkl;
      ssptr = (struct stack_segment_linkage *) stkl;
      size = ssptr->sssize;
      size = ssptr->sssize;
      pseg = ssptr->sspseg;
      pseg = ssptr->sspseg;
      result += size;
      result += size;
    }
    }
  return (result);
  return (result);
}
}
 
 
#endif /* not CRAY2 */
#endif /* not CRAY2 */
#endif /* CRAY */
#endif /* CRAY */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.