X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=ghc%2Frts%2FBlockAlloc.c;h=63da2a2b630a80819e7268b2b85f1a6c88887c47;hb=53386c359c55bd6eaa13c35fe174c9274ff5888e;hp=66205b5a927c60e08734068aab2dfb767b5b452c;hpb=d7dedcdbb833d692a3be48e2405d2323fa4de72a;p=ghc-hetmet.git diff --git a/ghc/rts/BlockAlloc.c b/ghc/rts/BlockAlloc.c index 66205b5..63da2a2 100644 --- a/ghc/rts/BlockAlloc.c +++ b/ghc/rts/BlockAlloc.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: BlockAlloc.c,v 1.12 2001/11/08 12:41:07 simonmar Exp $ + * $Id: BlockAlloc.c,v 1.17 2003/11/12 17:49:05 sof Exp $ * * (c) The GHC Team 1998-2000 * @@ -23,11 +23,13 @@ #include "BlockAlloc.h" #include "MBlock.h" +#include + static void initMBlock(void *mblock); static bdescr *allocMegaGroup(nat mblocks); static void freeMegaGroup(bdescr *bd); -static bdescr *free_list; +static bdescr *free_list = NULL; /* ----------------------------------------------------------------------------- Initialisation @@ -35,14 +37,14 @@ static bdescr *free_list; void initBlockAllocator(void) { - free_list = NULL; + // The free list starts off NULL } /* ----------------------------------------------------------------------------- Allocation -------------------------------------------------------------------------- */ -static inline void +STATIC_INLINE void initGroup(nat n, bdescr *head) { bdescr *bd; @@ -192,18 +194,19 @@ allocMegaGroup(nat n) * pointer to the newly enlarged group p. */ -static inline bdescr * +STATIC_INLINE bdescr * coalesce(bdescr *p) { bdescr *bd, *q; - nat i; + nat i, blocks; q = p->link; if (q != NULL && p->start + p->blocks * BLOCK_SIZE_W == q->start) { /* can coalesce */ p->blocks += q->blocks; p->link = q->link; - for (i = 0, bd = q; i < q->blocks; bd++, i++) { + blocks = q->blocks; + for (i = 0, bd = q; i < blocks; bd++, i++) { bd->free = 0; bd->blocks = 0; bd->link = p; @@ -262,7 +265,7 @@ freeMegaGroup(bdescr *p) n = p->blocks * BLOCK_SIZE / MBLOCK_SIZE + 1; for (; n > 0; (W_)p += MBLOCK_SIZE, n--) { - initMBlock((void *)((W_)p & ~MBLOCK_MASK)); + initMBlock(MBLOCK_ROUND_DOWN(p)); initGroup(BLOCKS_PER_MBLOCK, p); freeGroup(p); } @@ -303,6 +306,18 @@ initMBlock(void *mblock) -------------------------------------------------------------------------- */ #ifdef DEBUG +static void +checkWellFormedGroup( bdescr *bd ) +{ + nat i; + + for (i = 1; i < bd->blocks; i++) { + ASSERT(bd[i].blocks == 0); + ASSERT(bd[i].free == 0); + ASSERT(bd[i].link == bd); + } +} + void checkFreeListSanity(void) { @@ -313,6 +328,7 @@ checkFreeListSanity(void) fprintf(stderr,"group at 0x%x, length %d blocks\n", (nat)bd->start, bd->blocks)); ASSERT(bd->blocks > 0); + checkWellFormedGroup(bd); if (bd->link != NULL) { /* make sure we're fully coalesced */ ASSERT(bd->start + bd->blocks * BLOCK_SIZE_W != bd->link->start);