exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / alloca.c
blob5eb16a9ff5c77909268afc7eb74ed2fe3d6dd80e
1 /* alloca.c -- allocate automatically reclaimed memory
2 This file is in the public domain. */
4 /* (Mostly) portable implementation -- D A Gwyn
6 This implementation of the PWB library alloca function,
7 which is used to allocate space off the run-time stack so
8 that it is automatically reclaimed upon procedure exit,
9 was inspired by discussions with J. Q. Johnson of Cornell.
10 J.Otto Tennant <jot@cray.com> contributed the Cray support.
12 There are some preprocessor constants that can
13 be defined when compiling for your specific system, for
14 improved efficiency; however, the defaults should be okay.
16 The general concept of this implementation is to keep
17 track of all alloca-allocated blocks, and reclaim any
18 that are found to be deeper in the stack than the current
19 invocation. This heuristic does not reclaim storage as
20 soon as it becomes invalid, but it will do so eventually.
22 As a special case, alloca(0) reclaims storage without
23 allocating any. It is a good idea to use alloca(0) in
24 your main control loop, etc. to force garbage collection. */
26 #include <config.h>
28 #include <alloca.h>
30 #include <string.h>
31 #include <stdlib.h>
33 /* If compiling with GCC or clang, this file is not needed. */
34 #if !(defined __GNUC__ || defined __clang__)
36 /* If someone has defined alloca as a macro,
37 there must be some other way alloca is supposed to work. */
38 # ifndef alloca
40 /* Define STACK_DIRECTION if you know the direction of stack
41 growth for your system; otherwise it will be automatically
42 deduced at run-time.
44 STACK_DIRECTION > 0 => grows toward higher addresses
45 STACK_DIRECTION < 0 => grows toward lower addresses
46 STACK_DIRECTION = 0 => direction of growth unknown */
48 # ifndef STACK_DIRECTION
49 # define STACK_DIRECTION 0 /* Direction unknown. */
50 # endif
52 # if STACK_DIRECTION != 0
54 # define STACK_DIR STACK_DIRECTION /* Known at compile-time. */
56 # else /* STACK_DIRECTION == 0; need run-time code. */
58 static int stack_dir; /* 1 or -1 once known. */
59 # define STACK_DIR stack_dir
61 static int
62 find_stack_direction (int *addr, int depth)
64 int dir, dummy = 0;
65 if (! addr)
66 addr = &dummy;
67 *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1;
68 dir = depth ? find_stack_direction (addr, depth - 1) : 0;
69 return dir + dummy;
72 # endif /* STACK_DIRECTION == 0 */
74 /* An "alloca header" is used to:
75 (a) chain together all alloca'ed blocks;
76 (b) keep track of stack depth.
78 It is very important that sizeof(header) agree with malloc
79 alignment chunk size. The following default should work okay. */
81 # ifndef ALIGN_SIZE
82 # define ALIGN_SIZE sizeof(double)
83 # endif
85 typedef union hdr
87 char align[ALIGN_SIZE]; /* To force sizeof(header). */
88 struct
90 union hdr *next; /* For chaining headers. */
91 char *deep; /* For stack depth measure. */
92 } h;
93 } header;
95 static header *last_alloca_header = NULL; /* -> last alloca header. */
97 /* Return a pointer to at least SIZE bytes of storage,
98 which will be automatically reclaimed upon exit from
99 the procedure that called alloca. Originally, this space
100 was supposed to be taken from the current stack frame of the
101 caller, but that method cannot be made to work for some
102 implementations of C, for example under Gould's UTX/32. */
104 void *
105 alloca (size_t size)
107 auto char probe; /* Probes stack depth: */
108 register char *depth = &probe;
110 # if STACK_DIRECTION == 0
111 if (STACK_DIR == 0) /* Unknown growth direction. */
112 STACK_DIR = find_stack_direction (NULL, (size & 1) + 20);
113 # endif
115 /* Reclaim garbage, defined as all alloca'd storage that
116 was allocated from deeper in the stack than currently. */
119 register header *hp; /* Traverses linked list. */
121 for (hp = last_alloca_header; hp != NULL;)
122 if ((STACK_DIR > 0 && hp->h.deep > depth)
123 || (STACK_DIR < 0 && hp->h.deep < depth))
125 register header *np = hp->h.next;
127 free (hp); /* Collect garbage. */
129 hp = np; /* -> next header. */
131 else
132 break; /* Rest are not deeper. */
134 last_alloca_header = hp; /* -> last valid storage. */
137 if (size == 0)
138 return NULL; /* No allocation required. */
140 /* Allocate combined header + user data storage. */
143 /* Address of header. */
144 register header *new;
146 size_t combined_size = sizeof (header) + size;
147 if (combined_size < sizeof (header))
148 memory_full ();
150 new = malloc (combined_size);
152 if (! new)
153 memory_full ();
155 new->h.next = last_alloca_header;
156 new->h.deep = depth;
158 last_alloca_header = new;
160 /* User storage begins just after header. */
162 return (void *) (new + 1);
166 # endif /* no alloca */
167 #endif /* not GCC || clang */