2 * This module contains the garbage collector implementation.
4 * Copyright: Copyright (C) 2001-2007 Digital Mars, www.digitalmars.com.
7 * This software is provided 'as-is', without any express or implied
8 * warranty. In no event will the authors be held liable for any damages
9 * arising from the use of this software.
11 * Permission is granted to anyone to use this software for any purpose,
12 * including commercial applications, and to alter it and redistribute it
13 * freely, in both source and binary form, subject to the following
16 * o The origin of this software must not be misrepresented; you must not
17 * claim that you wrote the original software. If you use this software
18 * in a product, an acknowledgment in the product documentation would be
19 * appreciated but is not required.
20 * o Altered source versions must be plainly marked as such, and must not
21 * be misrepresented as being the original software.
22 * o This notice may not be removed or altered from any source
24 * Authors: Walter Bright, David Friedman, Sean Kelly
29 // D Programming Language Garbage Collector implementation
31 /************** Debugging ***************************/
33 //debug = COLLECT_PRINTF; // turn on printf's
34 //debug = PTRCHECK; // more pointer checking
35 //debug = PTRCHECK2; // thorough but slow pointer checking
37 /*************** Configuration *********************/
39 version = STACKGROWSDOWN; // growing the stack means subtracting from the stack pointer
40 // (use for Intel X86 CPUs)
41 // else growing the stack means adding to the stack pointer
43 /***************************************************/
45 import rt.gc.cdgc.bits: GCBits;
46 import rt.gc.cdgc.stats: GCStats, Stats;
47 import dynarray = rt.gc.cdgc.dynarray;
48 import os = rt.gc.cdgc.os;
49 import opts = rt.gc.cdgc.opts;
51 import cstdlib = tango.stdc.stdlib;
52 import cstring = tango.stdc.string;
55 * This is a small optimization that proved it's usefulness. For small chunks
56 * or memory memset() seems to be slower (probably because of the call) that
57 * simply doing a simple loop to set the memory.
59 void memset(void* dst, int c, size_t n)
61 // This number (32) has been determined empirically
63 cstring.memset(dst, c, n);
66 auto p = cast(ubyte*)(dst);
73 // BUG: The following import will likely not work, since the gcc
74 // subdirectory is elsewhere. Instead, perhaps the functions
75 // could be declared directly or some other resolution could
77 static import gcc.builtins; // for __builtin_unwind_int
87 package enum BlkAttr : uint
89 FINALIZE = 0b0000_0001,
90 NO_SCAN = 0b0000_0010,
91 NO_MOVE = 0b0000_0100,
92 ALL_BITS = 0b1111_1111
95 package bool has_pointermap(uint attrs)
97 return !opts.options.conservative && !(attrs & BlkAttr.NO_SCAN);
102 alias void delegate(Object) DEvent;
103 alias void delegate( void*, void* ) scanFn;
104 enum { OPFAIL = ~cast(size_t)0 }
108 version (DigitalMars) version(OSX)
109 oid _d_osx_image_init();
111 void* rt_stackBottom();
113 void rt_finalize( void* p, bool det = true );
114 void rt_attachDisposeEvent(Object h, DEvent e);
115 bool rt_detachDisposeEvent(Object h, DEvent e);
116 void rt_scanStaticData( scanFn scan );
119 bool thread_needLock();
120 void thread_suspendAll();
121 void thread_resumeAll();
122 void thread_scanAll( scanFn fn, void* curStackTop = null );
124 void onOutOfMemoryError();
132 POOLSIZE = (4096*256),
146 B_PAGE, // start of large alloc
147 B_PAGEPLUS, // continuation of large alloc
167 int opCmp(in Range other)
169 if (pbot < other.pbot)
172 return cast(int)(pbot > other.pbot);
177 const uint binsize[B_MAX] = [ 16,32,64,128,256,512,1024,2048,4096 ];
178 const uint notbinsize[B_MAX] = [ ~(16u-1),~(32u-1),~(64u-1),~(128u-1),~(256u-1),
179 ~(512u-1),~(1024u-1),~(2048u-1),~(4096u-1) ];
182 /* ============================ GC =============================== */
185 class GCLock {} // just a dummy so we can get a global lock
196 // !=0 means don't scan stack
201 /// Turn off collections if > 0
204 /// min(pool.baseAddr)
206 /// max(pool.topAddr)
209 /// Free list for each size
210 List*[B_MAX] free_list;
212 dynarray.DynArray!(void*) roots;
213 dynarray.DynArray!(Range) ranges;
214 dynarray.DynArray!(Pool*) pools;
219 // call locked if necessary
220 private T locked(T, alias Code)()
222 if (thread_needLock())
223 synchronized (gc.lock) return Code();
232 assert (gc !is null);
234 for (size_t i = 0; i < gc.pools.length; i++) {
235 Pool* pool = gc.pools[i];
238 assert(gc.min_addr == pool.baseAddr);
239 if (i + 1 < gc.pools.length)
240 assert(*pool < *gc.pools[i + 1]);
241 else if (i + 1 == gc.pools.length)
242 assert(gc.max_addr == pool.topAddr);
245 gc.roots.Invariant();
246 gc.ranges.Invariant();
248 for (size_t i = 0; i < gc.ranges.length; i++) {
249 assert(gc.ranges[i].pbot);
250 assert(gc.ranges[i].ptop);
251 assert(gc.ranges[i].pbot <= gc.ranges[i].ptop);
254 for (size_t i = 0; i < B_PAGE; i++) {
255 for (List *list = gc.free_list[i]; list; list = list.next) {
256 assert (list.pool !is null);
257 auto p = cast(byte*) list;
258 assert (p >= list.pool.baseAddr);
259 assert (p < list.pool.topAddr);
268 * Find Pool that pointer is in.
269 * Return null if not in a Pool.
270 * Assume pools is sorted.
272 Pool* findPool(void* p)
274 if (p < gc.min_addr || p >= gc.max_addr)
276 if (gc.pools.length == 0)
278 if (gc.pools.length == 1)
280 /// The pooltable[] is sorted by address, so do a binary search
282 size_t high = gc.pools.length - 1;
283 while (low <= high) {
284 size_t mid = (low + high) / 2;
285 auto pool = gc.pools[mid];
286 if (p < pool.baseAddr)
288 else if (p >= pool.topAddr)
299 * Determine the base address of the block containing p. If p is not a gc
300 * allocated pointer, return null.
302 BlkInfo getInfo(void* p)
305 Pool* pool = findPool(p);
309 info.base = pool.findBase(p);
310 if (info.base is null)
312 info.size = pool.findSize(info.base);
313 info.attr = getAttr(pool, cast(size_t)(info.base - pool.baseAddr) / 16u);
314 if (has_pointermap(info.attr)) {
315 info.size -= size_t.sizeof; // PointerMap bitmask
316 // Points to the PointerMap bitmask pointer, not user data
317 if (p >= (info.base + info.size)) {
321 if (opts.options.sentinel) {
322 info.base = sentinel_add(info.base);
323 // points to sentinel data, not user data
324 if (p < info.base || p >= sentinel_post(info.base))
326 info.size -= SENTINEL_EXTRA;
333 * Compute bin for size.
335 Bins findBin(size_t size)
379 * Allocate a new pool of at least size bytes.
380 * Sort it into pools.
381 * Mark all memory in the pool as B_FREE.
382 * Return the actual number of bytes reserved or 0 on error.
384 size_t reserve(size_t size)
387 size_t npages = (size + PAGESIZE - 1) / PAGESIZE;
388 Pool* pool = newPool(npages);
392 return pool.npages * PAGESIZE;
397 * Minimizes physical memory usage by returning free pools to the OS.
405 for (n = 0; n < gc.pools.length; n++)
408 for (pn = 0; pn < pool.npages; pn++)
410 if (cast(Bins)pool.pagetable[pn] != B_FREE)
413 if (pn < pool.npages)
417 gc.pools.remove_at(n);
420 gc.min_addr = gc.pools[0].baseAddr;
421 gc.max_addr = gc.pools[gc.pools.length - 1].topAddr;
426 * Allocate a chunk of memory that is larger than a page.
427 * Return null if out of memory.
429 void* bigAlloc(size_t size, out Pool* pool)
438 npages = (size + PAGESIZE - 1) / PAGESIZE;
442 // This code could use some refinement when repeatedly
443 // allocating very large arrays.
445 for (n = 0; n < gc.pools.length; n++)
448 pn = pool.allocPages(npages);
463 freedpages = fullcollectshell();
464 if (freedpages >= gc.pools.length * ((POOLSIZE / PAGESIZE) / 4))
469 // Release empty pools to prevent bloat
472 pool = newPool(npages);
478 pn = pool.allocPages(npages);
479 assert(pn != OPFAIL);
482 // Release empty pools to prevent bloat
485 pool = newPool(npages);
488 pn = pool.allocPages(npages);
489 assert(pn != OPFAIL);
499 pool.pagetable[pn] = B_PAGE;
501 memset(&pool.pagetable[pn + 1], B_PAGEPLUS, npages - 1);
502 p = pool.baseAddr + pn * PAGESIZE;
503 memset(cast(char *)p + size, 0, npages * PAGESIZE - size);
504 if (opts.options.mem_stomp)
505 memset(p, 0xF1, size);
509 return null; // let mallocNoSync handle the error
514 * Allocate a new pool with at least npages in it.
515 * Sort it into pools.
516 * Return null if failed.
518 Pool *newPool(size_t npages)
520 // Minimum of POOLSIZE
521 if (npages < POOLSIZE/PAGESIZE)
522 npages = POOLSIZE/PAGESIZE;
523 else if (npages > POOLSIZE/PAGESIZE)
525 // Give us 150% of requested size, so there's room to extend
526 auto n = npages + (npages >> 1);
527 if (n < size_t.max/PAGESIZE)
531 // Allocate successively larger pools up to 8 megs
534 size_t n = gc.pools.length;
536 n = 8; // cap pool size at 8 megs
537 n *= (POOLSIZE / PAGESIZE);
542 auto pool = cast(Pool*) cstdlib.calloc(1, Pool.sizeof);
545 pool.initialize(npages);
552 auto inserted_pool = *gc.pools.insert_sorted!("*a < *b")(pool);
553 if (inserted_pool is null) {
557 assert (inserted_pool is pool);
558 gc.min_addr = gc.pools[0].baseAddr;
559 gc.max_addr = gc.pools[gc.pools.length - 1].topAddr;
565 * Allocate a page of bin's.
569 int allocPage(Bins bin)
577 for (n = 0; n < gc.pools.length; n++)
580 pn = pool.allocPages(1);
587 pool.pagetable[pn] = cast(ubyte)bin;
589 // Convert page to free list
590 size_t size = binsize[bin];
591 auto list_head = &gc.free_list[bin];
593 p = pool.baseAddr + pn * PAGESIZE;
595 for (; p < ptop; p += size)
597 List* l = cast(List *) p;
607 * Search a range of memory values and mark any pointers into the GC pool using
608 * type information (bitmask of pointer locations).
610 void mark_range(void *pbot, void *ptop, size_t* pm_bitmask)
612 // TODO: make our own assert because assert uses the GC
613 assert (pbot <= ptop);
615 const BITS_PER_WORD = size_t.sizeof * 8;
617 void **p1 = cast(void **)pbot;
618 void **p2 = cast(void **)ptop;
620 bool changes = false;
622 size_t type_size = pm_bitmask[0];
623 size_t* pm_bits = pm_bitmask + 1;
624 bool has_type_info = type_size != 1 || pm_bits[0] != 1 || pm_bits[1] != 0;
626 //printf("marking range: %p -> %p\n", pbot, ptop);
627 for (; p1 + type_size <= p2; p1 += type_size) {
628 for (size_t n = 0; n < type_size; n++) {
629 // scan bit set for this word
631 !(pm_bits[n / BITS_PER_WORD] & (1 << (n % BITS_PER_WORD))))
636 if (p < gc.min_addr || p >= gc.max_addr)
639 if ((cast(size_t)p & ~(PAGESIZE-1)) == pcache)
642 Pool* pool = findPool(p);
645 size_t offset = cast(size_t)(p - pool.baseAddr);
647 size_t pn = offset / PAGESIZE;
648 Bins bin = cast(Bins)pool.pagetable[pn];
650 // Cache B_PAGE, B_PAGEPLUS and B_FREE lookups
652 pcache = cast(size_t)p & ~(PAGESIZE-1);
654 // Adjust bit to be at start of allocated memory block
656 bit_i = (offset & notbinsize[bin]) / 16;
657 else if (bin == B_PAGEPLUS)
663 while (cast(Bins)pool.pagetable[pn] == B_PAGEPLUS);
664 bit_i = pn * (PAGESIZE / 16);
666 else // Don't mark bits in B_FREE pages
669 if (!pool.mark.test(bit_i))
671 pool.mark.set(bit_i);
672 if (!pool.noscan.test(bit_i))
674 pool.scan.set(bit_i);
682 gc.any_changes = true;
686 * Return number of full pages free'd.
688 size_t fullcollectshell()
690 gc.stats.collection_started();
692 gc.stats.collection_finished();
694 // The purpose of the 'shell' is to ensure all the registers
695 // get put on the stack so they'll be scanned
700 gcc.builtins.__builtin_unwind_init();
707 uint eax,ecx,edx,ebx,ebp,esi,edi;
720 else version (X86_64)
722 ulong rax,rbx,rcx,rdx,rbp,rsi,rdi,r8,r9,r10,r11,r12,r13,r14,r15;
745 static assert( false, "Architecture not supported." );
756 result = fullcollect(sp);
779 size_t fullcollect(void *stackTop)
781 debug(COLLECT_PRINTF) printf("Gcx.fullcollect()\n");
783 // we always need to stop the world to make threads save the CPU registers
784 // in the stack and prepare themselves for thread_scanAll()
786 gc.stats.world_stopped();
788 if (opts.options.fork) {
789 os.pid_t child_pid = os.fork();
790 assert (child_pid != -1); // don't accept errors in non-release mode
792 case -1: // if fork() fails, fallback to stop-the-world
793 opts.options.fork = false;
795 case 0: // child process (i.e. the collectors mark phase)
798 break; // bogus, will never reach here
799 default: // parent process (i.e. the mutator)
800 // start the world again and wait for the mark phase to finish
802 gc.stats.world_started();
804 os.pid_t wait_pid = os.waitpid(child_pid, &status, 0);
805 assert (wait_pid == child_pid);
811 // if we reach here, we are using the standard stop-the-world collection
814 gc.stats.world_started();
823 void mark(void *stackTop)
825 debug(COLLECT_PRINTF) printf("\tmark()\n");
827 gc.any_changes = false;
828 for (size_t n = 0; n < gc.pools.length; n++)
830 Pool* pool = gc.pools[n];
833 pool.freebits.zero();
836 // Mark each free entry, so it doesn't get scanned
837 for (size_t n = 0; n < B_PAGE; n++)
839 for (List *list = gc.free_list[n]; list; list = list.next)
841 Pool* pool = list.pool;
842 auto ptr = cast(byte*) list;
844 assert (pool.baseAddr <= ptr);
845 assert (ptr < pool.topAddr);
846 size_t bit_i = cast(size_t)(ptr - pool.baseAddr) / 16;
847 pool.freebits.set(bit_i);
851 for (size_t n = 0; n < gc.pools.length; n++)
853 Pool* pool = gc.pools[n];
854 pool.mark.copy(&pool.freebits);
857 /// Marks a range of memory in conservative mode.
858 void mark_conservative_range(void* pbot, void* ptop)
860 mark_range(pbot, ptop, PointerMap.init.bits.ptr);
863 rt_scanStaticData(&mark_conservative_range);
867 // Scan stacks and registers for each paused thread
868 thread_scanAll(&mark_conservative_range, stackTop);
872 debug(COLLECT_PRINTF) printf("scan roots[]\n");
873 mark_conservative_range(gc.roots.ptr, gc.roots.ptr + gc.roots.length);
876 debug(COLLECT_PRINTF) printf("scan ranges[]\n");
877 for (size_t n = 0; n < gc.ranges.length; n++)
879 debug(COLLECT_PRINTF) printf("\t%x .. %x\n", gc.ranges[n].pbot, gc.ranges[n].ptop);
880 mark_conservative_range(gc.ranges[n].pbot, gc.ranges[n].ptop);
883 debug(COLLECT_PRINTF) printf("\tscan heap\n");
884 while (gc.any_changes)
886 gc.any_changes = false;
887 for (size_t n = 0; n < gc.pools.length; n++)
893 Pool* pool = gc.pools[n];
895 bbase = pool.scan.base();
896 btop = bbase + pool.scan.nwords;
897 for (b = bbase; b < btop;)
913 o = pool.baseAddr + (b - bbase) * 32 * 16;
914 if (!(bitm & 0xFFFF))
919 for (; bitm; o += 16, bitm >>= 1)
924 pn = cast(size_t)(o - pool.baseAddr) / PAGESIZE;
925 bin = cast(Bins)pool.pagetable[pn];
927 if (opts.options.conservative)
928 mark_conservative_range(o, o + binsize[bin]);
930 auto end_of_blk = cast(size_t**)(o +
931 binsize[bin] - size_t.sizeof);
932 size_t* pm_bitmask = *end_of_blk;
933 mark_range(o, end_of_blk, pm_bitmask);
936 else if (bin == B_PAGE || bin == B_PAGEPLUS)
938 if (bin == B_PAGEPLUS)
940 while (pool.pagetable[pn - 1] != B_PAGE)
944 while (pn + u < pool.npages &&
945 pool.pagetable[pn + u] == B_PAGEPLUS)
948 size_t blk_size = u * PAGESIZE;
949 if (opts.options.conservative)
950 mark_conservative_range(o, o + blk_size);
952 auto end_of_blk = cast(size_t**)(o + blk_size -
954 size_t* pm_bitmask = *end_of_blk;
955 mark_range(o, end_of_blk, pm_bitmask);
970 // Free up everything not marked
971 debug(COLLECT_PRINTF) printf("\tsweep\n");
974 size_t freedpages = 0;
976 for (size_t n = 0; n < gc.pools.length; n++)
978 Pool* pool = gc.pools[n];
980 uint* bbase = pool.mark.base();
982 for (pn = 0; pn < pool.npages; pn++, bbase += PAGESIZE / (32 * 16))
984 Bins bin = cast(Bins)pool.pagetable[pn];
988 auto size = binsize[bin];
989 byte* p = pool.baseAddr + pn * PAGESIZE;
990 byte* ptop = p + PAGESIZE;
991 size_t bit_i = pn * (PAGESIZE/16);
992 size_t bit_stride = size / 16;
994 version(none) // BUG: doesn't work because freebits() must also be cleared
996 // If free'd entire page
997 if (bbase[0] == 0 && bbase[1] == 0 && bbase[2] == 0 &&
998 bbase[3] == 0 && bbase[4] == 0 && bbase[5] == 0 &&
999 bbase[6] == 0 && bbase[7] == 0)
1001 for (; p < ptop; p += size, bit_i += bit_stride)
1003 if (pool.finals.testClear(bit_i)) {
1004 if (opts.options.sentinel)
1005 rt_finalize(sentinel_add(p), false/*gc.no_stack > 0*/);
1007 rt_finalize(p, false/*gc.no_stack > 0*/);
1009 clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1011 if (opts.options.mem_stomp)
1012 memset(p, 0xF3, size);
1014 pool.pagetable[pn] = B_FREE;
1019 for (; p < ptop; p += size, bit_i += bit_stride)
1021 if (!pool.mark.test(bit_i))
1023 if (opts.options.sentinel)
1024 sentinel_Invariant(sentinel_add(p));
1026 pool.freebits.set(bit_i);
1027 if (pool.finals.testClear(bit_i)) {
1028 if (opts.options.sentinel)
1029 rt_finalize(sentinel_add(p), false/*gc.no_stack > 0*/);
1031 rt_finalize(p, false/*gc.no_stack > 0*/);
1033 clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1035 if (opts.options.mem_stomp)
1036 memset(p, 0xF3, size);
1042 else if (bin == B_PAGE)
1044 size_t bit_i = pn * (PAGESIZE / 16);
1045 if (!pool.mark.test(bit_i))
1047 byte *p = pool.baseAddr + pn * PAGESIZE;
1048 if (opts.options.sentinel)
1049 sentinel_Invariant(sentinel_add(p));
1050 if (pool.finals.testClear(bit_i)) {
1051 if (opts.options.sentinel)
1052 rt_finalize(sentinel_add(p), false/*gc.no_stack > 0*/);
1054 rt_finalize(p, false/*gc.no_stack > 0*/);
1056 clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1058 debug(COLLECT_PRINTF) printf("\tcollecting big %x\n", p);
1059 pool.pagetable[pn] = B_FREE;
1061 if (opts.options.mem_stomp)
1062 memset(p, 0xF3, PAGESIZE);
1063 while (pn + 1 < pool.npages && pool.pagetable[pn + 1] == B_PAGEPLUS)
1066 pool.pagetable[pn] = B_FREE;
1069 if (opts.options.mem_stomp)
1072 memset(p, 0xF3, PAGESIZE);
1081 gc.free_list[] = null;
1083 // Free complete pages, rebuild free list
1084 debug(COLLECT_PRINTF) printf("\tfree complete pages\n");
1085 size_t recoveredpages = 0;
1086 for (size_t n = 0; n < gc.pools.length; n++)
1088 Pool* pool = gc.pools[n];
1089 for (size_t pn = 0; pn < pool.npages; pn++)
1091 Bins bin = cast(Bins)pool.pagetable[pn];
1097 size_t size = binsize[bin];
1098 size_t bit_stride = size / 16;
1099 size_t bit_base = pn * (PAGESIZE / 16);
1100 size_t bit_top = bit_base + (PAGESIZE / 16);
1104 for (; bit_i < bit_top; bit_i += bit_stride)
1106 if (!pool.freebits.test(bit_i))
1109 pool.pagetable[pn] = B_FREE;
1114 p = pool.baseAddr + pn * PAGESIZE;
1115 for (u = 0; u < PAGESIZE; u += size)
1117 bit_i = bit_base + u / 16;
1118 if (pool.freebits.test(bit_i))
1120 assert ((p+u) >= pool.baseAddr);
1121 assert ((p+u) < pool.topAddr);
1122 List* list = cast(List*) (p + u);
1123 // avoid unnecesary writes (it really saves time)
1124 if (list.next != gc.free_list[bin])
1125 list.next = gc.free_list[bin];
1126 if (list.pool != pool)
1128 gc.free_list[bin] = list;
1135 debug(COLLECT_PRINTF) printf("recovered pages = %d\n", recoveredpages);
1136 debug(COLLECT_PRINTF) printf("\tfree'd %u bytes, %u pages from %u pools\n", freed, freedpages, gc.pools.length);
1138 return freedpages + recoveredpages;
1145 uint getAttr(Pool* pool, size_t bit_i)
1153 if (pool.finals.test(bit_i))
1154 attrs |= BlkAttr.FINALIZE;
1155 if (pool.noscan.test(bit_i))
1156 attrs |= BlkAttr.NO_SCAN;
1157 // if (pool.nomove.test(bit_i))
1158 // attrs |= BlkAttr.NO_MOVE;
1166 void setAttr(Pool* pool, size_t bit_i, uint mask)
1173 if (mask & BlkAttr.FINALIZE)
1175 pool.finals.set(bit_i);
1177 if (mask & BlkAttr.NO_SCAN)
1179 pool.noscan.set(bit_i);
1181 // if (mask & BlkAttr.NO_MOVE)
1183 // if (!pool.nomove.nbits)
1184 // pool.nomove.alloc(pool.mark.nbits);
1185 // pool.nomove.set(bit_i);
1193 void clrAttr(Pool* pool, size_t bit_i, uint mask)
1200 if (mask & BlkAttr.FINALIZE)
1201 pool.finals.clear(bit_i);
1202 if (mask & BlkAttr.NO_SCAN)
1203 pool.noscan.clear(bit_i);
1204 // if (mask & BlkAttr.NO_MOVE && pool.nomove.nbits)
1205 // pool.nomove.clear(bit_i);
1213 gc.stack_bottom = cast(char*)&dummy;
1214 opts.parse(cstdlib.getenv("D_GC_OPTS"));
1215 // If we are going to fork, make sure we have the needed OS support
1216 if (opts.options.fork)
1217 opts.options.fork = os.HAVE_SHARED && os.HAVE_FORK;
1218 gc.lock = GCLock.classinfo;
1220 setStackBottom(rt_stackBottom());
1221 gc.stats = Stats(gc);
1228 private void *malloc(size_t size, uint attrs, size_t* pm_bitmask)
1232 gc.stats.malloc_started(size, attrs, pm_bitmask);
1234 gc.stats.malloc_finished(p);
1239 if (opts.options.sentinel)
1240 size += SENTINEL_EXTRA;
1242 bool has_pm = has_pointermap(attrs);
1244 size += size_t.sizeof;
1247 // Cache previous binsize lookup - Dave Fladebo.
1248 static size_t lastsize = -1;
1249 static Bins lastbin;
1250 if (size == lastsize)
1254 bin = findBin(size);
1260 size_t capacity = void; // to figure out where to store the bitmask
1263 p = gc.free_list[bin];
1266 if (!allocPage(bin) && !gc.disabled) // try to find a new page
1268 if (!thread_needLock())
1270 /* Then we haven't locked it yet. Be sure
1271 * and gc.lock for a collection, since a finalizer
1272 * may start a new thread.
1274 synchronized (gc.lock)
1279 else if (!fullcollectshell()) // collect to find a new page
1284 if (!gc.free_list[bin] && !allocPage(bin))
1286 newPool(1); // allocate new pool to find a new page
1287 // TODO: hint allocPage() to use the pool we just created
1288 int result = allocPage(bin);
1290 onOutOfMemoryError();
1292 p = gc.free_list[bin];
1294 capacity = binsize[bin];
1296 // Return next item from free list
1297 List* list = cast(List*) p;
1298 assert ((cast(byte*)list) >= list.pool.baseAddr);
1299 assert ((cast(byte*)list) < list.pool.topAddr);
1300 gc.free_list[bin] = list.next;
1302 if (!(attrs & BlkAttr.NO_SCAN))
1303 memset(p + size, 0, capacity - size);
1304 if (opts.options.mem_stomp)
1305 memset(p, 0xF0, size);
1309 p = bigAlloc(size, pool);
1311 onOutOfMemoryError();
1312 assert (pool !is null);
1313 // Round the size up to the number of pages needed to store it
1314 size_t npages = (size + PAGESIZE - 1) / PAGESIZE;
1315 capacity = npages * PAGESIZE;
1318 // Store the bit mask AFTER SENTINEL_POST
1319 // TODO: store it BEFORE, so the bitmask is protected too
1321 auto end_of_blk = cast(size_t**)(p + capacity - size_t.sizeof);
1322 *end_of_blk = pm_bitmask;
1323 size -= size_t.sizeof;
1326 if (opts.options.sentinel) {
1327 size -= SENTINEL_EXTRA;
1328 p = sentinel_add(p);
1329 sentinel_init(p, size);
1333 setAttr(pool, cast(size_t)(p - pool.baseAddr) / 16, attrs);
1342 private void *calloc(size_t size, uint attrs, size_t* pm_bitmask)
1346 void *p = malloc(size, attrs, pm_bitmask);
1355 private void *realloc(void *p, size_t size, uint attrs,
1368 p = malloc(size, attrs, pm_bitmask);
1372 Pool* pool = findPool(p);
1376 // Set or retrieve attributes as appropriate
1377 auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
1379 clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1380 setAttr(pool, bit_i, attrs);
1383 attrs = getAttr(pool, bit_i);
1385 void* blk_base_addr = pool.findBase(p);
1386 size_t blk_size = pool.findSize(p);
1387 bool has_pm = has_pointermap(attrs);
1388 size_t pm_bitmask_size = 0;
1390 pm_bitmask_size = size_t.sizeof;
1391 // Retrieve pointer map bit mask if appropriate
1392 if (pm_bitmask is null) {
1393 auto end_of_blk = cast(size_t**)(blk_base_addr +
1394 blk_size - size_t.sizeof);
1395 pm_bitmask = *end_of_blk;
1399 if (opts.options.sentinel)
1401 sentinel_Invariant(p);
1402 size_t sentinel_stored_size = *sentinel_size(p);
1403 if (sentinel_stored_size != size)
1405 void* p2 = malloc(size, attrs, pm_bitmask);
1406 if (sentinel_stored_size < size)
1407 size = sentinel_stored_size;
1408 cstring.memcpy(p2, p, size);
1414 size += pm_bitmask_size;
1415 if (blk_size >= PAGESIZE && size >= PAGESIZE)
1417 auto psz = blk_size / PAGESIZE;
1418 auto newsz = (size + PAGESIZE - 1) / PAGESIZE;
1422 auto pagenum = (p - pool.baseAddr) / PAGESIZE;
1427 if (opts.options.mem_stomp)
1428 memset(p + size - pm_bitmask_size, 0xF2,
1429 blk_size - size - pm_bitmask_size);
1430 pool.freePages(pagenum + newsz, psz - newsz);
1431 auto new_blk_size = (PAGESIZE * newsz);
1432 // update the size cache, assuming that is very likely the
1433 // size of this block will be queried in the near future
1434 pool.update_cache(p, new_blk_size);
1436 auto end_of_blk = cast(size_t**)(blk_base_addr +
1437 new_blk_size - pm_bitmask_size);
1438 *end_of_blk = pm_bitmask;
1442 else if (pagenum + newsz <= pool.npages)
1444 // Attempt to expand in place
1445 for (size_t i = pagenum + psz; 1;)
1447 if (i == pagenum + newsz)
1449 if (opts.options.mem_stomp)
1450 memset(p + blk_size - pm_bitmask_size,
1451 0xF0, size - blk_size
1453 memset(pool.pagetable + pagenum +
1454 psz, B_PAGEPLUS, newsz - psz);
1455 auto new_blk_size = (PAGESIZE * newsz);
1456 // update the size cache, assuming that is very
1457 // likely the size of this block will be queried in
1459 pool.update_cache(p, new_blk_size);
1461 auto end_of_blk = cast(size_t**)(
1462 blk_base_addr + new_blk_size -
1464 *end_of_blk = pm_bitmask;
1468 if (i == pool.npages)
1472 if (pool.pagetable[i] != B_FREE)
1478 // if new size is bigger or less than half
1479 if (blk_size < size || blk_size > size * 2)
1481 size -= pm_bitmask_size;
1482 blk_size -= pm_bitmask_size;
1483 void* p2 = malloc(size, attrs, pm_bitmask);
1484 if (blk_size < size)
1486 cstring.memcpy(p2, p, size);
1496 * Attempt to in-place enlarge the memory block pointed to by p by at least
1497 * min_size beyond its current capacity, up to a maximum of max_size. This
1498 * does not attempt to move the memory block (like realloc() does).
1501 * 0 if could not extend p,
1502 * total size of entire memory block if successful.
1504 private size_t extend(void* p, size_t minsize, size_t maxsize)
1507 assert( minsize <= maxsize );
1511 if (opts.options.sentinel)
1514 Pool* pool = findPool(p);
1518 // Retrieve attributes
1519 auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
1520 uint attrs = getAttr(pool, bit_i);
1522 void* blk_base_addr = pool.findBase(p);
1523 size_t blk_size = pool.findSize(p);
1524 bool has_pm = has_pointermap(attrs);
1525 size_t* pm_bitmask = null;
1526 size_t pm_bitmask_size = 0;
1528 pm_bitmask_size = size_t.sizeof;
1529 // Retrieve pointer map bit mask
1530 auto end_of_blk = cast(size_t**)(blk_base_addr +
1531 blk_size - size_t.sizeof);
1532 pm_bitmask = *end_of_blk;
1534 minsize += size_t.sizeof;
1535 maxsize += size_t.sizeof;
1538 if (blk_size < PAGESIZE)
1539 return 0; // cannot extend buckets
1541 auto psz = blk_size / PAGESIZE;
1542 auto minsz = (minsize + PAGESIZE - 1) / PAGESIZE;
1543 auto maxsz = (maxsize + PAGESIZE - 1) / PAGESIZE;
1545 auto pagenum = (p - pool.baseAddr) / PAGESIZE;
1548 for (sz = 0; sz < maxsz; sz++)
1550 auto i = pagenum + psz + sz;
1551 if (i == pool.npages)
1553 if (pool.pagetable[i] != B_FREE)
1563 size_t new_size = (psz + sz) * PAGESIZE;
1565 if (opts.options.mem_stomp)
1566 memset(p + blk_size - pm_bitmask_size, 0xF0,
1567 new_size - blk_size - pm_bitmask_size);
1568 memset(pool.pagetable + pagenum + psz, B_PAGEPLUS, sz);
1571 // update the size cache, assuming that is very likely the size of this
1572 // block will be queried in the near future
1573 pool.update_cache(p, new_size);
1576 new_size -= size_t.sizeof;
1577 auto end_of_blk = cast(size_t**)(blk_base_addr + new_size);
1578 *end_of_blk = pm_bitmask;
1587 private void free(void *p)
1596 // Find which page it is in
1598 if (!pool) // if not one of ours
1600 if (opts.options.sentinel) {
1601 sentinel_Invariant(p);
1602 p = sentinel_sub(p);
1604 pagenum = cast(size_t)(p - pool.baseAddr) / PAGESIZE;
1605 bit_i = cast(size_t)(p - pool.baseAddr) / 16;
1606 clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1608 bin = cast(Bins)pool.pagetable[pagenum];
1609 if (bin == B_PAGE) // if large alloc
1614 while (++n < pool.npages && pool.pagetable[n] == B_PAGEPLUS)
1616 if (opts.options.mem_stomp)
1617 memset(p, 0xF2, npages * PAGESIZE);
1618 pool.freePages(pagenum, npages);
1619 // just in case we were caching this pointer
1620 pool.clear_cache(p);
1625 List* list = cast(List*) p;
1627 if (opts.options.mem_stomp)
1628 memset(p, 0xF2, binsize[bin]);
1630 list.next = gc.free_list[bin];
1632 gc.free_list[bin] = list;
1638 * Determine the allocated size of pointer p. If p is an interior pointer
1639 * or not a gc allocated pointer, return 0.
1641 private size_t sizeOf(void *p)
1645 if (opts.options.sentinel)
1646 p = sentinel_sub(p);
1648 Pool* pool = findPool(p);
1652 auto biti = cast(size_t)(p - pool.baseAddr) / 16;
1653 uint attrs = getAttr(pool, biti);
1655 size_t size = pool.findSize(p);
1656 size_t pm_bitmask_size = 0;
1657 if (has_pointermap(attrs))
1658 pm_bitmask_size = size_t.sizeof;
1660 if (opts.options.sentinel) {
1661 // Check for interior pointer
1663 // 1) size is a power of 2 for less than PAGESIZE values
1664 // 2) base of memory pool is aligned on PAGESIZE boundary
1665 if (cast(size_t)p & (size - 1) & (PAGESIZE - 1))
1667 return size - SENTINEL_EXTRA - pm_bitmask_size;
1670 if (p == gc.p_cache)
1671 return gc.size_cache;
1673 // Check for interior pointer
1675 // 1) size is a power of 2 for less than PAGESIZE values
1676 // 2) base of memory pool is aligned on PAGESIZE boundary
1677 if (cast(size_t)p & (size - 1) & (PAGESIZE - 1))
1681 gc.size_cache = size - pm_bitmask_size;
1683 return gc.size_cache;
1689 * Verify that pointer p:
1690 * 1) belongs to this memory pool
1691 * 2) points to the start of an allocated piece of memory
1692 * 3) is not on a free list
1694 private void checkNoSync(void *p)
1698 if (opts.options.sentinel)
1699 sentinel_Invariant(p);
1707 if (opts.options.sentinel)
1708 p = sentinel_sub(p);
1711 pagenum = cast(size_t)(p - pool.baseAddr) / PAGESIZE;
1712 bin = cast(Bins)pool.pagetable[pagenum];
1713 assert(bin <= B_PAGE);
1714 size = binsize[bin];
1715 assert((cast(size_t)p & (size - 1)) == 0);
1721 // Check that p is not on a free list
1722 for (List* list = gc.free_list[bin]; list; list = list.next)
1724 assert(cast(void*)list != p);
1735 private void setStackBottom(void *p)
1737 version (STACKGROWSDOWN)
1739 //p = (void *)((uint *)p + 4);
1740 if (p > gc.stack_bottom)
1742 gc.stack_bottom = p;
1747 //p = (void *)((uint *)p - 4);
1748 if (p < gc.stack_bottom)
1750 gc.stack_bottom = cast(char*)p;
1757 * Retrieve statistics about garbage collection.
1758 * Useful for debugging and tuning.
1760 private GCStats getStats()
1770 for (n = 0; n < gc.pools.length; n++)
1772 Pool* pool = gc.pools[n];
1773 psize += pool.npages * PAGESIZE;
1774 for (size_t j = 0; j < pool.npages; j++)
1776 Bins bin = cast(Bins)pool.pagetable[j];
1779 else if (bin == B_PAGE)
1781 else if (bin < B_PAGE)
1786 for (n = 0; n < B_PAGE; n++)
1788 for (List* list = gc.free_list[n]; list; list = list.next)
1789 flsize += binsize[n];
1792 usize = bsize - flsize;
1794 stats.poolsize = psize;
1795 stats.usedsize = bsize - flsize;
1796 stats.freelistsize = flsize;
1800 /******************* weak-reference support *********************/
1802 private struct WeakPointer
1806 void ondestroy(Object r)
1808 assert(r is reference);
1809 // lock for memory consistency (parallel readers)
1810 // also ensures that weakpointerDestroy can be called while another
1811 // thread is freeing the reference with "delete"
1812 return locked!(void, () {
1819 * Create a weak pointer to the given object.
1820 * Returns a pointer to an opaque struct allocated in C memory.
1822 void* weakpointerCreate( Object r )
1826 // must be allocated in C memory
1827 // 1. to hide the reference from the GC
1828 // 2. the GC doesn't scan delegates added by rt_attachDisposeEvent
1830 auto wp = cast(WeakPointer*)(cstdlib.malloc(WeakPointer.sizeof));
1832 onOutOfMemoryError();
1834 rt_attachDisposeEvent(r, &wp.ondestroy);
1841 * Destroy a weak pointer returned by weakpointerCreate().
1842 * If null is passed, nothing happens.
1844 void weakpointerDestroy( void* p )
1848 auto wp = cast(WeakPointer*)p;
1849 // must be extra careful about the GC or parallel threads
1850 // finalizing the reference at the same time
1851 return locked!(void, () {
1853 rt_detachDisposeEvent(wp.reference, &wp.ondestroy);
1860 * Query a weak pointer and return either the object passed to
1861 * weakpointerCreate, or null if it was free'd in the meantime.
1862 * If null is passed, null is returned.
1864 Object weakpointerGet( void* p )
1868 // NOTE: could avoid the lock by using Fawzi style GC counters but
1869 // that'd require core.sync.Atomic and lots of care about memory
1870 // consistency it's an optional optimization see
1871 // http://dsource.org/projects/tango/browser/trunk/user/tango/core/Lifetime.d?rev=5100#L158
1872 return locked!(Object, () {
1873 return (cast(WeakPointer*)p).reference;
1879 /* ============================ Pool =============================== */
1886 GCBits mark; // entries already scanned, or should not be scanned
1887 GCBits scan; // entries that need to be scanned
1888 GCBits freebits; // entries that are on the free list
1889 GCBits finals; // entries that need finalizer run on them
1890 GCBits noscan; // entries that should not be scanned
1895 /// Cache for findSize()
1899 void clear_cache(void* ptr = null)
1901 if (ptr is null || ptr is this.cached_ptr) {
1902 this.cached_ptr = null;
1903 this.cached_size = 0;
1907 void update_cache(void* ptr, size_t size)
1909 this.cached_ptr = ptr;
1910 this.cached_size = size;
1913 void initialize(size_t npages)
1915 size_t poolsize = npages * PAGESIZE;
1916 assert(poolsize >= POOLSIZE);
1917 baseAddr = cast(byte *) os.alloc(poolsize);
1919 // Some of the code depends on page alignment of memory pools
1920 assert((cast(size_t)baseAddr & (PAGESIZE - 1)) == 0);
1927 topAddr = baseAddr + poolsize;
1929 size_t nbits = cast(size_t)poolsize / 16;
1931 // if the GC will run in parallel in a fork()ed process, we need to
1932 // share the mark bits
1933 os.Vis vis = os.Vis.PRIV;
1934 if (opts.options.fork)
1935 vis = os.Vis.SHARED;
1936 mark.alloc(nbits, vis); // shared between mark and sweep
1937 freebits.alloc(nbits, vis); // ditto
1938 scan.alloc(nbits); // only used in the mark phase
1939 finals.alloc(nbits); // mark phase *MUST* have a snapshot
1940 noscan.alloc(nbits); // ditto
1942 pagetable = cast(ubyte*) cstdlib.malloc(npages);
1944 onOutOfMemoryError();
1945 memset(pagetable, B_FREE, npages);
1947 this.npages = npages;
1959 result = os.dealloc(baseAddr, npages * PAGESIZE);
1967 // See Gcx.Dtor() for the rationale of the null check.
1969 cstdlib.free(pagetable);
1971 os.Vis vis = os.Vis.PRIV;
1972 if (opts.options.fork)
1973 vis = os.Vis.SHARED;
1992 //freebits.Invariant();
1993 //finals.Invariant();
1994 //noscan.Invariant();
1998 //if (baseAddr + npages * PAGESIZE != topAddr)
1999 //printf("baseAddr = %p, npages = %d, topAddr = %p\n", baseAddr, npages, topAddr);
2000 assert(baseAddr + npages * PAGESIZE == topAddr);
2003 for (size_t i = 0; i < npages; i++)
2005 Bins bin = cast(Bins)pagetable[i];
2006 assert(bin < B_MAX);
2012 * Allocate n pages from Pool.
2013 * Returns OPFAIL on failure.
2015 size_t allocPages(size_t n)
2021 for (i = 0; i < npages; i++)
2023 if (pagetable[i] == B_FREE)
2036 * Free npages pages starting with pagenum.
2038 void freePages(size_t pagenum, size_t npages)
2040 memset(&pagetable[pagenum], B_FREE, npages);
2045 * Find base address of block containing pointer p.
2046 * Returns null if the pointer doesn't belong to this pool
2048 void* findBase(void *p)
2050 size_t offset = cast(size_t)(p - this.baseAddr);
2051 size_t pagenum = offset / PAGESIZE;
2052 Bins bin = cast(Bins)this.pagetable[pagenum];
2053 // Adjust bit to be at start of allocated memory block
2055 return this.baseAddr + (offset & notbinsize[bin]);
2056 if (bin == B_PAGEPLUS) {
2058 --pagenum, offset -= PAGESIZE;
2059 } while (cast(Bins)this.pagetable[pagenum] == B_PAGEPLUS);
2060 return this.baseAddr + (offset & (offset.max ^ (PAGESIZE-1)));
2062 // we are in a B_FREE page
2068 * Find size of pointer p.
2069 * Returns 0 if p doesn't belong to this pool if if it's block size is less
2072 size_t findSize(void *p)
2074 size_t pagenum = cast(size_t)(p - this.baseAddr) / PAGESIZE;
2075 Bins bin = cast(Bins)this.pagetable[pagenum];
2077 return binsize[bin];
2078 if (this.cached_ptr == p)
2079 return this.cached_size;
2080 size_t i = pagenum + 1;
2081 for (; i < this.npages; i++)
2082 if (this.pagetable[i] != B_PAGEPLUS)
2084 this.cached_ptr = p;
2085 this.cached_size = (i - pagenum) * PAGESIZE;
2086 return this.cached_size;
2091 * Used for sorting pools
2093 int opCmp(in Pool other)
2095 if (baseAddr < other.baseAddr)
2098 return cast(int)(baseAddr > other.baseAddr);
2103 /* ============================ SENTINEL =============================== */
2106 const size_t SENTINEL_PRE = cast(size_t) 0xF4F4F4F4F4F4F4F4UL; // 32 or 64 bits
2107 const ubyte SENTINEL_POST = 0xF5; // 8 bits
2108 const uint SENTINEL_EXTRA = 2 * size_t.sizeof + 1;
2111 size_t* sentinel_size(void *p) { return &(cast(size_t *)p)[-2]; }
2112 size_t* sentinel_pre(void *p) { return &(cast(size_t *)p)[-1]; }
2113 ubyte* sentinel_post(void *p) { return &(cast(ubyte *)p)[*sentinel_size(p)]; }
2116 void sentinel_init(void *p, size_t size)
2118 *sentinel_size(p) = size;
2119 *sentinel_pre(p) = SENTINEL_PRE;
2120 *sentinel_post(p) = SENTINEL_POST;
2124 void sentinel_Invariant(void *p)
2126 if (*sentinel_pre(p) != SENTINEL_PRE ||
2127 *sentinel_post(p) != SENTINEL_POST)
2132 void *sentinel_add(void *p)
2134 return p + 2 * size_t.sizeof;
2138 void *sentinel_sub(void *p)
2140 return p - 2 * size_t.sizeof;
2145 /* ============================ C Public Interface ======================== */
2148 private int _termCleanupLevel=1;
2152 /// sets the cleanup level done by gc
2155 /// 2: fullCollect ignoring stack roots (might crash daemonThreads)
2156 /// result !=0 if the value was invalid
2157 int gc_setTermCleanupLevel(int cLevel)
2159 if (cLevel<0 || cLevel>2) return cLevel;
2160 _termCleanupLevel=cLevel;
2164 /// returns the cleanup level done by gc
2165 int gc_getTermCleanupLevel()
2167 return _termCleanupLevel;
2172 scope (exit) assert (Invariant());
2173 gc = cast(GC*) cstdlib.calloc(1, GC.sizeof);
2176 version (DigitalMars) version(OSX) {
2177 _d_osx_image_init();
2179 // NOTE: The GC must initialize the thread library
2180 // before its first collection.
2186 assert (Invariant());
2187 if (_termCleanupLevel<1) {
2189 } else if (_termCleanupLevel==2){
2190 // a more complete cleanup
2191 // NOTE: There may be daemons threads still running when this routine is
2192 // called. If so, cleaning memory out from under then is a good
2193 // way to make them crash horribly.
2194 // Often this probably doesn't matter much since the app is
2195 // supposed to be shutting down anyway, but for example tests might
2196 // crash (and be considerd failed even if the test was ok).
2197 // thus this is not the default and should be enabled by
2198 // I'm disabling cleanup for now until I can think about it some
2201 // not really a 'collect all' -- still scans static data area, roots,
2203 return locked!(void, () {
2209 // default (safe) clenup
2210 return locked!(void, () {
2218 return locked!(void, () {
2219 assert (Invariant()); scope (exit) assert (Invariant());
2220 assert (gc.disabled > 0);
2227 return locked!(void, () {
2228 assert (Invariant()); scope (exit) assert (Invariant());
2235 return locked!(void, () {
2236 assert (Invariant()); scope (exit) assert (Invariant());
2244 return locked!(void, () {
2245 assert (Invariant()); scope (exit) assert (Invariant());
2250 uint gc_getAttr(void* p)
2254 return locked!(uint, () {
2255 assert (Invariant()); scope (exit) assert (Invariant());
2256 Pool* pool = findPool(p);
2259 auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
2260 return getAttr(pool, bit_i);
2264 uint gc_setAttr(void* p, uint attrs)
2268 return locked!(uint, () {
2269 assert (Invariant()); scope (exit) assert (Invariant());
2270 Pool* pool = findPool(p);
2273 auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
2274 uint old_attrs = getAttr(pool, bit_i);
2275 setAttr(pool, bit_i, attrs);
2280 uint gc_clrAttr(void* p, uint attrs)
2284 return locked!(uint, () {
2285 assert (Invariant()); scope (exit) assert (Invariant());
2286 Pool* pool = findPool(p);
2289 auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
2290 uint old_attrs = getAttr(pool, bit_i);
2291 clrAttr(pool, bit_i, attrs);
2296 void* gc_malloc(size_t size, uint attrs = 0,
2297 PointerMap ptrmap = PointerMap.init)
2301 return locked!(void*, () {
2302 assert (Invariant()); scope (exit) assert (Invariant());
2303 return malloc(size, attrs, ptrmap.bits.ptr);
2307 void* gc_calloc(size_t size, uint attrs = 0,
2308 PointerMap ptrmap = PointerMap.init)
2312 return locked!(void*, () {
2313 assert (Invariant()); scope (exit) assert (Invariant());
2314 return calloc(size, attrs, ptrmap.bits.ptr);
2318 void* gc_realloc(void* p, size_t size, uint attrs = 0,
2319 PointerMap ptrmap = PointerMap.init)
2321 return locked!(void*, () {
2322 assert (Invariant()); scope (exit) assert (Invariant());
2323 return realloc(p, size, attrs, ptrmap.bits.ptr);
2327 size_t gc_extend(void* p, size_t min_size, size_t max_size)
2329 return locked!(size_t, () {
2330 assert (Invariant()); scope (exit) assert (Invariant());
2331 return extend(p, min_size, max_size);
2335 size_t gc_reserve(size_t size)
2339 return locked!(size_t, () {
2340 assert (Invariant()); scope (exit) assert (Invariant());
2341 return reserve(size);
2345 void gc_free(void* p)
2349 return locked!(void, () {
2350 assert (Invariant()); scope (exit) assert (Invariant());
2355 void* gc_addrOf(void* p)
2359 return locked!(void*, () {
2360 assert (Invariant()); scope (exit) assert (Invariant());
2361 Pool* pool = findPool(p);
2364 return pool.findBase(p);
2368 size_t gc_sizeOf(void* p)
2372 return locked!(size_t, () {
2373 assert (Invariant()); scope (exit) assert (Invariant());
2378 BlkInfo gc_query(void* p)
2381 return BlkInfo.init;
2382 return locked!(BlkInfo, () {
2383 assert (Invariant()); scope (exit) assert (Invariant());
2388 // NOTE: This routine is experimental. The stats or function name may change
2389 // before it is made officially available.
2392 return locked!(GCStats, () {
2393 assert (Invariant()); scope (exit) assert (Invariant());
2398 void gc_addRoot(void* p)
2402 return locked!(void, () {
2403 assert (Invariant()); scope (exit) assert (Invariant());
2404 if (gc.roots.append(p) is null)
2405 onOutOfMemoryError();
2409 void gc_addRange(void* p, size_t size)
2411 if (p is null || size == 0)
2413 return locked!(void, () {
2414 assert (Invariant()); scope (exit) assert (Invariant());
2415 if (gc.ranges.append(Range(p, p + size)) is null)
2416 onOutOfMemoryError();
2420 void gc_removeRoot(void* p)
2424 return locked!(void, () {
2425 assert (Invariant()); scope (exit) assert (Invariant());
2426 bool r = gc.roots.remove(p);
2431 void gc_removeRange(void* p)
2435 return locked!(void, () {
2436 assert (Invariant()); scope (exit) assert (Invariant());
2437 bool r = gc.ranges.remove(Range(p, null));
2442 void* gc_weakpointerCreate(Object r)
2444 // weakpointers do their own locking
2445 return weakpointerCreate(r);
2448 void gc_weakpointerDestroy(void* wp)
2450 // weakpointers do their own locking
2451 weakpointerDestroy(wp);
2454 Object gc_weakpointerGet(void* wp)
2456 // weakpointers do their own locking
2457 return weakpointerGet(wp);
2461 // vim: set et sw=4 sts=4 :