1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
|
/* memory.c -- Memory management for Khepera
* Created: Thu Dec 22 09:58:38 1994 by faith@cs.unc.edu
* Revised: Sun Nov 10 12:37:24 1996 by faith@cs.unc.edu
* Copyright 1994, 1995, 1996 Rickard E. Faith (faith@cs.unc.edu)
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published
* by the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: memory.c,v 1.7 1996/11/10 20:20:50 faith Exp $
*
* \section{Memory Management Routines}
*
* \intro The memory management routines provide simple support for string
* object storage. These routines are generally used as building blocks by
* other parts of the \khepera library (e.g., string pools and abstract
* syntax trees).
*
*/
#include "maaP.h"
#include "obstack.h"
#ifdef DMALLOC_FUNC_CHECK
/* Must be true functions */
#define obstack_chunk_alloc malloc
#define obstack_chunk_free free
#else
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free xfree
#endif
typedef struct stringInfo {
#if MAA_MAGIC
int magic;
#endif
int count;
int bytes;
struct obstack *obstack;
} *stringInfo;
typedef struct objectInfo {
#if MAA_MAGIC
int magic;
#endif
int total;
int used;
int reused;
int size;
stk_Stack stack; /* for free list */
struct obstack *obstack;
} *objectInfo;
#if !MAA_MAGIC
#define _mem_magic_strings(i,function) \
do { \
if (!i) err_internal( function, "mem_String is null\n" ); \
} while (0);
#else
static void _mem_magic_strings( stringInfo i, const char *function )
{
if (!i) err_internal( function, "mem_String is null\n" );
if (i->magic != MEM_STRINGS_MAGIC)
err_internal( function,
"Incorrect magic: 0x%08x (should be 0x%08x)\n",
i->magic,
MEM_STRINGS_MAGIC );
}
#endif
/* \doc |mem_create_strings| creates a memory object for storing strings. */
mem_String mem_create_strings( void )
{
stringInfo info = xmalloc( sizeof( struct stringInfo ) );
#if MAA_MAGIC
info->magic = MEM_STRINGS_MAGIC;
#endif
info->count = 0;
info->bytes = 0;
info->obstack = xmalloc( sizeof( struct obstack ) );
obstack_init( info->obstack );
obstack_alignment_mask( info->obstack ) = 0; /* no alignment for chars */
return info;
}
/* \doc |mem_destroy_strings| destroys the memory object returned from
|mem_create_strings|. All memory if freed, including that used for the
strings. Therefore, any pointers to strings in the table will be left
dangling. */
void mem_destroy_strings( mem_String info )
{
stringInfo i = (stringInfo)info;
_mem_magic_strings( i, __FUNCTION__ );
#if MAA_MAGIC
i->magic = MEM_STRINGS_MAGIC_FREED;
#endif
obstack_free( i->obstack, NULL );
xfree( i->obstack ); /* terminal */
xfree( i ); /* terminal */
}
/* \doc |mem_strcpy| copies a |string| into the memory object pointed to by
|info|. */
const char *mem_strcpy( mem_String info, const char *string )
{
stringInfo i = (stringInfo)info;
int len = strlen( string );
_mem_magic_strings( i, __FUNCTION__ );
++i->count;
i->bytes += len + 1;
return obstack_copy0( i->obstack, string, len );
}
/* \doc |mem_strncpy| copies |len| bytes of |string| into the memory object
pointed to by |info|. A null is added to the end of the copied
sequence. */
const char *mem_strncpy( mem_String info,
const char *string, int len )
{
stringInfo i = (stringInfo)info;
_mem_magic_strings( i, __FUNCTION__ );
++i->count;
i->bytes += len + 1;
return obstack_copy0( i->obstack, string, len );
}
/* \doc |mem_grow| copies |len| of |string| onto the top of the memory
object pointed to by |info|. Several calls to |mem_grow| should be
followed by a single call to |mem_finish| without any intervening calls
to other functions which modify |info|. */
void mem_grow( mem_String info, const char *string, int len )
{
stringInfo i = (stringInfo)info;
_mem_magic_strings( i, __FUNCTION__ );
i->bytes += len;
obstack_grow( i->obstack, string, len );
}
/* \doc |mem_finish| finishes the growth of the object performed by
|mem_grow|. */
const char *mem_finish( mem_String info )
{
stringInfo i = (stringInfo)info;
_mem_magic_strings( i, __FUNCTION__ );
++i->count;
i->bytes += 1;
obstack_grow0( i->obstack, "", 0 );
return obstack_finish( i->obstack );
}
/* \doc |mem_get_string_stats| returns statistics about the memory object
pointed to by |info|. The |mem_StringStats| structure is shown in
\grind{mem_StringStats}. */
mem_StringStats mem_get_string_stats( mem_String info )
{
stringInfo i = (stringInfo)info;
mem_StringStats s = xmalloc( sizeof( struct mem_StringStats ) );
_mem_magic_strings( i, __FUNCTION__ );
s->count = i->count;
s->bytes = i->bytes;
return s;
}
/* \doc |mem_print_string_stats| prints the statistics for the memory
object pointed to by |info| on the specified |stream|. If |stream| is
"NULL", then "stdout" will be used. */
void mem_print_string_stats( mem_String info, FILE *stream )
{
FILE *str = stream ? stream : stdout;
mem_StringStats s = mem_get_string_stats( info );
_mem_magic_strings( info, __FUNCTION__ );
fprintf( str, "Statistics for string memory manager at %p:\n", info );
fprintf( str, " %d strings, using %d bytes\n", s->count, s->bytes );
xfree( s ); /* rare */
}
#if !MAA_MAGIC
#define _mem_magic_objects(i,function) /* */
#else
static void _mem_magic_objects( objectInfo i, const char *function )
{
if (!i) err_internal( function, "mem_Object is null\n" );
if (i->magic != MEM_OBJECTS_MAGIC)
err_internal( function,
"Incorrect magic: 0x%08x (should be 0x%08x)\n",
i->magic,
MEM_OBJECTS_MAGIC );
}
#endif
/* \doc |mem_create_objects| creates a memory storage object for object of
|size| bytes. */
mem_Object mem_create_objects( int size )
{
objectInfo info = xmalloc( sizeof ( struct objectInfo ) );
#if MAA_MAGIC
info->magic = MEM_OBJECTS_MAGIC;
#endif
info->total = 0;
info->used = 0;
info->reused = 0;
info->size = size;
info->stack = stk_create();
info->obstack = xmalloc( sizeof( struct obstack ) );
obstack_init( info->obstack );
return info;
}
/* \doc |mem_destroy_objects| destroys the memory object returned from
|mem_create_objects|. All memory if freed, including that used for the
object. Therefore, any pointers to objects stored by |info| will be
left dangling. */
void mem_destroy_objects( mem_Object info )
{
objectInfo i = (objectInfo)info;
_mem_magic_objects( i, __FUNCTION__ );
#if MAA_MAGIC
i->magic = MEM_OBJECTS_MAGIC_FREED;
#endif
stk_destroy( i->stack );
obstack_free( i->obstack, NULL );
xfree( i->obstack ); /* terminal */
xfree( i ); /* terminal */
}
/* \doc |mem_get_object| returns a pointer to a block of memory which is
|size| bytes long (as specified in the call to |mem_create_objects|).
This block is either newly allocated memory, or is memory which was
previously allocated by |mem_get_object| and subsequently freed by
|mem_free_object|. */
void *mem_get_object( mem_Object info )
{
objectInfo i = (objectInfo)info;
void *obj = stk_pop( i->stack );
_mem_magic_objects( i, __FUNCTION__ );
if (!obj) {
obj = obstack_alloc( i->obstack, i->size );
++i->total;
} else ++i->reused;
++i->used;
return obj;
}
/* \doc |mem_get_empty_object| is exactly like |mem_get_object|, except the
memory associated with the object is set to all zeros. */
void *mem_get_empty_object( mem_Object info )
{
objectInfo i = (objectInfo)info;
void *obj = mem_get_object( info );
memset( obj, 0, i->size );
return obj;
}
/* \doc |mem_free_object| ``frees'' the object, |obj|, which was previously
obtained from |mem_get_object|. The memory associated with the object
is not actually freed, but the object pointer is stored on a stack, and
is available for subsequent calls to |mem_get_object|. */
void mem_free_object( mem_Object info, void *obj )
{
objectInfo i = (objectInfo)info;
_mem_magic_objects( i, __FUNCTION__ );
stk_push( i->stack, obj );
--i->used;
}
/* \doc |mem_get_object_stats| returns statistics about the memory object
pointed to by |info|. The |mem_ObjectStats| structure is shown in
\grind{mem_ObjectStats}. */
mem_ObjectStats mem_get_object_stats( mem_Object info )
{
objectInfo i = (objectInfo)info;
mem_ObjectStats s = xmalloc( sizeof( struct mem_ObjectStats ) );
_mem_magic_objects( i, __FUNCTION__ );
if (info) {
s->total = i->total;
s->used = i->used;
s->reused = i->reused;
s->size = i->size;
} else {
s->total = 0;
s->used = 0;
s->reused = 0;
s->size = 0;
}
return s;
}
/* \doc |mem_print_object_stats| prints the statistics for the memory
object pointed to by |info| on the specified |stream|. If |stream| is
"NULL", then "stdout" will be used. */
void mem_print_object_stats( mem_Object info, FILE *stream )
{
FILE *str = stream ? stream : stdout;
mem_ObjectStats s = mem_get_object_stats( info );
_mem_magic_objects( info, __FUNCTION__ );
fprintf( str, "Statistics for object memory manager at %p:\n", info );
fprintf( str,
" %d objects allocated, of which %d are in use\n",
s->total, s->used );
fprintf( str, " %d objects have been reused\n", s->reused );
xfree( s ); /* rare */
}
|