2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static char sccsid
[] = "@(#)memalloc.c 8.3 (Berkeley) 5/4/95";
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD: src/bin/sh/memalloc.c,v 1.26 2004/04/06 20:06:51 markm Exp $");
54 * Like malloc, but returns an error when out of space.
62 if ((p
= malloc(nbytes
)) == NULL
)
63 error("Out of space");
73 ckrealloc(pointer p
, int nbytes
)
75 if ((p
= realloc(p
, nbytes
)) == NULL
)
76 error("Out of space");
82 * Make a copy of a string in safe storage.
86 savestr(const char *s
)
90 p
= ckmalloc(strlen(s
) + 1);
97 * Parse trees for commands are allocated in lifo order, so we use a stack
98 * to make this more efficient, and also to avoid all sorts of exception
99 * handling code to handle interrupts in the middle of a parse.
101 * The size 496 was chosen because with 16-byte alignment the total size
102 * for the allocated block is 512.
105 #define MINSIZE 496 /* minimum size of a block. */
109 struct stack_block
*prev
;
112 #define SPACE(sp) ((char*)(sp) + ALIGN(sizeof(struct stack_block)))
114 STATIC
struct stack_block
*stackp
;
115 STATIC
struct stackmark
*markp
;
123 stnewblock(int nbytes
)
125 struct stack_block
*sp
;
128 if (nbytes
< MINSIZE
)
131 allocsize
= ALIGN(sizeof(struct stack_block
)) + ALIGN(nbytes
);
134 sp
= ckmalloc(allocsize
);
136 stacknxt
= SPACE(sp
);
137 stacknleft
= allocsize
- (stacknxt
- (char*)sp
);
148 nbytes
= ALIGN(nbytes
);
149 if (nbytes
> stacknleft
)
153 stacknleft
-= nbytes
;
161 if (p
== NULL
) { /*DEBUG */
162 write(STDERR_FILENO
, "stunalloc\n", 10);
165 stacknleft
+= stacknxt
- (char *)p
;
172 setstackmark(struct stackmark
*mark
)
174 mark
->stackp
= stackp
;
175 mark
->stacknxt
= stacknxt
;
176 mark
->stacknleft
= stacknleft
;
177 mark
->marknext
= markp
;
183 popstackmark(struct stackmark
*mark
)
185 struct stack_block
*sp
;
188 markp
= mark
->marknext
;
189 while (stackp
!= mark
->stackp
) {
194 stacknxt
= mark
->stacknxt
;
195 stacknleft
= mark
->stacknleft
;
201 * When the parser reads in a string, it wants to stick the string on the
202 * stack and only adjust the stack pointer when it knows how big the
203 * string is. Stackblock (defined in stack.h) returns a pointer to a block
204 * of space on top of the stack and stackblocklen returns the length of
205 * this block. Growstackblock will grow this space by at least one byte,
206 * possibly moving it (like realloc). Grabstackblock actually allocates the
207 * part of the block that has been used.
217 struct stack_block
*sp
;
218 struct stack_block
*oldstackp
;
219 struct stackmark
*xmark
;
221 newlen
= (stacknleft
== 0) ? MINSIZE
: stacknleft
* 2 + 100;
222 newlen
= ALIGN(newlen
);
226 if (stackp
!= NULL
&& stacknxt
== SPACE(stackp
)) {
229 stackp
= oldstackp
->prev
;
230 sp
= ckrealloc((pointer
)oldstackp
, newlen
);
233 stacknxt
= SPACE(sp
);
234 stacknleft
= newlen
- (stacknxt
- (char*)sp
);
237 * Stack marks pointing to the start of the old block
238 * must be relocated to point to the new block
241 while (xmark
!= NULL
&& xmark
->stackp
== oldstackp
) {
242 xmark
->stackp
= stackp
;
243 xmark
->stacknxt
= stacknxt
;
244 xmark
->stacknleft
= stacknleft
;
245 xmark
= xmark
->marknext
;
251 memcpy(p
, oldspace
, oldlen
);
259 grabstackblock(int len
)
269 * The following routines are somewhat easier to use that the above.
270 * The user declares a variable of type STACKSTR, which may be declared
271 * to be a register. The macro STARTSTACKSTR initializes things. Then
272 * the user uses the macro STPUTC to add characters to the string. In
273 * effect, STPUTC(c, p) is the same as *p++ = c except that the stack is
274 * grown as necessary. When the user is done, she can just leave the
275 * string there and refer to it using stackblock(). Or she can allocate
276 * the space for it using grabstackstr(). If it is necessary to allow
277 * someone else to use the stack temporarily and then continue to grow
278 * the string, the user should use grabstack to allocate the space, and
279 * then call ungrabstr(p) to return to the previous mode of operation.
281 * USTPUTC is like STPUTC except that it doesn't check for overflow.
282 * CHECKSTACKSPACE can be called before USTPUTC to ensure that there
283 * is space for at least one character.
292 len
= stackblocksize();
293 if (herefd
>= 0 && len
>= 1024) {
294 xwrite(herefd
, stackblock(), len
);
299 sstrnleft
= stackblocksize() - len
- 1;
300 return stackblock() + len
;
305 * Called from CHECKSTRSPACE.
313 len
= stackblocksize() - sstrnleft
;
315 sstrnleft
= stackblocksize() - len
;
316 return stackblock() + len
;
322 ungrabstackstr(char *s
, char *p
)
324 stacknleft
+= stacknxt
- s
;
326 sstrnleft
= stacknleft
- (p
- s
);
330 * $PchId: memalloc.c,v 1.5 2006/05/22 12:03:26 philip Exp $