1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
39 /* #define ENABLE_MEM_PROFILE */
40 /* #define ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS */
41 /* #define ENABLE_MEM_CHECK */
42 #define MEM_PROFILE_TABLE_SIZE 8192
45 * This library can check for some attempts to do illegal things to
46 * memory (ENABLE_MEM_CHECK), and can do profiling
47 * (ENABLE_MEM_PROFILE). Both features are implemented by storing
48 * words before the start of the memory chunk.
50 * The first, at offset -2*SIZEOF_LONG, is used only if
51 * ENABLE_MEM_CHECK is set, and stores 0 after the memory has been
52 * allocated and 1 when it has been freed. The second, at offset
53 * -SIZEOF_LONG, is used if either flag is set and stores the size of
56 * The MEM_CHECK flag is checked when memory is realloc'd and free'd,
57 * and it can be explicitly checked before using a block by calling
61 #if defined(ENABLE_MEM_PROFILE) && defined(ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS)
62 #define ENTER_MEM_CHUNK_ROUTINE() \
63 g_private_set (allocating_for_mem_chunk, \
64 g_private_get (allocating_for_mem_chunk) + 1)
65 #define LEAVE_MEM_CHUNK_ROUTINE() \
66 g_private_set (allocating_for_mem_chunk, \
67 g_private_get (allocating_for_mem_chunk) - 1)
69 #define ENTER_MEM_CHUNK_ROUTINE()
70 #define LEAVE_MEM_CHUNK_ROUTINE()
74 #define MEM_AREA_SIZE 4L
76 #if SIZEOF_VOID_P > SIZEOF_LONG
77 #define MEM_ALIGN SIZEOF_VOID_P
79 #define MEM_ALIGN SIZEOF_LONG
83 typedef struct _GFreeAtom GFreeAtom;
84 typedef struct _GMemArea GMemArea;
85 typedef struct _GRealMemChunk GRealMemChunk;
94 GMemArea *next; /* the next mem area */
95 GMemArea *prev; /* the previous mem area */
96 gulong index; /* the current index into the "mem" array */
97 gulong free; /* the number of free bytes in this mem area */
98 gulong allocated; /* the number of atoms allocated from this area */
99 gulong mark; /* is this mem area marked for deletion */
100 gchar mem[MEM_AREA_SIZE]; /* the mem array from which atoms get allocated
101 * the actual size of this array is determined by
102 * the mem chunk "area_size". ANSI says that it
103 * must be declared to be the maximum size it
104 * can possibly be (even though the actual size
109 struct _GRealMemChunk
111 gchar *name; /* name of this MemChunk...used for debugging output */
112 gint type; /* the type of MemChunk: ALLOC_ONLY or ALLOC_AND_FREE */
113 gint num_mem_areas; /* the number of memory areas */
114 gint num_marked_areas; /* the number of areas marked for deletion */
115 guint atom_size; /* the size of an atom */
116 gulong area_size; /* the size of a memory area */
117 GMemArea *mem_area; /* the current memory area */
118 GMemArea *mem_areas; /* a list of all the mem areas owned by this chunk */
119 GMemArea *free_mem_area; /* the free area...which is about to be destroyed */
120 GFreeAtom *free_atoms; /* the free atoms list */
121 GTree *mem_tree; /* tree of mem areas sorted by memory address */
122 GRealMemChunk *next; /* pointer to the next chunk */
123 GRealMemChunk *prev; /* pointer to the previous chunk */
127 static gulong g_mem_chunk_compute_size (gulong size,
128 gulong min_size) G_GNUC_CONST;
129 static gint g_mem_chunk_area_compare (GMemArea *a,
131 static gint g_mem_chunk_area_search (GMemArea *a,
135 /* here we can't use StaticMutexes, as they depend upon a working
136 * g_malloc, the same holds true for StaticPrivate */
137 static GMutex* mem_chunks_lock = NULL;
138 static GRealMemChunk *mem_chunks = NULL;
140 #ifdef ENABLE_MEM_PROFILE
141 static GMutex* mem_profile_lock;
142 static gulong allocations[MEM_PROFILE_TABLE_SIZE] = { 0 };
143 static gulong allocated_mem = 0;
144 static gulong freed_mem = 0;
145 static GPrivate* allocating_for_mem_chunk = NULL;
146 #define IS_IN_MEM_CHUNK_ROUTINE() \
147 GPOINTER_TO_UINT (g_private_get (allocating_for_mem_chunk))
148 #endif /* ENABLE_MEM_PROFILE */
154 g_malloc (gulong size)
159 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
161 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
168 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
170 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
172 #ifdef ENABLE_MEM_CHECK
174 #endif /* ENABLE_MEM_CHECK */
177 p = (gpointer) malloc (size);
179 g_error ("could not allocate %ld bytes", size);
182 #ifdef ENABLE_MEM_CHECK
186 p = ((guchar*) p + SIZEOF_LONG);
188 #endif /* ENABLE_MEM_CHECK */
190 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
194 p = ((guchar*) p + SIZEOF_LONG);
197 #ifdef ENABLE_MEM_PROFILE
198 g_mutex_lock (mem_profile_lock);
199 # ifdef ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS
200 if(!IS_IN_MEM_CHUNK_ROUTINE()) {
202 if (size <= MEM_PROFILE_TABLE_SIZE - 1)
203 allocations[size-1] += 1;
205 allocations[MEM_PROFILE_TABLE_SIZE - 1] += 1;
206 allocated_mem += size;
207 # ifdef ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS
210 g_mutex_unlock (mem_profile_lock);
211 #endif /* ENABLE_MEM_PROFILE */
212 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
219 g_malloc0 (gulong size)
224 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
226 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
233 #if defined (ENABLE_MEM_PROFILE) || defined (ENABLE_MEM_CHECK)
235 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
237 #ifdef ENABLE_MEM_CHECK
239 #endif /* ENABLE_MEM_CHECK */
242 p = (gpointer) calloc (size, 1);
244 g_error ("could not allocate %ld bytes", size);
247 #ifdef ENABLE_MEM_CHECK
251 p = ((guchar*) p + SIZEOF_LONG);
253 #endif /* ENABLE_MEM_CHECK */
255 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
259 p = ((guchar*) p + SIZEOF_LONG);
262 # ifdef ENABLE_MEM_PROFILE
263 g_mutex_lock (mem_profile_lock);
264 # ifdef ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS
265 if(!IS_IN_MEM_CHUNK_ROUTINE()) {
267 if (size <= (MEM_PROFILE_TABLE_SIZE - 1))
268 allocations[size-1] += 1;
270 allocations[MEM_PROFILE_TABLE_SIZE - 1] += 1;
271 allocated_mem += size;
272 # ifdef ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS
275 g_mutex_unlock (mem_profile_lock);
276 # endif /* ENABLE_MEM_PROFILE */
277 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
284 g_realloc (gpointer mem,
289 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
291 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
302 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
304 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
306 #ifdef ENABLE_MEM_CHECK
308 #endif /* ENABLE_MEM_CHECK */
313 #ifdef REALLOC_0_WORKS
314 p = (gpointer) realloc (NULL, size);
315 #else /* !REALLOC_0_WORKS */
316 p = (gpointer) malloc (size);
317 #endif /* !REALLOC_0_WORKS */
321 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
322 t = (gulong*) ((guchar*) mem - SIZEOF_LONG);
323 #ifdef ENABLE_MEM_PROFILE
324 g_mutex_lock (mem_profile_lock);
326 g_mutex_unlock (mem_profile_lock);
327 #endif /* ENABLE_MEM_PROFILE */
329 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
331 #ifdef ENABLE_MEM_CHECK
332 t = (gulong*) ((guchar*) mem - SIZEOF_LONG);
334 g_warning ("trying to realloc freed memory\n");
336 #endif /* ENABLE_MEM_CHECK */
338 p = (gpointer) realloc (mem, size);
342 g_error ("could not reallocate %lu bytes", (gulong) size);
345 #ifdef ENABLE_MEM_CHECK
349 p = ((guchar*) p + SIZEOF_LONG);
351 #endif /* ENABLE_MEM_CHECK */
353 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
357 p = ((guchar*) p + SIZEOF_LONG);
360 #ifdef ENABLE_MEM_PROFILE
361 g_mutex_lock (mem_profile_lock);
362 #ifdef ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS
363 if(!IS_IN_MEM_CHUNK_ROUTINE()) {
365 if (size <= (MEM_PROFILE_TABLE_SIZE - 1))
366 allocations[size-1] += 1;
368 allocations[MEM_PROFILE_TABLE_SIZE - 1] += 1;
369 allocated_mem += size;
370 #ifdef ENABLE_MEM_PROFILE_EXCLUDES_MEM_CHUNKS
373 g_mutex_unlock (mem_profile_lock);
374 #endif /* ENABLE_MEM_PROFILE */
375 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
382 g_free (gpointer mem)
386 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
389 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
391 #if defined(ENABLE_MEM_PROFILE) || defined(ENABLE_MEM_CHECK)
392 t = (gulong*) ((guchar*) mem - SIZEOF_LONG);
394 #ifdef ENABLE_MEM_PROFILE
395 g_mutex_lock (mem_profile_lock);
397 g_mutex_unlock (mem_profile_lock);
398 #endif /* ENABLE_MEM_PROFILE */
400 #endif /* ENABLE_MEM_PROFILE || ENABLE_MEM_CHECK */
402 #ifdef ENABLE_MEM_CHECK
403 t = (gulong*) ((guchar*) mem - SIZEOF_LONG);
405 g_warning ("freeing previously freed (%lu times) memory\n", *t);
409 memset ((guchar*) mem + 2 * SIZEOF_LONG, 0, size);
410 #else /* ENABLE_MEM_CHECK */
412 #endif /* ENABLE_MEM_CHECK */
416 #endif /* ! USE_DMALLOC */
422 #ifdef ENABLE_MEM_PROFILE
424 gulong local_allocations[MEM_PROFILE_TABLE_SIZE];
425 gulong local_allocated_mem;
426 gulong local_freed_mem;
428 g_mutex_lock (mem_profile_lock);
429 for (i = 0; i < MEM_PROFILE_TABLE_SIZE; i++)
430 local_allocations[i] = allocations[i];
431 local_allocated_mem = allocated_mem;
432 local_freed_mem = freed_mem;
433 g_mutex_unlock (mem_profile_lock);
435 for (i = 0; i < (MEM_PROFILE_TABLE_SIZE - 1); i++)
436 if (local_allocations[i] > 0)
437 g_log (g_log_domain_glib, G_LOG_LEVEL_INFO,
438 "%lu allocations of %d bytes", local_allocations[i], i + 1);
440 if (local_allocations[MEM_PROFILE_TABLE_SIZE - 1] > 0)
441 g_log (g_log_domain_glib, G_LOG_LEVEL_INFO,
442 "%lu allocations of greater than %d bytes",
443 local_allocations[MEM_PROFILE_TABLE_SIZE - 1], MEM_PROFILE_TABLE_SIZE - 1);
444 g_log (g_log_domain_glib, G_LOG_LEVEL_INFO, "%lu bytes allocated", local_allocated_mem);
445 g_log (g_log_domain_glib, G_LOG_LEVEL_INFO, "%lu bytes freed", local_freed_mem);
446 g_log (g_log_domain_glib, G_LOG_LEVEL_INFO, "%lu bytes in use", local_allocated_mem - local_freed_mem);
447 #endif /* ENABLE_MEM_PROFILE */
451 g_mem_check (gpointer mem)
453 #ifdef ENABLE_MEM_CHECK
456 t = (gulong*) ((guchar*) mem - SIZEOF_LONG - SIZEOF_LONG);
459 g_warning ("mem: 0x%08lx has been freed %lu times\n", (gulong) mem, *t);
460 #endif /* ENABLE_MEM_CHECK */
464 g_mem_chunk_new (gchar *name,
469 GRealMemChunk *mem_chunk;
472 g_return_val_if_fail (atom_size > 0, NULL);
473 g_return_val_if_fail (area_size >= atom_size, NULL);
475 ENTER_MEM_CHUNK_ROUTINE();
477 area_size = (area_size + atom_size - 1) / atom_size;
478 area_size *= atom_size;
480 mem_chunk = g_new (struct _GRealMemChunk, 1);
481 mem_chunk->name = name;
482 mem_chunk->type = type;
483 mem_chunk->num_mem_areas = 0;
484 mem_chunk->num_marked_areas = 0;
485 mem_chunk->mem_area = NULL;
486 mem_chunk->free_mem_area = NULL;
487 mem_chunk->free_atoms = NULL;
488 mem_chunk->mem_tree = NULL;
489 mem_chunk->mem_areas = NULL;
490 mem_chunk->atom_size = atom_size;
492 if (mem_chunk->type == G_ALLOC_AND_FREE)
493 mem_chunk->mem_tree = g_tree_new ((GCompareFunc) g_mem_chunk_area_compare);
495 if (mem_chunk->atom_size % MEM_ALIGN)
496 mem_chunk->atom_size += MEM_ALIGN - (mem_chunk->atom_size % MEM_ALIGN);
498 rarea_size = area_size + sizeof (GMemArea) - MEM_AREA_SIZE;
499 rarea_size = g_mem_chunk_compute_size (rarea_size, atom_size + sizeof (GMemArea) - MEM_AREA_SIZE);
500 mem_chunk->area_size = rarea_size - (sizeof (GMemArea) - MEM_AREA_SIZE);
502 g_mutex_lock (mem_chunks_lock);
503 mem_chunk->next = mem_chunks;
504 mem_chunk->prev = NULL;
506 mem_chunks->prev = mem_chunk;
507 mem_chunks = mem_chunk;
508 g_mutex_unlock (mem_chunks_lock);
510 LEAVE_MEM_CHUNK_ROUTINE();
512 return ((GMemChunk*) mem_chunk);
516 g_mem_chunk_destroy (GMemChunk *mem_chunk)
518 GRealMemChunk *rmem_chunk;
522 g_return_if_fail (mem_chunk != NULL);
524 ENTER_MEM_CHUNK_ROUTINE();
526 rmem_chunk = (GRealMemChunk*) mem_chunk;
528 mem_areas = rmem_chunk->mem_areas;
531 temp_area = mem_areas;
532 mem_areas = mem_areas->next;
536 if (rmem_chunk->next)
537 rmem_chunk->next->prev = rmem_chunk->prev;
538 if (rmem_chunk->prev)
539 rmem_chunk->prev->next = rmem_chunk->next;
541 g_mutex_lock (mem_chunks_lock);
542 if (rmem_chunk == mem_chunks)
543 mem_chunks = mem_chunks->next;
544 g_mutex_unlock (mem_chunks_lock);
546 if (rmem_chunk->type == G_ALLOC_AND_FREE)
547 g_tree_destroy (rmem_chunk->mem_tree);
551 LEAVE_MEM_CHUNK_ROUTINE();
555 g_mem_chunk_alloc (GMemChunk *mem_chunk)
557 GRealMemChunk *rmem_chunk;
561 ENTER_MEM_CHUNK_ROUTINE();
563 g_return_val_if_fail (mem_chunk != NULL, NULL);
565 rmem_chunk = (GRealMemChunk*) mem_chunk;
567 while (rmem_chunk->free_atoms)
569 /* Get the first piece of memory on the "free_atoms" list.
570 * We can go ahead and destroy the list node we used to keep
571 * track of it with and to update the "free_atoms" list to
572 * point to its next element.
574 mem = rmem_chunk->free_atoms;
575 rmem_chunk->free_atoms = rmem_chunk->free_atoms->next;
577 /* Determine which area this piece of memory is allocated from */
578 temp_area = g_tree_search (rmem_chunk->mem_tree,
579 (GCompareFunc) g_mem_chunk_area_search,
582 /* If the area has been marked, then it is being destroyed.
583 * (ie marked to be destroyed).
584 * We check to see if all of the segments on the free list that
585 * reference this area have been removed. This occurs when
586 * the ammount of free memory is less than the allocatable size.
587 * If the chunk should be freed, then we place it in the "free_mem_area".
588 * This is so we make sure not to free the mem area here and then
589 * allocate it again a few lines down.
590 * If we don't allocate a chunk a few lines down then the "free_mem_area"
592 * If there is already a "free_mem_area" then we'll just free this mem area.
596 /* Update the "free" memory available in that area */
597 temp_area->free += rmem_chunk->atom_size;
599 if (temp_area->free == rmem_chunk->area_size)
601 if (temp_area == rmem_chunk->mem_area)
602 rmem_chunk->mem_area = NULL;
604 if (rmem_chunk->free_mem_area)
606 rmem_chunk->num_mem_areas -= 1;
609 temp_area->next->prev = temp_area->prev;
611 temp_area->prev->next = temp_area->next;
612 if (temp_area == rmem_chunk->mem_areas)
613 rmem_chunk->mem_areas = rmem_chunk->mem_areas->next;
615 if (rmem_chunk->type == G_ALLOC_AND_FREE)
616 g_tree_remove (rmem_chunk->mem_tree, temp_area);
620 rmem_chunk->free_mem_area = temp_area;
622 rmem_chunk->num_marked_areas -= 1;
627 /* Update the number of allocated atoms count.
629 temp_area->allocated += 1;
631 /* The area wasn't marked...return the memory
637 /* If there isn't a current mem area or the current mem area is out of space
638 * then allocate a new mem area. We'll first check and see if we can use
639 * the "free_mem_area". Otherwise we'll just malloc the mem area.
641 if ((!rmem_chunk->mem_area) ||
642 ((rmem_chunk->mem_area->index + rmem_chunk->atom_size) > rmem_chunk->area_size))
644 if (rmem_chunk->free_mem_area)
646 rmem_chunk->mem_area = rmem_chunk->free_mem_area;
647 rmem_chunk->free_mem_area = NULL;
651 #ifdef ENABLE_GC_FRIENDLY
652 rmem_chunk->mem_area = (GMemArea*) g_malloc0 (sizeof (GMemArea) -
654 rmem_chunk->area_size);
655 #else /* !ENABLE_GC_FRIENDLY */
656 rmem_chunk->mem_area = (GMemArea*) g_malloc (sizeof (GMemArea) -
658 rmem_chunk->area_size);
659 #endif /* ENABLE_GC_FRIENDLY */
661 rmem_chunk->num_mem_areas += 1;
662 rmem_chunk->mem_area->next = rmem_chunk->mem_areas;
663 rmem_chunk->mem_area->prev = NULL;
665 if (rmem_chunk->mem_areas)
666 rmem_chunk->mem_areas->prev = rmem_chunk->mem_area;
667 rmem_chunk->mem_areas = rmem_chunk->mem_area;
669 if (rmem_chunk->type == G_ALLOC_AND_FREE)
670 g_tree_insert (rmem_chunk->mem_tree, rmem_chunk->mem_area, rmem_chunk->mem_area);
673 rmem_chunk->mem_area->index = 0;
674 rmem_chunk->mem_area->free = rmem_chunk->area_size;
675 rmem_chunk->mem_area->allocated = 0;
676 rmem_chunk->mem_area->mark = 0;
679 /* Get the memory and modify the state variables appropriately.
681 mem = (gpointer) &rmem_chunk->mem_area->mem[rmem_chunk->mem_area->index];
682 rmem_chunk->mem_area->index += rmem_chunk->atom_size;
683 rmem_chunk->mem_area->free -= rmem_chunk->atom_size;
684 rmem_chunk->mem_area->allocated += 1;
688 LEAVE_MEM_CHUNK_ROUTINE();
694 g_mem_chunk_alloc0 (GMemChunk *mem_chunk)
698 mem = g_mem_chunk_alloc (mem_chunk);
701 GRealMemChunk *rmem_chunk = (GRealMemChunk*) mem_chunk;
703 memset (mem, 0, rmem_chunk->atom_size);
710 g_mem_chunk_free (GMemChunk *mem_chunk,
713 GRealMemChunk *rmem_chunk;
715 GFreeAtom *free_atom;
717 g_return_if_fail (mem_chunk != NULL);
718 g_return_if_fail (mem != NULL);
720 ENTER_MEM_CHUNK_ROUTINE();
722 rmem_chunk = (GRealMemChunk*) mem_chunk;
724 #ifdef ENABLE_GC_FRIENDLY
725 memset (mem, 0, rmem_chunk->atom_size);
726 #endif /* ENABLE_GC_FRIENDLY */
728 /* Don't do anything if this is an ALLOC_ONLY chunk
730 if (rmem_chunk->type == G_ALLOC_AND_FREE)
732 /* Place the memory on the "free_atoms" list
734 free_atom = (GFreeAtom*) mem;
735 free_atom->next = rmem_chunk->free_atoms;
736 rmem_chunk->free_atoms = free_atom;
738 temp_area = g_tree_search (rmem_chunk->mem_tree,
739 (GCompareFunc) g_mem_chunk_area_search,
742 temp_area->allocated -= 1;
744 if (temp_area->allocated == 0)
747 rmem_chunk->num_marked_areas += 1;
751 LEAVE_MEM_CHUNK_ROUTINE();
754 /* This doesn't free the free_area if there is one */
756 g_mem_chunk_clean (GMemChunk *mem_chunk)
758 GRealMemChunk *rmem_chunk;
760 GFreeAtom *prev_free_atom;
761 GFreeAtom *temp_free_atom;
764 g_return_if_fail (mem_chunk != NULL);
766 rmem_chunk = (GRealMemChunk*) mem_chunk;
768 if (rmem_chunk->type == G_ALLOC_AND_FREE)
770 prev_free_atom = NULL;
771 temp_free_atom = rmem_chunk->free_atoms;
773 while (temp_free_atom)
775 mem = (gpointer) temp_free_atom;
777 mem_area = g_tree_search (rmem_chunk->mem_tree,
778 (GCompareFunc) g_mem_chunk_area_search,
781 /* If this mem area is marked for destruction then delete the
782 * area and list node and decrement the free mem.
787 prev_free_atom->next = temp_free_atom->next;
789 rmem_chunk->free_atoms = temp_free_atom->next;
790 temp_free_atom = temp_free_atom->next;
792 mem_area->free += rmem_chunk->atom_size;
793 if (mem_area->free == rmem_chunk->area_size)
795 rmem_chunk->num_mem_areas -= 1;
796 rmem_chunk->num_marked_areas -= 1;
799 mem_area->next->prev = mem_area->prev;
801 mem_area->prev->next = mem_area->next;
802 if (mem_area == rmem_chunk->mem_areas)
803 rmem_chunk->mem_areas = rmem_chunk->mem_areas->next;
804 if (mem_area == rmem_chunk->mem_area)
805 rmem_chunk->mem_area = NULL;
807 if (rmem_chunk->type == G_ALLOC_AND_FREE)
808 g_tree_remove (rmem_chunk->mem_tree, mem_area);
814 prev_free_atom = temp_free_atom;
815 temp_free_atom = temp_free_atom->next;
822 g_mem_chunk_reset (GMemChunk *mem_chunk)
824 GRealMemChunk *rmem_chunk;
828 g_return_if_fail (mem_chunk != NULL);
830 rmem_chunk = (GRealMemChunk*) mem_chunk;
832 mem_areas = rmem_chunk->mem_areas;
833 rmem_chunk->num_mem_areas = 0;
834 rmem_chunk->mem_areas = NULL;
835 rmem_chunk->mem_area = NULL;
839 temp_area = mem_areas;
840 mem_areas = mem_areas->next;
844 rmem_chunk->free_atoms = NULL;
846 if (rmem_chunk->mem_tree)
847 g_tree_destroy (rmem_chunk->mem_tree);
848 rmem_chunk->mem_tree = g_tree_new ((GCompareFunc) g_mem_chunk_area_compare);
852 g_mem_chunk_print (GMemChunk *mem_chunk)
854 GRealMemChunk *rmem_chunk;
858 g_return_if_fail (mem_chunk != NULL);
860 rmem_chunk = (GRealMemChunk*) mem_chunk;
861 mem_areas = rmem_chunk->mem_areas;
866 mem += rmem_chunk->area_size - mem_areas->free;
867 mem_areas = mem_areas->next;
870 g_log (g_log_domain_glib, G_LOG_LEVEL_INFO,
871 "%s: %ld bytes using %d mem areas",
872 rmem_chunk->name, mem, rmem_chunk->num_mem_areas);
876 g_mem_chunk_info (void)
878 GRealMemChunk *mem_chunk;
882 g_mutex_lock (mem_chunks_lock);
883 mem_chunk = mem_chunks;
887 mem_chunk = mem_chunk->next;
889 g_mutex_unlock (mem_chunks_lock);
891 g_log (g_log_domain_glib, G_LOG_LEVEL_INFO, "%d mem chunks", count);
893 g_mutex_lock (mem_chunks_lock);
894 mem_chunk = mem_chunks;
895 g_mutex_unlock (mem_chunks_lock);
899 g_mem_chunk_print ((GMemChunk*) mem_chunk);
900 mem_chunk = mem_chunk->next;
907 GRealMemChunk *mem_chunk;
909 g_mutex_lock (mem_chunks_lock);
910 mem_chunk = mem_chunks;
911 g_mutex_unlock (mem_chunks_lock);
914 g_mem_chunk_clean ((GMemChunk*) mem_chunk);
915 mem_chunk = mem_chunk->next;
921 g_mem_chunk_compute_size (gulong size,
928 while (power_of_2 < size)
931 lower = power_of_2 >> 1;
934 if (size - lower < upper - size && lower >= min_size)
941 g_mem_chunk_area_compare (GMemArea *a,
946 else if (a->mem < b->mem)
952 g_mem_chunk_area_search (GMemArea *a,
957 if (addr < &a->mem[a->index])
964 /* generic allocators
966 struct _GAllocator /* from gmem.c */
973 GMemChunk *mem_chunk;
974 gpointer dummy; /* implementation specific */
978 g_allocator_new (const gchar *name,
981 GAllocator *allocator;
983 g_return_val_if_fail (name != NULL, NULL);
985 allocator = g_new0 (GAllocator, 1);
986 allocator->name = g_strdup (name);
987 allocator->n_preallocs = CLAMP (n_preallocs, 1, 65535);
988 allocator->is_unused = TRUE;
990 allocator->last = NULL;
991 allocator->mem_chunk = NULL;
992 allocator->dummy = NULL;
998 g_allocator_free (GAllocator *allocator)
1000 g_return_if_fail (allocator != NULL);
1001 g_return_if_fail (allocator->is_unused == TRUE);
1003 g_free (allocator->name);
1004 if (allocator->mem_chunk)
1005 g_mem_chunk_destroy (allocator->mem_chunk);
1013 mem_chunks_lock = g_mutex_new();
1014 #ifdef ENABLE_MEM_PROFILE
1015 mem_profile_lock = g_mutex_new();
1016 allocating_for_mem_chunk = g_private_new(NULL);