1 /* $NetBSD: mem1.c,v 1.12 2009/04/15 01:20:57 christos Exp $ */
4 * Copyright (c) 1994, 1995 Jochen Pohl
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Jochen Pohl for
19 * 4. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #if HAVE_NBTOOL_CONFIG_H
35 #include "nbtool_config.h"
38 #include <sys/cdefs.h>
39 #if defined(__RCSID) && !defined(lint)
40 __RCSID("$NetBSD: mem1.c,v 1.12 2009/04/15 01:20:57 christos Exp $");
43 #include <sys/types.h>
44 #include <sys/param.h>
52 * Filenames allocated by fnalloc() and fnnalloc() are shared.
63 static fn_t
*srchfn(const char *, size_t);
66 * Look for a Filename of length l.
69 srchfn(const char *s
, size_t len
)
73 for (fn
= fnames
; fn
!= NULL
; fn
= fn
->fn_nxt
) {
74 if (fn
->fn_len
== len
&& memcmp(fn
->fn_name
, s
, len
) == 0)
81 * Return a shared string for filename s.
84 fnalloc(const char *s
)
87 return (s
!= NULL
? fnnalloc(s
, strlen(s
)) : NULL
);
91 fnnalloc(const char *s
, size_t len
)
95 static int nxt_id
= 0;
100 if ((fn
= srchfn(s
, len
)) == NULL
) {
101 fn
= xmalloc(sizeof (fn_t
));
102 /* Do not used strdup() because string is not NUL-terminated.*/
103 fn
->fn_name
= xmalloc(len
+ 1);
104 (void)memcpy(fn
->fn_name
, s
, len
);
105 fn
->fn_name
[len
] = '\0';
107 fn
->fn_id
= nxt_id
++;
110 /* Write id of this filename to the output file. */
114 outstrg(fn
->fn_name
);
116 return (fn
->fn_name
);
120 * Get id of a filename.
123 getfnid(const char *s
)
127 if (s
== NULL
|| (fn
= srchfn(s
, strlen(s
))) == NULL
)
133 * Memory for declarations and other things which must be available
134 * until the end of a block (or the end of the translation unit)
135 * are associated with the level (mblklev) of the block (or with 0).
136 * Because this memory is allocated in large blocks associated with
137 * a given level it can be freed easily at the end of a block.
139 #define ML_INC ((size_t)32) /* Increment for length of *mblks */
142 void *blk
; /* beginning of memory block */
143 void *ffree
; /* first free byte */
144 size_t nfree
; /* # of free bytes */
145 size_t size
; /* total size of memory block */
146 struct mbl
*nxt
; /* next block */
150 * Array of pointers to lists of memory blocks. mblklev is used as
151 * index into this array.
153 static mbl_t
**mblks
;
155 /* number of elements in *mblks */
156 static size_t nmblks
;
158 /* free list for memory blocks */
159 static mbl_t
*frmblks
;
161 /* length of new allocated memory blocks */
162 static size_t mblklen
;
164 static void *xgetblk(mbl_t
**, size_t);
165 static void xfreeblk(mbl_t
**);
166 static mbl_t
*xnewblk(void);
171 mbl_t
*mb
= xmalloc(sizeof (mbl_t
));
173 /* use mmap instead of malloc to avoid malloc's size overhead */
174 mb
->blk
= xmapalloc(mblklen
);
181 * Allocate new memory. If the first block of the list has not enough
182 * free space, or there is no first block, get a new block. The new
183 * block is taken from the free list or, if there is no block on the
184 * free list, is allocated using xnewblk(). If a new block is allocated
185 * it is initialized with zero. Blocks taken from the free list are
186 * zero'd in xfreeblk().
189 xgetblk(mbl_t
**mbp
, size_t s
)
196 if ((mb
= *mbp
) == NULL
|| mb
->nfree
< s
) {
197 if ((mb
= frmblks
) == NULL
) {
205 (void)memset(mb
->blk
, 0, mb
->size
);
210 mb
->nfree
= mb
->size
;
215 mb
->ffree
= (char *)mb
->ffree
+ s
;
221 * Move all blocks from list *fmbp to free list. For each block, set all
222 * used memory to zero.
225 xfreeblk(mbl_t
**fmbp
)
229 while ((mb
= *fmbp
) != NULL
) {
233 (void)memset(mb
->blk
, 0, mb
->size
- mb
->nfree
);
242 pgsz
= getpagesize();
243 mblklen
= ((MBLKSIZ
+ pgsz
- 1) / pgsz
) * pgsz
;
245 mblks
= xcalloc(nmblks
= ML_INC
, sizeof (mbl_t
*));
250 * Allocate memory associated with level l.
253 getlblk(size_t l
, size_t s
)
256 while (l
>= nmblks
) {
257 mblks
= xrealloc(mblks
, (nmblks
+ ML_INC
) * sizeof (mbl_t
*));
258 (void)memset(&mblks
[nmblks
], 0, ML_INC
* sizeof (mbl_t
*));
261 return (xgetblk(&mblks
[l
], s
));
268 return (getlblk(mblklev
, s
));
272 * Free all memory associated with level l.
289 * tgetblk() returns memory which is associated with the current
298 return (xgetblk(&tmblk
, s
));
302 * Get memory for a new tree node.
308 return (tgetblk(sizeof (tnode_t
)));
312 * Free all memory which is allocated by the current expression.
322 * Save the memory which is used by the current expression. This memory
323 * is not freed by the next tfreeblk() call. The pointer returned can be
324 * used to restore the memory.
337 * Free all memory used for the current expression and the memory used
338 * be a previous expression and saved by tsave(). The next call to
339 * tfreeblk() frees the restored memory.