alloca.c
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:13k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /* alloca.c -- allocate automatically reclaimed memory
  2.    (Mostly) portable public-domain implementation -- D A Gwyn
  3.    This implementation of the PWB library alloca function,
  4.    which is used to allocate space off the run-time stack so
  5.    that it is automatically reclaimed upon procedure exit,
  6.    was inspired by discussions with J. Q. Johnson of Cornell.
  7.    J.Otto Tennant <jot@cray.com> contributed the Cray support.
  8.    There are some preprocessor constants that can
  9.    be defined when compiling for your specific system, for
  10.    improved efficiency; however, the defaults should be okay.
  11.    The general concept of this implementation is to keep
  12.    track of all alloca-allocated blocks, and reclaim any
  13.    that are found to be deeper in the stack than the current
  14.    invocation.  This heuristic does not reclaim storage as
  15.    soon as it becomes invalid, but it will do so eventually.
  16.    As a special case, alloca(0) reclaims storage without
  17.    allocating any.  It is a good idea to use alloca(0) in
  18.    your main control loop, etc. to force garbage collection.  */
  19. #include <stdlib.h>
  20. #ifdef HAVE_CONFIG_H
  21. #include "config.h"
  22. #endif
  23. /* If compiling with GCC, this file's not needed.  */
  24. #ifndef alloca
  25. #ifdef emacs
  26. #ifdef static
  27. /* actually, only want this if static is defined as ""
  28.    -- this is for usg, in which emacs must undefine static
  29.    in order to make unexec workable
  30.    */
  31. #ifndef STACK_DIRECTION
  32. you
  33. lose
  34. -- must know STACK_DIRECTION at compile-time
  35. #endif /* STACK_DIRECTION undefined */
  36. #endif /* static */
  37. #endif /* emacs */
  38. /* If your stack is a linked list of frames, you have to
  39.    provide an "address metric" ADDRESS_FUNCTION macro.  */
  40. #if defined (CRAY) && defined (CRAY_STACKSEG_END)
  41. long i00afunc ();
  42. #define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
  43. #else
  44. #define ADDRESS_FUNCTION(arg) &(arg)
  45. #endif
  46. #if __STDC__
  47. typedef void *pointer;
  48. #else
  49. typedef char *pointer;
  50. #endif
  51. #define NULL 0
  52. /* Different portions of Emacs need to call different versions of
  53.    malloc.  The Emacs executable needs alloca to call xmalloc, because
  54.    ordinary malloc isn't protected from input signals.  On the other
  55.    hand, the utilities in lib-src need alloca to call malloc; some of
  56.    them are very simple, and don't have an xmalloc routine.
  57.    Non-Emacs programs expect this to call use xmalloc.
  58.    Callers below should use malloc.  */
  59. #ifndef emacs
  60. #define malloc xmalloc
  61. extern pointer xmalloc ();
  62. #endif
  63. /* Define STACK_DIRECTION if you know the direction of stack
  64.    growth for your system; otherwise it will be automatically
  65.    deduced at run-time.
  66.    STACK_DIRECTION > 0 => grows toward higher addresses
  67.    STACK_DIRECTION < 0 => grows toward lower addresses
  68.    STACK_DIRECTION = 0 => direction of growth unknown  */
  69. #ifndef STACK_DIRECTION
  70. #define STACK_DIRECTION 0 /* Direction unknown.  */
  71. #endif
  72. #if STACK_DIRECTION != 0
  73. #define STACK_DIR STACK_DIRECTION /* Known at compile-time.  */
  74. #else /* STACK_DIRECTION == 0; need run-time code.  */
  75. static int stack_dir; /* 1 or -1 once known.  */
  76. #define STACK_DIR stack_dir
  77. static void
  78. find_stack_direction ()
  79. {
  80.   static char *addr = NULL; /* Address of first `dummy', once known.  */
  81.   auto char dummy; /* To get stack address.  */
  82.   if (addr == NULL)
  83.     { /* Initial entry.  */
  84.       addr = ADDRESS_FUNCTION (dummy);
  85.       find_stack_direction (); /* Recurse once.  */
  86.     }
  87.   else
  88.     {
  89.       /* Second entry.  */
  90.       if (ADDRESS_FUNCTION (dummy) > addr)
  91. stack_dir = 1; /* Stack grew upward.  */
  92.       else
  93. stack_dir = -1; /* Stack grew downward.  */
  94.     }
  95. }
  96. #endif /* STACK_DIRECTION == 0 */
  97. /* An "alloca header" is used to:
  98.    (a) chain together all alloca'ed blocks;
  99.    (b) keep track of stack depth.
  100.    It is very important that sizeof(header) agree with malloc
  101.    alignment chunk size.  The following default should work okay.  */
  102. #ifndef ALIGN_SIZE
  103. #define ALIGN_SIZE sizeof(double)
  104. #endif
  105. typedef union hdr
  106. {
  107.   char align[ALIGN_SIZE]; /* To force sizeof(header).  */
  108.   struct
  109.     {
  110.       union hdr *next; /* For chaining headers.  */
  111.       char *deep; /* For stack depth measure.  */
  112.     } h;
  113. } header;
  114. static header *last_alloca_header = NULL; /* -> last alloca header.  */
  115. /* Return a pointer to at least SIZE bytes of storage,
  116.    which will be automatically reclaimed upon exit from
  117.    the procedure that called alloca.  Originally, this space
  118.    was supposed to be taken from the current stack frame of the
  119.    caller, but that method cannot be made to work for some
  120.    implementations of C, for example under Gould's UTX/32.  */
  121. pointer
  122. alloca (size)
  123.      unsigned size;
  124. {
  125.   auto char probe; /* Probes stack depth: */
  126.   register char *depth = ADDRESS_FUNCTION (probe);
  127. #if STACK_DIRECTION == 0
  128.   if (STACK_DIR == 0) /* Unknown growth direction.  */
  129.     find_stack_direction ();
  130. #endif
  131.   /* Reclaim garbage, defined as all alloca'd storage that
  132.      was allocated from deeper in the stack than currently. */
  133.   {
  134.     register header *hp; /* Traverses linked list.  */
  135.     for (hp = last_alloca_header; hp != NULL;)
  136.       if ((STACK_DIR > 0 && hp->h.deep > depth)
  137.   || (STACK_DIR < 0 && hp->h.deep < depth))
  138. {
  139.   register header *np = hp->h.next;
  140.   free ((pointer) hp); /* Collect garbage.  */
  141.   hp = np; /* -> next header.  */
  142. }
  143.       else
  144. break; /* Rest are not deeper.  */
  145.     last_alloca_header = hp; /* -> last valid storage.  */
  146.   }
  147.   if (size == 0)
  148.     return NULL; /* No allocation required.  */
  149.   /* Allocate combined header + user data storage.  */
  150.   {
  151.     register pointer new = malloc (sizeof (header) + size);
  152.     /* Address of header.  */
  153.     ((header *) new)->h.next = last_alloca_header;
  154.     ((header *) new)->h.deep = depth;
  155.     last_alloca_header = (header *) new;
  156.     /* User storage begins just after header.  */
  157.     return (pointer) ((char *) new + sizeof (header));
  158.   }
  159. }
  160. #if defined (CRAY) && defined (CRAY_STACKSEG_END)
  161. #ifdef DEBUG_I00AFUNC
  162. #include <stdio.h>
  163. #endif
  164. #ifndef CRAY_STACK
  165. #define CRAY_STACK
  166. #ifndef CRAY2
  167. /* Stack structures for CRAY-1, CRAY X-MP, and CRAY Y-MP */
  168. struct stack_control_header
  169.   {
  170.     long shgrow:32; /* Number of times stack has grown.  */
  171.     long shaseg:32; /* Size of increments to stack.  */
  172.     long shhwm:32; /* High water mark of stack.  */
  173.     long shsize:32; /* Current size of stack (all segments).  */
  174.   };
  175. /* The stack segment linkage control information occurs at
  176.    the high-address end of a stack segment.  (The stack
  177.    grows from low addresses to high addresses.)  The initial
  178.    part of the stack segment linkage control information is
  179.    0200 (octal) words.  This provides for register storage
  180.    for the routine which overflows the stack.  */
  181. struct stack_segment_linkage
  182.   {
  183.     long ss[0200]; /* 0200 overflow words.  */
  184.     long sssize:32; /* Number of words in this segment.  */
  185.     long ssbase:32; /* Offset to stack base.  */
  186.     long:32;
  187.     long sspseg:32; /* Offset to linkage control of previous
  188.    segment of stack.  */
  189.     long:32;
  190.     long sstcpt:32; /* Pointer to task common address block.  */
  191.     long sscsnm; /* Private control structure number for
  192.    microtasking.  */
  193.     long ssusr1; /* Reserved for user.  */
  194.     long ssusr2; /* Reserved for user.  */
  195.     long sstpid; /* Process ID for pid based multi-tasking.  */
  196.     long ssgvup; /* Pointer to multitasking thread giveup.  */
  197.     long sscray[7]; /* Reserved for Cray Research.  */
  198.     long ssa0;
  199.     long ssa1;
  200.     long ssa2;
  201.     long ssa3;
  202.     long ssa4;
  203.     long ssa5;
  204.     long ssa6;
  205.     long ssa7;
  206.     long sss0;
  207.     long sss1;
  208.     long sss2;
  209.     long sss3;
  210.     long sss4;
  211.     long sss5;
  212.     long sss6;
  213.     long sss7;
  214.   };
  215. #else /* CRAY2 */
  216. /* The following structure defines the vector of words
  217.    returned by the STKSTAT library routine.  */
  218. struct stk_stat
  219.   {
  220.     long now; /* Current total stack size.  */
  221.     long maxc; /* Amount of contiguous space which would
  222.    be required to satisfy the maximum
  223.    stack demand to date.  */
  224.     long high_water; /* Stack high-water mark.  */
  225.     long overflows; /* Number of stack overflow ($STKOFEN) calls.  */
  226.     long hits; /* Number of internal buffer hits.  */
  227.     long extends; /* Number of block extensions.  */
  228.     long stko_mallocs; /* Block allocations by $STKOFEN.  */
  229.     long underflows; /* Number of stack underflow calls ($STKRETN).  */
  230.     long stko_free; /* Number of deallocations by $STKRETN.  */
  231.     long stkm_free; /* Number of deallocations by $STKMRET.  */
  232.     long segments; /* Current number of stack segments.  */
  233.     long maxs; /* Maximum number of stack segments so far.  */
  234.     long pad_size; /* Stack pad size.  */
  235.     long current_address; /* Current stack segment address.  */
  236.     long current_size; /* Current stack segment size.  This
  237.    number is actually corrupted by STKSTAT to
  238.    include the fifteen word trailer area.  */
  239.     long initial_address; /* Address of initial segment.  */
  240.     long initial_size; /* Size of initial segment.  */
  241.   };
  242. /* The following structure describes the data structure which trails
  243.    any stack segment.  I think that the description in 'asdef' is
  244.    out of date.  I only describe the parts that I am sure about.  */
  245. struct stk_trailer
  246.   {
  247.     long this_address; /* Address of this block.  */
  248.     long this_size; /* Size of this block (does not include
  249.    this trailer).  */
  250.     long unknown2;
  251.     long unknown3;
  252.     long link; /* Address of trailer block of previous
  253.    segment.  */
  254.     long unknown5;
  255.     long unknown6;
  256.     long unknown7;
  257.     long unknown8;
  258.     long unknown9;
  259.     long unknown10;
  260.     long unknown11;
  261.     long unknown12;
  262.     long unknown13;
  263.     long unknown14;
  264.   };
  265. #endif /* CRAY2 */
  266. #endif /* not CRAY_STACK */
  267. #ifdef CRAY2
  268. /* Determine a "stack measure" for an arbitrary ADDRESS.
  269.    I doubt that "lint" will like this much. */
  270. static long
  271. i00afunc (long *address)
  272. {
  273.   struct stk_stat status;
  274.   struct stk_trailer *trailer;
  275.   long *block, size;
  276.   long result = 0;
  277.   /* We want to iterate through all of the segments.  The first
  278.      step is to get the stack status structure.  We could do this
  279.      more quickly and more directly, perhaps, by referencing the
  280.      $LM00 common block, but I know that this works.  */
  281.   STKSTAT (&status);
  282.   /* Set up the iteration.  */
  283.   trailer = (struct stk_trailer *) (status.current_address
  284.     + status.current_size
  285.     - 15);
  286.   /* There must be at least one stack segment.  Therefore it is
  287.      a fatal error if "trailer" is null.  */
  288.   if (trailer == 0)
  289.     abort ();
  290.   /* Discard segments that do not contain our argument address.  */
  291.   while (trailer != 0)
  292.     {
  293.       block = (long *) trailer->this_address;
  294.       size = trailer->this_size;
  295.       if (block == 0 || size == 0)
  296. abort ();
  297.       trailer = (struct stk_trailer *) trailer->link;
  298.       if ((block <= address) && (address < (block + size)))
  299. break;
  300.     }
  301.   /* Set the result to the offset in this segment and add the sizes
  302.      of all predecessor segments.  */
  303.   result = address - block;
  304.   if (trailer == 0)
  305.     {
  306.       return result;
  307.     }
  308.   do
  309.     {
  310.       if (trailer->this_size <= 0)
  311. abort ();
  312.       result += trailer->this_size;
  313.       trailer = (struct stk_trailer *) trailer->link;
  314.     }
  315.   while (trailer != 0);
  316.   /* We are done.  Note that if you present a bogus address (one
  317.      not in any segment), you will get a different number back, formed
  318.      from subtracting the address of the first block.  This is probably
  319.      not what you want.  */
  320.   return (result);
  321. }
  322. #else /* not CRAY2 */
  323. /* Stack address function for a CRAY-1, CRAY X-MP, or CRAY Y-MP.
  324.    Determine the number of the cell within the stack,
  325.    given the address of the cell.  The purpose of this
  326.    routine is to linearize, in some sense, stack addresses
  327.    for alloca.  */
  328. static long
  329. i00afunc (long address)
  330. {
  331.   long stkl = 0;
  332.   long size, pseg, this_segment, stack;
  333.   long result = 0;
  334.   struct stack_segment_linkage *ssptr;
  335.   /* Register B67 contains the address of the end of the
  336.      current stack segment.  If you (as a subprogram) store
  337.      your registers on the stack and find that you are past
  338.      the contents of B67, you have overflowed the segment.
  339.      B67 also points to the stack segment linkage control
  340.      area, which is what we are really interested in.  */
  341.   stkl = CRAY_STACKSEG_END ();
  342.   ssptr = (struct stack_segment_linkage *) stkl;
  343.   /* If one subtracts 'size' from the end of the segment,
  344.      one has the address of the first word of the segment.
  345.      If this is not the first segment, 'pseg' will be
  346.      nonzero.  */
  347.   pseg = ssptr->sspseg;
  348.   size = ssptr->sssize;
  349.   this_segment = stkl - size;
  350.   /* It is possible that calling this routine itself caused
  351.      a stack overflow.  Discard stack segments which do not
  352.      contain the target address.  */
  353.   while (!(this_segment <= address && address <= stkl))
  354.     {
  355. #ifdef DEBUG_I00AFUNC
  356.       fprintf (stderr, "%011o %011o %011on", this_segment, address, stkl);
  357. #endif
  358.       if (pseg == 0)
  359. break;
  360.       stkl = stkl - pseg;
  361.       ssptr = (struct stack_segment_linkage *) stkl;
  362.       size = ssptr->sssize;
  363.       pseg = ssptr->sspseg;
  364.       this_segment = stkl - size;
  365.     }
  366.   result = address - this_segment;
  367.   /* If you subtract pseg from the current end of the stack,
  368.      you get the address of the previous stack segment's end.
  369.      This seems a little convoluted to me, but I'll bet you save
  370.      a cycle somewhere.  */
  371.   while (pseg != 0)
  372.     {
  373. #ifdef DEBUG_I00AFUNC
  374.       fprintf (stderr, "%011o %011on", pseg, size);
  375. #endif
  376.       stkl = stkl - pseg;
  377.       ssptr = (struct stack_segment_linkage *) stkl;
  378.       size = ssptr->sssize;
  379.       pseg = ssptr->sspseg;
  380.       result += size;
  381.     }
  382.   return (result);
  383. }
  384. #endif /* not CRAY2 */
  385. #endif /* CRAY */
  386. #endif /* no alloca */