Mailing List Archive

CVS: python/dist/src/Objects obmalloc.c,2.20,2.21
Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv3326/python/Objects

Modified Files:
obmalloc.c
Log Message:
_PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged
the code so that the most frequent cases come first. Added comments.
Found a hidden assumption that a pool contains room for at least two
blocks, and added an assert to catch a violation if it ever happens in
a place where that matters. Gave the normal "I allocated this block"
case a longer basic block to work with before it has to do its first
branch (via breaking apart an embedded assignment in an "if", and
hoisting common code out of both branches).


Index: obmalloc.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/obmalloc.c,v
retrieving revision 2.20
retrieving revision 2.21
diff -C2 -d -r2.20 -r2.21
*** obmalloc.c 31 Mar 2002 01:05:22 -0000 2.20
--- obmalloc.c 31 Mar 2002 02:18:01 -0000 2.21
***************
*** 668,671 ****
--- 668,672 ----
{
poolp pool;
+ block *lastfree;
poolp next, prev;
uint size;
***************
*** 680,734 ****
INCMINE;
/*
! * At this point, the pool is not empty
*/
! if ((*(block **)p = pool->freeblock) == NULL) {
/*
! * Pool was full
*/
! pool->freeblock = (block *)p;
! --pool->ref.count;
/*
! * Frontlink to used pools
! * This mimics LRU pool usage for new allocations and
! * targets optimal filling when several pools contain
! * blocks of the same size class.
*/
! size = pool->szidx;
! next = usedpools[size + size];
! prev = next->prevpool;
! pool->nextpool = next;
! pool->prevpool = prev;
! next->prevpool = pool;
! prev->nextpool = pool;
! UNLOCK();
! return;
! }
! /*
! * Pool was not full
! */
! pool->freeblock = (block *)p;
! if (--pool->ref.count != 0) {
UNLOCK();
return;
}
/*
! * Pool is now empty, unlink from used pools
! */
! next = pool->nextpool;
! prev = pool->prevpool;
! next->prevpool = prev;
! prev->nextpool = next;
! /*
! * Frontlink to free pools
! * This ensures that previously freed pools will be allocated
! * later (being not referenced, they are perhaps paged out).
*/
! pool->nextpool = freepools;
! freepools = pool;
UNLOCK();
return;
}

! /* We did not allocate this address. */
INCTHEIRS;
PyMem_FREE(p);
--- 681,744 ----
INCMINE;
/*
! * Link p to the start of the pool's freeblock list. Since
! * the pool had at least the p block outstanding, the pool
! * wasn't empty (so it's already in a usedpools[] list, or
! * was full and is in no list -- it's not in the freeblocks
! * list in any case).
*/
! *(block **)p = lastfree = pool->freeblock;
! pool->freeblock = (block *)p;
! if (lastfree) {
/*
! * freeblock wasn't NULL, so the pool wasn't full,
! * and the pool is in a usedpools[] list.
*/
! assert(pool->ref.count < pool.capacity);
! if (--pool->ref.count != 0) {
! /* pool isn't empty: leave it in usedpools */
! UNLOCK();
! return;
! }
/*
! * Pool is now empty: unlink from usedpools, and
! * link to the front of usedpools. This ensures that
! * previously freed pools will be allocated later
! * (being not referenced, they are perhaps paged out).
*/
! next = pool->nextpool;
! prev = pool->prevpool;
! next->prevpool = prev;
! prev->nextpool = next;
! /* Link to freepools. This is a singly-linked list,
! * and pool->prevpool isn't used there.
! */
! pool->nextpool = freepools;
! freepools = pool;
UNLOCK();
return;
}
/*
! * Pool was full, so doesn't currently live in any list:
! * link it to the front of the appropriate usedpools[] list.
! * This mimics LRU pool usage for new allocations and
! * targets optimal filling when several pools contain
! * blocks of the same size class.
*/
! assert(pool->ref.count == pool->capacity); /* else not full */
! --pool->ref.count;
! assert(pool->ref.count > 0); /* else the pool is empty */
! size = pool->szidx;
! next = usedpools[size + size];
! prev = next->prevpool;
! /* insert pool before next: prev <-> pool <-> next */
! pool->nextpool = next;
! pool->prevpool = prev;
! next->prevpool = pool;
! prev->nextpool = pool;
UNLOCK();
return;
}

! /* We didn't allocate this address. */
INCTHEIRS;
PyMem_FREE(p);