]> git.llucax.com Git - software/dgc/cdgc.git/blob - rt/gc/cdgc/gc.d
Cache B_FREE pages also when marking
[software/dgc/cdgc.git] / rt / gc / cdgc / gc.d
1 /**
2  * This module contains the garbage collector implementation.
3  *
4  * Copyright: Copyright (C) 2001-2007 Digital Mars, www.digitalmars.com.
5  *            All rights reserved.
6  * License:
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.
10  *
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
14  *  restrictions:
15  *
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
23  *     distribution.
24  * Authors:   Walter Bright, David Friedman, Sean Kelly
25  */
26
27 module rt.gc.cdgc.gc;
28
29 // D Programming Language Garbage Collector implementation
30
31 /************** Debugging ***************************/
32
33 //debug = COLLECT_PRINTF;       // turn on printf's
34 //debug = PTRCHECK;             // more pointer checking
35 //debug = PTRCHECK2;            // thorough but slow pointer checking
36
37 /*************** Configuration *********************/
38
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
42
43 /***************************************************/
44
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;
50
51 import cstdlib = tango.stdc.stdlib;
52 import cstring = tango.stdc.string;
53
54 /*
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.
58  */
59 void memset(void* dst, int c, size_t n)
60 {
61     // This number (32) has been determined empirically
62     if (n > 32) {
63         cstring.memset(dst, c, n);
64         return;
65     }
66     auto p = cast(ubyte*)(dst);
67     while (n-- > 0)
68         *p++ = c;
69 }
70
71 version (GNU)
72 {
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
76     //      be found.
77     static import gcc.builtins; // for __builtin_unwind_int
78 }
79
80 struct BlkInfo
81 {
82     void*  base;
83     size_t size;
84     uint   attr;
85 }
86
87 package enum BlkAttr : uint
88 {
89     FINALIZE = 0b0000_0001,
90     NO_SCAN  = 0b0000_0010,
91     NO_MOVE  = 0b0000_0100,
92     ALL_BITS = 0b1111_1111
93 }
94
95 package bool has_pointermap(uint attrs)
96 {
97     return !opts.options.conservative && !(attrs & BlkAttr.NO_SCAN);
98 }
99
100 private
101 {
102     alias void delegate(Object) DEvent;
103     alias void delegate( void*, void* ) scanFn;
104     enum { OPFAIL = ~cast(size_t)0 }
105
106     extern (C)
107     {
108         version (DigitalMars) version(OSX)
109             oid _d_osx_image_init();
110
111         void* rt_stackBottom();
112         void* rt_stackTop();
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 );
117
118         void thread_init();
119         bool thread_needLock();
120         void thread_suspendAll();
121         void thread_resumeAll();
122         void thread_scanAll( scanFn fn, void* curStackTop = null );
123
124         void onOutOfMemoryError();
125     }
126 }
127
128
129 enum
130 {
131     PAGESIZE =    4096,
132     POOLSIZE =   (4096*256),
133 }
134
135
136 enum
137 {
138     B_16,
139     B_32,
140     B_64,
141     B_128,
142     B_256,
143     B_512,
144     B_1024,
145     B_2048,
146     B_PAGE,             // start of large alloc
147     B_PAGEPLUS,         // continuation of large alloc
148     B_FREE,             // free page
149     B_MAX
150 }
151
152
153 alias ubyte Bins;
154
155
156 struct List
157 {
158     List* next;
159     Pool* pool;
160 }
161
162
163 struct Range
164 {
165     void *pbot;
166     void *ptop;
167     int opCmp(in Range other)
168     {
169         if (pbot < other.pbot)
170             return -1;
171         else
172         return cast(int)(pbot > other.pbot);
173     }
174 }
175
176
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) ];
180
181
182 /* ============================ GC =============================== */
183
184
185 class GCLock {} // just a dummy so we can get a global lock
186
187
188 struct GC
189 {
190     // global lock
191     ClassInfo lock;
192
193     void* p_cache;
194     size_t size_cache;
195
196     // !=0 means don't scan stack
197     uint no_stack;
198     bool any_changes;
199     void* stack_bottom;
200     uint inited;
201     /// Turn off collections if > 0
202     int disabled;
203
204     /// min(pool.baseAddr)
205     byte *min_addr;
206     /// max(pool.topAddr)
207     byte *max_addr;
208
209     /// Free list for each size
210     List*[B_MAX] free_list;
211
212     dynarray.DynArray!(void*) roots;
213     dynarray.DynArray!(Range) ranges;
214     dynarray.DynArray!(Pool*) pools;
215
216     Stats stats;
217 }
218
219 // call locked if necessary
220 private T locked(T, alias Code)()
221 {
222     if (thread_needLock())
223         synchronized (gc.lock) return Code();
224     else
225        return Code();
226 }
227
228 private GC* gc;
229
230 bool Invariant()
231 {
232     assert (gc !is null);
233     if (gc.inited) {
234         for (size_t i = 0; i < gc.pools.length; i++) {
235             Pool* pool = gc.pools[i];
236             pool.Invariant();
237             if (i == 0)
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);
243         }
244
245         gc.roots.Invariant();
246         gc.ranges.Invariant();
247
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);
252         }
253
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);
260             }
261         }
262     }
263     return true;
264 }
265
266
267 /**
268  * Find Pool that pointer is in.
269  * Return null if not in a Pool.
270  * Assume pools is sorted.
271  */
272 Pool* findPool(void* p)
273 {
274     if (p < gc.min_addr || p >= gc.max_addr)
275         return null;
276     if (gc.pools.length == 0)
277         return null;
278     if (gc.pools.length == 1)
279         return gc.pools[0];
280     /// The pooltable[] is sorted by address, so do a binary search
281     size_t low = 0;
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)
287             high = mid - 1;
288         else if (p >= pool.topAddr)
289             low = mid + 1;
290         else
291             return pool;
292     }
293     // Not found
294     return null;
295 }
296
297
298 /**
299  * Determine the base address of the block containing p.  If p is not a gc
300  * allocated pointer, return null.
301  */
302 BlkInfo getInfo(void* p)
303 {
304     assert (p !is null);
305     Pool* pool = findPool(p);
306     if (pool is null)
307         return BlkInfo.init;
308     BlkInfo info;
309     info.base = pool.findBase(p);
310     info.size = pool.findSize(info.base);
311     info.attr = getAttr(pool, cast(size_t)(info.base - pool.baseAddr) / 16u);
312     if (has_pointermap(info.attr)) {
313         info.size -= size_t.sizeof; // PointerMap bitmask
314         // Points to the PointerMap bitmask pointer, not user data
315         if (p >= (info.base + info.size)) {
316             return BlkInfo.init;
317         }
318     }
319     if (opts.options.sentinel) {
320         info.base = sentinel_add(info.base);
321         // points to sentinel data, not user data
322         if (p < info.base || p >= sentinel_post(info.base))
323             return BlkInfo.init;
324         info.size -= SENTINEL_EXTRA;
325     }
326     return info;
327 }
328
329
330 /**
331  * Compute bin for size.
332  */
333 Bins findBin(size_t size)
334 {
335     Bins bin;
336     if (size <= 256)
337     {
338         if (size <= 64)
339         {
340             if (size <= 16)
341                 bin = B_16;
342             else if (size <= 32)
343                 bin = B_32;
344             else
345                 bin = B_64;
346         }
347         else
348         {
349             if (size <= 128)
350                 bin = B_128;
351             else
352                 bin = B_256;
353         }
354     }
355     else
356     {
357         if (size <= 1024)
358         {
359             if (size <= 512)
360                 bin = B_512;
361             else
362                 bin = B_1024;
363         }
364         else
365         {
366             if (size <= 2048)
367                 bin = B_2048;
368             else
369                 bin = B_PAGE;
370         }
371     }
372     return bin;
373 }
374
375
376 /**
377  * Allocate a new pool of at least size bytes.
378  * Sort it into pools.
379  * Mark all memory in the pool as B_FREE.
380  * Return the actual number of bytes reserved or 0 on error.
381  */
382 size_t reserve(size_t size)
383 {
384     assert(size != 0);
385     size_t npages = (size + PAGESIZE - 1) / PAGESIZE;
386     Pool*  pool = newPool(npages);
387
388     if (!pool)
389         return 0;
390     return pool.npages * PAGESIZE;
391 }
392
393
394 /**
395  * Minimizes physical memory usage by returning free pools to the OS.
396  */
397 void minimize()
398 {
399     size_t n;
400     size_t pn;
401     Pool* pool;
402
403     for (n = 0; n < gc.pools.length; n++)
404     {
405         pool = gc.pools[n];
406         for (pn = 0; pn < pool.npages; pn++)
407         {
408             if (cast(Bins)pool.pagetable[pn] != B_FREE)
409                 break;
410         }
411         if (pn < pool.npages)
412             continue;
413         pool.Dtor();
414         cstdlib.free(pool);
415         gc.pools.remove_at(n);
416         n--;
417     }
418     gc.min_addr = gc.pools[0].baseAddr;
419     gc.max_addr = gc.pools[gc.pools.length - 1].topAddr;
420 }
421
422
423 /**
424  * Allocate a chunk of memory that is larger than a page.
425  * Return null if out of memory.
426  */
427 void* bigAlloc(size_t size, out Pool* pool)
428 {
429     size_t npages;
430     size_t n;
431     size_t pn;
432     size_t freedpages;
433     void*  p;
434     int    state;
435
436     npages = (size + PAGESIZE - 1) / PAGESIZE;
437
438     for (state = 0; ; )
439     {
440         // This code could use some refinement when repeatedly
441         // allocating very large arrays.
442
443         for (n = 0; n < gc.pools.length; n++)
444         {
445             pool = gc.pools[n];
446             pn = pool.allocPages(npages);
447             if (pn != OPFAIL)
448                 goto L1;
449         }
450
451         // Failed
452         switch (state)
453         {
454         case 0:
455             if (gc.disabled)
456             {
457                 state = 1;
458                 continue;
459             }
460             // Try collecting
461             freedpages = fullcollectshell();
462             if (freedpages >= gc.pools.length * ((POOLSIZE / PAGESIZE) / 4))
463             {
464                 state = 1;
465                 continue;
466             }
467             // Release empty pools to prevent bloat
468             minimize();
469             // Allocate new pool
470             pool = newPool(npages);
471             if (!pool)
472             {
473                 state = 2;
474                 continue;
475             }
476             pn = pool.allocPages(npages);
477             assert(pn != OPFAIL);
478             goto L1;
479         case 1:
480             // Release empty pools to prevent bloat
481             minimize();
482             // Allocate new pool
483             pool = newPool(npages);
484             if (!pool)
485                 goto Lnomemory;
486             pn = pool.allocPages(npages);
487             assert(pn != OPFAIL);
488             goto L1;
489         case 2:
490             goto Lnomemory;
491         default:
492             assert(false);
493         }
494     }
495
496   L1:
497     pool.pagetable[pn] = B_PAGE;
498     if (npages > 1)
499         memset(&pool.pagetable[pn + 1], B_PAGEPLUS, npages - 1);
500     p = pool.baseAddr + pn * PAGESIZE;
501     memset(cast(char *)p + size, 0, npages * PAGESIZE - size);
502     if (opts.options.mem_stomp)
503         memset(p, 0xF1, size);
504     return p;
505
506   Lnomemory:
507     return null; // let mallocNoSync handle the error
508 }
509
510
511 /**
512  * Allocate a new pool with at least npages in it.
513  * Sort it into pools.
514  * Return null if failed.
515  */
516 Pool *newPool(size_t npages)
517 {
518     // Minimum of POOLSIZE
519     if (npages < POOLSIZE/PAGESIZE)
520         npages = POOLSIZE/PAGESIZE;
521     else if (npages > POOLSIZE/PAGESIZE)
522     {
523         // Give us 150% of requested size, so there's room to extend
524         auto n = npages + (npages >> 1);
525         if (n < size_t.max/PAGESIZE)
526             npages = n;
527     }
528
529     // Allocate successively larger pools up to 8 megs
530     if (gc.pools.length)
531     {
532         size_t n = gc.pools.length;
533         if (n > 8)
534             n = 8;                  // cap pool size at 8 megs
535         n *= (POOLSIZE / PAGESIZE);
536         if (npages < n)
537             npages = n;
538     }
539
540     auto pool = cast(Pool*) cstdlib.calloc(1, Pool.sizeof);
541     if (pool is null)
542         return null;
543     pool.initialize(npages);
544     if (!pool.baseAddr)
545     {
546         pool.Dtor();
547         return null;
548     }
549
550     auto inserted_pool = *gc.pools.insert_sorted!("*a < *b")(pool);
551     if (inserted_pool is null) {
552         pool.Dtor();
553         return null;
554     }
555     assert (inserted_pool is pool);
556     gc.min_addr = gc.pools[0].baseAddr;
557     gc.max_addr = gc.pools[gc.pools.length - 1].topAddr;
558     return pool;
559 }
560
561
562 /**
563  * Allocate a page of bin's.
564  * Returns:
565  *  0       failed
566  */
567 int allocPage(Bins bin)
568 {
569     Pool*  pool;
570     size_t n;
571     size_t pn;
572     byte*  p;
573     byte*  ptop;
574
575     for (n = 0; n < gc.pools.length; n++)
576     {
577         pool = gc.pools[n];
578         pn = pool.allocPages(1);
579         if (pn != OPFAIL)
580             goto L1;
581     }
582     return 0;               // failed
583
584   L1:
585     pool.pagetable[pn] = cast(ubyte)bin;
586
587     // Convert page to free list
588     size_t size = binsize[bin];
589     auto list_head = &gc.free_list[bin];
590
591     p = pool.baseAddr + pn * PAGESIZE;
592     ptop = p + PAGESIZE;
593     for (; p < ptop; p += size)
594     {
595         List* l = cast(List *) p;
596         l.next = *list_head;
597         l.pool = pool;
598         *list_head = l;
599     }
600     return 1;
601 }
602
603
604 /**
605  * Search a range of memory values and mark any pointers into the GC pool using
606  * type information (bitmask of pointer locations).
607  */
608 void mark_range(void *pbot, void *ptop, size_t* pm_bitmask)
609 {
610     // TODO: make our own assert because assert uses the GC
611     assert (pbot <= ptop);
612
613     const BITS_PER_WORD = size_t.sizeof * 8;
614
615     void **p1 = cast(void **)pbot;
616     void **p2 = cast(void **)ptop;
617     size_t pcache = 0;
618     uint changes = 0;
619
620     size_t type_size = pm_bitmask[0];
621     size_t* pm_bits = pm_bitmask + 1;
622     bool has_type_info = type_size != 1 || pm_bits[0] != 1 || pm_bits[1] != 0;
623
624     //printf("marking range: %p -> %p\n", pbot, ptop);
625     for (; p1 + type_size <= p2; p1 += type_size) {
626         for (size_t n = 0; n < type_size; n++) {
627             // scan bit set for this word
628             if (has_type_info &&
629                     !(pm_bits[n / BITS_PER_WORD] & (1 << (n % BITS_PER_WORD))))
630                 continue;
631
632             void* p = *(p1 + n);
633
634             if (p < gc.min_addr || p >= gc.max_addr)
635                 continue;
636
637             if ((cast(size_t)p & ~(PAGESIZE-1)) == pcache)
638                 continue;
639
640             Pool* pool = findPool(p);
641             if (pool)
642             {
643                 size_t offset = cast(size_t)(p - pool.baseAddr);
644                 size_t bit_i;
645                 size_t pn = offset / PAGESIZE;
646                 Bins   bin = cast(Bins)pool.pagetable[pn];
647
648                 // Cache B_PAGE, B_PAGEPLUS and B_FREE lookups
649                 if (bin >= B_PAGE)
650                     pcache = cast(size_t)p & ~(PAGESIZE-1);
651
652                 // Adjust bit to be at start of allocated memory block
653                 if (bin <= B_PAGE)
654                     bit_i = (offset & notbinsize[bin]) >> 4;
655                 else if (bin == B_PAGEPLUS)
656                 {
657                     do
658                     {
659                         --pn;
660                     }
661                     while (cast(Bins)pool.pagetable[pn] == B_PAGEPLUS);
662                     bit_i = pn * (PAGESIZE / 16);
663                 }
664                 else // Don't mark bits in B_FREE pages
665                     continue;
666
667                 if (!pool.mark.test(bit_i))
668                 {
669                     pool.mark.set(bit_i);
670                     if (!pool.noscan.test(bit_i))
671                     {
672                         pool.scan.set(bit_i);
673                         changes = 1;
674                     }
675                 }
676             }
677         }
678     }
679     if (changes)
680         gc.any_changes = true;
681 }
682
683 /**
684  * Return number of full pages free'd.
685  */
686 size_t fullcollectshell()
687 {
688     gc.stats.collection_started();
689     scope (exit)
690         gc.stats.collection_finished();
691
692     // The purpose of the 'shell' is to ensure all the registers
693     // get put on the stack so they'll be scanned
694     void *sp;
695     size_t result;
696     version (GNU)
697     {
698         gcc.builtins.__builtin_unwind_init();
699         sp = & sp;
700     }
701     else version(LDC)
702     {
703         version(X86)
704         {
705             uint eax,ecx,edx,ebx,ebp,esi,edi;
706             asm
707             {
708                 mov eax[EBP], EAX      ;
709                 mov ecx[EBP], ECX      ;
710                 mov edx[EBP], EDX      ;
711                 mov ebx[EBP], EBX      ;
712                 mov ebp[EBP], EBP      ;
713                 mov esi[EBP], ESI      ;
714                 mov edi[EBP], EDI      ;
715                 mov  sp[EBP], ESP      ;
716             }
717         }
718         else version (X86_64)
719         {
720             ulong rax,rbx,rcx,rdx,rbp,rsi,rdi,r8,r9,r10,r11,r12,r13,r14,r15;
721             asm
722             {
723                 movq rax[RBP], RAX      ;
724                 movq rbx[RBP], RBX      ;
725                 movq rcx[RBP], RCX      ;
726                 movq rdx[RBP], RDX      ;
727                 movq rbp[RBP], RBP      ;
728                 movq rsi[RBP], RSI      ;
729                 movq rdi[RBP], RDI      ;
730                 movq r8 [RBP], R8       ;
731                 movq r9 [RBP], R9       ;
732                 movq r10[RBP], R10      ;
733                 movq r11[RBP], R11      ;
734                 movq r12[RBP], R12      ;
735                 movq r13[RBP], R13      ;
736                 movq r14[RBP], R14      ;
737                 movq r15[RBP], R15      ;
738                 movq  sp[RBP], RSP      ;
739             }
740         }
741         else
742         {
743             static assert( false, "Architecture not supported." );
744         }
745     }
746     else
747     {
748     asm
749     {
750         pushad              ;
751         mov sp[EBP],ESP     ;
752     }
753     }
754     result = fullcollect(sp);
755     version (GNU)
756     {
757         // nothing to do
758     }
759     else version(LDC)
760     {
761         // nothing to do
762     }
763     else
764     {
765     asm
766     {
767         popad               ;
768     }
769     }
770     return result;
771 }
772
773
774 /**
775  *
776  */
777 size_t fullcollect(void *stackTop)
778 {
779     debug(COLLECT_PRINTF) printf("Gcx.fullcollect()\n");
780
781     // we always need to stop the world to make threads save the CPU registers
782     // in the stack and prepare themselves for thread_scanAll()
783     thread_suspendAll();
784     gc.stats.world_stopped();
785
786     if (opts.options.fork) {
787         os.pid_t child_pid = os.fork();
788         assert (child_pid != -1); // don't accept errors in non-release mode
789         switch (child_pid) {
790         case -1: // if fork() fails, fallback to stop-the-world
791             opts.options.fork = false;
792             break;
793         case 0: // child process (i.e. the collectors mark phase)
794             mark(stackTop);
795             cstdlib.exit(0);
796             break; // bogus, will never reach here
797         default: // parent process (i.e. the mutator)
798             // start the world again and wait for the mark phase to finish
799             thread_resumeAll();
800             gc.stats.world_started();
801             int status = void;
802             os.pid_t wait_pid = os.waitpid(child_pid, &status, 0);
803             assert (wait_pid == child_pid);
804             return sweep();
805         }
806
807     }
808
809     // if we reach here, we are using the standard stop-the-world collection
810     mark(stackTop);
811     thread_resumeAll();
812     gc.stats.world_started();
813
814     return sweep();
815 }
816
817
818 /**
819  *
820  */
821 void mark(void *stackTop)
822 {
823     debug(COLLECT_PRINTF) printf("\tmark()\n");
824
825     gc.p_cache = null;
826     gc.size_cache = 0;
827
828     gc.any_changes = false;
829     for (size_t n = 0; n < gc.pools.length; n++)
830     {
831         Pool* pool = gc.pools[n];
832         pool.mark.zero();
833         pool.scan.zero();
834         pool.freebits.zero();
835     }
836
837     // Mark each free entry, so it doesn't get scanned
838     for (size_t n = 0; n < B_PAGE; n++)
839     {
840         for (List *list = gc.free_list[n]; list; list = list.next)
841         {
842             Pool* pool = list.pool;
843             auto ptr = cast(byte*) list;
844             assert (pool);
845             assert (pool.baseAddr <= ptr);
846             assert (ptr < pool.topAddr);
847             size_t bit_i = cast(size_t)(ptr - pool.baseAddr) / 16;
848             pool.freebits.set(bit_i);
849         }
850     }
851
852     for (size_t n = 0; n < gc.pools.length; n++)
853     {
854         Pool* pool = gc.pools[n];
855         pool.mark.copy(&pool.freebits);
856     }
857
858     /// Marks a range of memory in conservative mode.
859     void mark_conservative_range(void* pbot, void* ptop)
860     {
861         mark_range(pbot, ptop, PointerMap.init.bits.ptr);
862     }
863
864     rt_scanStaticData(&mark_conservative_range);
865
866     if (!gc.no_stack)
867     {
868         // Scan stacks and registers for each paused thread
869         thread_scanAll(&mark_conservative_range, stackTop);
870     }
871
872     // Scan roots
873     debug(COLLECT_PRINTF) printf("scan roots[]\n");
874     mark_conservative_range(gc.roots.ptr, gc.roots.ptr + gc.roots.length);
875
876     // Scan ranges
877     debug(COLLECT_PRINTF) printf("scan ranges[]\n");
878     for (size_t n = 0; n < gc.ranges.length; n++)
879     {
880         debug(COLLECT_PRINTF) printf("\t%x .. %x\n", gc.ranges[n].pbot, gc.ranges[n].ptop);
881         mark_conservative_range(gc.ranges[n].pbot, gc.ranges[n].ptop);
882     }
883
884     debug(COLLECT_PRINTF) printf("\tscan heap\n");
885     while (gc.any_changes)
886     {
887         gc.any_changes = false;
888         for (size_t n = 0; n < gc.pools.length; n++)
889         {
890             uint *bbase;
891             uint *b;
892             uint *btop;
893
894             Pool* pool = gc.pools[n];
895
896             bbase = pool.scan.base();
897             btop = bbase + pool.scan.nwords;
898             for (b = bbase; b < btop;)
899             {
900                 Bins   bin;
901                 size_t pn;
902                 size_t u;
903                 size_t bitm;
904                 byte*  o;
905
906                 bitm = *b;
907                 if (!bitm)
908                 {
909                     b++;
910                     continue;
911                 }
912                 *b = 0;
913
914                 o = pool.baseAddr + (b - bbase) * 32 * 16;
915                 if (!(bitm & 0xFFFF))
916                 {
917                     bitm >>= 16;
918                     o += 16 * 16;
919                 }
920                 for (; bitm; o += 16, bitm >>= 1)
921                 {
922                     if (!(bitm & 1))
923                         continue;
924
925                     pn = cast(size_t)(o - pool.baseAddr) / PAGESIZE;
926                     bin = cast(Bins)pool.pagetable[pn];
927                     if (bin < B_PAGE) {
928                         if (opts.options.conservative)
929                             mark_conservative_range(o, o + binsize[bin]);
930                         else {
931                             auto end_of_blk = cast(size_t**)(o +
932                                     binsize[bin] - size_t.sizeof);
933                             size_t* pm_bitmask = *end_of_blk;
934                             mark_range(o, end_of_blk, pm_bitmask);
935                         }
936                     }
937                     else if (bin == B_PAGE || bin == B_PAGEPLUS)
938                     {
939                         if (bin == B_PAGEPLUS)
940                         {
941                             while (pool.pagetable[pn - 1] != B_PAGE)
942                                 pn--;
943                         }
944                         u = 1;
945                         while (pn + u < pool.npages &&
946                                 pool.pagetable[pn + u] == B_PAGEPLUS)
947                             u++;
948
949                         size_t blk_size = u * PAGESIZE;
950                         if (opts.options.conservative)
951                             mark_conservative_range(o, o + blk_size);
952                         else {
953                             auto end_of_blk = cast(size_t**)(o + blk_size -
954                                     size_t.sizeof);
955                             size_t* pm_bitmask = *end_of_blk;
956                             mark_range(o, end_of_blk, pm_bitmask);
957                         }
958                     }
959                 }
960             }
961         }
962     }
963 }
964
965
966 /**
967  *
968  */
969 size_t sweep()
970 {
971     // Free up everything not marked
972     debug(COLLECT_PRINTF) printf("\tsweep\n");
973     size_t freedpages = 0;
974     size_t freed = 0;
975     for (size_t n = 0; n < gc.pools.length; n++)
976     {
977         Pool* pool = gc.pools[n];
978         pool.clear_cache();
979         uint*  bbase = pool.mark.base();
980         size_t pn;
981         for (pn = 0; pn < pool.npages; pn++, bbase += PAGESIZE / (32 * 16))
982         {
983             Bins bin = cast(Bins)pool.pagetable[pn];
984
985             if (bin < B_PAGE)
986             {
987                 auto size = binsize[bin];
988                 byte* p = pool.baseAddr + pn * PAGESIZE;
989                 byte* ptop = p + PAGESIZE;
990                 size_t bit_i = pn * (PAGESIZE/16);
991                 size_t bit_stride = size / 16;
992
993 version(none) // BUG: doesn't work because freebits() must also be cleared
994 {
995                 // If free'd entire page
996                 if (bbase[0] == 0 && bbase[1] == 0 && bbase[2] == 0 &&
997                         bbase[3] == 0 && bbase[4] == 0 && bbase[5] == 0 &&
998                         bbase[6] == 0 && bbase[7] == 0)
999                 {
1000                     for (; p < ptop; p += size, bit_i += bit_stride)
1001                     {
1002                         if (pool.finals.nbits && pool.finals.testClear(bit_i)) {
1003                             if (opts.options.sentinel)
1004                                 rt_finalize(sentinel_add(p), false/*gc.no_stack > 0*/);
1005                             else
1006                                 rt_finalize(p, false/*gc.no_stack > 0*/);
1007                         }
1008                         clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1009
1010                         if (opts.options.mem_stomp)
1011                             memset(p, 0xF3, size);
1012                     }
1013                     pool.pagetable[pn] = B_FREE;
1014                     freed += PAGESIZE;
1015                     continue;
1016                 }
1017 }
1018                 for (; p < ptop; p += size, bit_i += bit_stride)
1019                 {
1020                     if (!pool.mark.test(bit_i))
1021                     {
1022                         if (opts.options.sentinel)
1023                             sentinel_Invariant(sentinel_add(p));
1024
1025                         pool.freebits.set(bit_i);
1026                         if (pool.finals.nbits && pool.finals.testClear(bit_i)) {
1027                             if (opts.options.sentinel)
1028                                 rt_finalize(sentinel_add(p), false/*gc.no_stack > 0*/);
1029                             else
1030                                 rt_finalize(p, false/*gc.no_stack > 0*/);
1031                         }
1032                         clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1033
1034                         if (opts.options.mem_stomp)
1035                             memset(p, 0xF3, size);
1036
1037                         freed += size;
1038                     }
1039                 }
1040             }
1041             else if (bin == B_PAGE)
1042             {
1043                 size_t bit_i = pn * (PAGESIZE / 16);
1044                 if (!pool.mark.test(bit_i))
1045                 {
1046                     byte *p = pool.baseAddr + pn * PAGESIZE;
1047                     if (opts.options.sentinel)
1048                         sentinel_Invariant(sentinel_add(p));
1049                     if (pool.finals.nbits && pool.finals.testClear(bit_i)) {
1050                         if (opts.options.sentinel)
1051                             rt_finalize(sentinel_add(p), false/*gc.no_stack > 0*/);
1052                         else
1053                             rt_finalize(p, false/*gc.no_stack > 0*/);
1054                     }
1055                     clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1056
1057                     debug(COLLECT_PRINTF) printf("\tcollecting big %x\n", p);
1058                     pool.pagetable[pn] = B_FREE;
1059                     freedpages++;
1060                     if (opts.options.mem_stomp)
1061                         memset(p, 0xF3, PAGESIZE);
1062                     while (pn + 1 < pool.npages && pool.pagetable[pn + 1] == B_PAGEPLUS)
1063                     {
1064                         pn++;
1065                         pool.pagetable[pn] = B_FREE;
1066                         freedpages++;
1067
1068                         if (opts.options.mem_stomp)
1069                         {
1070                             p += PAGESIZE;
1071                             memset(p, 0xF3, PAGESIZE);
1072                         }
1073                     }
1074                 }
1075             }
1076         }
1077     }
1078
1079     // Zero buckets
1080     gc.free_list[] = null;
1081
1082     // Free complete pages, rebuild free list
1083     debug(COLLECT_PRINTF) printf("\tfree complete pages\n");
1084     size_t recoveredpages = 0;
1085     for (size_t n = 0; n < gc.pools.length; n++)
1086     {
1087         Pool* pool = gc.pools[n];
1088         for (size_t pn = 0; pn < pool.npages; pn++)
1089         {
1090             Bins   bin = cast(Bins)pool.pagetable[pn];
1091             size_t bit_i;
1092             size_t u;
1093
1094             if (bin < B_PAGE)
1095             {
1096                 size_t size = binsize[bin];
1097                 size_t bit_stride = size / 16;
1098                 size_t bit_base = pn * (PAGESIZE / 16);
1099                 size_t bit_top = bit_base + (PAGESIZE / 16);
1100                 byte*  p;
1101
1102                 bit_i = bit_base;
1103                 for (; bit_i < bit_top; bit_i += bit_stride)
1104                 {
1105                     if (!pool.freebits.test(bit_i))
1106                         goto Lnotfree;
1107                 }
1108                 pool.pagetable[pn] = B_FREE;
1109                 recoveredpages++;
1110                 continue;
1111
1112              Lnotfree:
1113                 p = pool.baseAddr + pn * PAGESIZE;
1114                 for (u = 0; u < PAGESIZE; u += size)
1115                 {
1116                     bit_i = bit_base + u / 16;
1117                     if (pool.freebits.test(bit_i))
1118                     {
1119                         assert ((p+u) >= pool.baseAddr);
1120                         assert ((p+u) < pool.topAddr);
1121                         List* list = cast(List*) (p + u);
1122                         // avoid unnecesary writes (it really saves time)
1123                         if (list.next != gc.free_list[bin])
1124                             list.next = gc.free_list[bin];
1125                         if (list.pool != pool)
1126                             list.pool = pool;
1127                         gc.free_list[bin] = list;
1128                     }
1129                 }
1130             }
1131         }
1132     }
1133
1134     debug(COLLECT_PRINTF) printf("recovered pages = %d\n", recoveredpages);
1135     debug(COLLECT_PRINTF) printf("\tfree'd %u bytes, %u pages from %u pools\n", freed, freedpages, gc.pools.length);
1136
1137     return freedpages + recoveredpages;
1138 }
1139
1140
1141 /**
1142  *
1143  */
1144 uint getAttr(Pool* pool, size_t bit_i)
1145 in
1146 {
1147     assert( pool );
1148 }
1149 body
1150 {
1151     uint attrs;
1152
1153     if (pool.finals.nbits &&
1154         pool.finals.test(bit_i))
1155         attrs |= BlkAttr.FINALIZE;
1156     if (pool.noscan.test(bit_i))
1157         attrs |= BlkAttr.NO_SCAN;
1158 //        if (pool.nomove.nbits &&
1159 //            pool.nomove.test(bit_i))
1160 //            attrs |= BlkAttr.NO_MOVE;
1161     return attrs;
1162 }
1163
1164
1165 /**
1166  *
1167  */
1168 void setAttr(Pool* pool, size_t bit_i, uint mask)
1169 in
1170 {
1171     assert( pool );
1172 }
1173 body
1174 {
1175     if (mask & BlkAttr.FINALIZE)
1176     {
1177         if (!pool.finals.nbits)
1178             pool.finals.alloc(pool.mark.nbits);
1179         pool.finals.set(bit_i);
1180     }
1181     if (mask & BlkAttr.NO_SCAN)
1182     {
1183         pool.noscan.set(bit_i);
1184     }
1185 //        if (mask & BlkAttr.NO_MOVE)
1186 //        {
1187 //            if (!pool.nomove.nbits)
1188 //                pool.nomove.alloc(pool.mark.nbits);
1189 //            pool.nomove.set(bit_i);
1190 //        }
1191 }
1192
1193
1194 /**
1195  *
1196  */
1197 void clrAttr(Pool* pool, size_t bit_i, uint mask)
1198 in
1199 {
1200     assert( pool );
1201 }
1202 body
1203 {
1204     if (mask & BlkAttr.FINALIZE && pool.finals.nbits)
1205         pool.finals.clear(bit_i);
1206     if (mask & BlkAttr.NO_SCAN)
1207         pool.noscan.clear(bit_i);
1208 //        if (mask & BlkAttr.NO_MOVE && pool.nomove.nbits)
1209 //            pool.nomove.clear(bit_i);
1210 }
1211
1212
1213
1214 void initialize()
1215 {
1216     int dummy;
1217     gc.stack_bottom = cast(char*)&dummy;
1218     opts.parse(cstdlib.getenv("D_GC_OPTS"));
1219     // If we are going to fork, make sure we have the needed OS support
1220     if (opts.options.fork)
1221         opts.options.fork = os.HAVE_SHARED && os.HAVE_FORK;
1222     gc.lock = GCLock.classinfo;
1223     gc.inited = 1;
1224     setStackBottom(rt_stackBottom());
1225     gc.stats = Stats(gc);
1226 }
1227
1228
1229 //
1230 //
1231 //
1232 private void *malloc(size_t size, uint attrs, size_t* pm_bitmask)
1233 {
1234     assert(size != 0);
1235
1236     gc.stats.malloc_started(size, attrs, pm_bitmask);
1237     scope (exit)
1238         gc.stats.malloc_finished(p);
1239
1240     void *p = null;
1241     Bins bin;
1242
1243     if (opts.options.sentinel)
1244         size += SENTINEL_EXTRA;
1245
1246     bool has_pm = has_pointermap(attrs);
1247     if (has_pm)
1248         size += size_t.sizeof;
1249
1250     // Compute size bin
1251     // Cache previous binsize lookup - Dave Fladebo.
1252     static size_t lastsize = -1;
1253     static Bins lastbin;
1254     if (size == lastsize)
1255         bin = lastbin;
1256     else
1257     {
1258         bin = findBin(size);
1259         lastsize = size;
1260         lastbin = bin;
1261     }
1262
1263     Pool* pool = void;
1264     size_t capacity = void; // to figure out where to store the bitmask
1265     if (bin < B_PAGE)
1266     {
1267         p = gc.free_list[bin];
1268         if (p is null)
1269         {
1270             if (!allocPage(bin) && !gc.disabled)   // try to find a new page
1271             {
1272                 if (!thread_needLock())
1273                 {
1274                     /* Then we haven't locked it yet. Be sure
1275                      * and gc.lock for a collection, since a finalizer
1276                      * may start a new thread.
1277                      */
1278                     synchronized (gc.lock)
1279                     {
1280                         fullcollectshell();
1281                     }
1282                 }
1283                 else if (!fullcollectshell())       // collect to find a new page
1284                 {
1285                     //newPool(1);
1286                 }
1287             }
1288             if (!gc.free_list[bin] && !allocPage(bin))
1289             {
1290                 newPool(1);         // allocate new pool to find a new page
1291                 // TODO: hint allocPage() to use the pool we just created
1292                 int result = allocPage(bin);
1293                 if (!result)
1294                     onOutOfMemoryError();
1295             }
1296             p = gc.free_list[bin];
1297         }
1298         capacity = binsize[bin];
1299
1300         // Return next item from free list
1301         List* list = cast(List*) p;
1302         assert ((cast(byte*)list) >= list.pool.baseAddr);
1303         assert ((cast(byte*)list) < list.pool.topAddr);
1304         gc.free_list[bin] = list.next;
1305         pool = list.pool;
1306         if (!(attrs & BlkAttr.NO_SCAN))
1307             memset(p + size, 0, capacity - size);
1308         if (opts.options.mem_stomp)
1309             memset(p, 0xF0, size);
1310     }
1311     else
1312     {
1313         p = bigAlloc(size, pool);
1314         if (!p)
1315             onOutOfMemoryError();
1316         assert (pool !is null);
1317         // Round the size up to the number of pages needed to store it
1318         size_t npages = (size + PAGESIZE - 1) / PAGESIZE;
1319         capacity = npages * PAGESIZE;
1320     }
1321
1322     // Store the bit mask AFTER SENTINEL_POST
1323     // TODO: store it BEFORE, so the bitmask is protected too
1324     if (has_pm) {
1325         auto end_of_blk = cast(size_t**)(p + capacity - size_t.sizeof);
1326         *end_of_blk = pm_bitmask;
1327         size -= size_t.sizeof;
1328     }
1329
1330     if (opts.options.sentinel) {
1331         size -= SENTINEL_EXTRA;
1332         p = sentinel_add(p);
1333         sentinel_init(p, size);
1334     }
1335
1336     if (attrs)
1337         setAttr(pool, cast(size_t)(p - pool.baseAddr) / 16, attrs);
1338
1339     return p;
1340 }
1341
1342
1343 //
1344 //
1345 //
1346 private void *calloc(size_t size, uint attrs, size_t* pm_bitmask)
1347 {
1348     assert(size != 0);
1349
1350     void *p = malloc(size, attrs, pm_bitmask);
1351     memset(p, 0, size);
1352     return p;
1353 }
1354
1355
1356 //
1357 //
1358 //
1359 private void *realloc(void *p, size_t size, uint attrs,
1360         size_t* pm_bitmask)
1361 {
1362     if (!size)
1363     {
1364         if (p)
1365         {
1366             free(p);
1367             p = null;
1368         }
1369     }
1370     else if (!p)
1371     {
1372         p = malloc(size, attrs, pm_bitmask);
1373     }
1374     else
1375     {
1376         Pool* pool = findPool(p);
1377         if (pool is null)
1378             return null;
1379
1380         // Set or retrieve attributes as appropriate
1381         auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
1382         if (attrs) {
1383             clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1384             setAttr(pool, bit_i, attrs);
1385         }
1386         else
1387             attrs = getAttr(pool, bit_i);
1388
1389         void* blk_base_addr = pool.findBase(p);
1390         size_t blk_size = pool.findSize(p);
1391         bool has_pm = has_pointermap(attrs);
1392         size_t pm_bitmask_size = 0;
1393         if (has_pm) {
1394             pm_bitmask_size = size_t.sizeof;
1395             // Retrieve pointer map bit mask if appropriate
1396             if (pm_bitmask is null) {
1397                 auto end_of_blk = cast(size_t**)(blk_base_addr +
1398                         blk_size - size_t.sizeof);
1399                 pm_bitmask = *end_of_blk;
1400             }
1401         }
1402
1403         if (opts.options.sentinel)
1404         {
1405             sentinel_Invariant(p);
1406             size_t sentinel_stored_size = *sentinel_size(p);
1407             if (sentinel_stored_size != size)
1408             {
1409                 void* p2 = malloc(size, attrs, pm_bitmask);
1410                 if (sentinel_stored_size < size)
1411                     size = sentinel_stored_size;
1412                 cstring.memcpy(p2, p, size);
1413                 p = p2;
1414             }
1415         }
1416         else
1417         {
1418             size += pm_bitmask_size;
1419             if (blk_size >= PAGESIZE && size >= PAGESIZE)
1420             {
1421                 auto psz = blk_size / PAGESIZE;
1422                 auto newsz = (size + PAGESIZE - 1) / PAGESIZE;
1423                 if (newsz == psz)
1424                     return p;
1425
1426                 auto pagenum = (p - pool.baseAddr) / PAGESIZE;
1427
1428                 if (newsz < psz)
1429                 {
1430                     // Shrink in place
1431                     if (opts.options.mem_stomp)
1432                         memset(p + size - pm_bitmask_size, 0xF2,
1433                                 blk_size - size - pm_bitmask_size);
1434                     pool.freePages(pagenum + newsz, psz - newsz);
1435                     if (has_pm) {
1436                         auto end_of_blk = cast(size_t**)(
1437                                 blk_base_addr + (PAGESIZE * newsz) -
1438                                 pm_bitmask_size);
1439                         *end_of_blk = pm_bitmask;
1440                     }
1441                     return p;
1442                 }
1443                 else if (pagenum + newsz <= pool.npages)
1444                 {
1445                     // Attempt to expand in place
1446                     for (size_t i = pagenum + psz; 1;)
1447                     {
1448                         if (i == pagenum + newsz)
1449                         {
1450                             if (opts.options.mem_stomp)
1451                                 memset(p + blk_size - pm_bitmask_size,
1452                                         0xF0, size - blk_size
1453                                         - pm_bitmask_size);
1454                             memset(pool.pagetable + pagenum +
1455                                     psz, B_PAGEPLUS, newsz - psz);
1456                             if (has_pm) {
1457                                 auto end_of_blk = cast(size_t**)(
1458                                         blk_base_addr +
1459                                         (PAGESIZE * newsz) -
1460                                         pm_bitmask_size);
1461                                 *end_of_blk = pm_bitmask;
1462                             }
1463                             return p;
1464                         }
1465                         if (i == pool.npages)
1466                         {
1467                             break;
1468                         }
1469                         if (pool.pagetable[i] != B_FREE)
1470                             break;
1471                         i++;
1472                     }
1473                 }
1474             }
1475             // if new size is bigger or less than half
1476             if (blk_size < size || blk_size > size * 2)
1477             {
1478                 size -= pm_bitmask_size;
1479                 blk_size -= pm_bitmask_size;
1480                 void* p2 = malloc(size, attrs, pm_bitmask);
1481                 if (blk_size < size)
1482                     size = blk_size;
1483                 cstring.memcpy(p2, p, size);
1484                 p = p2;
1485             }
1486         }
1487     }
1488     return p;
1489 }
1490
1491
1492 /**
1493  * Attempt to in-place enlarge the memory block pointed to by p by at least
1494  * min_size beyond its current capacity, up to a maximum of max_size.  This
1495  * does not attempt to move the memory block (like realloc() does).
1496  *
1497  * Returns:
1498  *  0 if could not extend p,
1499  *  total size of entire memory block if successful.
1500  */
1501 private size_t extend(void* p, size_t minsize, size_t maxsize)
1502 in
1503 {
1504     assert( minsize <= maxsize );
1505 }
1506 body
1507 {
1508     if (opts.options.sentinel)
1509         return 0;
1510
1511     Pool* pool = findPool(p);
1512     if (pool is null)
1513         return 0;
1514
1515     // Retrieve attributes
1516     auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
1517     uint attrs = getAttr(pool, bit_i);
1518
1519     void* blk_base_addr = pool.findBase(p);
1520     size_t blk_size = pool.findSize(p);
1521     bool has_pm = has_pointermap(attrs);
1522     size_t* pm_bitmask = null;
1523     size_t pm_bitmask_size = 0;
1524     if (has_pm) {
1525         pm_bitmask_size = size_t.sizeof;
1526         // Retrieve pointer map bit mask
1527         auto end_of_blk = cast(size_t**)(blk_base_addr +
1528                 blk_size - size_t.sizeof);
1529         pm_bitmask = *end_of_blk;
1530
1531         minsize += size_t.sizeof;
1532         maxsize += size_t.sizeof;
1533     }
1534
1535     if (blk_size < PAGESIZE)
1536         return 0; // cannot extend buckets
1537
1538     auto psz = blk_size / PAGESIZE;
1539     auto minsz = (minsize + PAGESIZE - 1) / PAGESIZE;
1540     auto maxsz = (maxsize + PAGESIZE - 1) / PAGESIZE;
1541
1542     auto pagenum = (p - pool.baseAddr) / PAGESIZE;
1543
1544     size_t sz;
1545     for (sz = 0; sz < maxsz; sz++)
1546     {
1547         auto i = pagenum + psz + sz;
1548         if (i == pool.npages)
1549             break;
1550         if (pool.pagetable[i] != B_FREE)
1551         {
1552             if (sz < minsz)
1553                 return 0;
1554             break;
1555         }
1556     }
1557     if (sz < minsz)
1558         return 0;
1559
1560     size_t new_size = (psz + sz) * PAGESIZE;
1561
1562     if (opts.options.mem_stomp)
1563         memset(p + blk_size - pm_bitmask_size, 0xF0,
1564                 new_size - blk_size - pm_bitmask_size);
1565     memset(pool.pagetable + pagenum + psz, B_PAGEPLUS, sz);
1566     gc.p_cache = null;
1567     gc.size_cache = 0;
1568
1569     if (has_pm) {
1570         new_size -= size_t.sizeof;
1571         auto end_of_blk = cast(size_t**)(blk_base_addr + new_size);
1572         *end_of_blk = pm_bitmask;
1573     }
1574     return new_size;
1575 }
1576
1577
1578 //
1579 //
1580 //
1581 private void free(void *p)
1582 {
1583     assert (p);
1584
1585     Pool*  pool;
1586     size_t pagenum;
1587     Bins   bin;
1588     size_t bit_i;
1589
1590     // Find which page it is in
1591     pool = findPool(p);
1592     if (!pool)                              // if not one of ours
1593         return;                             // ignore
1594     if (opts.options.sentinel) {
1595         sentinel_Invariant(p);
1596         p = sentinel_sub(p);
1597     }
1598     pagenum = cast(size_t)(p - pool.baseAddr) / PAGESIZE;
1599     bit_i = cast(size_t)(p - pool.baseAddr) / 16;
1600     clrAttr(pool, bit_i, BlkAttr.ALL_BITS);
1601
1602     bin = cast(Bins)pool.pagetable[pagenum];
1603     if (bin == B_PAGE)              // if large alloc
1604     {
1605         // Free pages
1606         size_t npages = 1;
1607         size_t n = pagenum;
1608         while (++n < pool.npages && pool.pagetable[n] == B_PAGEPLUS)
1609             npages++;
1610         if (opts.options.mem_stomp)
1611             memset(p, 0xF2, npages * PAGESIZE);
1612         pool.freePages(pagenum, npages);
1613     }
1614     else
1615     {
1616         // Add to free list
1617         List* list = cast(List*) p;
1618
1619         if (opts.options.mem_stomp)
1620             memset(p, 0xF2, binsize[bin]);
1621
1622         list.next = gc.free_list[bin];
1623         list.pool = pool;
1624         gc.free_list[bin] = list;
1625     }
1626 }
1627
1628
1629 /**
1630  * Determine the allocated size of pointer p.  If p is an interior pointer
1631  * or not a gc allocated pointer, return 0.
1632  */
1633 private size_t sizeOf(void *p)
1634 {
1635     assert (p);
1636
1637     if (opts.options.sentinel)
1638         p = sentinel_sub(p);
1639
1640     Pool* pool = findPool(p);
1641     if (pool is null)
1642         return 0;
1643
1644     auto biti = cast(size_t)(p - pool.baseAddr) / 16;
1645     uint attrs = getAttr(pool, biti);
1646
1647     size_t size = pool.findSize(p);
1648     size_t pm_bitmask_size = 0;
1649     if (has_pointermap(attrs))
1650         pm_bitmask_size = size_t.sizeof;
1651
1652     if (opts.options.sentinel) {
1653         // Check for interior pointer
1654         // This depends on:
1655         // 1) size is a power of 2 for less than PAGESIZE values
1656         // 2) base of memory pool is aligned on PAGESIZE boundary
1657         if (cast(size_t)p & (size - 1) & (PAGESIZE - 1))
1658             return 0;
1659         return size - SENTINEL_EXTRA - pm_bitmask_size;
1660     }
1661     else {
1662         if (p == gc.p_cache)
1663             return gc.size_cache;
1664
1665         // Check for interior pointer
1666         // This depends on:
1667         // 1) size is a power of 2 for less than PAGESIZE values
1668         // 2) base of memory pool is aligned on PAGESIZE boundary
1669         if (cast(size_t)p & (size - 1) & (PAGESIZE - 1))
1670             return 0;
1671
1672         gc.p_cache = p;
1673         gc.size_cache = size - pm_bitmask_size;
1674
1675         return gc.size_cache;
1676     }
1677 }
1678
1679
1680 /**
1681  * Verify that pointer p:
1682  *  1) belongs to this memory pool
1683  *  2) points to the start of an allocated piece of memory
1684  *  3) is not on a free list
1685  */
1686 private void checkNoSync(void *p)
1687 {
1688     assert(p);
1689
1690     if (opts.options.sentinel)
1691         sentinel_Invariant(p);
1692     debug (PTRCHECK)
1693     {
1694         Pool*  pool;
1695         size_t pagenum;
1696         Bins   bin;
1697         size_t size;
1698
1699         if (opts.options.sentinel)
1700             p = sentinel_sub(p);
1701         pool = findPool(p);
1702         assert(pool);
1703         pagenum = cast(size_t)(p - pool.baseAddr) / PAGESIZE;
1704         bin = cast(Bins)pool.pagetable[pagenum];
1705         assert(bin <= B_PAGE);
1706         size = binsize[bin];
1707         assert((cast(size_t)p & (size - 1)) == 0);
1708
1709         debug (PTRCHECK2)
1710         {
1711             if (bin < B_PAGE)
1712             {
1713                 // Check that p is not on a free list
1714                 for (List* list = gc.free_list[bin]; list; list = list.next)
1715                 {
1716                     assert(cast(void*)list != p);
1717                 }
1718             }
1719         }
1720     }
1721 }
1722
1723
1724 //
1725 //
1726 //
1727 private void setStackBottom(void *p)
1728 {
1729     version (STACKGROWSDOWN)
1730     {
1731         //p = (void *)((uint *)p + 4);
1732         if (p > gc.stack_bottom)
1733         {
1734             gc.stack_bottom = p;
1735         }
1736     }
1737     else
1738     {
1739         //p = (void *)((uint *)p - 4);
1740         if (p < gc.stack_bottom)
1741         {
1742             gc.stack_bottom = cast(char*)p;
1743         }
1744     }
1745 }
1746
1747
1748 /**
1749  * Retrieve statistics about garbage collection.
1750  * Useful for debugging and tuning.
1751  */
1752 private GCStats getStats()
1753 {
1754     GCStats stats;
1755     size_t psize = 0;
1756     size_t usize = 0;
1757     size_t flsize = 0;
1758
1759     size_t n;
1760     size_t bsize = 0;
1761
1762     for (n = 0; n < gc.pools.length; n++)
1763     {
1764         Pool* pool = gc.pools[n];
1765         psize += pool.npages * PAGESIZE;
1766         for (size_t j = 0; j < pool.npages; j++)
1767         {
1768             Bins bin = cast(Bins)pool.pagetable[j];
1769             if (bin == B_FREE)
1770                 stats.freeblocks++;
1771             else if (bin == B_PAGE)
1772                 stats.pageblocks++;
1773             else if (bin < B_PAGE)
1774                 bsize += PAGESIZE;
1775         }
1776     }
1777
1778     for (n = 0; n < B_PAGE; n++)
1779     {
1780         for (List* list = gc.free_list[n]; list; list = list.next)
1781             flsize += binsize[n];
1782     }
1783
1784     usize = bsize - flsize;
1785
1786     stats.poolsize = psize;
1787     stats.usedsize = bsize - flsize;
1788     stats.freelistsize = flsize;
1789     return stats;
1790 }
1791
1792 /******************* weak-reference support *********************/
1793
1794 private struct WeakPointer
1795 {
1796     Object reference;
1797
1798     void ondestroy(Object r)
1799     {
1800         assert(r is reference);
1801         // lock for memory consistency (parallel readers)
1802         // also ensures that weakpointerDestroy can be called while another
1803         // thread is freeing the reference with "delete"
1804         return locked!(void, () {
1805             reference = null;
1806         })();
1807     }
1808 }
1809
1810 /**
1811  * Create a weak pointer to the given object.
1812  * Returns a pointer to an opaque struct allocated in C memory.
1813  */
1814 void* weakpointerCreate( Object r )
1815 {
1816     if (r)
1817     {
1818         // must be allocated in C memory
1819         // 1. to hide the reference from the GC
1820         // 2. the GC doesn't scan delegates added by rt_attachDisposeEvent
1821         //    for references
1822         auto wp = cast(WeakPointer*)(cstdlib.malloc(WeakPointer.sizeof));
1823         if (!wp)
1824             onOutOfMemoryError();
1825         wp.reference = r;
1826         rt_attachDisposeEvent(r, &wp.ondestroy);
1827         return wp;
1828     }
1829     return null;
1830 }
1831
1832 /**
1833  * Destroy a weak pointer returned by weakpointerCreate().
1834  * If null is passed, nothing happens.
1835  */
1836 void weakpointerDestroy( void* p )
1837 {
1838     if (p)
1839     {
1840         auto wp = cast(WeakPointer*)p;
1841         // must be extra careful about the GC or parallel threads
1842         // finalizing the reference at the same time
1843         return locked!(void, () {
1844             if (wp.reference)
1845                 rt_detachDisposeEvent(wp.reference, &wp.ondestroy);
1846         })();
1847         cstdlib.free(wp);
1848     }
1849 }
1850
1851 /**
1852  * Query a weak pointer and return either the object passed to
1853  * weakpointerCreate, or null if it was free'd in the meantime.
1854  * If null is passed, null is returned.
1855  */
1856 Object weakpointerGet( void* p )
1857 {
1858     if (p)
1859     {
1860         // NOTE: could avoid the lock by using Fawzi style GC counters but
1861         // that'd require core.sync.Atomic and lots of care about memory
1862         // consistency it's an optional optimization see
1863         // http://dsource.org/projects/tango/browser/trunk/user/tango/core/Lifetime.d?rev=5100#L158
1864         return locked!(Object, () {
1865             return (cast(WeakPointer*)p).reference;
1866         })();
1867         }
1868 }
1869
1870
1871 /* ============================ Pool  =============================== */
1872
1873
1874 struct Pool
1875 {
1876     byte* baseAddr;
1877     byte* topAddr;
1878     GCBits mark;     // entries already scanned, or should not be scanned
1879     GCBits scan;     // entries that need to be scanned
1880     GCBits freebits; // entries that are on the free list
1881     GCBits finals;   // entries that need finalizer run on them
1882     GCBits noscan;   // entries that should not be scanned
1883
1884     size_t npages;
1885     ubyte* pagetable;
1886
1887     /// Cache for findSize()
1888     size_t cached_size;
1889     void* cached_ptr;
1890
1891     void clear_cache()
1892     {
1893         this.cached_ptr = null;
1894         this.cached_size = 0;
1895     }
1896
1897     void initialize(size_t npages)
1898     {
1899         size_t poolsize = npages * PAGESIZE;
1900         assert(poolsize >= POOLSIZE);
1901         baseAddr = cast(byte *) os.alloc(poolsize);
1902
1903         // Some of the code depends on page alignment of memory pools
1904         assert((cast(size_t)baseAddr & (PAGESIZE - 1)) == 0);
1905
1906         if (!baseAddr)
1907         {
1908             npages = 0;
1909             poolsize = 0;
1910         }
1911         topAddr = baseAddr + poolsize;
1912
1913         size_t nbits = cast(size_t)poolsize / 16;
1914
1915         // if the GC will run in parallel in a fork()ed process, we need to
1916         // share the mark bits
1917         os.Vis vis = os.Vis.PRIV;
1918         if (opts.options.fork)
1919             vis = os.Vis.SHARED;
1920         mark.alloc(nbits, vis); // shared between mark and sweep
1921         freebits.alloc(nbits, vis); // ditto
1922         scan.alloc(nbits); // only used in the mark phase
1923         finals.alloc(nbits); // mark phase *MUST* have a snapshot
1924         noscan.alloc(nbits); // ditto
1925
1926         pagetable = cast(ubyte*) cstdlib.malloc(npages);
1927         if (!pagetable)
1928             onOutOfMemoryError();
1929         memset(pagetable, B_FREE, npages);
1930
1931         this.npages = npages;
1932     }
1933
1934
1935     void Dtor()
1936     {
1937         if (baseAddr)
1938         {
1939             int result;
1940
1941             if (npages)
1942             {
1943                 result = os.dealloc(baseAddr, npages * PAGESIZE);
1944                 assert(result);
1945                 npages = 0;
1946             }
1947
1948             baseAddr = null;
1949             topAddr = null;
1950         }
1951         // See Gcx.Dtor() for the rationale of the null check.
1952         if (pagetable)
1953             cstdlib.free(pagetable);
1954
1955         os.Vis vis = os.Vis.PRIV;
1956         if (opts.options.fork)
1957             vis = os.Vis.SHARED;
1958         mark.Dtor(vis);
1959         freebits.Dtor(vis);
1960         scan.Dtor();
1961         finals.Dtor();
1962         noscan.Dtor();
1963     }
1964
1965
1966     bool Invariant()
1967     {
1968         return true;
1969     }
1970
1971
1972     invariant
1973     {
1974         //mark.Invariant();
1975         //scan.Invariant();
1976         //freebits.Invariant();
1977         //finals.Invariant();
1978         //noscan.Invariant();
1979
1980         if (baseAddr)
1981         {
1982             //if (baseAddr + npages * PAGESIZE != topAddr)
1983                 //printf("baseAddr = %p, npages = %d, topAddr = %p\n", baseAddr, npages, topAddr);
1984             assert(baseAddr + npages * PAGESIZE == topAddr);
1985         }
1986
1987         for (size_t i = 0; i < npages; i++)
1988         {
1989             Bins bin = cast(Bins)pagetable[i];
1990             assert(bin < B_MAX);
1991         }
1992     }
1993
1994
1995     /**
1996      * Allocate n pages from Pool.
1997      * Returns OPFAIL on failure.
1998      */
1999     size_t allocPages(size_t n)
2000     {
2001         size_t i;
2002         size_t n2;
2003
2004         n2 = n;
2005         for (i = 0; i < npages; i++)
2006         {
2007             if (pagetable[i] == B_FREE)
2008             {
2009                 if (--n2 == 0)
2010                     return i - n + 1;
2011             }
2012             else
2013                 n2 = n;
2014         }
2015         return OPFAIL;
2016     }
2017
2018
2019     /**
2020      * Free npages pages starting with pagenum.
2021      */
2022     void freePages(size_t pagenum, size_t npages)
2023     {
2024         memset(&pagetable[pagenum], B_FREE, npages);
2025     }
2026
2027
2028     /**
2029      * Find base address of block containing pointer p.
2030      * Returns null if the pointer doesn't belong to this pool
2031      */
2032     void* findBase(void *p)
2033     {
2034         size_t offset = cast(size_t)(p - this.baseAddr);
2035         size_t pagenum = offset / PAGESIZE;
2036         Bins bin = cast(Bins)this.pagetable[pagenum];
2037         // Adjust bit to be at start of allocated memory block
2038         if (bin <= B_PAGE)
2039             return this.baseAddr + (offset & notbinsize[bin]);
2040         if (bin == B_PAGEPLUS) {
2041             do {
2042                 --pagenum, offset -= PAGESIZE;
2043             } while (cast(Bins)this.pagetable[pagenum] == B_PAGEPLUS);
2044             return this.baseAddr + (offset & (offset.max ^ (PAGESIZE-1)));
2045         }
2046         // we are in a B_FREE page
2047         return null;
2048     }
2049
2050
2051     /**
2052      * Find size of pointer p.
2053      * Returns 0 if p doesn't belong to this pool if if it's block size is less
2054      * than a PAGE.
2055      */
2056     size_t findSize(void *p)
2057     {
2058         size_t pagenum = cast(size_t)(p - this.baseAddr) / PAGESIZE;
2059         Bins bin = cast(Bins)this.pagetable[pagenum];
2060         if (bin != B_PAGE)
2061             return binsize[bin];
2062         if (this.cached_ptr == p)
2063             return this.cached_size;
2064         size_t i = pagenum + 1;
2065         for (; i < this.npages; i++)
2066             if (this.pagetable[i] != B_PAGEPLUS)
2067                 break;
2068         this.cached_ptr = p;
2069         this.cached_size = (i - pagenum) * PAGESIZE;
2070         return this.cached_size;
2071     }
2072
2073
2074     /**
2075      * Used for sorting pools
2076      */
2077     int opCmp(in Pool other)
2078     {
2079         if (baseAddr < other.baseAddr)
2080             return -1;
2081         else
2082         return cast(int)(baseAddr > other.baseAddr);
2083     }
2084 }
2085
2086
2087 /* ============================ SENTINEL =============================== */
2088
2089
2090 const size_t SENTINEL_PRE = cast(size_t) 0xF4F4F4F4F4F4F4F4UL; // 32 or 64 bits
2091 const ubyte SENTINEL_POST = 0xF5;           // 8 bits
2092 const uint SENTINEL_EXTRA = 2 * size_t.sizeof + 1;
2093
2094
2095 size_t* sentinel_size(void *p)  { return &(cast(size_t *)p)[-2]; }
2096 size_t* sentinel_pre(void *p)   { return &(cast(size_t *)p)[-1]; }
2097 ubyte* sentinel_post(void *p) { return &(cast(ubyte *)p)[*sentinel_size(p)]; }
2098
2099
2100 void sentinel_init(void *p, size_t size)
2101 {
2102     *sentinel_size(p) = size;
2103     *sentinel_pre(p) = SENTINEL_PRE;
2104     *sentinel_post(p) = SENTINEL_POST;
2105 }
2106
2107
2108 void sentinel_Invariant(void *p)
2109 {
2110     if (*sentinel_pre(p) != SENTINEL_PRE ||
2111             *sentinel_post(p) != SENTINEL_POST)
2112         cstdlib.abort();
2113 }
2114
2115
2116 void *sentinel_add(void *p)
2117 {
2118     return p + 2 * size_t.sizeof;
2119 }
2120
2121
2122 void *sentinel_sub(void *p)
2123 {
2124     return p - 2 * size_t.sizeof;
2125 }
2126
2127
2128
2129 /* ============================ C Public Interface ======================== */
2130
2131
2132 private int _termCleanupLevel=1;
2133
2134 extern (C):
2135
2136 /// sets the cleanup level done by gc
2137 /// 0: none
2138 /// 1: fullCollect
2139 /// 2: fullCollect ignoring stack roots (might crash daemonThreads)
2140 /// result !=0 if the value was invalid
2141 int gc_setTermCleanupLevel(int cLevel)
2142 {
2143     if (cLevel<0 || cLevel>2) return cLevel;
2144     _termCleanupLevel=cLevel;
2145     return 0;
2146 }
2147
2148 /// returns the cleanup level done by gc
2149 int gc_getTermCleanupLevel()
2150 {
2151     return _termCleanupLevel;
2152 }
2153
2154 void gc_init()
2155 {
2156     scope (exit) assert (Invariant());
2157     gc = cast(GC*) cstdlib.calloc(1, GC.sizeof);
2158     *gc = GC.init;
2159     initialize();
2160     version (DigitalMars) version(OSX) {
2161         _d_osx_image_init();
2162     }
2163     // NOTE: The GC must initialize the thread library
2164     //       before its first collection.
2165     thread_init();
2166 }
2167
2168 void gc_term()
2169 {
2170     assert (Invariant());
2171     if (_termCleanupLevel<1) {
2172         // no cleanup
2173     } else if (_termCleanupLevel==2){
2174         // a more complete cleanup
2175         // NOTE: There may be daemons threads still running when this routine is
2176         //       called.  If so, cleaning memory out from under then is a good
2177         //       way to make them crash horribly.
2178         //       Often this probably doesn't matter much since the app is
2179         //       supposed to be shutting down anyway, but for example tests might
2180         //       crash (and be considerd failed even if the test was ok).
2181         //       thus this is not the default and should be enabled by
2182         //       I'm disabling cleanup for now until I can think about it some
2183         //       more.
2184         //
2185         // not really a 'collect all' -- still scans static data area, roots,
2186         // and ranges.
2187         return locked!(void, () {
2188             gc.no_stack++;
2189             fullcollectshell();
2190             gc.no_stack--;
2191         })();
2192     } else {
2193         // default (safe) clenup
2194         return locked!(void, () {
2195             fullcollectshell();
2196         })();
2197     }
2198 }
2199
2200 void gc_enable()
2201 {
2202     return locked!(void, () {
2203         assert (Invariant()); scope (exit) assert (Invariant());
2204         assert (gc.disabled > 0);
2205         gc.disabled--;
2206     })();
2207 }
2208
2209 void gc_disable()
2210 {
2211     return locked!(void, () {
2212         assert (Invariant()); scope (exit) assert (Invariant());
2213         gc.disabled++;
2214     })();
2215 }
2216
2217 void gc_collect()
2218 {
2219     return locked!(void, () {
2220         assert (Invariant()); scope (exit) assert (Invariant());
2221         fullcollectshell();
2222     })();
2223 }
2224
2225
2226 void gc_minimize()
2227 {
2228     return locked!(void, () {
2229         assert (Invariant()); scope (exit) assert (Invariant());
2230         minimize();
2231     })();
2232 }
2233
2234 uint gc_getAttr(void* p)
2235 {
2236     if (p is null)
2237         return 0;
2238     return locked!(uint, () {
2239         assert (Invariant()); scope (exit) assert (Invariant());
2240         Pool* pool = findPool(p);
2241         if (pool is null)
2242             return 0u;
2243         auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
2244         return getAttr(pool, bit_i);
2245     })();
2246 }
2247
2248 uint gc_setAttr(void* p, uint attrs)
2249 {
2250     if (p is null)
2251         return 0;
2252     return locked!(uint, () {
2253         assert (Invariant()); scope (exit) assert (Invariant());
2254         Pool* pool = findPool(p);
2255         if (pool is null)
2256             return 0u;
2257         auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
2258         uint old_attrs = getAttr(pool, bit_i);
2259         setAttr(pool, bit_i, attrs);
2260         return old_attrs;
2261     })();
2262 }
2263
2264 uint gc_clrAttr(void* p, uint attrs)
2265 {
2266     if (p is null)
2267         return 0;
2268     return locked!(uint, () {
2269         assert (Invariant()); scope (exit) assert (Invariant());
2270         Pool* pool = findPool(p);
2271         if (pool is null)
2272             return 0u;
2273         auto bit_i = cast(size_t)(p - pool.baseAddr) / 16;
2274         uint old_attrs = getAttr(pool, bit_i);
2275         clrAttr(pool, bit_i, attrs);
2276         return old_attrs;
2277     })();
2278 }
2279
2280 void* gc_malloc(size_t size, uint attrs = 0,
2281         PointerMap ptrmap = PointerMap.init)
2282 {
2283     if (size == 0)
2284         return null;
2285     return locked!(void*, () {
2286         assert (Invariant()); scope (exit) assert (Invariant());
2287         return malloc(size, attrs, ptrmap.bits.ptr);
2288     })();
2289 }
2290
2291 void* gc_calloc(size_t size, uint attrs = 0,
2292         PointerMap ptrmap = PointerMap.init)
2293 {
2294     if (size == 0)
2295         return null;
2296     return locked!(void*, () {
2297         assert (Invariant()); scope (exit) assert (Invariant());
2298         return calloc(size, attrs, ptrmap.bits.ptr);
2299     })();
2300 }
2301
2302 void* gc_realloc(void* p, size_t size, uint attrs = 0,
2303         PointerMap ptrmap = PointerMap.init)
2304 {
2305     return locked!(void*, () {
2306         assert (Invariant()); scope (exit) assert (Invariant());
2307         return realloc(p, size, attrs, ptrmap.bits.ptr);
2308     })();
2309 }
2310
2311 size_t gc_extend(void* p, size_t min_size, size_t max_size)
2312 {
2313     return locked!(size_t, () {
2314         assert (Invariant()); scope (exit) assert (Invariant());
2315         return extend(p, min_size, max_size);
2316     })();
2317 }
2318
2319 size_t gc_reserve(size_t size)
2320 {
2321     if (size == 0)
2322         return 0;
2323     return locked!(size_t, () {
2324         assert (Invariant()); scope (exit) assert (Invariant());
2325         return reserve(size);
2326     })();
2327 }
2328
2329 void gc_free(void* p)
2330 {
2331     if (p is null)
2332         return;
2333     return locked!(void, () {
2334         assert (Invariant()); scope (exit) assert (Invariant());
2335         free(p);
2336     })();
2337 }
2338
2339 void* gc_addrOf(void* p)
2340 {
2341     if (p is null)
2342         return null;
2343     return locked!(void*, () {
2344         assert (Invariant()); scope (exit) assert (Invariant());
2345         Pool* pool = findPool(p);
2346         if (pool is null)
2347             return null;
2348         return pool.findBase(p);
2349     })();
2350 }
2351
2352 size_t gc_sizeOf(void* p)
2353 {
2354     if (p is null)
2355         return 0;
2356     return locked!(size_t, () {
2357         assert (Invariant()); scope (exit) assert (Invariant());
2358         return sizeOf(p);
2359     })();
2360 }
2361
2362 BlkInfo gc_query(void* p)
2363 {
2364     if (p is null)
2365         return BlkInfo.init;
2366     return locked!(BlkInfo, () {
2367         assert (Invariant()); scope (exit) assert (Invariant());
2368         return getInfo(p);
2369     })();
2370 }
2371
2372 // NOTE: This routine is experimental.  The stats or function name may change
2373 //       before it is made officially available.
2374 GCStats gc_stats()
2375 {
2376     return locked!(GCStats, () {
2377         assert (Invariant()); scope (exit) assert (Invariant());
2378         return getStats();
2379     })();
2380 }
2381
2382 void gc_addRoot(void* p)
2383 {
2384     if (p is null)
2385         return;
2386     return locked!(void, () {
2387         assert (Invariant()); scope (exit) assert (Invariant());
2388         if (gc.roots.append(p) is null)
2389             onOutOfMemoryError();
2390     })();
2391 }
2392
2393 void gc_addRange(void* p, size_t size)
2394 {
2395     if (p is null || size == 0)
2396         return;
2397     return locked!(void, () {
2398         assert (Invariant()); scope (exit) assert (Invariant());
2399         if (gc.ranges.append(Range(p, p + size)) is null)
2400             onOutOfMemoryError();
2401     })();
2402 }
2403
2404 void gc_removeRoot(void* p)
2405 {
2406     if (p is null)
2407         return;
2408     return locked!(void, () {
2409         assert (Invariant()); scope (exit) assert (Invariant());
2410         bool r = gc.roots.remove(p);
2411         assert (r);
2412     })();
2413 }
2414
2415 void gc_removeRange(void* p)
2416 {
2417     if (p is null)
2418         return;
2419     return locked!(void, () {
2420         assert (Invariant()); scope (exit) assert (Invariant());
2421         bool r = gc.ranges.remove(Range(p, null));
2422         assert (r);
2423     })();
2424 }
2425
2426 void* gc_weakpointerCreate(Object r)
2427 {
2428     // weakpointers do their own locking
2429     return weakpointerCreate(r);
2430 }
2431
2432 void gc_weakpointerDestroy(void* wp)
2433 {
2434     // weakpointers do their own locking
2435     weakpointerDestroy(wp);
2436 }
2437
2438 Object gc_weakpointerGet(void* wp)
2439 {
2440     // weakpointers do their own locking
2441     return weakpointerGet(wp);
2442 }
2443
2444
2445 // vim: set et sw=4 sts=4 :