VirtualBox

source: kBuild/trunk/src/kash/memalloc.c@ 3437

Last change on this file since 3437 was 3437, checked in by bird, 5 years ago

kash: refactoring evalcommand - complicated, part II.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
File size: 8.2 KB
Line 
1/* $NetBSD: memalloc.c,v 1.28 2003/08/07 09:05:34 agc Exp $ */
2
3/*-
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Kenneth Almquist.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#if 0
36#ifndef lint
37static char sccsid[] = "@(#)memalloc.c 8.3 (Berkeley) 5/4/95";
38#else
39__RCSID("$NetBSD: memalloc.c,v 1.28 2003/08/07 09:05:34 agc Exp $");
40#endif /* not lint */
41#endif
42
43#include <stdlib.h>
44
45#include "shell.h"
46#include "output.h"
47#include "memalloc.h"
48#include "error.h"
49#include "machdep.h"
50#include "mystring.h"
51#include "shinstance.h"
52
53/*
54 * Like malloc, but returns an error when out of space.
55 */
56
57pointer
58ckmalloc(shinstance *psh, size_t nbytes)
59{
60 pointer p;
61
62 p = sh_malloc(psh, nbytes);
63 if (p == NULL)
64 error(psh, "Out of space");
65 return p;
66}
67
68
69/*
70 * Same for realloc.
71 */
72
73pointer
74ckrealloc(struct shinstance *psh, pointer p, size_t nbytes)
75{
76 p = sh_realloc(psh, p, nbytes);
77 if (p == NULL)
78 error(psh, "Out of space");
79 return p;
80}
81
82
83/*
84 * Make a copy of a string in safe storage.
85 */
86
87char *
88savestr(struct shinstance *psh, const char *s)
89{
90 char *p;
91 size_t len = strlen(s);
92
93 p = ckmalloc(psh, len + 1);
94 memcpy(p, s, len + 1);
95 return p;
96}
97
98
99/*
100 * Parse trees for commands are allocated in lifo order, so we use a stack
101 * to make this more efficient, and also to avoid all sorts of exception
102 * handling code to handle interrupts in the middle of a parse.
103 *
104 * The size 504 was chosen because the Ultrix malloc handles that size
105 * well.
106 */
107
108//#define MINSIZE 504 /* minimum size of a block */
109
110//struct stack_block {
111// struct stack_block *prev;
112// char space[MINSIZE];
113//};
114
115//struct stack_block stackbase;
116//struct stack_block *stackp = &stackbase;
117//struct stackmark *markp;
118//char *stacknxt = stackbase.space;
119//int stacknleft = MINSIZE;
120//int sstrnleft;
121//int herefd = -1;
122
123pointer
124stalloc(shinstance *psh, size_t nbytes)
125{
126 char *p;
127
128 nbytes = SHELL_ALIGN(nbytes);
129 if (nbytes > (size_t)psh->stacknleft || psh->stacknleft < 0) {
130 size_t blocksize;
131 struct stack_block *sp;
132
133 blocksize = nbytes;
134 if (blocksize < MINSIZE)
135 blocksize = MINSIZE;
136 INTOFF;
137 sp = ckmalloc(psh, sizeof(struct stack_block) - MINSIZE + blocksize);
138 sp->prev = psh->stackp;
139 psh->stacknxt = sp->space;
140 psh->stacknleft = (int)blocksize;
141 psh->stackp = sp;
142 INTON;
143 }
144 p = psh->stacknxt;
145 psh->stacknxt += nbytes;
146 psh->stacknleft -= (int)nbytes;
147 return p;
148}
149
150
151char *
152stsavestr(struct shinstance *psh, const char *src)
153{
154 if (src) {
155 size_t size = strlen(src) + 1;
156 char *dst = (char *)stalloc(psh, size);
157 return (char *)memcpy(dst, src, size);
158 }
159 return NULL;
160}
161
162
163void
164stunalloc(shinstance *psh, pointer p)
165{
166 if (p == NULL) { /*DEBUG */
167 shfile_write(&psh->fdtab, 2, "stunalloc\n", 10);
168 sh_abort(psh);
169 }
170 psh->stacknleft += (int)(psh->stacknxt - (char *)p);
171 psh->stacknxt = p;
172}
173
174
175
176void
177setstackmark(shinstance *psh, struct stackmark *mark)
178{
179 mark->stackp = psh->stackp;
180 mark->stacknxt = psh->stacknxt;
181 mark->stacknleft = psh->stacknleft;
182 mark->marknext = psh->markp;
183 psh->markp = mark;
184}
185
186
187void
188popstackmark(shinstance *psh, struct stackmark *mark)
189{
190 struct stack_block *sp;
191
192 INTOFF;
193 psh->markp = mark->marknext;
194 while (psh->stackp != mark->stackp) {
195 sp = psh->stackp;
196 psh->stackp = sp->prev;
197 ckfree(psh, sp);
198 }
199 psh->stacknxt = mark->stacknxt;
200 psh->stacknleft = mark->stacknleft;
201 INTON;
202}
203
204
205/*
206 * When the parser reads in a string, it wants to stick the string on the
207 * stack and only adjust the stack pointer when it knows how big the
208 * string is. Stackblock (defined in stack.h) returns a pointer to a block
209 * of space on top of the stack and stackblocklen returns the length of
210 * this block. Growstackblock will grow this space by at least one byte,
211 * possibly moving it (like realloc). Grabstackblock actually allocates the
212 * part of the block that has been used.
213 */
214
215void
216growstackblock(shinstance *psh)
217{
218 int newlen = SHELL_ALIGN(psh->stacknleft * 2 + 100);
219
220 if (psh->stacknxt == psh->stackp->space && psh->stackp != &psh->stackbase) {
221 struct stack_block *oldstackp;
222 struct stackmark *xmark;
223 struct stack_block *sp;
224
225 INTOFF;
226 oldstackp = psh->stackp;
227 sp = psh->stackp;
228 psh->stackp = sp->prev;
229 sp = ckrealloc(psh, (pointer)sp,
230 sizeof(struct stack_block) - MINSIZE + newlen);
231 sp->prev = psh->stackp;
232 psh->stackp = sp;
233 psh->stacknxt = sp->space;
234 psh->stacknleft = newlen;
235
236 /*
237 * Stack marks pointing to the start of the old block
238 * must be relocated to point to the new block
239 */
240 xmark = psh->markp;
241 while (xmark != NULL && xmark->stackp == oldstackp) {
242 xmark->stackp = psh->stackp;
243 xmark->stacknxt = psh->stacknxt;
244 xmark->stacknleft = psh->stacknleft;
245 xmark = xmark->marknext;
246 }
247 INTON;
248 } else {
249 char *oldspace = psh->stacknxt;
250 int oldlen = psh->stacknleft;
251 char *p = stalloc(psh, newlen);
252
253 (void)memcpy(p, oldspace, oldlen);
254 psh->stacknxt = p; /* free the space */
255 psh->stacknleft += newlen; /* we just allocated */
256 }
257}
258
259void
260grabstackblock(shinstance *psh, int len)
261{
262 len = SHELL_ALIGN(len);
263 psh->stacknxt += len;
264 psh->stacknleft -= len;
265}
266
267/*
268 * The following routines are somewhat easier to use than the above.
269 * The user declares a variable of type STACKSTR, which may be declared
270 * to be a register. The macro STARTSTACKSTR initializes things. Then
271 * the user uses the macro STPUTC to add characters to the string. In
272 * effect, STPUTC(psh, c, p) is the same as *p++ = c except that the stack is
273 * grown as necessary. When the user is done, she can just leave the
274 * string there and refer to it using stackblock(psh). Or she can allocate
275 * the space for it using grabstackstr(). If it is necessary to allow
276 * someone else to use the stack temporarily and then continue to grow
277 * the string, the user should use grabstack to allocate the space, and
278 * then call ungrabstr(p) to return to the previous mode of operation.
279 *
280 * USTPUTC is like STPUTC except that it doesn't check for overflow.
281 * CHECKSTACKSPACE can be called before USTPUTC to ensure that there
282 * is space for at least one character.
283 */
284
285char *
286growstackstr(shinstance *psh)
287{
288 int len = stackblocksize(psh);
289 if (psh->herefd >= 0 && len >= 1024) {
290 xwrite(psh, psh->herefd, stackblock(psh), len);
291 psh->sstrnleft = len - 1;
292 return stackblock(psh);
293 }
294 growstackblock(psh);
295 psh->sstrnleft = stackblocksize(psh) - len - 1;
296 return stackblock(psh) + len;
297}
298
299/*
300 * Called from CHECKSTRSPACE.
301 */
302
303char *
304makestrspace(shinstance *psh)
305{
306 int len = stackblocksize(psh) - psh->sstrnleft;
307 growstackblock(psh);
308 psh->sstrnleft = stackblocksize(psh) - len;
309 return stackblock(psh) + len;
310}
311
312void
313ungrabstackstr(shinstance *psh, char *s, char *p)
314{
315 psh->stacknleft += (int)(psh->stacknxt - s);
316 psh->stacknxt = s;
317 psh->sstrnleft = (int)(psh->stacknleft - (p - s));
318
319}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette