1 /* alloca.c -- allocate automatically reclaimed memory
2 (Mostly) portable public-domain implementation -- D A Gwyn
4 NOTE: The canonical source of this file is maintained with gnulib.
5 Bugs can be reported to bug-gnulib@gnu.org.
7 This implementation of the PWB library alloca function,
8 which is used to allocate space off the run-time stack so
9 that it is automatically reclaimed upon procedure exit,
10 was inspired by discussions with J. Q. Johnson of Cornell.
11 J.Otto Tennant <jot@cray.com> contributed the Cray support.
13 There are some preprocessor constants that can
14 be defined when compiling for your specific system, for
15 improved efficiency; however, the defaults should be okay.
17 The general concept of this implementation is to keep
18 track of all alloca-allocated blocks, and reclaim any
19 that are found to be deeper in the stack than the current
20 invocation. This heuristic does not reclaim storage as
21 soon as it becomes invalid, but it will do so eventually.
23 As a special case, alloca(0) reclaims storage without
24 allocating any. It is a good idea to use alloca(0) in
25 your main control loop, etc. to force garbage collection. */
40 # include "blockinput.h"
43 /* If compiling with GCC 2, this file's not needed. */
44 #if !defined (__GNUC__) || __GNUC__ < 2
46 /* If someone has defined alloca as a macro,
47 there must be some other way alloca is supposed to work. */
52 /* actually, only want this if static is defined as ""
53 -- this is for usg, in which emacs must undefine static
54 in order to make unexec workable
56 # ifndef STACK_DIRECTION
59 -- must know STACK_DIRECTION at compile
-time
60 /* Using #error here is not wise since this file should work for
61 old and obscure compilers. */
62 # endif /* STACK_DIRECTION undefined */
66 /* If your stack is a linked list of frames, you have to
67 provide an "address metric" ADDRESS_FUNCTION macro. */
69 # if defined (CRAY) && defined (CRAY_STACKSEG_END)
71 # define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
73 # define ADDRESS_FUNCTION(arg) &(arg)
77 typedef POINTER_TYPE
*pointer
;
78 # else /* not POINTER_TYPE */
80 typedef void *pointer
;
81 # else /* not __STDC__ */
82 typedef char *pointer
;
83 # endif /* not __STDC__ */
84 # endif /* not POINTER_TYPE */
90 /* Different portions of Emacs need to call different versions of
91 malloc. The Emacs executable needs alloca to call xmalloc, because
92 ordinary malloc isn't protected from input signals. On the other
93 hand, the utilities in lib-src need alloca to call malloc; some of
94 them are very simple, and don't have an xmalloc routine.
96 Non-Emacs programs expect this to call xmalloc.
98 Callers below should use malloc. */
102 # define malloc xmalloc
104 # define free EMACS_FREE
107 extern pointer
malloc ();
109 /* Define STACK_DIRECTION if you know the direction of stack
110 growth for your system; otherwise it will be automatically
113 STACK_DIRECTION > 0 => grows toward higher addresses
114 STACK_DIRECTION < 0 => grows toward lower addresses
115 STACK_DIRECTION = 0 => direction of growth unknown */
117 # ifndef STACK_DIRECTION
118 # define STACK_DIRECTION 0 /* Direction unknown. */
121 # if STACK_DIRECTION != 0
123 # define STACK_DIR STACK_DIRECTION /* Known at compile-time. */
125 # else /* STACK_DIRECTION == 0; need run-time code. */
127 static int stack_dir
; /* 1 or -1 once known. */
128 # define STACK_DIR stack_dir
131 find_stack_direction ()
133 static char *addr
= NULL
; /* Address of first `dummy', once known. */
134 auto char dummy
; /* To get stack address. */
137 { /* Initial entry. */
138 addr
= ADDRESS_FUNCTION (dummy
);
140 find_stack_direction (); /* Recurse once. */
145 if (ADDRESS_FUNCTION (dummy
) > addr
)
146 stack_dir
= 1; /* Stack grew upward. */
148 stack_dir
= -1; /* Stack grew downward. */
152 # endif /* STACK_DIRECTION == 0 */
154 /* An "alloca header" is used to:
155 (a) chain together all alloca'ed blocks;
156 (b) keep track of stack depth.
158 It is very important that sizeof(header) agree with malloc
159 alignment chunk size. The following default should work okay. */
162 # define ALIGN_SIZE sizeof(double)
167 char align
[ALIGN_SIZE
]; /* To force sizeof(header). */
170 union hdr
*next
; /* For chaining headers. */
171 char *deep
; /* For stack depth measure. */
175 static header
*last_alloca_header
= NULL
; /* -> last alloca header. */
177 /* Return a pointer to at least SIZE bytes of storage,
178 which will be automatically reclaimed upon exit from
179 the procedure that called alloca. Originally, this space
180 was supposed to be taken from the current stack frame of the
181 caller, but that method cannot be made to work for some
182 implementations of C, for example under Gould's UTX/32. */
188 auto char probe
; /* Probes stack depth: */
189 register char *depth
= ADDRESS_FUNCTION (probe
);
191 # if STACK_DIRECTION == 0
192 if (STACK_DIR
== 0) /* Unknown growth direction. */
193 find_stack_direction ();
196 /* Reclaim garbage, defined as all alloca'd storage that
197 was allocated from deeper in the stack than currently. */
200 register header
*hp
; /* Traverses linked list. */
202 # ifdef DO_BLOCK_INPUT
206 for (hp
= last_alloca_header
; hp
!= NULL
;)
207 if ((STACK_DIR
> 0 && hp
->h
.deep
> depth
)
208 || (STACK_DIR
< 0 && hp
->h
.deep
< depth
))
210 register header
*np
= hp
->h
.next
;
212 free ((pointer
) hp
); /* Collect garbage. */
214 hp
= np
; /* -> next header. */
217 break; /* Rest are not deeper. */
219 last_alloca_header
= hp
; /* -> last valid storage. */
221 # ifdef DO_BLOCK_INPUT
227 return NULL
; /* No allocation required. */
229 /* Allocate combined header + user data storage. */
232 register pointer
new = malloc (sizeof (header
) + size
);
233 /* Address of header. */
238 ((header
*) new)->h
.next
= last_alloca_header
;
239 ((header
*) new)->h
.deep
= depth
;
241 last_alloca_header
= (header
*) new;
243 /* User storage begins just after header. */
245 return (pointer
) ((char *) new + sizeof (header
));
249 # if defined (CRAY) && defined (CRAY_STACKSEG_END)
251 # ifdef DEBUG_I00AFUNC
258 /* Stack structures for CRAY-1, CRAY X-MP, and CRAY Y-MP */
259 struct stack_control_header
261 long shgrow
:32; /* Number of times stack has grown. */
262 long shaseg
:32; /* Size of increments to stack. */
263 long shhwm
:32; /* High water mark of stack. */
264 long shsize
:32; /* Current size of stack (all segments). */
267 /* The stack segment linkage control information occurs at
268 the high-address end of a stack segment. (The stack
269 grows from low addresses to high addresses.) The initial
270 part of the stack segment linkage control information is
271 0200 (octal) words. This provides for register storage
272 for the routine which overflows the stack. */
274 struct stack_segment_linkage
276 long ss
[0200]; /* 0200 overflow words. */
277 long sssize
:32; /* Number of words in this segment. */
278 long ssbase
:32; /* Offset to stack base. */
280 long sspseg
:32; /* Offset to linkage control of previous
283 long sstcpt
:32; /* Pointer to task common address block. */
284 long sscsnm
; /* Private control structure number for
286 long ssusr1
; /* Reserved for user. */
287 long ssusr2
; /* Reserved for user. */
288 long sstpid
; /* Process ID for pid based multi-tasking. */
289 long ssgvup
; /* Pointer to multitasking thread giveup. */
290 long sscray
[7]; /* Reserved for Cray Research. */
310 /* The following structure defines the vector of words
311 returned by the STKSTAT library routine. */
314 long now
; /* Current total stack size. */
315 long maxc
; /* Amount of contiguous space which would
316 be required to satisfy the maximum
317 stack demand to date. */
318 long high_water
; /* Stack high-water mark. */
319 long overflows
; /* Number of stack overflow ($STKOFEN) calls. */
320 long hits
; /* Number of internal buffer hits. */
321 long extends
; /* Number of block extensions. */
322 long stko_mallocs
; /* Block allocations by $STKOFEN. */
323 long underflows
; /* Number of stack underflow calls ($STKRETN). */
324 long stko_free
; /* Number of deallocations by $STKRETN. */
325 long stkm_free
; /* Number of deallocations by $STKMRET. */
326 long segments
; /* Current number of stack segments. */
327 long maxs
; /* Maximum number of stack segments so far. */
328 long pad_size
; /* Stack pad size. */
329 long current_address
; /* Current stack segment address. */
330 long current_size
; /* Current stack segment size. This
331 number is actually corrupted by STKSTAT to
332 include the fifteen word trailer area. */
333 long initial_address
; /* Address of initial segment. */
334 long initial_size
; /* Size of initial segment. */
337 /* The following structure describes the data structure which trails
338 any stack segment. I think that the description in 'asdef' is
339 out of date. I only describe the parts that I am sure about. */
343 long this_address
; /* Address of this block. */
344 long this_size
; /* Size of this block (does not include
348 long link
; /* Address of trailer block of previous
363 # endif /* not CRAY_STACK */
366 /* Determine a "stack measure" for an arbitrary ADDRESS.
367 I doubt that "lint" will like this much. */
370 i00afunc (long *address
)
372 struct stk_stat status
;
373 struct stk_trailer
*trailer
;
377 /* We want to iterate through all of the segments. The first
378 step is to get the stack status structure. We could do this
379 more quickly and more directly, perhaps, by referencing the
380 $LM00 common block, but I know that this works. */
384 /* Set up the iteration. */
386 trailer
= (struct stk_trailer
*) (status
.current_address
387 + status
.current_size
390 /* There must be at least one stack segment. Therefore it is
391 a fatal error if "trailer" is null. */
396 /* Discard segments that do not contain our argument address. */
400 block
= (long *) trailer
->this_address
;
401 size
= trailer
->this_size
;
402 if (block
== 0 || size
== 0)
404 trailer
= (struct stk_trailer
*) trailer
->link
;
405 if ((block
<= address
) && (address
< (block
+ size
)))
409 /* Set the result to the offset in this segment and add the sizes
410 of all predecessor segments. */
412 result
= address
- block
;
421 if (trailer
->this_size
<= 0)
423 result
+= trailer
->this_size
;
424 trailer
= (struct stk_trailer
*) trailer
->link
;
426 while (trailer
!= 0);
428 /* We are done. Note that if you present a bogus address (one
429 not in any segment), you will get a different number back, formed
430 from subtracting the address of the first block. This is probably
431 not what you want. */
436 # else /* not CRAY2 */
437 /* Stack address function for a CRAY-1, CRAY X-MP, or CRAY Y-MP.
438 Determine the number of the cell within the stack,
439 given the address of the cell. The purpose of this
440 routine is to linearize, in some sense, stack addresses
444 i00afunc (long address
)
448 long size
, pseg
, this_segment
, stack
;
451 struct stack_segment_linkage
*ssptr
;
453 /* Register B67 contains the address of the end of the
454 current stack segment. If you (as a subprogram) store
455 your registers on the stack and find that you are past
456 the contents of B67, you have overflowed the segment.
458 B67 also points to the stack segment linkage control
459 area, which is what we are really interested in. */
461 stkl
= CRAY_STACKSEG_END ();
462 ssptr
= (struct stack_segment_linkage
*) stkl
;
464 /* If one subtracts 'size' from the end of the segment,
465 one has the address of the first word of the segment.
467 If this is not the first segment, 'pseg' will be
470 pseg
= ssptr
->sspseg
;
471 size
= ssptr
->sssize
;
473 this_segment
= stkl
- size
;
475 /* It is possible that calling this routine itself caused
476 a stack overflow. Discard stack segments which do not
477 contain the target address. */
479 while (!(this_segment
<= address
&& address
<= stkl
))
481 # ifdef DEBUG_I00AFUNC
482 fprintf (stderr
, "%011o %011o %011o\n", this_segment
, address
, stkl
);
487 ssptr
= (struct stack_segment_linkage
*) stkl
;
488 size
= ssptr
->sssize
;
489 pseg
= ssptr
->sspseg
;
490 this_segment
= stkl
- size
;
493 result
= address
- this_segment
;
495 /* If you subtract pseg from the current end of the stack,
496 you get the address of the previous stack segment's end.
497 This seems a little convoluted to me, but I'll bet you save
498 a cycle somewhere. */
502 # ifdef DEBUG_I00AFUNC
503 fprintf (stderr
, "%011o %011o\n", pseg
, size
);
506 ssptr
= (struct stack_segment_linkage
*) stkl
;
507 size
= ssptr
->sssize
;
508 pseg
= ssptr
->sspseg
;
514 # endif /* not CRAY2 */
517 # endif /* no alloca */
518 #endif /* not GCC version 2 */